diff --git a/.eslintignore b/.eslintignore index 0e2b3c55..77a99aa4 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,4 +1,3 @@ dist/ -cities-with-time-zones.json simplified-time-zones.json time-zones-names.json diff --git a/.github/workflows/maybe-release.yml b/.github/workflows/maybe-release.yml index 9714c402..02fa0206 100644 --- a/.github/workflows/maybe-release.yml +++ b/.github/workflows/maybe-release.yml @@ -43,7 +43,7 @@ jobs: commit_message: "feat(data): Automatic data update" # Optional glob pattern of files which should be added to the commit - file_pattern: cities-with-time-zones.json simplified-time-zones.json time-zones-names.json + file_pattern: simplified-time-zones.json time-zones-names.json - name: Release if necessary if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/next' run: yarn semantic-release diff --git a/.prettierignore b/.prettierignore index f67b6af6..066dde64 100644 --- a/.prettierignore +++ b/.prettierignore @@ -11,6 +11,5 @@ !*.yml /coverage/ /dist/ -cities-with-time-zones.json time-zones-names.json simplified-time-zones.json diff --git a/README.md b/README.md index 6244deb3..2343ecd9 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,8 @@ This is a list and npm package of: -- "simplified" [IANA time zones](https://www.iana.org/time-zones) and their offset names -- all existing IANA time zones names -- and major cities (population > 5,000) with their associated time zones and offset names +- "simplified" [IANA time zones](https://www.iana.org/time-zones) with their alternative names like `Pacific Time` instead of `America/Los_Angeles`, along with major cities for each time zone. +- all existing raw IANA time zones names The data and npm packages are **automatically updated** whenever there are changes to https://www.geonames.org/ which is generated from IANA databases. @@ -19,28 +18,38 @@ This is most probably what you're looking for if you're trying to build a good c Example data: ```js -{ - "timeZoneName":"America/Anchorage", - "formatted":"-09:00 Alaska Time - Anchorage, Juneau", - "group":[ - "America/Anchorage", - "America/Juneau", - "America/Metlakatla", - "America/Nome", - "America/Sitka", - "America/Yakutat" - ] -}, -{ - "timeZoneName":"Pacific/Gambier", - "formatted":"-09:00 Gambier Time - Gambier", - "group":["Pacific/Gambier"] -}, -{ - "timeZoneName":"America/Los_Angeles", - "formatted":"-08:00 Pacific Time - Los Angeles", - "group":["America/Los_Angeles"] -}, +[ + // ... + { + name: "America/Anchorage", + alternativeName: "Alaska Time", + mainCities: ["Anchorage", "Juneau"], + formatted: "-09:00 Alaska Time - Anchorage, Juneau", + group: [ + "America/Anchorage", + "America/Juneau", + "America/Metlakatla", + "America/Nome", + "America/Sitka", + "America/Yakutat", + ], + }, + { + name: "Pacific/Gambier", + alternativeName: "Gambier Time", + mainCities: ["Gambier"], + formatted: "-09:00 Gambier Time - Gambier", + group: ["Pacific/Gambier"], + }, + { + name: "America/Los_Angeles", + alternativeName: "Pacific Time", + mainCities: ["Los Angeles", "San Diego"], + formatted: "-08:00 Pacific Time - Los Angeles, San Diego", + group: ["America/Los_Angeles"], + }, + // ... +]; ``` As you can see, we provide the time zone name and a pre-formatted version using more common offset names. @@ -52,51 +61,6 @@ Notes: - We provide offset names ("Pacific Time") without dst and remove "Standard" and "Daylight" - This can be used to build a good enough (Google calendar like) select box of time zones, but it's your responsibility to handle dst and real offsets -### [cities-with-time-zones.json](./cities-with-time-zones.json) - -This is a list of major cities (population > 5,000) and their associated time zone information, ranked by population. This is useful if you want to build an application where the user will type a city and you want the time zone information out of it. - -Example data: - -```js -{ - "geonameId":"5368361", - "name":"Los Angeles", - "countryName":"United States", - "timeZoneName":"America/Los_Angeles", - "timeZoneOffsetNameWithoutDst":"Pacific Time", - "population":3971883, - "modificationDate":"2019-12-12" -}, -{ - "geonameId":"1205733", - "name":"Chittagong", - "countryName":"Bangladesh", - "timeZoneName":"Asia/Dhaka", - "timeZoneOffsetNameWithoutDst":"Bangladesh Time", - "population":3920222, - "modificationDate":"2016-11-09" -}, -{ - "geonameId":"1804651", - "name":"Kunming", - "countryName":"China", - "timeZoneName":"Asia/Shanghai", - "timeZoneOffsetNameWithoutDst":"China Time", - "population":3855346, - "modificationDate":"2014-08-14" -}, -{ - "geonameId":"361058", - "name":"Alexandria", - "countryName":"Egypt", - "timeZoneName":"Africa/Cairo", - "timeZoneOffsetNameWithoutDst":"Eastern European Time", - "population":3811516, - "modificationDate":"2019-09-05" -}, -``` - ### [time-zones-names.json](./time-zones-names.json) This is the raw list of all IANA time zones ranked by alphabetical order. @@ -104,15 +68,19 @@ This is the raw list of all IANA time zones ranked by alphabetical order. Example data: ```js -"America/La_Paz", -"America/Lima", -"America/Los_Angeles", -"America/Lower_Princes", -"America/Maceio", -"America/Managua", -"America/Manaus", -"America/Marigot", -"America/Martinique", +[ + // ... + "America/La_Paz", + "America/Lima", + "America/Los_Angeles", + "America/Lower_Princes", + "America/Maceio", + "America/Managua", + "America/Manaus", + "America/Marigot", + "America/Martinique", + // ... +]; ``` ## NPM package @@ -126,12 +94,11 @@ npm add @vvo/tzdb Usage: ```js -import cities from "@vvo/tzdb/cities-with-time-zones.json"; -import simplifiedTimeZones from "@vvo/tzdb/simplified-time-zones.json"; import timeZones from "@vvo/tzdb/time-zones-names.json"; +import simplifiedTimeZones from "@vvo/tzdb/simplified-time-zones.json"; ``` -## Algolia +## [BETA] Algolia You can store cities information on a search engine like [Algolia](http://algolia.com/). There's a `yarn build` command you can use if you clone this repository to create your own Algolia index. The expected environment variables are: diff --git a/cities-with-time-zones.json b/cities-with-time-zones.json deleted file mode 100644 index 5bd322bc..00000000 --- a/cities-with-time-zones.json +++ /dev/null @@ -1,24515 +0,0 @@ -[{"geonameId":"1796236","name":"Shanghai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":22315474,"modificationDate":"2020-05-28"}, -{"geonameId":"745044","name":"Istanbul","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":14804116,"modificationDate":"2020-05-28"}, -{"geonameId":"3435910","name":"Buenos Aires","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":13076300,"modificationDate":"2019-09-05"}, -{"geonameId":"1275339","name":"Mumbai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":12691836,"modificationDate":"2019-09-05"}, -{"geonameId":"3530597","name":"Mexico City","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":12294193,"modificationDate":"2020-05-28"}, -{"geonameId":"1816670","name":"Beijing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":11716620,"modificationDate":"2019-09-05"}, -{"geonameId":"1174872","name":"Karachi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":11624219,"modificationDate":"2019-12-30"}, -{"geonameId":"1792947","name":"Tianjin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":11090314,"modificationDate":"2017-06-29"}, -{"geonameId":"1809858","name":"Guangzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":11071424,"modificationDate":"2020-05-28"}, -{"geonameId":"1273294","name":"Delhi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":10927986,"modificationDate":"2019-09-05"}, -{"geonameId":"524901","name":"Moscow","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":10381222,"modificationDate":"2020-03-31"}, -{"geonameId":"1795565","name":"Shenzhen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":10358381,"modificationDate":"2019-09-05"}, -{"geonameId":"1185241","name":"Dhaka","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":10356500,"modificationDate":"2020-03-18"}, -{"geonameId":"1835848","name":"Seoul","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":10349312,"modificationDate":"2019-09-05"}, -{"geonameId":"3448439","name":"São Paulo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":10021295,"modificationDate":"2019-07-12"}, -{"geonameId":"1791247","name":"Wuhan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":9785388,"modificationDate":"2019-09-05"}, -{"geonameId":"2332459","name":"Lagos","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":9000000,"modificationDate":"2019-09-05"}, -{"geonameId":"1642911","name":"Jakarta","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":8540121,"modificationDate":"2019-09-05"}, -{"geonameId":"1850147","name":"Tokyo","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":8336599,"modificationDate":"2020-05-28"}, -{"geonameId":"5128581","name":"New York City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":8175133,"modificationDate":"2019-09-23"}, -{"geonameId":"1812545","name":"Dongguan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":8000000,"modificationDate":"2019-02-26"}, -{"geonameId":"1668341","name":"Taipei","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":7871900,"modificationDate":"2020-05-28"}, -{"geonameId":"2314302","name":"Kinshasa","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":7785965,"modificationDate":"2020-05-28"}, -{"geonameId":"3936456","name":"Lima","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":7737002,"modificationDate":"2019-09-05"}, -{"geonameId":"360630","name":"Cairo","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":7734614,"modificationDate":"2020-05-28"}, -{"geonameId":"3688689","name":"Bogotá","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":7674366,"modificationDate":"2019-10-08"}, -{"geonameId":"2643743","name":"London","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":7556900,"modificationDate":"2019-09-18"}, -{"geonameId":"1814906","name":"Chongqing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":7457600,"modificationDate":"2019-09-19"}, -{"geonameId":"1815286","name":"Chengdu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":7415590,"modificationDate":"2019-02-26"}, -{"geonameId":"98182","name":"Baghdad","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":7216000,"modificationDate":"2020-05-28"}, -{"geonameId":"1799962","name":"Nanjing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":7165292,"modificationDate":"2019-09-05"}, -{"geonameId":"112931","name":"Tehran","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":7153309,"modificationDate":"2015-10-03"}, -{"geonameId":"1800146","name":"Nanchong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":7150000,"modificationDate":"2012-01-18"}, -{"geonameId":"1819729","name":"Hong Kong","countryName":"Hong Kong","timeZoneName":"Asia/Hong_Kong","timeZoneOffsetNameWithoutDst":"Hong Kong Time","population":7012738,"modificationDate":"2017-05-23"}, -{"geonameId":"1790630","name":"Singan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":6501190,"modificationDate":"2020-06-10"}, -{"geonameId":"1172451","name":"Lahore","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":6310888,"modificationDate":"2019-12-06"}, -{"geonameId":"2034937","name":"Shenyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":6255921,"modificationDate":"2019-09-05"}, -{"geonameId":"1808926","name":"Hangzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":6241971,"modificationDate":"2019-09-05"}, -{"geonameId":"3451190","name":"Rio de Janeiro","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":6023699,"modificationDate":"2019-09-05"}, -{"geonameId":"2037013","name":"Harbin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":5878939,"modificationDate":"2019-09-05"}, -{"geonameId":"1793724","name":"Taianfu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":5499000,"modificationDate":"2020-06-10"}, -{"geonameId":"1886760","name":"Suzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":5345961,"modificationDate":"2018-12-14"}, -{"geonameId":"1795940","name":"Shantou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":5329024,"modificationDate":"2018-07-23"}, -{"geonameId":"1609350","name":"Bangkok","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":5104476,"modificationDate":"2017-03-29"}, -{"geonameId":"1277333","name":"Bengaluru","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":5104047,"modificationDate":"2019-09-05"}, -{"geonameId":"498817","name":"Saint Petersburg","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":5028000,"modificationDate":"2020-05-28"}, -{"geonameId":"3871336","name":"Santiago","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":4837295,"modificationDate":"2020-05-28"}, -{"geonameId":"1275004","name":"Calcutta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":4631392,"modificationDate":"2020-06-10"}, -{"geonameId":"2147714","name":"Sydney","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":4627345,"modificationDate":"2019-09-05"}, -{"geonameId":"1298824","name":"Yangon","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":4477638,"modificationDate":"2019-09-05"}, -{"geonameId":"1805753","name":"Jinan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":4335989,"modificationDate":"2019-09-05"}, -{"geonameId":"1264527","name":"Chennai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":4328063,"modificationDate":"2019-09-05"}, -{"geonameId":"1784658","name":"Zhengzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":4253913,"modificationDate":"2019-02-26"}, -{"geonameId":"2158177","name":"Melbourne","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":4246375,"modificationDate":"2019-07-20"}, -{"geonameId":"108410","name":"Riyadh","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":4205961,"modificationDate":"2019-09-05"}, -{"geonameId":"2038180","name":"Changchun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":4193073,"modificationDate":"2019-09-05"}, -{"geonameId":"1814087","name":"Dalian","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":4087733,"modificationDate":"2018-12-06"}, -{"geonameId":"5368361","name":"Los Angeles","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":3971883,"modificationDate":"2019-12-12"}, -{"geonameId":"1205733","name":"Chittagong","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":3920222,"modificationDate":"2016-11-09"}, -{"geonameId":"1804651","name":"Kunming","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":3855346,"modificationDate":"2014-08-14"}, -{"geonameId":"361058","name":"Alexandria","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":3811516,"modificationDate":"2019-09-05"}, -{"geonameId":"1279233","name":"Ahmedabad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":3719710,"modificationDate":"2019-09-05"}, -{"geonameId":"1797929","name":"Qingdao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":3718835,"modificationDate":"2019-02-27"}, -{"geonameId":"1838524","name":"Busan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":3678555,"modificationDate":"2019-04-30"}, -{"geonameId":"2293538","name":"Abidjan","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":3677115,"modificationDate":"2019-10-11"}, -{"geonameId":"2335204","name":"Kano","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":3626068,"modificationDate":"2019-09-05"}, -{"geonameId":"1811103","name":"Foshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":3600000,"modificationDate":"2014-08-17"}, -{"geonameId":"1269843","name":"Hyderabad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":3597816,"modificationDate":"2014-10-10"}, -{"geonameId":"1798425","name":"Puyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":3590000,"modificationDate":"2012-08-04"}, -{"geonameId":"1848354","name":"Yokohama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":3574443,"modificationDate":"2018-01-24"}, -{"geonameId":"2339354","name":"Ibadan","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":3565108,"modificationDate":"2019-09-05"}, -{"geonameId":"1880252","name":"Singapore","countryName":"Singapore","timeZoneName":"Asia/Singapore","timeZoneOffsetNameWithoutDst":"Singapore Time","population":3547809,"modificationDate":"2016-02-13"}, -{"geonameId":"1790923","name":"Wuxi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":3543719,"modificationDate":"2019-09-05"}, -{"geonameId":"1790645","name":"Xiamen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":3531347,"modificationDate":"2019-02-27"}, -{"geonameId":"323786","name":"Ankara","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":3517182,"modificationDate":"2019-09-05"}, -{"geonameId":"1792892","name":"Tianshui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":3500000,"modificationDate":"2013-08-14"}, -{"geonameId":"1799397","name":"Ningbo","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":3491597,"modificationDate":"2019-09-05"}, -{"geonameId":"1566083","name":"Ho Chi Minh City","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":3467331,"modificationDate":"2018-06-07"}, -{"geonameId":"1794903","name":"Shiyan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":3460000,"modificationDate":"2018-12-06"}, -{"geonameId":"3369157","name":"Cape Town","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":3433441,"modificationDate":"2019-09-05"}, -{"geonameId":"1793511","name":"Taiyuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":3426519,"modificationDate":"2014-08-14"}, -{"geonameId":"2950159","name":"Berlin","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":3426354,"modificationDate":"2019-07-13"}, -{"geonameId":"1793346","name":"Tangshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":3372102,"modificationDate":"2014-08-14"}, -{"geonameId":"1808722","name":"Hefei","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":3310268,"modificationDate":"2019-02-26"}, -{"geonameId":"3117735","name":"Madrid","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":3255944,"modificationDate":"2019-09-05"}, -{"geonameId":"1871859","name":"Pyongyang","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":3222000,"modificationDate":"2019-09-05"}, -{"geonameId":"2553604","name":"Casablanca","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":3144909,"modificationDate":"2019-09-05"}, -{"geonameId":"1785286","name":"Zibo","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":3129228,"modificationDate":"2014-08-14"}, -{"geonameId":"1915223","name":"Zhongshan","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":3121275,"modificationDate":"2014-08-14"}, -{"geonameId":"1007311","name":"Durban","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":3120282,"modificationDate":"2019-09-05"}, -{"geonameId":"1815577","name":"Changsha","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":3093980,"modificationDate":"2019-02-26"}, -{"geonameId":"1138958","name":"Kabul","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":3043532,"modificationDate":"2019-09-05"}, -{"geonameId":"1529102","name":"Ürümqi","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":3029372,"modificationDate":"2017-07-21"}, -{"geonameId":"3646738","name":"Caracas","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":3000000,"modificationDate":"2020-04-27"}, -{"geonameId":"292223","name":"Dubai","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":2956587,"modificationDate":"2019-08-28"}, -{"geonameId":"1259229","name":"Pune","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":2935744,"modificationDate":"2015-06-04"}, -{"geonameId":"1255364","name":"Surat","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":2894504,"modificationDate":"2020-04-04"}, -{"geonameId":"105343","name":"Jeddah","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":2867446,"modificationDate":"2019-10-29"}, -{"geonameId":"1795270","name":"Shijiazhuang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":2834942,"modificationDate":"2017-07-21"}, -{"geonameId":"1267995","name":"Kanpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":2823249,"modificationDate":"2015-08-08"}, -{"geonameId":"703448","name":"Kyiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":2797553,"modificationDate":"2020-06-17"}, -{"geonameId":"2240449","name":"Luanda","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":2776168,"modificationDate":"2019-09-05"}, -{"geonameId":"1692192","name":"Quezon City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":2761720,"modificationDate":"2019-02-26"}, -{"geonameId":"344979","name":"Addis Ababa","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":2757729,"modificationDate":"2020-05-28"}, -{"geonameId":"184745","name":"Nairobi","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":2750547,"modificationDate":"2019-09-05"}, -{"geonameId":"4887398","name":"Chicago","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":2720546,"modificationDate":"2019-10-07"}, -{"geonameId":"3450554","name":"Salvador","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":2711840,"modificationDate":"2014-05-11"}, -{"geonameId":"1269515","name":"Jaipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":2711758,"modificationDate":"2019-09-05"}, -{"geonameId":"160263","name":"Dar es Salaam","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":2698652,"modificationDate":"2019-09-05"}, -{"geonameId":"1804430","name":"Lanzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":2628426,"modificationDate":"2019-02-26"}, -{"geonameId":"1843564","name":"Incheon","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":2628000,"modificationDate":"2020-03-22"}, -{"geonameId":"1785725","name":"Yunfu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":2612800,"modificationDate":"2013-10-05"}, -{"geonameId":"6167865","name":"Toronto","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":2600000,"modificationDate":"2019-09-05"}, -{"geonameId":"6619347","name":"Navi Mumbai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":2600000,"modificationDate":"2018-12-04"}, -{"geonameId":"99532","name":"Basrah","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":2600000,"modificationDate":"2015-11-29"}, -{"geonameId":"1853909","name":"Osaka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":2592413,"modificationDate":"2017-07-21"}, -{"geonameId":"53654","name":"Mogadishu","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":2587183,"modificationDate":"2019-09-05"}, -{"geonameId":"1835329","name":"Daegu","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":2566540,"modificationDate":"2016-02-09"}, -{"geonameId":"1179400","name":"Faisalabad","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":2506595,"modificationDate":"2019-12-06"}, -{"geonameId":"311046","name":"Yazmir","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":2500603,"modificationDate":"2020-06-10"}, -{"geonameId":"2253354","name":"Dakar","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":2476400,"modificationDate":"2019-09-05"}, -{"geonameId":"1264733","name":"Lucknow","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":2472011,"modificationDate":"2015-11-11"}, -{"geonameId":"360995","name":"Giza","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":2443203,"modificationDate":"2019-10-10"}, -{"geonameId":"3399415","name":"Fortaleza","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":2400000,"modificationDate":"2019-09-05"}, -{"geonameId":"3687925","name":"Cali","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":2392877,"modificationDate":"2016-01-28"}, -{"geonameId":"1625822","name":"Surabaya","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":2374658,"modificationDate":"2019-09-05"}, -{"geonameId":"3470127","name":"Belo Horizonte","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":2373224,"modificationDate":"2019-09-05"}, -{"geonameId":"1800163","name":"Nanchang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":2357839,"modificationDate":"2019-09-05"}, -{"geonameId":"3169070","name":"Rome","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":2318895,"modificationDate":"2020-05-28"}, -{"geonameId":"124665","name":"Mashhad","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":2307177,"modificationDate":"2020-04-08"}, -{"geonameId":"5110302","name":"Brooklyn","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":2300664,"modificationDate":"2015-01-18"}, -{"geonameId":"4699066","name":"Houston","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":2296224,"modificationDate":"2019-09-05"}, -{"geonameId":"5133273","name":"Queens","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":2272771,"modificationDate":"2019-09-05"}, -{"geonameId":"1262180","name":"Nagpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":2228018,"modificationDate":"2019-10-22"}, -{"geonameId":"3633009","name":"Maracaibo","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":2225000,"modificationDate":"2019-09-05"}, -{"geonameId":"3469058","name":"Brasília","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":2207718,"modificationDate":"2019-09-05"}, -{"geonameId":"3492908","name":"Santo Domingo","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":2201941,"modificationDate":"2020-02-22"}, -{"geonameId":"1856057","name":"Nagoya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":2191279,"modificationDate":"2017-04-09"}, -{"geonameId":"2174003","name":"Brisbane","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":2189878,"modificationDate":"2019-09-05"}, -{"geonameId":"3553478","name":"Havana","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":2163824,"modificationDate":"2019-09-05"}, -{"geonameId":"2988507","name":"Paris","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":2138551,"modificationDate":"2020-05-26"}, -{"geonameId":"99071","name":"Al Mawşil al Jadīdah","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":2065597,"modificationDate":"2016-06-22"}, -{"geonameId":"993800","name":"Johannesburg","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":2026469,"modificationDate":"2019-09-05"}, -{"geonameId":"1819609","name":"Kowloon","countryName":"Hong Kong","timeZoneName":"Asia/Hong_Kong","timeZoneOffsetNameWithoutDst":"Hong Kong Time","population":2019533,"modificationDate":"2013-07-07"}, -{"geonameId":"388349","name":"Al Başrah al Qadīmah","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":2015483,"modificationDate":"2016-06-22"}, -{"geonameId":"1526384","name":"Almaty","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":2000900,"modificationDate":"2019-09-19"}, -{"geonameId":"1917790","name":"Dadonghai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":2000000,"modificationDate":"2018-12-06"}, -{"geonameId":"3674962","name":"Medellín","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":1999979,"modificationDate":"2019-09-05"}, -{"geonameId":"1512569","name":"Tashkent","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":1978028,"modificationDate":"2019-09-05"}, -{"geonameId":"2507480","name":"Algiers","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":1977663,"modificationDate":"2019-09-05"}, -{"geonameId":"379252","name":"Khartoum","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":1974647,"modificationDate":"2011-10-26"}, -{"geonameId":"2306104","name":"Accra","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":1963264,"modificationDate":"2019-12-05"}, -{"geonameId":"3657509","name":"Guayaquil","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":1952029,"modificationDate":"2019-09-05"}, -{"geonameId":"8347664","name":"Ordos","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1940653,"modificationDate":"2017-05-10"}, -{"geonameId":"71137","name":"Sanaa","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":1937451,"modificationDate":"2020-06-11"}, -{"geonameId":"276781","name":"Beirut","countryName":"Lebanon","timeZoneName":"Asia/Beirut","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":1916100,"modificationDate":"2019-09-05"}, -{"geonameId":"2063523","name":"Perth","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":1896548,"modificationDate":"2019-09-05"}, -{"geonameId":"2128295","name":"Sapporo","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":1883027,"modificationDate":"2019-09-05"}, -{"geonameId":"2036502","name":"Jilin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1881977,"modificationDate":"2017-07-21"}, -{"geonameId":"683506","name":"Bucharest","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":1877155,"modificationDate":"2016-02-07"}, -{"geonameId":"2422488","name":"Camayenne","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":1871242,"modificationDate":"2012-01-18"}, -{"geonameId":"1269743","name":"Indore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1837041,"modificationDate":"2014-10-14"}, -{"geonameId":"3526683","name":"Iztapalapa","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":1815786,"modificationDate":"2018-11-03"}, -{"geonameId":"2422465","name":"Conakry","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":1767200,"modificationDate":"2018-05-26"}, -{"geonameId":"11838258","name":"Bayan Nur","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1760000,"modificationDate":"2018-03-26"}, -{"geonameId":"3632998","name":"Maracay","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":1754256,"modificationDate":"2016-01-07"}, -{"geonameId":"1214520","name":"Medan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":1750971,"modificationDate":"2019-09-05"}, -{"geonameId":"1166993","name":"Rawalpindi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":1743101,"modificationDate":"2018-08-19"}, -{"geonameId":"625144","name":"Minsk","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":1742124,"modificationDate":"2019-09-05"}, -{"geonameId":"3054643","name":"Budapest","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":1741041,"modificationDate":"2019-09-05"}, -{"geonameId":"99072","name":"Mosul","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":1739800,"modificationDate":"2019-02-26"}, -{"geonameId":"2911298","name":"Hamburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":1739117,"modificationDate":"2019-11-28"}, -{"geonameId":"3464975","name":"Curitiba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":1718421,"modificationDate":"2019-09-05"}, -{"geonameId":"756135","name":"Warsaw","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":1702139,"modificationDate":"2019-11-04"}, -{"geonameId":"1650357","name":"Bandung","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":1699719,"modificationDate":"2019-09-05"}, -{"geonameId":"953781","name":"Soweto","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":1695047,"modificationDate":"2012-07-12"}, -{"geonameId":"2761369","name":"Vienna","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":1691468,"modificationDate":"2019-07-30"}, -{"geonameId":"12165956","name":"Kallakurichi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1682687,"modificationDate":"2020-05-17"}, -{"geonameId":"2538475","name":"Rabat","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":1655753,"modificationDate":"2019-09-05"}, -{"geonameId":"3529612","name":"Ecatepec de Morelos","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":1655015,"modificationDate":"2019-11-03"}, -{"geonameId":"3128760","name":"Barcelona","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":1621537,"modificationDate":"2019-09-05"}, -{"geonameId":"964137","name":"Pretoria","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":1619438,"modificationDate":"2019-09-05"}, -{"geonameId":"170063","name":"Aleppo","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":1602264,"modificationDate":"2019-09-05"}, -{"geonameId":"6077243","name":"Montréal","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":1600000,"modificationDate":"2019-02-25"}, -{"geonameId":"1785623","name":"Kunshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1600000,"modificationDate":"2017-09-07"}, -{"geonameId":"1701668","name":"Manila","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":1600000,"modificationDate":"2019-09-05"}, -{"geonameId":"1260086","name":"Patna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1599920,"modificationDate":"2018-12-14"}, -{"geonameId":"1275841","name":"Bhojpal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1599914,"modificationDate":"2020-06-10"}, -{"geonameId":"3663517","name":"Manaus","countryName":"Brazil","timeZoneName":"America/Manaus","timeZoneOffsetNameWithoutDst":"Amazon Time","population":1598210,"modificationDate":"2019-02-26"}, -{"geonameId":"1788534","name":"Xinyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1590668,"modificationDate":"2018-12-06"}, -{"geonameId":"2335727","name":"Kaduna","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":1582102,"modificationDate":"2019-09-05"}, -{"geonameId":"1821306","name":"Phnom Penh","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":1573544,"modificationDate":"2019-09-05"}, -{"geonameId":"170654","name":"Damascus","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":1569394,"modificationDate":"2019-09-05"}, -{"geonameId":"4560349","name":"Philadelphia","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":1567442,"modificationDate":"2019-09-05"}, -{"geonameId":"5308655","name":"Phoenix","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":1563025,"modificationDate":"2019-09-05"}, -{"geonameId":"418863","name":"Isfahan","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":1547164,"modificationDate":"2019-09-05"}, -{"geonameId":"1264728","name":"Ludhiāna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1545368,"modificationDate":"2017-03-07"}, -{"geonameId":"890299","name":"Harare","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":1542813,"modificationDate":"2019-09-05"}, -{"geonameId":"1859171","name":"Kobe","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":1528478,"modificationDate":"2019-09-16"}, -{"geonameId":"1649378","name":"Bekasi","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":1520119,"modificationDate":"2019-09-05"}, -{"geonameId":"1673820","name":"Kaohsiung","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":1519711,"modificationDate":"2017-09-26"}, -{"geonameId":"2673730","name":"Stockholm","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":1515017,"modificationDate":"2019-11-28"}, -{"geonameId":"1720151","name":"Caloocan City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":1500000,"modificationDate":"2017-12-13"}, -{"geonameId":"4005539","name":"Guadalajara","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":1495182,"modificationDate":"2019-09-05"}, -{"geonameId":"5125771","name":"Manhattan","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":1487536,"modificationDate":"2019-07-09"}, -{"geonameId":"3439389","name":"Asunción","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":1482200,"modificationDate":"2019-09-05"}, -{"geonameId":"3390760","name":"Recife","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":1478098,"modificationDate":"2019-09-05"}, -{"geonameId":"1835235","name":"Daejeon","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":1475221,"modificationDate":"2019-09-05"}, -{"geonameId":"4726206","name":"San Antonio","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":1469845,"modificationDate":"2019-09-19"}, -{"geonameId":"2298890","name":"Kumasi","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":1468609,"modificationDate":"2019-12-06"}, -{"geonameId":"1736376","name":"Kota Bharu","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":1459994,"modificationDate":"2019-04-10"}, -{"geonameId":"1857910","name":"Kyoto","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":1459640,"modificationDate":"2019-09-05"}, -{"geonameId":"1735161","name":"Kuala Lumpur","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":1453975,"modificationDate":"2019-09-05"}, -{"geonameId":"128747","name":"Karaj","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":1448075,"modificationDate":"2013-06-15"}, -{"geonameId":"1283240","name":"Kathmandu","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":1442271,"modificationDate":"2019-10-18"}, -{"geonameId":"1633070","name":"Palembang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":1441500,"modificationDate":"2019-09-05"}, -{"geonameId":"1169825","name":"Multan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":1437230,"modificationDate":"2019-12-06"}, -{"geonameId":"1254361","name":"Tirunelveli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1435844,"modificationDate":"2017-08-27"}, -{"geonameId":"3521081","name":"Puebla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":1434062,"modificationDate":"2019-10-09"}, -{"geonameId":"1581130","name":"Hanoi","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":1431270,"modificationDate":"2019-09-05"}, -{"geonameId":"706483","name":"Kharkiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":1430885,"modificationDate":"2017-06-22"}, -{"geonameId":"1279259","name":"Agra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1430055,"modificationDate":"2016-10-17"}, -{"geonameId":"3860259","name":"Córdoba","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":1428214,"modificationDate":"2019-09-05"}, -{"geonameId":"113646","name":"Tabriz","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":1424641,"modificationDate":"2019-09-05"}, -{"geonameId":"1496747","name":"Novosibirsk","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":1419007,"modificationDate":"2019-09-05"}, -{"geonameId":"1841811","name":"Gwangju","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":1416938,"modificationDate":"2019-09-05"}, -{"geonameId":"750269","name":"Bursa","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":1412701,"modificationDate":"2019-09-05"}, -{"geonameId":"1253573","name":"Vadodara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1409476,"modificationDate":"2014-10-13"}, -{"geonameId":"3405870","name":"Belém","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":1407737,"modificationDate":"2014-05-12"}, -{"geonameId":"2037355","name":"Fushun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1400646,"modificationDate":"2017-12-09"}, -{"geonameId":"3652462","name":"Quito","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":1399814,"modificationDate":"2019-09-05"}, -{"geonameId":"5391811","name":"San Diego","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":1394928,"modificationDate":"2019-09-05"}, -{"geonameId":"1863967","name":"Fukuoka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":1392289,"modificationDate":"2017-04-09"}, -{"geonameId":"1070940","name":"Antananarivo","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":1391433,"modificationDate":"2020-05-28"}, -{"geonameId":"1801792","name":"Luoyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1390581,"modificationDate":"2019-09-05"}, -{"geonameId":"1176734","name":"Hyderabad","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":1386330,"modificationDate":"2019-12-06"}, -{"geonameId":"5110266","name":"The Bronx","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":1385108,"modificationDate":"2018-02-07"}, -{"geonameId":"3625549","name":"Valencia","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":1385083,"modificationDate":"2019-09-05"}, -{"geonameId":"1177662","name":"Gujranwala","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":1384471,"modificationDate":"2019-12-06"}, -{"geonameId":"3689147","name":"Barranquilla","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":1380425,"modificationDate":"2019-09-05"}, -{"geonameId":"1802875","name":"Guankou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1380000,"modificationDate":"2013-09-06"}, -{"geonameId":"922704","name":"Lubumbashi","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":1373770,"modificationDate":"2019-09-05"}, -{"geonameId":"3452925","name":"Porto Alegre","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":1372741,"modificationDate":"2019-09-05"}, -{"geonameId":"1625084","name":"Tangerang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":1372124,"modificationDate":"2019-09-05"}, -{"geonameId":"1262111","name":"Najafgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1365000,"modificationDate":"2019-07-18"}, -{"geonameId":"3904906","name":"Santa Cruz de la Sierra","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":1364389,"modificationDate":"2016-11-04"}, -{"geonameId":"1808963","name":"Handan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1358318,"modificationDate":"2012-01-18"}, -{"geonameId":"232422","name":"Kampala","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":1353189,"modificationDate":"2019-09-05"}, -{"geonameId":"1486209","name":"Yekaterinburg","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":1349772,"modificationDate":"2019-10-28"}, -{"geonameId":"1336135","name":"Khulna","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":1342339,"modificationDate":"2016-11-09"}, -{"geonameId":"2232593","name":"Douala","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":1338082,"modificationDate":"2019-09-05"}, -{"geonameId":"1270926","name":"Gorakhpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1324570,"modificationDate":"2017-09-05"}, -{"geonameId":"292672","name":"Sharjah","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":1324473,"modificationDate":"2019-09-05"}, -{"geonameId":"104515","name":"Mecca","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":1323624,"modificationDate":"2020-05-28"}, -{"geonameId":"1622786","name":"Makassar","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":1321717,"modificationDate":"2019-04-10"}, -{"geonameId":"4013708","name":"Ciudad Juárez","countryName":"Mexico","timeZoneName":"America/Ojinaga","timeZoneOffsetNameWithoutDst":"Mountain Time","population":1321004,"modificationDate":"2020-06-18"}, -{"geonameId":"1859642","name":"Kawasaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":1306785,"modificationDate":"2019-09-05"}, -{"geonameId":"8581443","name":"South Tangerang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":1303569,"modificationDate":"2013-11-29"}, -{"geonameId":"2038432","name":"Baotou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1301768,"modificationDate":"2020-02-22"}, -{"geonameId":"3981609","name":"Tijuana","countryName":"Mexico","timeZoneName":"America/Tijuana","timeZoneOffsetNameWithoutDst":"Pacific Time","population":1300983,"modificationDate":"2019-09-05"}, -{"geonameId":"4684888","name":"Dallas","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":1300092,"modificationDate":"2019-09-05"}, -{"geonameId":"109223","name":"Medina","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":1300000,"modificationDate":"2019-09-05"}, -{"geonameId":"2220957","name":"Yaoundé","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":1299369,"modificationDate":"2019-09-05"}, -{"geonameId":"2460596","name":"Bamako","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":1297281,"modificationDate":"2015-06-03"}, -{"geonameId":"1261731","name":"Nashik","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1289497,"modificationDate":"2014-10-13"}, -{"geonameId":"1627896","name":"Semarang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":1288084,"modificationDate":"2019-09-05"}, -{"geonameId":"2260535","name":"Brazzaville","countryName":"Republic of the Congo","timeZoneName":"Africa/Brazzaville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":1284609,"modificationDate":"2012-04-25"}, -{"geonameId":"1259652","name":"Pimpri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1284606,"modificationDate":"2014-10-13"}, -{"geonameId":"520555","name":"Nizhniy Novgorod","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":1284164,"modificationDate":"2016-12-20"}, -{"geonameId":"250441","name":"Amman","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":1275857,"modificationDate":"2019-09-05"}, -{"geonameId":"1723510","name":"Budta","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":1273715,"modificationDate":"2017-12-13"}, -{"geonameId":"792680","name":"Belgrade","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":1273651,"modificationDate":"2020-01-31"}, -{"geonameId":"3441575","name":"Montevideo","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":1270737,"modificationDate":"2019-09-05"}, -{"geonameId":"909137","name":"Lusaka","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":1267440,"modificationDate":"2019-09-05"}, -{"geonameId":"1788046","name":"Xuchang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1265536,"modificationDate":"2018-12-06"}, -{"geonameId":"1268295","name":"Kalyān","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1262255,"modificationDate":"2014-10-13"}, -{"geonameId":"1254661","name":"Tanna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1261517,"modificationDate":"2020-06-10"}, -{"geonameId":"2867714","name":"Munich","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":1260391,"modificationDate":"2019-09-05"}, -{"geonameId":"268743","name":"Ra’s Bayrūt","countryName":"Lebanon","timeZoneName":"Asia/Beirut","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":1251739,"modificationDate":"2006-01-17"}, -{"geonameId":"115019","name":"Shiraz","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":1249942,"modificationDate":"2019-09-05"}, -{"geonameId":"325363","name":"Adana","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":1248988,"modificationDate":"2020-01-08"}, -{"geonameId":"1835553","name":"Suwon","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":1242724,"modificationDate":"2017-10-04"}, -{"geonameId":"3998655","name":"León de los Aldama","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":1238962,"modificationDate":"2018-11-03"}, -{"geonameId":"3173435","name":"Milan","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":1236837,"modificationDate":"2020-05-28"}, -{"geonameId":"3718426","name":"Port-au-Prince","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":1234742,"modificationDate":"2019-09-05"}, -{"geonameId":"2078025","name":"Adelaide","countryName":"Australia","timeZoneName":"Australia/Adelaide","timeZoneOffsetNameWithoutDst":"Australian Central Time","population":1225235,"modificationDate":"2020-06-19"}, -{"geonameId":"1263214","name":"Meerut","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1223184,"modificationDate":"2015-05-06"}, -{"geonameId":"1261162","name":"Nowrangapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1220946,"modificationDate":"2014-10-14"}, -{"geonameId":"1271951","name":"Faridabad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1220229,"modificationDate":"2017-05-06"}, -{"geonameId":"1168197","name":"Peshawar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":1218773,"modificationDate":"2019-12-06"}, -{"geonameId":"1715348","name":"Davao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":1212504,"modificationDate":"2017-12-13"}, -{"geonameId":"1311874","name":"Mandalay","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":1208099,"modificationDate":"2019-09-05"}, -{"geonameId":"1927639","name":"Yueyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1200000,"modificationDate":"2018-12-06"}, -{"geonameId":"3492914","name":"Santiago de los Caballeros","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":1200000,"modificationDate":"2016-06-05"}, -{"geonameId":"365137","name":"Omdurman","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":1200000,"modificationDate":"2012-02-02"}, -{"geonameId":"2038632","name":"Anshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1199275,"modificationDate":"2018-12-06"}, -{"geonameId":"1787824","name":"Tongshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1199193,"modificationDate":"2016-03-19"}, -{"geonameId":"1271308","name":"Ghāziābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1199191,"modificationDate":"2018-07-13"}, -{"geonameId":"1645524","name":"Depok","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":1198129,"modificationDate":"2018-04-24"}, -{"geonameId":"6940394","name":"Saitama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":1193350,"modificationDate":"2017-07-22"}, -{"geonameId":"1272423","name":"Dombivli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1193000,"modificationDate":"2014-10-13"}, -{"geonameId":"1040652","name":"Maputo","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":1191613,"modificationDate":"2019-09-05"}, -{"geonameId":"3514674","name":"Gustavo Adolfo Madero","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":1185772,"modificationDate":"2018-11-03"}, -{"geonameId":"1810821","name":"Fuzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1179720,"modificationDate":"2019-02-26"}, -{"geonameId":"1258847","name":"Rājkot","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1177362,"modificationDate":"2017-03-17"}, -{"geonameId":"3838583","name":"Rosario","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":1173533,"modificationDate":"2015-04-22"}, -{"geonameId":"1809461","name":"Guiyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1171633,"modificationDate":"2018-12-06"}, -{"geonameId":"3462377","name":"Goiânia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":1171195,"modificationDate":"2010-01-21"}, -{"geonameId":"3461786","name":"Guarulhos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":1169577,"modificationDate":"2017-12-12"}, -{"geonameId":"3067696","name":"Prague","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":1165581,"modificationDate":"2020-05-28"}, -{"geonameId":"1253405","name":"Varanasi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1164404,"modificationDate":"2019-05-07"}, -{"geonameId":"6295587","name":"Batam","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":1164352,"modificationDate":"2019-01-13"}, -{"geonameId":"2618425","name":"Copenhagen","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":1153615,"modificationDate":"2012-11-26"}, -{"geonameId":"727011","name":"Sofia","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":1152556,"modificationDate":"2019-09-05"}, -{"geonameId":"2210247","name":"Tripoli","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":1150989,"modificationDate":"2019-09-05"}, -{"geonameId":"2324774","name":"Port Harcourt","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":1148665,"modificationDate":"2019-09-05"}, -{"geonameId":"1862415","name":"Hiroshima","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":1143841,"modificationDate":"2018-12-25"}, -{"geonameId":"3979770","name":"Zapopan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":1142483,"modificationDate":"2019-09-05"}, -{"geonameId":"1813253","name":"Lijiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1137600,"modificationDate":"2014-01-05"}, -{"geonameId":"3995465","name":"Monterrey","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":1135512,"modificationDate":"2019-09-05"}, -{"geonameId":"499099","name":"Samara","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":1134730,"modificationDate":"2019-09-05"}, -{"geonameId":"1496153","name":"Omsk","countryName":"Russia","timeZoneName":"Asia/Omsk","timeZoneOffsetNameWithoutDst":"Omsk Time","population":1129281,"modificationDate":"2019-09-05"}, -{"geonameId":"2347283","name":"Benin City","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":1125058,"modificationDate":"2016-01-30"}, -{"geonameId":"1978681","name":"Malingao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":1121974,"modificationDate":"2017-12-13"}, -{"geonameId":"587084","name":"Baku","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":1116513,"modificationDate":"2019-09-05"}, -{"geonameId":"2331447","name":"Maiduguri","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":1112449,"modificationDate":"2019-05-17"}, -{"geonameId":"551487","name":"Kazan","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":1104738,"modificationDate":"2019-09-05"}, -{"geonameId":"3530589","name":"Ciudad Nezahualcoyotl","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":1104585,"modificationDate":"2019-02-27"}, -{"geonameId":"616052","name":"Yerevan","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":1093485,"modificationDate":"2019-09-05"}, -{"geonameId":"1278710","name":"Amritsar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1092450,"modificationDate":"2015-11-08"}, -{"geonameId":"2357048","name":"Ouagadougou","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":1086505,"modificationDate":"2019-09-05"}, -{"geonameId":"1848254","name":"Yono","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":1077730,"modificationDate":"2018-02-22"}, -{"geonameId":"501175","name":"Rostov-na-Donu","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":1074482,"modificationDate":"2019-09-05"}, -{"geonameId":"1278994","name":"Alla Abba Habab","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1073438,"modificationDate":"2020-06-10"}, -{"geonameId":"1842485","name":"Goyang-si","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":1073069,"modificationDate":"2014-01-30"}, -{"geonameId":"314830","name":"Gaziantep","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":1065975,"modificationDate":"2020-02-13"}, -{"geonameId":"1253102","name":"Visakhapatnam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1063178,"modificationDate":"2019-09-05"}, -{"geonameId":"2111149","name":"Sendai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":1063103,"modificationDate":"2019-02-27"}, -{"geonameId":"1508291","name":"Chelyabinsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":1062919,"modificationDate":"2019-09-05"}, -{"geonameId":"2037799","name":"Datong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1052678,"modificationDate":"2012-01-18"}, -{"geonameId":"611717","name":"Tbilisi","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":1049498,"modificationDate":"2019-12-03"}, -{"geonameId":"7283386","name":"Changshu City","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1047700,"modificationDate":"2010-03-23"}, -{"geonameId":"1668399","name":"Taichung","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":1040725,"modificationDate":"2017-09-26"}, -{"geonameId":"1254745","name":"Teni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1034724,"modificationDate":"2017-08-02"}, -{"geonameId":"1790353","name":"Xianyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1034081,"modificationDate":"2012-01-18"}, -{"geonameId":"479561","name":"Ufa","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":1033338,"modificationDate":"2019-09-05"}, -{"geonameId":"1897000","name":"Seongnam-si","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":1031935,"modificationDate":"2014-01-19"}, -{"geonameId":"3467865","name":"Campinas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":1031554,"modificationDate":"2019-09-05"}, -{"geonameId":"1269633","name":"Jabalpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1030168,"modificationDate":"2014-10-14"}, -{"geonameId":"1270396","name":"Howrah","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1027672,"modificationDate":"2020-06-10"}, -{"geonameId":"1807681","name":"Huainan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1027655,"modificationDate":"2018-04-06"}, -{"geonameId":"5392171","name":"San Jose","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":1026908,"modificationDate":"2019-09-05"}, -{"geonameId":"709717","name":"Donetsk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":1024700,"modificationDate":"2019-09-05"}, -{"geonameId":"2964574","name":"Dublin","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":1024027,"modificationDate":"2020-04-09"}, -{"geonameId":"5913490","name":"Calgary","countryName":"Canada","timeZoneName":"America/Edmonton","timeZoneOffsetNameWithoutDst":"Mountain Time","population":1019942,"modificationDate":"2019-09-05"}, -{"geonameId":"2800866","name":"Brussels","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":1019022,"modificationDate":"2020-05-28"}, -{"geonameId":"1278149","name":"Aurangabad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1016441,"modificationDate":"2019-03-29"}, -{"geonameId":"698740","name":"Odessa","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":1013159,"modificationDate":"2020-04-13"}, -{"geonameId":"472757","name":"Volgograd","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":1011417,"modificationDate":"2019-09-05"}, -{"geonameId":"3456160","name":"Nova Iguaçu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":1002118,"modificationDate":"2012-03-10"}, -{"geonameId":"1797121","name":"Jieyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1001985,"modificationDate":"2014-01-07"}, -{"geonameId":"7602670","name":"Zhu Cheng City","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":1000000,"modificationDate":"2010-11-25"}, -{"geonameId":"6943660","name":"Shivaji Nagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":1000000,"modificationDate":"2019-06-06"}, -{"geonameId":"709930","name":"Dnipro","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":998103,"modificationDate":"2020-05-23"}, -{"geonameId":"1859307","name":"Kitakyushu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":997536,"modificationDate":"2017-07-22"}, -{"geonameId":"1256436","name":"Solāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":997281,"modificationDate":"2017-03-21"}, -{"geonameId":"1816971","name":"Baoding","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":995652,"modificationDate":"2013-07-21"}, -{"geonameId":"3598132","name":"Guatemala City","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":994938,"modificationDate":"2017-06-20"}, -{"geonameId":"2038300","name":"Benxi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":987717,"modificationDate":"2018-12-06"}, -{"geonameId":"2655603","name":"Birmingham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":984333,"modificationDate":"2019-09-05"}, -{"geonameId":"511196","name":"Perm","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":982419,"modificationDate":"2019-09-05"}, -{"geonameId":"1255634","name":"Srinagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":975857,"modificationDate":"2019-09-05"}, -{"geonameId":"2317765","name":"Zaria","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":975153,"modificationDate":"2016-06-22"}, -{"geonameId":"3617763","name":"Managua","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":973087,"modificationDate":"2019-09-05"}, -{"geonameId":"964420","name":"Port Elizabeth","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":967677,"modificationDate":"2019-09-05"}, -{"geonameId":"2548885","name":"Fez","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":964891,"modificationDate":"2020-06-11"}, -{"geonameId":"2886242","name":"Köln","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":963395,"modificationDate":"2019-09-05"}, -{"geonameId":"1833747","name":"Ulsan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":962865,"modificationDate":"2014-01-12"}, -{"geonameId":"1274746","name":"Chandigarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":960787,"modificationDate":"2020-06-10"}, -{"geonameId":"1273865","name":"Coimbatore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":959823,"modificationDate":"2015-07-21"}, -{"geonameId":"3172394","name":"Naples","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":959470,"modificationDate":"2019-09-19"}, -{"geonameId":"3395981","name":"Maceió","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":954991,"modificationDate":"2010-01-21"}, -{"geonameId":"3687238","name":"Cartagena","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":952024,"modificationDate":"2018-04-20"}, -{"geonameId":"1815456","name":"Changzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":949018,"modificationDate":"2012-10-06"}, -{"geonameId":"101760","name":"Sulţānah","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":946697,"modificationDate":"2012-01-16"}, -{"geonameId":"2274895","name":"Monrovia","countryName":"Liberia","timeZoneName":"Africa/Monrovia","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":939524,"modificationDate":"2019-09-05"}, -{"geonameId":"3489854","name":"Kingston","countryName":"Jamaica","timeZoneName":"America/Jamaica","timeZoneOffsetNameWithoutDst":"Eastern Time","population":937700,"modificationDate":"2015-06-03"}, -{"geonameId":"95446","name":"Erbil","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":932800,"modificationDate":"2018-02-06"}, -{"geonameId":"4671654","name":"Austin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":931830,"modificationDate":"2019-09-05"}, -{"geonameId":"1502026","name":"Krasnoyarsk","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":927200,"modificationDate":"2017-06-22"}, -{"geonameId":"6611854","name":"Nay Pyi Taw","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":925000,"modificationDate":"2017-09-27"}, -{"geonameId":"1268865","name":"Jodhpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":921476,"modificationDate":"2014-10-14"}, -{"geonameId":"2113015","name":"Chiba","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":919729,"modificationDate":"2017-04-09"}, -{"geonameId":"3388368","name":"São Luís","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":917237,"modificationDate":"2017-12-27"}, -{"geonameId":"1264521","name":"Madurai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":909908,"modificationDate":"2019-07-10"}, -{"geonameId":"2537763","name":"Sale","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":903485,"modificationDate":"2016-11-04"}, -{"geonameId":"1807700","name":"Huaibei","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":903039,"modificationDate":"2012-01-18"}, -{"geonameId":"3919968","name":"Cochabamba","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":900414,"modificationDate":"2012-01-19"}, -{"geonameId":"2293521","name":"Abobo","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":900000,"modificationDate":"2019-02-26"}, -{"geonameId":"1804879","name":"Kaifeng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":900000,"modificationDate":"2019-09-05"}, -{"geonameId":"100077","name":"Abū Ghurayb","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":900000,"modificationDate":"2015-01-07"}, -{"geonameId":"119208","name":"Qom","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":900000,"modificationDate":"2019-09-05"}, -{"geonameId":"1528675","name":"Bishkek","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":900000,"modificationDate":"2019-09-05"}, -{"geonameId":"1271476","name":"Guwahati","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":899094,"modificationDate":"2015-06-03"}, -{"geonameId":"2353151","name":"Aba","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":897560,"modificationDate":"2016-01-30"}, -{"geonameId":"1798827","name":"Pingdingshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":889675,"modificationDate":"2012-01-18"}, -{"geonameId":"1270583","name":"Gwalior","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":882458,"modificationDate":"2014-10-14"}, -{"geonameId":"2035265","name":"Qiqihar","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":882364,"modificationDate":"2017-07-21"}, -{"geonameId":"1732905","name":"Klang","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":879867,"modificationDate":"2019-04-10"}, -{"geonameId":"3844421","name":"Mendoza","countryName":"Argentina","timeZoneName":"America/Argentina/Mendoza","timeZoneOffsetNameWithoutDst":"Argentina Time","population":876884,"modificationDate":"2019-09-05"}, -{"geonameId":"306571","name":"Konya","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":875530,"modificationDate":"2019-09-05"}, -{"geonameId":"209228","name":"Mbuji-Mayi","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":874761,"modificationDate":"2012-06-11"}, -{"geonameId":"1253184","name":"Vijayawada","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":874587,"modificationDate":"2019-05-07"}, -{"geonameId":"2246678","name":"Pikine","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":874062,"modificationDate":"2012-12-05"}, -{"geonameId":"3165524","name":"Turin","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":870456,"modificationDate":"2019-09-05"}, -{"geonameId":"1262321","name":"Mysore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":868313,"modificationDate":"2019-04-01"}, -{"geonameId":"4160021","name":"Jacksonville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":868031,"modificationDate":"2017-03-09"}, -{"geonameId":"1791388","name":"Wenzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":865672,"modificationDate":"2012-01-18"}, -{"geonameId":"5391959","name":"San Francisco","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":864816,"modificationDate":"2019-09-05"}, -{"geonameId":"2644210","name":"Liverpool","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":864122,"modificationDate":"2019-09-05"}, -{"geonameId":"498677","name":"Saratov","countryName":"Russia","timeZoneName":"Europe/Saratov","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":863725,"modificationDate":"2019-09-05"}, -{"geonameId":"12069922","name":"Rohini","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":860000,"modificationDate":"2019-07-18"}, -{"geonameId":"3600949","name":"Tegucigalpa","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":850848,"modificationDate":"2019-09-05"}, -{"geonameId":"1838716","name":"Bucheon-si","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":850731,"modificationDate":"2014-01-19"}, -{"geonameId":"4509177","name":"Columbus","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":850106,"modificationDate":"2019-09-05"}, -{"geonameId":"472045","name":"Voronezh","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":848752,"modificationDate":"2019-09-04"}, -{"geonameId":"1258526","name":"Ranchi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":846454,"modificationDate":"2019-03-16"}, -{"geonameId":"2028462","name":"Ulan Bator","countryName":"Mongolia","timeZoneName":"Asia/Ulaanbaatar","timeZoneOffsetNameWithoutDst":"Ulaanbaatar Time","population":844818,"modificationDate":"2018-08-23"}, -{"geonameId":"1821940","name":"Takeo","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":843931,"modificationDate":"2013-08-04"}, -{"geonameId":"144448","name":"Ahvaz","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":841145,"modificationDate":"2019-09-05"}, -{"geonameId":"3947322","name":"Arequipa","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":841130,"modificationDate":"2019-09-05"}, -{"geonameId":"1633419","name":"Padang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":840352,"modificationDate":"2019-09-05"}, -{"geonameId":"1269920","name":"Hubli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":840214,"modificationDate":"2018-01-11"}, -{"geonameId":"1785412","name":"Zhabei","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":840000,"modificationDate":"2018-11-28"}, -{"geonameId":"2542997","name":"Marrakesh","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":839296,"modificationDate":"2016-11-03"}, -{"geonameId":"1645528","name":"Denpasar","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":834881,"modificationDate":"2019-09-05"}, -{"geonameId":"1771023","name":"Kampung Baru Subang","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":833571,"modificationDate":"2012-02-19"}, -{"geonameId":"4691930","name":"Fort Worth","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":833319,"modificationDate":"2019-09-05"}, -{"geonameId":"4259418","name":"Indianapolis","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":829718,"modificationDate":"2019-09-05"}, -{"geonameId":"4460243","name":"Charlotte","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":827097,"modificationDate":"2019-09-05"}, -{"geonameId":"3464374","name":"Duque de Caxias","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":818329,"modificationDate":"2014-11-03"}, -{"geonameId":"2335953","name":"Jos","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":816824,"modificationDate":"2016-01-30"}, -{"geonameId":"2509954","name":"Valencia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":814208,"modificationDate":"2019-09-05"}, -{"geonameId":"2337639","name":"Ilorin","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":814192,"modificationDate":"2019-09-05"}, -{"geonameId":"3946083","name":"Callao","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":813264,"modificationDate":"2019-09-05"}, -{"geonameId":"3911925","name":"La Paz","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":812799,"modificationDate":"2019-09-05"}, -{"geonameId":"6094817","name":"Ottawa","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":812129,"modificationDate":"2019-09-05"}, -{"geonameId":"3648522","name":"Barquisimeto","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":809490,"modificationDate":"2019-09-05"}, -{"geonameId":"4014338","name":"Chihuahua","countryName":"Mexico","timeZoneName":"America/Chihuahua","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":809232,"modificationDate":"2014-10-17"}, -{"geonameId":"1799869","name":"Nanning","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":803788,"modificationDate":"2012-01-18"}, -{"geonameId":"2409306","name":"Freetown","countryName":"Sierra Leone","timeZoneName":"Africa/Freetown","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":802639,"modificationDate":"2019-10-28"}, -{"geonameId":"1732752","name":"Johor Bahru","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":802489,"modificationDate":"2012-01-17"}, -{"geonameId":"281184","name":"Jerusalem","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":801000,"modificationDate":"2019-09-05"}, -{"geonameId":"1624917","name":"Bandar Lampung","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":800348,"modificationDate":"2016-04-10"}, -{"geonameId":"1648473","name":"Bogor","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":800000,"modificationDate":"2012-01-17"}, -{"geonameId":"1261809","name":"Narela","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":800000,"modificationDate":"2019-07-18"}, -{"geonameId":"186301","name":"Mombasa","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":799668,"modificationDate":"2019-09-05"}, -{"geonameId":"1717512","name":"Cebu City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":798634,"modificationDate":"2017-12-13"}, -{"geonameId":"287286","name":"Muscat","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":797000,"modificationDate":"2019-09-05"}, -{"geonameId":"2995469","name":"Marseille","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":794811,"modificationDate":"2020-05-15"}, -{"geonameId":"250090","name":"Zarqa","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":792665,"modificationDate":"2013-04-21"}, -{"geonameId":"3522790","name":"Naucalpan de Juárez","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":792211,"modificationDate":"2018-11-03"}, -{"geonameId":"6955677","name":"Çankaya","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":792189,"modificationDate":"2019-02-27"}, -{"geonameId":"1167460","name":"Rahim Yar Khan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":788915,"modificationDate":"2017-09-26"}, -{"geonameId":"10630176","name":"Pasragad Branch","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":787878,"modificationDate":"2015-09-02"}, -{"geonameId":"2474141","name":"Boumerdas","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":786499,"modificationDate":"2020-06-02"}, -{"geonameId":"1268782","name":"Jalandhar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":785178,"modificationDate":"2018-10-19"}, -{"geonameId":"1254163","name":"Thiruvananthapuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":784153,"modificationDate":"2020-05-01"}, -{"geonameId":"1853195","name":"Sakai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":782339,"modificationDate":"2017-07-22"}, -{"geonameId":"1785294","name":"Anyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":781129,"modificationDate":"2018-12-06"}, -{"geonameId":"3836873","name":"San Miguel de Tucumán","countryName":"Argentina","timeZoneName":"America/Argentina/Tucuman","timeZoneOffsetNameWithoutDst":"Argentina Time","population":781023,"modificationDate":"2019-09-05"}, -{"geonameId":"2394819","name":"Cotonou","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":780000,"modificationDate":"2019-09-05"}, -{"geonameId":"1257629","name":"Salem","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":778396,"modificationDate":"2019-09-05"}, -{"geonameId":"3523349","name":"Mérida","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":777615,"modificationDate":"2019-10-07"}, -{"geonameId":"1254388","name":"Tiruchirappalli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":775484,"modificationDate":"2014-10-14"}, -{"geonameId":"169577","name":"Homs","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":775404,"modificationDate":"2019-09-05"}, -{"geonameId":"2036892","name":"Hohhot","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":774477,"modificationDate":"2017-07-21"}, -{"geonameId":"2440485","name":"Niamey","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":774235,"modificationDate":"2019-09-05"}, -{"geonameId":"1668355","name":"Tainan","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":771235,"modificationDate":"2019-09-05"}, -{"geonameId":"1817720","name":"Shangyu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":770000,"modificationDate":"2010-08-09"}, -{"geonameId":"3093133","name":"Łódź","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":768755,"modificationDate":"2019-10-08"}, -{"geonameId":"110336","name":"Dammam","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":768602,"modificationDate":"2014-08-19"}, -{"geonameId":"1788852","name":"Xining","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":767531,"modificationDate":"2019-09-05"}, -{"geonameId":"23814","name":"Kahrīz","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":766706,"modificationDate":"2012-01-16"}, -{"geonameId":"1266049","name":"Kota","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":763088,"modificationDate":"2019-02-28"}, -{"geonameId":"3394023","name":"Natal","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":763043,"modificationDate":"2019-02-27"}, -{"geonameId":"1275817","name":"Bhubaneshwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":762243,"modificationDate":"2014-10-14"}, -{"geonameId":"1797595","name":"Qinhuangdao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":759718,"modificationDate":"2018-12-06"}, -{"geonameId":"1808370","name":"Hengyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":759602,"modificationDate":"2018-12-06"}, -{"geonameId":"323777","name":"Antalya","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":758188,"modificationDate":"2019-09-05"}, -{"geonameId":"3094802","name":"Kraków","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":755050,"modificationDate":"2019-09-05"}, -{"geonameId":"1279017","name":"Koil","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":753207,"modificationDate":"2020-06-10"}, -{"geonameId":"1583992","name":"Da Nang","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":752493,"modificationDate":"2017-06-29"}, -{"geonameId":"965301","name":"Pietermaritzburg","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":750845,"modificationDate":"2019-09-05"}, -{"geonameId":"2365267","name":"Lomé","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":749700,"modificationDate":"2019-09-05"}, -{"geonameId":"3691175","name":"Trujillo","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":747450,"modificationDate":"2019-09-05"}, -{"geonameId":"1636722","name":"Malang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":746716,"modificationDate":"2013-05-20"}, -{"geonameId":"3645528","name":"Ciudad Guayana","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":746535,"modificationDate":"2016-03-23"}, -{"geonameId":"1277013","name":"Bareilly","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":745435,"modificationDate":"2017-05-07"}, -{"geonameId":"202061","name":"Kigali","countryName":"Rwanda","timeZoneName":"Africa/Kigali","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":745261,"modificationDate":"2019-09-05"}, -{"geonameId":"3386496","name":"Teresina","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":744512,"modificationDate":"2019-09-05"}, -{"geonameId":"1788572","name":"Xinxiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":743601,"modificationDate":"2018-12-06"}, -{"geonameId":"3449344","name":"São Bernardo do Campo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":743372,"modificationDate":"2014-03-05"}, -{"geonameId":"2036986","name":"Hegang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":743307,"modificationDate":"2019-05-07"}, -{"geonameId":"456172","name":"Riga","countryName":"Latvia","timeZoneName":"Europe/Riga","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":742572,"modificationDate":"2019-09-05"}, -{"geonameId":"2759794","name":"Amsterdam","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":741636,"modificationDate":"2020-06-01"}, -{"geonameId":"687700","name":"Zaporizhzhya","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":738728,"modificationDate":"2020-05-21"}, -{"geonameId":"2325200","name":"Oyo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":736072,"modificationDate":"2016-01-30"}, -{"geonameId":"1167528","name":"Quetta","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":733675,"modificationDate":"2019-12-06"}, -{"geonameId":"2641170","name":"Nottingham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":729977,"modificationDate":"2019-02-26"}, -{"geonameId":"3467747","name":"Campo Grande","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":729151,"modificationDate":"2019-09-05"}, -{"geonameId":"162183","name":"Ashgabat","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":727700,"modificationDate":"2019-09-05"}, -{"geonameId":"3514663","name":"Álvaro Obregón","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":726664,"modificationDate":"2018-11-03"}, -{"geonameId":"1169607","name":"Muzaffarābād","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":725000,"modificationDate":"2019-12-06"}, -{"geonameId":"751324","name":"Bağcılar","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":724270,"modificationDate":"2014-02-23"}, -{"geonameId":"98463","name":"Sulaimaniya","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":723170,"modificationDate":"2020-06-10"}, -{"geonameId":"3985606","name":"San Luis","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":722772,"modificationDate":"2020-06-10"}, -{"geonameId":"4019233","name":"Aguascalientes","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":722250,"modificationDate":"2018-11-03"}, -{"geonameId":"3685533","name":"Cúcuta","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":721398,"modificationDate":"2019-09-05"}, -{"geonameId":"1262801","name":"Morādābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":721139,"modificationDate":"2018-07-13"}, -{"geonameId":"2427123","name":"N'Djamena","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":721081,"modificationDate":"2020-01-02"}, -{"geonameId":"1804540","name":"Langfang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":720119,"modificationDate":"2013-08-04"}, -{"geonameId":"1783873","name":"Zhumadian","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":720000,"modificationDate":"2014-08-13"}, -{"geonameId":"1787093","name":"Yantai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":719332,"modificationDate":"2017-06-29"}, -{"geonameId":"702550","name":"Lviv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":717803,"modificationDate":"2019-09-05"}, -{"geonameId":"4004898","name":"Hermosillo","countryName":"Mexico","timeZoneName":"America/Hermosillo","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":715061,"modificationDate":"2018-11-03"}, -{"geonameId":"5946768","name":"Edmonton","countryName":"Canada","timeZoneName":"America/Edmonton","timeZoneOffsetNameWithoutDst":"Mountain Time","population":712391,"modificationDate":"2019-09-05"}, -{"geonameId":"1845457","name":"Jeonju","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":711424,"modificationDate":"2019-01-10"}, -{"geonameId":"3988086","name":"Saltillo","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":709671,"modificationDate":"2018-11-03"}, -{"geonameId":"1783763","name":"Zhuzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":709358,"modificationDate":"2018-12-06"}, -{"geonameId":"8504423","name":"Subang Jaya","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":708296,"modificationDate":"2013-03-11"}, -{"geonameId":"1275901","name":"Bhiwandi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":707035,"modificationDate":"2014-10-13"}, -{"geonameId":"1631761","name":"Pekanbaru","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":703956,"modificationDate":"2016-04-10"}, -{"geonameId":"2510911","name":"Sevilla","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":703206,"modificationDate":"2019-09-05"}, -{"geonameId":"482283","name":"Togliatti","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":702879,"modificationDate":"2020-06-10"}, -{"geonameId":"3397838","name":"Jaboatão","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":702621,"modificationDate":"2012-08-03"}, -{"geonameId":"1851717","name":"Shizuoka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":701561,"modificationDate":"2019-09-05"}, -{"geonameId":"7874116","name":"Santo Domingo Oeste","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":701269,"modificationDate":"2016-06-05"}, -{"geonameId":"1185128","name":"Rampur Boalia","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":700133,"modificationDate":"2020-06-10"}, -{"geonameId":"8601412","name":"Santo Domingo Este","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":700000,"modificationDate":"2019-02-26"}, -{"geonameId":"8224624","name":"City of Balikpapan","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":700000,"modificationDate":"2012-03-25"}, -{"geonameId":"1183105","name":"Battagram","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":700000,"modificationDate":"2016-12-15"}, -{"geonameId":"1815463","name":"Changzhi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":699514,"modificationDate":"2012-01-18"}, -{"geonameId":"894701","name":"Bulawayo","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":699385,"modificationDate":"2019-09-05"}, -{"geonameId":"3186886","name":"Zagreb","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":698966,"modificationDate":"2019-09-05"}, -{"geonameId":"2561668","name":"Agadir","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":698310,"modificationDate":"2019-05-09"}, -{"geonameId":"3191281","name":"Sarajevo","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":696731,"modificationDate":"2019-09-05"}, -{"geonameId":"3432043","name":"La Plata","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":694167,"modificationDate":"2019-09-05"}, -{"geonameId":"2464470","name":"Tunis","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":693210,"modificationDate":"2019-09-05"}, -{"geonameId":"2033196","name":"Zhangjiakou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":692602,"modificationDate":"2013-10-06"}, -{"geonameId":"1783745","name":"Zigong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":689961,"modificationDate":"2017-07-08"}, -{"geonameId":"3996069","name":"Mexicali","countryName":"Mexico","timeZoneName":"America/Tijuana","timeZoneOffsetNameWithoutDst":"Pacific Time","population":689775,"modificationDate":"2019-09-05"}, -{"geonameId":"2037346","name":"Fuxin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":689050,"modificationDate":"2018-12-06"}, -{"geonameId":"2343279","name":"Enugu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":688862,"modificationDate":"2016-01-30"}, -{"geonameId":"2530335","name":"Tangier","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":688356,"modificationDate":"2016-11-02"}, -{"geonameId":"1807234","name":"Huangshi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":688090,"modificationDate":"2020-02-10"}, -{"geonameId":"2036113","name":"Liaoyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":687890,"modificationDate":"2014-01-10"}, -{"geonameId":"2638077","name":"Sheffield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":685368,"modificationDate":"2019-09-05"}, -{"geonameId":"5809844","name":"Seattle","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":684451,"modificationDate":"2019-09-05"}, -{"geonameId":"5419384","name":"Denver","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":682545,"modificationDate":"2019-09-05"}, -{"geonameId":"5520993","name":"El Paso","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":681124,"modificationDate":"2019-09-05"}, -{"geonameId":"1858421","name":"Kumamoto","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":680423,"modificationDate":"2017-07-21"}, -{"geonameId":"1258980","name":"Raipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":679995,"modificationDate":"2014-10-14"}, -{"geonameId":"1713022","name":"General Santos","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":679588,"modificationDate":"2017-12-13"}, -{"geonameId":"1221874","name":"Dushanbe","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":679400,"modificationDate":"2016-10-19"}, -{"geonameId":"3455775","name":"Osasco","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":677856,"modificationDate":"2012-09-27"}, -{"geonameId":"4990729","name":"Detroit","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":677116,"modificationDate":"2019-09-05"}, -{"geonameId":"4012176","name":"Cuilacan","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":675773,"modificationDate":"2020-06-10"}, -{"geonameId":"1039854","name":"Matola","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":675422,"modificationDate":"2013-07-04"}, -{"geonameId":"3104324","name":"Zaragoza","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":674317,"modificationDate":"2019-02-25"}, -{"geonameId":"1270927","name":"Gorakhpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":674246,"modificationDate":"2015-09-06"}, -{"geonameId":"1790492","name":"Xiangtan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":674189,"modificationDate":"2012-01-18"}, -{"geonameId":"4005492","name":"Guadalupe","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":673616,"modificationDate":"2018-11-03"}, -{"geonameId":"3533462","name":"Acapulco de Juárez","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":673479,"modificationDate":"2019-09-05"}, -{"geonameId":"1734634","name":"Ipoh","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":673318,"modificationDate":"2015-06-03"}, -{"geonameId":"6075357","name":"Mississauga","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":668549,"modificationDate":"2012-07-01"}, -{"geonameId":"4930956","name":"Boston","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":667137,"modificationDate":"2019-09-05"}, -{"geonameId":"1798422","name":"Puyang Chengguanzhen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":666322,"modificationDate":"2014-07-08"}, -{"geonameId":"1799722","name":"Nantong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":666251,"modificationDate":"2014-10-08"}, -{"geonameId":"2035715","name":"Mudanjiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":665915,"modificationDate":"2013-05-07"}, -{"geonameId":"264371","name":"Athens","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":664046,"modificationDate":"2019-10-23"}, -{"geonameId":"3449701","name":"Santo André","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":662373,"modificationDate":"2019-09-19"}, -{"geonameId":"2377450","name":"Nouakchott","countryName":"Mauritania","timeZoneName":"Africa/Nouakchott","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":661400,"modificationDate":"2019-09-05"}, -{"geonameId":"2255414","name":"Pointe-Noire","countryName":"Republic of the Congo","timeZoneName":"Africa/Brazzaville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":659084,"modificationDate":"2019-01-09"}, -{"geonameId":"4641239","name":"Memphis","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":655770,"modificationDate":"2019-09-05"}, -{"geonameId":"3515431","name":"Tlalnepantla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":653410,"modificationDate":"2018-11-03"}, -{"geonameId":"3397277","name":"João Pessoa","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":650883,"modificationDate":"2019-09-05"}, -{"geonameId":"1846918","name":"Ansan-si","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":650728,"modificationDate":"2015-06-03"}, -{"geonameId":"88319","name":"Benghazi","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":650629,"modificationDate":"2019-09-05"}, -{"geonameId":"2925533","name":"Frankfurt am Main","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":650000,"modificationDate":"2020-05-28"}, -{"geonameId":"542420","name":"Krasnodar","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":649851,"modificationDate":"2019-02-27"}, -{"geonameId":"1809498","name":"Guilin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":649352,"modificationDate":"2012-01-18"}, -{"geonameId":"2523920","name":"Palermo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":648260,"modificationDate":"2019-03-09"}, -{"geonameId":"1248991","name":"Colombo","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":648034,"modificationDate":"2019-09-05"}, -{"geonameId":"927967","name":"Lilongwe","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":646750,"modificationDate":"2019-09-05"}, -{"geonameId":"2485926","name":"Oran","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":645984,"modificationDate":"2019-09-05"}, -{"geonameId":"316541","name":"Diyarbekir","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":644763,"modificationDate":"2020-06-10"}, -{"geonameId":"1684308","name":"Taguig","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":644473,"modificationDate":"2017-12-15"}, -{"geonameId":"4645421","name":"New South Memphis","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":641608,"modificationDate":"2012-07-25"}, -{"geonameId":"479123","name":"Ulyanovsk","countryName":"Russia","timeZoneName":"Europe/Ulyanovsk","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":640680,"modificationDate":"2019-09-05"}, -{"geonameId":"1173055","name":"Kotli","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":640000,"modificationDate":"2019-12-06"}, -{"geonameId":"1854383","name":"Okayama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":639652,"modificationDate":"2019-02-27"}, -{"geonameId":"1784990","name":"Zhanjiang","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":637790,"modificationDate":"2012-01-18"}, -{"geonameId":"285839","name":"Al Aḩmadī","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":637411,"modificationDate":"2014-01-04"}, -{"geonameId":"1621177","name":"Yogyakarta","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":636660,"modificationDate":"2016-04-10"}, -{"geonameId":"618426","name":"Chisinau","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":635994,"modificationDate":"2017-12-04"}, -{"geonameId":"3081368","name":"Vrotslav","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":634893,"modificationDate":"2020-06-19"}, -{"geonameId":"1845604","name":"Cheongju-si","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":634596,"modificationDate":"2014-08-18"}, -{"geonameId":"1846898","name":"Anyang-si","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":634367,"modificationDate":"2014-01-07"}, -{"geonameId":"2477461","name":"Theveste","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":634332,"modificationDate":"2020-06-11"}, -{"geonameId":"1784642","name":"Zhenjiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":632552,"modificationDate":"2019-07-15"}, -{"geonameId":"5746545","name":"Portland","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":632309,"modificationDate":"2019-09-05"}, -{"geonameId":"6183235","name":"Winnipeg","countryName":"Canada","timeZoneName":"America/Winnipeg","timeZoneOffsetNameWithoutDst":"Central Time","population":632063,"modificationDate":"2019-09-05"}, -{"geonameId":"2037886","name":"Dandong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":631973,"modificationDate":"2018-12-06"}, -{"geonameId":"4544349","name":"Oklahoma City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":631346,"modificationDate":"2019-09-05"}, -{"geonameId":"554840","name":"Izhevsk","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":631038,"modificationDate":"2019-09-05"}, -{"geonameId":"6317344","name":"Jaboatão dos Guararapes","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":630008,"modificationDate":"2012-03-10"}, -{"geonameId":"1795874","name":"Shaoguan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":628749,"modificationDate":"2012-01-18"}, -{"geonameId":"1787746","name":"Yancheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":628441,"modificationDate":"2014-04-30"}, -{"geonameId":"3531673","name":"Cancún","countryName":"Mexico","timeZoneName":"America/Cancun","timeZoneOffsetNameWithoutDst":"Eastern Time","population":628306,"modificationDate":"2019-10-07"}, -{"geonameId":"3465624","name":"Contagem","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":627123,"modificationDate":"2012-08-03"}, -{"geonameId":"3991164","name":"Santiago de Querétaro","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":626495,"modificationDate":"2013-07-31"}, -{"geonameId":"1275971","name":"Bhilai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":625138,"modificationDate":"2015-08-07"}, -{"geonameId":"2035513","name":"Panshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":625040,"modificationDate":"2012-01-18"}, -{"geonameId":"703845","name":"Kryvyy Rih","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":624579,"modificationDate":"2020-05-23"}, -{"geonameId":"223817","name":"Djibouti","countryName":"Djibouti","timeZoneName":"Africa/Djibouti","timeZoneOffsetNameWithoutDst":"East Africa Time","population":623891,"modificationDate":"2019-09-05"}, -{"geonameId":"5506956","name":"Las Vegas","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":623747,"modificationDate":"2019-09-05"}, -{"geonameId":"4347778","name":"Baltimore","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":621849,"modificationDate":"2019-09-05"}, -{"geonameId":"128226","name":"Kermanshah","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":621100,"modificationDate":"2016-11-01"}, -{"geonameId":"3530139","name":"Coyoacán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":620416,"modificationDate":"2018-11-03"}, -{"geonameId":"3451328","name":"Ribeirão Preto","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":619746,"modificationDate":"2015-06-04"}, -{"geonameId":"79415","name":"Hudaida","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":617871,"modificationDate":"2020-06-11"}, -{"geonameId":"7290466","name":"Pasig City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":617301,"modificationDate":"2017-12-13"}, -{"geonameId":"2654675","name":"Bristol","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":617280,"modificationDate":"2019-09-05"}, -{"geonameId":"1269300","name":"Jamshedpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":616338,"modificationDate":"2014-10-14"}, -{"geonameId":"1809078","name":"Haikou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":615835,"modificationDate":"2019-09-05"}, -{"geonameId":"70225","name":"Taiz","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":615222,"modificationDate":"2020-06-11"}, -{"geonameId":"3448636","name":"São José dos Campos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":613764,"modificationDate":"2017-01-19"}, -{"geonameId":"3517270","name":"Santa María Chimalhuacán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":612383,"modificationDate":"2018-11-03"}, -{"geonameId":"1793505","name":"Taizhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":612356,"modificationDate":"2013-04-21"}, -{"geonameId":"1788927","name":"Xingtai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":611739,"modificationDate":"2014-09-05"}, -{"geonameId":"1275248","name":"Borivli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":609617,"modificationDate":"2014-10-13"}, -{"geonameId":"3981254","name":"Torreon","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":608836,"modificationDate":"2020-06-10"}, -{"geonameId":"468902","name":"Yaroslavl","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":606730,"modificationDate":"2019-09-05"}, -{"geonameId":"1020098","name":"Benoni","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":605344,"modificationDate":"2012-07-12"}, -{"geonameId":"1863289","name":"Hamamatsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":605098,"modificationDate":"2017-07-22"}, -{"geonameId":"1273874","name":"Cochin","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":604696,"modificationDate":"2014-10-13"}, -{"geonameId":"2036427","name":"Jinzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":604269,"modificationDate":"2012-01-18"}, -{"geonameId":"1278718","name":"Amrāvati","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":603837,"modificationDate":"2014-10-13"}, -{"geonameId":"292968","name":"Abu Dhabi","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":603492,"modificationDate":"2019-09-05"}, -{"geonameId":"1581298","name":"Haiphong","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":602695,"modificationDate":"2013-08-04"}, -{"geonameId":"4140963","name":"Washington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":601723,"modificationDate":"2020-04-30"}, -{"geonameId":"1176615","name":"Islamabad","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":601600,"modificationDate":"2019-09-05"}, -{"geonameId":"94787","name":"Kirkuk","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":601433,"modificationDate":"2016-06-22"}, -{"geonameId":"1257416","name":"Sāngli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":601214,"modificationDate":"2014-10-13"}, -{"geonameId":"5263045","name":"Milwaukee","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":600155,"modificationDate":"2019-09-05"}, -{"geonameId":"6173331","name":"Vancouver","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":600000,"modificationDate":"2019-09-05"}, -{"geonameId":"2034786","name":"Shuangyashan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":600000,"modificationDate":"2012-01-18"}, -{"geonameId":"1626801","name":"Situbondo","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":600000,"modificationDate":"2007-12-13"}, -{"geonameId":"1510853","name":"Barnaul","countryName":"Russia","timeZoneName":"Asia/Barnaul","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":599579,"modificationDate":"2020-02-21"}, -{"geonameId":"2747891","name":"Rotterdam","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":598199,"modificationDate":"2019-09-05"}, -{"geonameId":"3995402","name":"Morelia","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":597511,"modificationDate":"2018-11-03"}, -{"geonameId":"1802204","name":"Luancheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":597130,"modificationDate":"2020-03-29"}, -{"geonameId":"118743","name":"Rasht","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":594590,"modificationDate":"2019-02-27"}, -{"geonameId":"2352947","name":"Abeokuta","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":593100,"modificationDate":"2016-01-30"}, -{"geonameId":"2928810","name":"Essen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":593085,"modificationDate":"2019-10-22"}, -{"geonameId":"308464","name":"Kayseri","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":592840,"modificationDate":"2019-09-05"}, -{"geonameId":"2648579","name":"Glasgow","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":591620,"modificationDate":"2019-09-05"}, -{"geonameId":"2165087","name":"Gold Coast","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":591473,"modificationDate":"2016-03-21"}, -{"geonameId":"2033370","name":"Yingkou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":591159,"modificationDate":"2018-12-06"}, -{"geonameId":"2352778","name":"Abuja","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":590400,"modificationDate":"2019-09-05"}, -{"geonameId":"1707174","name":"Las Piñas","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":590000,"modificationDate":"2017-12-13"}, -{"geonameId":"1785018","name":"Zhangzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":589831,"modificationDate":"2016-07-04"}, -{"geonameId":"2825297","name":"Stuttgart","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":589793,"modificationDate":"2019-09-05"}, -{"geonameId":"3520339","name":"Reynosa","countryName":"Mexico","timeZoneName":"America/Matamoros","timeZoneOffsetNameWithoutDst":"Central Time","population":589466,"modificationDate":"2018-11-03"}, -{"geonameId":"2935517","name":"Dortmund","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":588462,"modificationDate":"2019-09-05"}, -{"geonameId":"2013348","name":"Vladivostok","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":587022,"modificationDate":"2019-09-05"}, -{"geonameId":"2023469","name":"Irkutsk","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":586695,"modificationDate":"2019-09-05"}, -{"geonameId":"931755","name":"Blantyre","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":584877,"modificationDate":"2019-09-05"}, -{"geonameId":"3489297","name":"New Kingston","countryName":"Jamaica","timeZoneName":"America/Jamaica","timeZoneOffsetNameWithoutDst":"Eastern Time","population":583958,"modificationDate":"2019-02-27"}, -{"geonameId":"738329","name":"Üsküdar","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":582666,"modificationDate":"2019-02-27"}, -{"geonameId":"3176219","name":"Genoa","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":580223,"modificationDate":"2017-05-23"}, -{"geonameId":"1273780","name":"Cuttack","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":580000,"modificationDate":"2014-10-14"}, -{"geonameId":"3143244","name":"Oslo","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":580000,"modificationDate":"2020-05-28"}, -{"geonameId":"1863440","name":"Hachiōji","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":579399,"modificationDate":"2017-07-22"}, -{"geonameId":"2022890","name":"Khabarovsk","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":579000,"modificationDate":"2019-09-05"}, -{"geonameId":"2056752","name":"Khabarovsk Vtoroy","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":578303,"modificationDate":"2012-10-07"}, -{"geonameId":"2399697","name":"Libreville","countryName":"Gabon","timeZoneName":"Africa/Libreville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":578156,"modificationDate":"2019-09-05"}, -{"geonameId":"128234","name":"Kerman","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":577514,"modificationDate":"2019-09-05"}, -{"geonameId":"3698350","name":"Chiclayo","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":577375,"modificationDate":"2019-09-05"}, -{"geonameId":"121801","name":"Orūmīyeh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":577307,"modificationDate":"2016-12-21"}, -{"geonameId":"7627067","name":"Bahçelievler","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":576799,"modificationDate":"2010-12-30"}, -{"geonameId":"1816440","name":"Bengbu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":576648,"modificationDate":"2012-01-18"}, -{"geonameId":"1275665","name":"Bīkaner","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":576015,"modificationDate":"2017-02-06"}, -{"geonameId":"3981461","name":"Tlaquepaque","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":575942,"modificationDate":"2018-11-03"}, -{"geonameId":"3515428","name":"Tlalpan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":574577,"modificationDate":"2018-11-03"}, -{"geonameId":"738377","name":"Umraniye","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":573265,"modificationDate":"2011-01-05"}, -{"geonameId":"2934246","name":"Düsseldorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":573057,"modificationDate":"2019-02-26"}, -{"geonameId":"1650213","name":"Banjarmasin","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":572837,"modificationDate":"2017-12-17"}, -{"geonameId":"2711537","name":"Göteborg","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":572799,"modificationDate":"2019-09-05"}, -{"geonameId":"1529195","name":"Shihezi","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":572772,"modificationDate":"2017-06-25"}, -{"geonameId":"3688465","name":"Bucaramanga","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":571820,"modificationDate":"2019-09-05"}, -{"geonameId":"4951305","name":"South Boston","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":571281,"modificationDate":"2017-05-23"}, -{"geonameId":"1735634","name":"Kuching","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":570407,"modificationDate":"2012-01-17"}, -{"geonameId":"3088171","name":"Poznań","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":570352,"modificationDate":"2020-05-21"}, -{"geonameId":"2514256","name":"Málaga","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":568305,"modificationDate":"2019-10-07"}, -{"geonameId":"2290956","name":"Bwake","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":567481,"modificationDate":"2020-06-10"}, -{"geonameId":"369004","name":"Nyala","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":565734,"modificationDate":"2017-12-06"}, -{"geonameId":"343300","name":"Asmara","countryName":"Eritrea","timeZoneName":"Africa/Asmara","timeZoneOffsetNameWithoutDst":"East Africa Time","population":563930,"modificationDate":"2019-09-05"}, -{"geonameId":"2322911","name":"Sokoto","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":563861,"modificationDate":"2016-06-22"}, -{"geonameId":"3445831","name":"Uberlândia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":563536,"modificationDate":"2015-08-15"}, -{"geonameId":"2326016","name":"Onitsha","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":561066,"modificationDate":"2016-01-30"}, -{"geonameId":"1863905","name":"Honchō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":560743,"modificationDate":"2017-11-10"}, -{"geonameId":"5454711","name":"Albuquerque","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":559121,"modificationDate":"2018-01-26"}, -{"geonameId":"1877449","name":"Hienhing","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":559056,"modificationDate":"2020-06-11"}, -{"geonameId":"3447399","name":"Sorocaba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":558862,"modificationDate":"2012-03-10"}, -{"geonameId":"658225","name":"Helsinki","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":558457,"modificationDate":"2019-11-18"}, -{"geonameId":"1252948","name":"Warangal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":557802,"modificationDate":"2018-05-27"}, -{"geonameId":"3536729","name":"Santiago de Cuba","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":555865,"modificationDate":"2019-09-05"}, -{"geonameId":"2034714","name":"Siping","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":555609,"modificationDate":"2013-12-14"}, -{"geonameId":"1860827","name":"Kagoshima","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":555352,"modificationDate":"2017-04-09"}, -{"geonameId":"1625812","name":"Surakarta","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":555308,"modificationDate":"2019-09-05"}, -{"geonameId":"1797873","name":"Huai'an","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":555230,"modificationDate":"2018-11-23"}, -{"geonameId":"1276032","name":"Bhavnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":554978,"modificationDate":"2016-10-04"}, -{"geonameId":"3430863","name":"Mar del Plata","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":553935,"modificationDate":"2019-09-05"}, -{"geonameId":"1183880","name":"Bahawalpur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":552607,"modificationDate":"2019-12-06"}, -{"geonameId":"1159301","name":"Zahedan","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":551980,"modificationDate":"2019-09-05"}, -{"geonameId":"415189","name":"Aden","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":550602,"modificationDate":"2020-06-11"}, -{"geonameId":"1261977","name":"Nanded","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":550564,"modificationDate":"2014-10-13"}, -{"geonameId":"515003","name":"Orenburg","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":550204,"modificationDate":"2019-09-05"}, -{"geonameId":"1846326","name":"Changwon","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":550000,"modificationDate":"2012-02-28"}, -{"geonameId":"786714","name":"Pristina","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":550000,"modificationDate":"2019-09-05"}, -{"geonameId":"2036581","name":"Jiamusi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":549549,"modificationDate":"2017-07-21"}, -{"geonameId":"1730501","name":"Antipolo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":549543,"modificationDate":"2019-06-18"}, -{"geonameId":"1799491","name":"Neijiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":546854,"modificationDate":"2018-12-06"}, -{"geonameId":"2944388","name":"Bremen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":546501,"modificationDate":"2019-12-17"}, -{"geonameId":"2542715","name":"Meknès","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":545705,"modificationDate":"2017-02-01"}, -{"geonameId":"1670029","name":"Banqiao","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":543342,"modificationDate":"2017-09-29"}, -{"geonameId":"1166000","name":"Sargodha","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":542603,"modificationDate":"2019-12-06"}, -{"geonameId":"2389853","name":"Bangui","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":542393,"modificationDate":"2016-06-22"}, -{"geonameId":"593116","name":"Vilnius","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":542366,"modificationDate":"2019-05-07"}, -{"geonameId":"1787227","name":"Yangzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":539715,"modificationDate":"2013-04-21"}, -{"geonameId":"1496990","name":"Novokuznetsk","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":539616,"modificationDate":"2019-09-05"}, -{"geonameId":"212730","name":"Kisangani","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":539158,"modificationDate":"2016-11-22"}, -{"geonameId":"358619","name":"Port Said","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":538378,"modificationDate":"2019-10-28"}, -{"geonameId":"304531","name":"Mersin","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":537842,"modificationDate":"2017-11-10"}, -{"geonameId":"3515001","name":"Tuxtla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":537102,"modificationDate":"2018-11-03"}, -{"geonameId":"1258315","name":"Raurkela","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":536450,"modificationDate":"2017-09-13"}, -{"geonameId":"2319133","name":"Warri","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":536023,"modificationDate":"2016-01-30"}, -{"geonameId":"1809412","name":"Guli","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":536000,"modificationDate":"2012-10-06"}, -{"geonameId":"2344082","name":"Ebute Ikorodu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":535619,"modificationDate":"2016-01-30"}, -{"geonameId":"1793424","name":"Tanggu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":535298,"modificationDate":"2015-10-29"}, -{"geonameId":"1806299","name":"Jiangmen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":532419,"modificationDate":"2019-03-06"}, -{"geonameId":"3827409","name":"Cuauhtémoc","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":531831,"modificationDate":"2018-11-03"}, -{"geonameId":"5318313","name":"Tucson","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":531641,"modificationDate":"2019-09-05"}, -{"geonameId":"4644585","name":"Nashville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":530852,"modificationDate":"2019-09-05"}, -{"geonameId":"107968","name":"Ta’if","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":530848,"modificationDate":"2015-09-05"}, -{"geonameId":"1052373","name":"Beira","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":530604,"modificationDate":"2012-01-19"}, -{"geonameId":"1270668","name":"Guntur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":530577,"modificationDate":"2019-05-07"}, -{"geonameId":"2244322","name":"Touba","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":529176,"modificationDate":"2012-07-14"}, -{"geonameId":"6325494","name":"Québec","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":528595,"modificationDate":"2019-09-05"}, -{"geonameId":"132144","name":"Ecbatana","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":528256,"modificationDate":"2020-06-10"}, -{"geonameId":"1816080","name":"Cangzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":527681,"modificationDate":"2012-01-18"}, -{"geonameId":"3583361","name":"San Salvador","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":525990,"modificationDate":"2019-09-05"}, -{"geonameId":"1273313","name":"Dehra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":522081,"modificationDate":"2020-06-10"}, -{"geonameId":"3465038","name":"Cuiabá","countryName":"Brazil","timeZoneName":"America/Cuiaba","timeZoneOffsetNameWithoutDst":"Amazon Time","population":521934,"modificationDate":"2010-01-21"}, -{"geonameId":"1735158","name":"Petaling Jaya","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":520698,"modificationDate":"2012-02-19"}, -{"geonameId":"1821274","name":"Macau","countryName":"Macao","timeZoneName":"Asia/Macau","timeZoneOffsetNameWithoutDst":"China Time","population":520400,"modificationDate":"2011-10-27"}, -{"geonameId":"1276014","name":"Bhayandar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":520301,"modificationDate":"2014-10-13"}, -{"geonameId":"747340","name":"Esenler","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":520235,"modificationDate":"2014-01-23"}, -{"geonameId":"500096","name":"Rjasan","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":520173,"modificationDate":"2020-06-10"}, -{"geonameId":"5350937","name":"Fresno","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":520052,"modificationDate":"2019-09-05"}, -{"geonameId":"5969782","name":"Hamilton","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":519949,"modificationDate":"2019-09-05"}, -{"geonameId":"1488754","name":"Tyumen","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":519119,"modificationDate":"2019-09-05"}, -{"geonameId":"1272175","name":"Durgapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":518872,"modificationDate":"2015-11-29"}, -{"geonameId":"4011743","name":"Victoria de Durango","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":518709,"modificationDate":"2018-11-03"}, -{"geonameId":"1279159","name":"Ajmer","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":517911,"modificationDate":"2017-08-23"}, -{"geonameId":"2267057","name":"Lisbon","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":517802,"modificationDate":"2019-07-12"}, -{"geonameId":"1791121","name":"Changde","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":517780,"modificationDate":"2020-02-10"}, -{"geonameId":"1805987","name":"Jiaozuo","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":517540,"modificationDate":"2012-01-18"}, -{"geonameId":"1253894","name":"Ulhasnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":516584,"modificationDate":"2014-10-13"}, -{"geonameId":"1266285","name":"Kolhāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":516142,"modificationDate":"2017-03-17"}, -{"geonameId":"535121","name":"Lipetsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":515655,"modificationDate":"2019-09-05"}, -{"geonameId":"1256525","name":"Siliguri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":515574,"modificationDate":"2019-06-12"}, -{"geonameId":"2910831","name":"Hannover","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":515140,"modificationDate":"2019-09-12"}, -{"geonameId":"315202","name":"Eski shehr","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":514869,"modificationDate":"2020-06-10"}, -{"geonameId":"14256","name":"Āzādshahr","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":514102,"modificationDate":"2016-08-02"}, -{"geonameId":"3838233","name":"Salta","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":512686,"modificationDate":"2019-09-05"}, -{"geonameId":"511565","name":"Penza","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":512602,"modificationDate":"2019-09-05"}, -{"geonameId":"949880","name":"Tembisa","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":511655,"modificationDate":"2019-02-28"}, -{"geonameId":"1275610","name":"Bilimora","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":510879,"modificationDate":"2014-10-13"}, -{"geonameId":"6316406","name":"Aparecida de Goiânia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":510770,"modificationDate":"2012-08-03"}, -{"geonameId":"3875024","name":"Puente Alto","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":510417,"modificationDate":"2018-02-06"}, -{"geonameId":"1703417","name":"Makati City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":510383,"modificationDate":"2017-12-13"}, -{"geonameId":"2034414","name":"Tonghua","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":510000,"modificationDate":"2018-12-06"}, -{"geonameId":"523750","name":"Naberezhnyye Chelny","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":509870,"modificationDate":"2014-03-14"}, -{"geonameId":"2644668","name":"Leicester","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":508916,"modificationDate":"2019-09-05"}, -{"geonameId":"1791236","name":"Wuhu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":507524,"modificationDate":"2014-11-11"}, -{"geonameId":"1855431","name":"Niigata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":505272,"modificationDate":"2019-02-27"}, -{"geonameId":"1267696","name":"Karol Bāgh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":505241,"modificationDate":"2015-05-06"}, -{"geonameId":"2879139","name":"Leipzig","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":504971,"modificationDate":"2019-09-05"}, -{"geonameId":"8504951","name":"Kalininskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":504641,"modificationDate":"2020-02-25"}, -{"geonameId":"2934691","name":"Duisburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":504358,"modificationDate":"2019-09-05"}, -{"geonameId":"1278314","name":"Āsansol","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":504271,"modificationDate":"2018-05-27"}, -{"geonameId":"143127","name":"Arāk","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":503647,"modificationDate":"2018-01-09"}, -{"geonameId":"580497","name":"Astrakhan","countryName":"Russia","timeZoneName":"Europe/Astrakhan","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":502533,"modificationDate":"2019-09-05"}, -{"geonameId":"1790437","name":"Zhuhai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":501199,"modificationDate":"2020-04-05"}, -{"geonameId":"1839071","name":"Pohang","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":500000,"modificationDate":"2019-04-15"}, -{"geonameId":"2861650","name":"Nürnberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":499237,"modificationDate":"2019-09-05"}, -{"geonameId":"1795816","name":"Shashi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":498780,"modificationDate":"2015-09-25"}, -{"geonameId":"532096","name":"Makhachkala","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":497959,"modificationDate":"2016-11-23"}, -{"geonameId":"1646448","name":"Cimahi","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":493698,"modificationDate":"2012-01-17"}, -{"geonameId":"1803936","name":"Wuwei","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":493092,"modificationDate":"2013-08-05"}, -{"geonameId":"1269317","name":"Jamnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":492056,"modificationDate":"2016-12-11"}, -{"geonameId":"5389489","name":"Sacramento","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":490712,"modificationDate":"2019-09-05"}, -{"geonameId":"3471872","name":"Aracaju","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":490175,"modificationDate":"2019-09-05"}, -{"geonameId":"292932","name":"Ajman City","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":490035,"modificationDate":"2019-05-29"}, -{"geonameId":"9931406","name":"Jianshui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":490000,"modificationDate":"2020-01-13"}, -{"geonameId":"377039","name":"Port Sudan","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":489725,"modificationDate":"2019-09-05"}, -{"geonameId":"3836277","name":"Santa Fe","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":489505,"modificationDate":"2019-03-21"}, -{"geonameId":"3601782","name":"San Pedro Sula","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":489466,"modificationDate":"2019-09-05"}, -{"geonameId":"3515302","name":"Toluca","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":489333,"modificationDate":"2018-11-03"}, -{"geonameId":"3532624","name":"Atizapan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":489160,"modificationDate":"2020-06-10"}, -{"geonameId":"359796","name":"Suez","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":488125,"modificationDate":"2013-12-01"}, -{"geonameId":"2935022","name":"Dresden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":486854,"modificationDate":"2019-09-05"}, -{"geonameId":"1489425","name":"Tomsk","countryName":"Russia","timeZoneName":"Asia/Tomsk","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":485519,"modificationDate":"2019-09-05"}, -{"geonameId":"2593460","name":"Masina","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":485167,"modificationDate":"2007-05-31"}, -{"geonameId":"1257806","name":"Sahāranpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":484873,"modificationDate":"2014-10-14"}, -{"geonameId":"3515807","name":"Cuautitlán Izcalli","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":484573,"modificationDate":"2018-11-03"}, -{"geonameId":"1270752","name":"Gulbarga","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":483615,"modificationDate":"2019-12-08"}, -{"geonameId":"700569","name":"Mykolayiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":483186,"modificationDate":"2020-04-23"}, -{"geonameId":"1276058","name":"Bhātpāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":483129,"modificationDate":"2014-10-14"}, -{"geonameId":"98860","name":"Najaf","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":482576,"modificationDate":"2016-06-22"}, -{"geonameId":"3463478","name":"Feira de Santana","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":481911,"modificationDate":"2017-06-05"}, -{"geonameId":"1732903","name":"Shah Alam","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":481654,"modificationDate":"2010-08-09"}, -{"geonameId":"701822","name":"Mariupol","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":481626,"modificationDate":"2019-09-05"}, -{"geonameId":"1862627","name":"Himeji","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":481493,"modificationDate":"2019-09-05"}, -{"geonameId":"627907","name":"Homyel'","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":480951,"modificationDate":"2019-09-05"}, -{"geonameId":"1806488","name":"Qionghai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":480000,"modificationDate":"2017-09-12"}, -{"geonameId":"2327220","name":"Okene","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":479178,"modificationDate":"2016-01-30"}, -{"geonameId":"1833788","name":"Uijeongbu-si","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":479141,"modificationDate":"2014-01-19"}, -{"geonameId":"1006984","name":"East London","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":478676,"modificationDate":"2019-09-05"}, -{"geonameId":"111822","name":"Yazd","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":477905,"modificationDate":"2013-11-27"}, -{"geonameId":"57289","name":"Hargeysa","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":477876,"modificationDate":"2017-09-27"}, -{"geonameId":"1164909","name":"Sialkot","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":477396,"modificationDate":"2019-12-06"}, -{"geonameId":"1503901","name":"Kemerovo","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":477090,"modificationDate":"2019-09-05"}, -{"geonameId":"1786764","name":"Yichang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":476725,"modificationDate":"2020-02-05"}, -{"geonameId":"1843847","name":"Hwaseong-si","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":476297,"modificationDate":"2014-01-07"}, -{"geonameId":"4393217","name":"Kansas City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":475378,"modificationDate":"2019-09-05"}, -{"geonameId":"1786657","name":"Yinchuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":475101,"modificationDate":"2019-02-27"}, -{"geonameId":"785842","name":"Skopje","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":474889,"modificationDate":"2019-10-04"}, -{"geonameId":"944385","name":"Vereeniging","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":474681,"modificationDate":"2019-10-28"}, -{"geonameId":"2747373","name":"The Hague","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":474292,"modificationDate":"2017-10-24"}, -{"geonameId":"5367929","name":"Long Beach","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":474140,"modificationDate":"2019-09-05"}, -{"geonameId":"3592519","name":"Mixco","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":473080,"modificationDate":"2019-04-10"}, -{"geonameId":"2996944","name":"Lyon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":472317,"modificationDate":"2019-10-09"}, -{"geonameId":"3458449","name":"Londrina","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":471832,"modificationDate":"2012-03-10"}, -{"geonameId":"5304391","name":"Mesa","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":471825,"modificationDate":"2019-09-05"}, -{"geonameId":"1809061","name":"Jiaojiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":470804,"modificationDate":"2018-12-06"}, -{"geonameId":"1857553","name":"Matsudo","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":470277,"modificationDate":"2017-07-22"}, -{"geonameId":"3459505","name":"Juiz de Fora","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":470193,"modificationDate":"2013-05-09"}, -{"geonameId":"1855207","name":"Nishinomiya-hama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":468925,"modificationDate":"2017-07-31"}, -{"geonameId":"480562","name":"Tula","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":468825,"modificationDate":"2019-09-05"}, -{"geonameId":"5139568","name":"Staten Island","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":468730,"modificationDate":"2012-07-10"}, -{"geonameId":"1859730","name":"Kawaguchi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":468565,"modificationDate":"2019-02-28"}, -{"geonameId":"4018390","name":"Ciudad Apodaca","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":467157,"modificationDate":"2018-11-03"}, -{"geonameId":"1783621","name":"Zunyi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":466292,"modificationDate":"2012-01-18"}, -{"geonameId":"1805953","name":"Jiaxing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":466101,"modificationDate":"2012-11-04"}, -{"geonameId":"3470142","name":"Belford Roxo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":466096,"modificationDate":"2012-08-03"}, -{"geonameId":"1269321","name":"Jammu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":465567,"modificationDate":"2019-09-05"}, -{"geonameId":"2036109","name":"Liaoyuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":465249,"modificationDate":"2012-01-18"}, -{"geonameId":"2650225","name":"Edinburgh","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":464990,"modificationDate":"2019-09-05"}, -{"geonameId":"4180439","name":"Atlanta","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":463878,"modificationDate":"2019-09-05"}, -{"geonameId":"214481","name":"Kananga","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":463546,"modificationDate":"2016-12-31"}, -{"geonameId":"1018725","name":"Bloemfontein","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":463064,"modificationDate":"2019-09-05"}, -{"geonameId":"1790587","name":"Xiangyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":462956,"modificationDate":"2018-12-06"}, -{"geonameId":"3099434","name":"Gdańsk","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":461865,"modificationDate":"2019-11-18"}, -{"geonameId":"2346229","name":"Calabar","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":461796,"modificationDate":"2016-01-30"}, -{"geonameId":"1798998","name":"Dadukou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":461513,"modificationDate":"2014-09-05"}, -{"geonameId":"3459712","name":"Joinville","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":461304,"modificationDate":"2012-08-03"}, -{"geonameId":"170017","name":"Hamath","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":460602,"modificationDate":"2020-06-10"}, -{"geonameId":"1265491","name":"Kurnool","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":460184,"modificationDate":"2017-09-12"}, -{"geonameId":"2803138","name":"Antwerpen","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":459805,"modificationDate":"2019-12-17"}, -{"geonameId":"1860243","name":"Kanazawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":458937,"modificationDate":"2019-02-27"}, -{"geonameId":"7701384","name":"Karabağlar","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":458000,"modificationDate":"2011-03-09"}, -{"geonameId":"1679432","name":"Zamboanga","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":457623,"modificationDate":"2017-12-13"}, -{"geonameId":"548408","name":"Kirov","countryName":"Russia","timeZoneName":"Europe/Kirov","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":457383,"modificationDate":"2019-09-05"}, -{"geonameId":"1253914","name":"Ujjain","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":457346,"modificationDate":"2014-10-14"}, -{"geonameId":"1733432","name":"Kota Kinabalu","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":457326,"modificationDate":"2017-07-24"}, -{"geonameId":"5417598","name":"Colorado Springs","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":456568,"modificationDate":"2019-09-05"}, -{"geonameId":"3456283","name":"Niterói","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":456456,"modificationDate":"2012-08-03"}, -{"geonameId":"1808392","name":"Hengshui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":456356,"modificationDate":"2012-01-18"}, -{"geonameId":"101628","name":"Tabuk","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":455450,"modificationDate":"2015-09-12"}, -{"geonameId":"1630789","name":"Pontianak","countryName":"Indonesia","timeZoneName":"Asia/Pontianak","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":455173,"modificationDate":"2016-04-10"}, -{"geonameId":"2644688","name":"Leeds","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":455123,"modificationDate":"2019-09-05"}, -{"geonameId":"1873757","name":"Namp’o","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":455000,"modificationDate":"2010-08-03"}, -{"geonameId":"1729564","name":"Bacolod City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":454898,"modificationDate":"2017-12-13"}, -{"geonameId":"3448877","name":"São João de Meriti","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":454849,"modificationDate":"2019-09-05"}, -{"geonameId":"1701500","name":"Mansilingan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":454150,"modificationDate":"2017-12-13"}, -{"geonameId":"4791259","name":"Virginia Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":452745,"modificationDate":"2019-09-05"}, -{"geonameId":"1258662","name":"Rāmgundam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":452261,"modificationDate":"2014-10-10"}, -{"geonameId":"702658","name":"Luhansk","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":452000,"modificationDate":"2020-06-10"}, -{"geonameId":"1636544","name":"Manado","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":451893,"modificationDate":"2014-07-21"}, -{"geonameId":"609655","name":"Karagandy","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":451800,"modificationDate":"2019-09-19"}, -{"geonameId":"4487042","name":"Raleigh","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":451066,"modificationDate":"2019-09-05"}, -{"geonameId":"1805518","name":"Jining","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":450327,"modificationDate":"2013-04-13"}, -{"geonameId":"2501152","name":"Constantine","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":450097,"modificationDate":"2018-08-09"}, -{"geonameId":"8505006","name":"Wenshan City","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":450000,"modificationDate":"2018-12-06"}, -{"geonameId":"373303","name":"Juba","countryName":"South Sudan","timeZoneName":"Africa/Juba","timeZoneOffsetNameWithoutDst":"East Africa Time","population":450000,"modificationDate":"2019-05-04"}, -{"geonameId":"8074174","name":"Muratpaşa","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":450000,"modificationDate":"2015-06-30"}, -{"geonameId":"1849053","name":"Utsunomiya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":449865,"modificationDate":"2017-04-09"}, -{"geonameId":"3523466","name":"Heroica Matamoros","countryName":"Mexico","timeZoneName":"America/Matamoros","timeZoneOffsetNameWithoutDst":"Central Time","population":449815,"modificationDate":"2013-07-31"}, -{"geonameId":"298333","name":"Urfeh","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":449549,"modificationDate":"2020-06-10"}, -{"geonameId":"2038087","name":"Chengde","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":449325,"modificationDate":"2018-12-06"}, -{"geonameId":"1854487","name":"Ōita","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":448907,"modificationDate":"2017-04-09"}, -{"geonameId":"2653822","name":"Cardiff","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":447287,"modificationDate":"2019-09-05"}, -{"geonameId":"3837213","name":"San Juan","countryName":"Argentina","timeZoneName":"America/Argentina/San_Juan","timeZoneOffsetNameWithoutDst":"Argentina Time","population":447048,"modificationDate":"2019-09-05"}, -{"geonameId":"569696","name":"Cheboksary","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":446781,"modificationDate":"2019-09-05"}, -{"geonameId":"1017780","name":"Boksburg","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":445168,"modificationDate":"2012-07-12"}, -{"geonameId":"1721080","name":"Cagayan de Oro","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":445103,"modificationDate":"2017-12-13"}, -{"geonameId":"5074472","name":"Omaha","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":443885,"modificationDate":"2017-05-23"}, -{"geonameId":"1926099","name":"Matsuyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":443322,"modificationDate":"2017-07-29"}, -{"geonameId":"3985241","name":"San Nicolás de los Garza","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":443273,"modificationDate":"2013-07-31"}, -{"geonameId":"1865387","name":"Amagasaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":442173,"modificationDate":"2017-07-22"}, -{"geonameId":"3728338","name":"Carrefour","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":442156,"modificationDate":"2018-12-05"}, -{"geonameId":"1256409","name":"Shyamnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":441956,"modificationDate":"2014-10-14"}, -{"geonameId":"1715430","name":"Dasmariñas","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":441876,"modificationDate":"2017-12-13"}, -{"geonameId":"304922","name":"Malatya","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":441805,"modificationDate":"2019-09-05"}, -{"geonameId":"4164138","name":"Miami","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":441003,"modificationDate":"2019-09-05"}, -{"geonameId":"1348818","name":"Nangi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":440894,"modificationDate":"2018-12-05"}, -{"geonameId":"3672486","name":"Pereira","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":440118,"modificationDate":"2019-02-26"}, -{"geonameId":"1265873","name":"Kozhikode","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":439922,"modificationDate":"2016-10-17"}, -{"geonameId":"1308465","name":"Mawlamyine","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":438861,"modificationDate":"2016-06-01"}, -{"geonameId":"3696183","name":"Iquitos","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":437620,"modificationDate":"2019-09-05"}, -{"geonameId":"1858311","name":"Kurashiki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":437581,"modificationDate":"2017-07-22"}, -{"geonameId":"1869012","name":"Sunch’ŏn","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":437000,"modificationDate":"2019-02-27"}, -{"geonameId":"7628416","name":"Sultangazi","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":436935,"modificationDate":"2011-01-04"}, -{"geonameId":"2231320","name":"Garoua","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":436899,"modificationDate":"2014-01-08"}, -{"geonameId":"2513416","name":"Murcia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":436870,"modificationDate":"2013-03-18"}, -{"geonameId":"152224","name":"Mwanza","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":436801,"modificationDate":"2019-09-05"}, -{"geonameId":"2319480","name":"Uyo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":436606,"modificationDate":"2016-01-30"}, -{"geonameId":"2038365","name":"Bei’an","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":436444,"modificationDate":"2013-05-30"}, -{"geonameId":"2229798","name":"Kusseri","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":435547,"modificationDate":"2020-06-10"}, -{"geonameId":"1264115","name":"Mālegaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":435362,"modificationDate":"2015-09-06"}, -{"geonameId":"1273368","name":"Davangere","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":435128,"modificationDate":"2017-09-13"}, -{"geonameId":"554234","name":"Kaliningrad","countryName":"Russia","timeZoneName":"Europe/Kaliningrad","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":434954,"modificationDate":"2019-09-05"}, -{"geonameId":"94824","name":"Karbala","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":434450,"modificationDate":"2019-12-25"}, -{"geonameId":"1841246","name":"Masan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":434371,"modificationDate":"2017-04-18"}, -{"geonameId":"3407669","name":"Ananindeua","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":433956,"modificationDate":"2012-08-03"}, -{"geonameId":"1650527","name":"Balikpapan","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":433866,"modificationDate":"2010-01-29"}, -{"geonameId":"5907364","name":"Brampton","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":433806,"modificationDate":"2010-09-22"}, -{"geonameId":"2972315","name":"Toulouse","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":433055,"modificationDate":"2019-10-09"}, -{"geonameId":"293397","name":"Tel Aviv","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":432892,"modificationDate":"2020-05-28"}, -{"geonameId":"1513157","name":"Namangan","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":432456,"modificationDate":"2019-09-05"}, -{"geonameId":"2334802","name":"Katsina","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":432149,"modificationDate":"2017-04-14"}, -{"geonameId":"940909","name":"Welkom","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":431944,"modificationDate":"2013-11-03"}, -{"geonameId":"3668605","name":"Santa Marta","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":431781,"modificationDate":"2018-04-19"}, -{"geonameId":"360829","name":"Mehalla el Kobra","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":431052,"modificationDate":"2020-06-11"}, -{"geonameId":"3827407","name":"Venustiano Carranza","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":430978,"modificationDate":"2018-11-03"}, -{"geonameId":"1269407","name":"Jalgaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":429298,"modificationDate":"2019-07-18"}, -{"geonameId":"1848313","name":"Yokosuka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":428992,"modificationDate":"2019-09-05"}, -{"geonameId":"1279105","name":"Akola","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":428857,"modificationDate":"2017-03-18"}, -{"geonameId":"1276533","name":"Belgaum","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":428720,"modificationDate":"2019-09-05"}, -{"geonameId":"3514783","name":"Veracruz","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":428323,"modificationDate":"2018-11-03"}, -{"geonameId":"7303419","name":"East Jerusalem","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":428304,"modificationDate":"2019-03-24"}, -{"geonameId":"1801757","name":"Luqiao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":427890,"modificationDate":"2012-10-06"}, -{"geonameId":"571476","name":"Bryansk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":427236,"modificationDate":"2013-01-11"}, -{"geonameId":"741763","name":"Maltepe","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":427040,"modificationDate":"2011-01-05"}, -{"geonameId":"109353","name":"Al Kharj","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":425300,"modificationDate":"2017-09-13"}, -{"geonameId":"3648559","name":"Barcelona","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":424795,"modificationDate":"2019-09-05"}, -{"geonameId":"1815395","name":"Chaozhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":424787,"modificationDate":"2014-01-07"}, -{"geonameId":"3526617","name":"Xalapa de Enríquez","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":424755,"modificationDate":"2018-11-03"}, -{"geonameId":"2352379","name":"Ado-Ekiti","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":424340,"modificationDate":"2016-01-30"}, -{"geonameId":"3060972","name":"Bratislava","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":423737,"modificationDate":"2019-09-05"}, -{"geonameId":"1271439","name":"Gaya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":423692,"modificationDate":"2014-10-14"}, -{"geonameId":"1253986","name":"Udaipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":422784,"modificationDate":"2016-10-23"}, -{"geonameId":"922741","name":"Likasi","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":422414,"modificationDate":"2016-11-28"}, -{"geonameId":"360502","name":"Luxor","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":422407,"modificationDate":"2019-09-05"}, -{"geonameId":"3680656","name":"Ibagué","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":421685,"modificationDate":"2019-09-05"}, -{"geonameId":"1795855","name":"Shaoxing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":421283,"modificationDate":"2014-05-11"}, -{"geonameId":"555312","name":"Ivanovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":420839,"modificationDate":"2019-09-05"}, -{"geonameId":"315368","name":"Erzurum","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":420691,"modificationDate":"2019-11-26"}, -{"geonameId":"2350841","name":"Akure","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":420594,"modificationDate":"2016-01-30"}, -{"geonameId":"359783","name":"Siut","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":420585,"modificationDate":"2020-06-11"}, -{"geonameId":"1642858","name":"Jambi City","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":420323,"modificationDate":"2014-05-29"}, -{"geonameId":"360761","name":"Mansurah","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":420195,"modificationDate":"2020-06-11"}, -{"geonameId":"5378538","name":"Oakland","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":419267,"modificationDate":"2019-09-05"}, -{"geonameId":"1266122","name":"Korba","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":419146,"modificationDate":"2014-10-14"}, -{"geonameId":"1275362","name":"Bokāro","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":418533,"modificationDate":"2017-08-02"}, -{"geonameId":"4568127","name":"San Juan","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":418140,"modificationDate":"2019-09-05"}, -{"geonameId":"922773","name":"Kolwezi","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":418000,"modificationDate":"2016-11-28"}, -{"geonameId":"2193733","name":"Auckland","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":417910,"modificationDate":"2020-05-28"}, -{"geonameId":"1164408","name":"Sukkur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":417767,"modificationDate":"2019-12-06"}, -{"geonameId":"1263780","name":"Mangalore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":417387,"modificationDate":"2014-10-14"}, -{"geonameId":"1801934","name":"Luohe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":417356,"modificationDate":"2015-09-06"}, -{"geonameId":"1694611","name":"Pasay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":416522,"modificationDate":"2017-12-13"}, -{"geonameId":"694423","name":"Sevastopol","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":416263,"modificationDate":"2019-10-18"}, -{"geonameId":"3532497","name":"Azcapotzalco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":414711,"modificationDate":"2018-11-03"}, -{"geonameId":"1518980","name":"Shymkent","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":414032,"modificationDate":"2019-09-19"}, -{"geonameId":"1787351","name":"Yangquan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":413394,"modificationDate":"2012-01-18"}, -{"geonameId":"532288","name":"Magnitogorsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":413351,"modificationDate":"2019-09-05"}, -{"geonameId":"1269006","name":"Jhānsi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":412927,"modificationDate":"2015-08-07"}, -{"geonameId":"3463237","name":"Florianópolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":412724,"modificationDate":"2017-12-05"}, -{"geonameId":"2911285","name":"Wandsbek","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":411422,"modificationDate":"2017-08-14"}, -{"geonameId":"3449433","name":"Santos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":411403,"modificationDate":"2019-09-05"}, -{"geonameId":"3778045","name":"Maturín","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":410972,"modificationDate":"2013-11-10"}, -{"geonameId":"5037649","name":"Minneapolis","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":410939,"modificationDate":"2019-09-05"}, -{"geonameId":"8629640","name":"Thoothukudi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":410760,"modificationDate":"2017-09-12"}, -{"geonameId":"143083","name":"Ardabīl","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":410753,"modificationDate":"2017-02-08"}, -{"geonameId":"1856177","name":"Nagasaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":410204,"modificationDate":"2017-04-09"}, -{"geonameId":"2038120","name":"Chaoyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":410005,"modificationDate":"2018-12-06"}, -{"geonameId":"281133","name":"Gaza","countryName":"Palestinian Territory","timeZoneName":"Asia/Gaza","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":410000,"modificationDate":"2019-03-24"}, -{"geonameId":"538560","name":"Kursk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":409431,"modificationDate":"2012-01-17"}, -{"geonameId":"3981369","name":"Tonalá","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":408759,"modificationDate":"2018-11-03"}, -{"geonameId":"1846266","name":"Jeju City","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":408364,"modificationDate":"2016-02-17"}, -{"geonameId":"3703443","name":"Panamá","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":408168,"modificationDate":"2017-09-27"}, -{"geonameId":"3514450","name":"Xochimilco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":407885,"modificationDate":"2018-11-03"}, -{"geonameId":"3083829","name":"Szczecin","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":407811,"modificationDate":"2019-09-05"}, -{"geonameId":"1587923","name":"Bia Hoa","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":407208,"modificationDate":"2020-06-14"}, -{"geonameId":"3587902","name":"Villa Nueva","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":406830,"modificationDate":"2019-04-10"}, -{"geonameId":"3451353","name":"Ribeirão das Neves","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":406802,"modificationDate":"2012-08-03"}, -{"geonameId":"1862540","name":"Hirakata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":406331,"modificationDate":"2017-07-22"}, -{"geonameId":"2540483","name":"Oujda-Angad","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":405253,"modificationDate":"2019-12-04"}, -{"geonameId":"347497","name":"Tanda","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":404901,"modificationDate":"2013-07-06"}, -{"geonameId":"971421","name":"Newcastle","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":404838,"modificationDate":"2012-07-12"}, -{"geonameId":"1261529","name":"Nellore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":404158,"modificationDate":"2017-01-04"}, -{"geonameId":"1675151","name":"Hsinchu","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":404109,"modificationDate":"2019-02-26"}, -{"geonameId":"2036389","name":"Jixi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":403759,"modificationDate":"2020-02-22"}, -{"geonameId":"148730","name":"Zanzibar","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":403658,"modificationDate":"2019-09-05"}, -{"geonameId":"4553433","name":"Tulsa","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":403505,"modificationDate":"2017-03-09"}, -{"geonameId":"6696918","name":"Taoyuan City","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":402014,"modificationDate":"2017-09-26"}, -{"geonameId":"372753","name":"Kassala","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":401477,"modificationDate":"2020-01-12"}, -{"geonameId":"2332121","name":"Lekki","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":401272,"modificationDate":"2019-11-22"}, -{"geonameId":"2512989","name":"Palma","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":401270,"modificationDate":"2018-08-27"}, -{"geonameId":"911148","name":"Kitwe","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":400914,"modificationDate":"2012-06-20"}, -{"geonameId":"98854","name":"Nasiriyah","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":400249,"modificationDate":"2017-06-15"}, -{"geonameId":"480060","name":"Tver","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":400212,"modificationDate":"2019-09-05"}, -{"geonameId":"7498240","name":"West Jerusalem","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":400000,"modificationDate":"2019-12-28"}, -{"geonameId":"1857871","name":"Machida","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":399969,"modificationDate":"2017-07-22"}, -{"geonameId":"1806408","name":"Yangjiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":399735,"modificationDate":"2013-10-05"}, -{"geonameId":"1863641","name":"Gifu-shi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":397714,"modificationDate":"2017-07-22"}, -{"geonameId":"1254348","name":"Tiruppur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":397521,"modificationDate":"2019-07-29"}, -{"geonameId":"1678228","name":"Keelung","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":397515,"modificationDate":"2017-09-26"}, -{"geonameId":"2558545","name":"Al Hoceïma","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":395644,"modificationDate":"2016-11-03"}, -{"geonameId":"2643123","name":"Manchester","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":395515,"modificationDate":"2020-04-05"}, -{"geonameId":"6159905","name":"Surrey","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":394976,"modificationDate":"2019-02-26"}, -{"geonameId":"3445026","name":"Vila Velha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":394930,"modificationDate":"2014-05-11"}, -{"geonameId":"1791681","name":"Weifang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":394732,"modificationDate":"2012-01-18"}, -{"geonameId":"1864092","name":"Fujisawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":394624,"modificationDate":"2019-09-05"}, -{"geonameId":"901344","name":"Ndola","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":394518,"modificationDate":"2019-09-05"}, -{"geonameId":"1259091","name":"Kollam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":394163,"modificationDate":"2016-06-10"}, -{"geonameId":"3447779","name":"Serra","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":394153,"modificationDate":"2012-08-03"}, -{"geonameId":"740264","name":"Samsun","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":394050,"modificationDate":"2019-09-05"}, -{"geonameId":"588409","name":"Tallinn","countryName":"Estonia","timeZoneName":"Europe/Tallinn","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":394024,"modificationDate":"2019-09-05"}, -{"geonameId":"2234974","name":"Bamenda","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":393835,"modificationDate":"2014-06-04"}, -{"geonameId":"379003","name":"El Obeid","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":393311,"modificationDate":"2013-12-14"}, -{"geonameId":"3688928","name":"Bello","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":392939,"modificationDate":"2016-01-28"}, -{"geonameId":"1788694","name":"Xinpu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":392444,"modificationDate":"2015-11-08"}, -{"geonameId":"1734052","name":"Sandakan","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":392288,"modificationDate":"2012-01-17"}, -{"geonameId":"107304","name":"Buraydah","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":391336,"modificationDate":"2018-03-06"}, -{"geonameId":"1138336","name":"Kandhar","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":391190,"modificationDate":"2020-06-09"}, -{"geonameId":"3464739","name":"Diadema","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":390633,"modificationDate":"2012-09-27"}, -{"geonameId":"4281730","name":"Wichita","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":389965,"modificationDate":"2019-09-05"}, -{"geonameId":"4335045","name":"New Orleans","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":389617,"modificationDate":"2019-09-05"}, -{"geonameId":"1185186","name":"Comilla","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":389411,"modificationDate":"2016-11-09"}, -{"geonameId":"1606590","name":"Samut Prakan","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":388920,"modificationDate":"2017-04-05"}, -{"geonameId":"1033356","name":"Nampula","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":388526,"modificationDate":"2010-05-28"}, -{"geonameId":"4671240","name":"Arlington","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":388125,"modificationDate":"2019-09-05"}, -{"geonameId":"5150529","name":"Cleveland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":388072,"modificationDate":"2019-09-05"}, -{"geonameId":"2374775","name":"Bissau","countryName":"Guinea-Bissau","timeZoneName":"Africa/Bissau","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":388028,"modificationDate":"2019-09-05"}, -{"geonameId":"1711005","name":"Iloilo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":387681,"modificationDate":"2017-12-13"}, -{"geonameId":"105072","name":"Khamis Mushait","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":387553,"modificationDate":"2013-11-25"}, -{"geonameId":"3467693","name":"Campos dos Goytacazes","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":387417,"modificationDate":"2016-11-28"}, -{"geonameId":"3429577","name":"Resistencia","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":387158,"modificationDate":"2016-01-30"}, -{"geonameId":"2214846","name":"Misurata","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":386120,"modificationDate":"2020-06-10"}, -{"geonameId":"3457381","name":"Mauá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":386069,"modificationDate":"2012-03-10"}, -{"geonameId":"2395914","name":"Abomey-Calavi","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":385755,"modificationDate":"2018-02-26"}, -{"geonameId":"2947416","name":"Bochum","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":385729,"modificationDate":"2019-09-05"}, -{"geonameId":"6957079","name":"Benito Juárez","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":385439,"modificationDate":"2018-11-03"}, -{"geonameId":"11048319","name":"Sector 3","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":385439,"modificationDate":"2017-11-24"}, -{"geonameId":"1849837","name":"Toyonaka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":384459,"modificationDate":"2017-07-22"}, -{"geonameId":"3526700","name":"Iztacalco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":384326,"modificationDate":"2013-07-31"}, -{"geonameId":"3470044","name":"Betim","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":384000,"modificationDate":"2012-08-03"}, -{"geonameId":"1863917","name":"Fukuyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":383298,"modificationDate":"2017-07-22"}, -{"geonameId":"2239076","name":"N’dalatando","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":383100,"modificationDate":"2017-05-07"}, -{"geonameId":"3726786","name":"Delmas 73","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":382920,"modificationDate":"2018-12-05"}, -{"geonameId":"3672778","name":"Pasto","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":382236,"modificationDate":"2018-04-19"}, -{"geonameId":"321836","name":"Batman","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":381990,"modificationDate":"2019-09-05"}, -{"geonameId":"2179537","name":"Wellington","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":381900,"modificationDate":"2019-09-05"}, -{"geonameId":"2515270","name":"Las Palmas de Gran Canaria","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":381847,"modificationDate":"2018-03-09"}, -{"geonameId":"3996322","name":"Mazatlán","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":381583,"modificationDate":"2018-11-03"}, -{"geonameId":"3466537","name":"Caxias do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":381270,"modificationDate":"2012-08-03"}, -{"geonameId":"520494","name":"Nizhny Tagil","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":381116,"modificationDate":"2017-10-12"}, -{"geonameId":"4004330","name":"Irapuato","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":380941,"modificationDate":"2018-11-03"}, -{"geonameId":"6941055","name":"Bochum-Hordel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":380000,"modificationDate":"2015-09-05"}, -{"geonameId":"1812955","name":"Dezhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":379555,"modificationDate":"2014-08-05"}, -{"geonameId":"986822","name":"Krugersdorp","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":378821,"modificationDate":"2012-07-12"}, -{"geonameId":"1260482","name":"Pānihāti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":378705,"modificationDate":"2014-10-14"}, -{"geonameId":"1185107","name":"Shibganj","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":378701,"modificationDate":"2017-06-09"}, -{"geonameId":"1849846","name":"Toyohashi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":378374,"modificationDate":"2017-07-22"}, -{"geonameId":"1784130","name":"Zhoukou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":377061,"modificationDate":"2015-09-06"}, -{"geonameId":"6050610","name":"Laval","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":376845,"modificationDate":"2019-09-05"}, -{"geonameId":"3939459","name":"Huancayo","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":376657,"modificationDate":"2019-09-05"}, -{"geonameId":"702320","name":"Makiyivka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":376610,"modificationDate":"2018-08-08"}, -{"geonameId":"1798449","name":"Putian","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":376558,"modificationDate":"2017-07-21"}, -{"geonameId":"310859","name":"Marasion","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":376045,"modificationDate":"2020-06-10"}, -{"geonameId":"1852383","name":"Minato","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":375339,"modificationDate":"2017-04-09"}, -{"geonameId":"3183875","name":"Tirana","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":374801,"modificationDate":"2019-09-05"}, -{"geonameId":"3448639","name":"São José do Rio Preto","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":374699,"modificationDate":"2012-03-10"}, -{"geonameId":"598316","name":"Kaunas","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":374643,"modificationDate":"2019-09-05"}, -{"geonameId":"3522551","name":"Nuevo Laredo","countryName":"Mexico","timeZoneName":"America/Matamoros","timeZoneOffsetNameWithoutDst":"Central Time","population":373725,"modificationDate":"2018-11-03"}, -{"geonameId":"5325738","name":"Bakersfield","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":373640,"modificationDate":"2017-03-09"}, -{"geonameId":"2033574","name":"Zhangjiakou Shi Xuanhua Qu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":373422,"modificationDate":"2015-03-08"}, -{"geonameId":"1734810","name":"Seremban","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":372917,"modificationDate":"2019-09-05"}, -{"geonameId":"3827408","name":"Miguel Hidalgo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":372889,"modificationDate":"2018-11-03"}, -{"geonameId":"2636841","name":"Stoke-on-Trent","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":372775,"modificationDate":"2019-09-05"}, -{"geonameId":"1798654","name":"Pingxiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":372123,"modificationDate":"2018-12-06"}, -{"geonameId":"298117","name":"Van","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":371713,"modificationDate":"2019-09-05"}, -{"geonameId":"5856195","name":"Honolulu","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":371657,"modificationDate":"2020-05-28"}, -{"geonameId":"145459","name":"Abadan","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":370180,"modificationDate":"2019-09-05"}, -{"geonameId":"7304020","name":"Fenghuang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":370000,"modificationDate":"2010-07-26"}, -{"geonameId":"3629672","name":"Puerto La Cruz","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":370000,"modificationDate":"2018-08-08"}, -{"geonameId":"689558","name":"Vinnytsya","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":369839,"modificationDate":"2020-05-17"}, -{"geonameId":"3078610","name":"Brno","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":369559,"modificationDate":"2019-09-05"}, -{"geonameId":"625665","name":"Mahilyow","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":369200,"modificationDate":"2017-12-04"}, -{"geonameId":"7483813","name":"Natore","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":369138,"modificationDate":"2017-06-26"}, -{"geonameId":"4174757","name":"Tampa","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":369075,"modificationDate":"2019-09-05"}, -{"geonameId":"11048323","name":"Sector 6","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":367760,"modificationDate":"2017-11-24"}, -{"geonameId":"2172517","name":"Canberra","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":367752,"modificationDate":"2019-09-05"}, -{"geonameId":"1855612","name":"Nara-shi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":367353,"modificationDate":"2017-07-22"}, -{"geonameId":"1279228","name":"Ahmadnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":367140,"modificationDate":"2019-03-29"}, -{"geonameId":"1272691","name":"Dhūlia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":366980,"modificationDate":"2018-07-13"}, -{"geonameId":"3393536","name":"Olinda","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":366754,"modificationDate":"2012-08-03"}, -{"geonameId":"2544571","name":"Kenitra","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":366570,"modificationDate":"2019-09-05"}, -{"geonameId":"3102014","name":"Bydgoszcz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":366452,"modificationDate":"2019-09-05"}, -{"geonameId":"1735227","name":"Kuantan","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":366229,"modificationDate":"2012-01-17"}, -{"geonameId":"3181928","name":"Bologna","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":366133,"modificationDate":"2016-12-30"}, -{"geonameId":"1845759","name":"Cheonan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":365114,"modificationDate":"2019-02-28"}, -{"geonameId":"3630297","name":"Petare","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":364684,"modificationDate":"2019-04-10"}, -{"geonameId":"1172128","name":"Larkana","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":364033,"modificationDate":"2019-12-06"}, -{"geonameId":"379062","name":"Al Qadarif","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":363945,"modificationDate":"2017-02-09"}, -{"geonameId":"2192362","name":"Christchurch","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":363926,"modificationDate":"2019-09-05"}, -{"geonameId":"487846","name":"Voroshilovsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":363064,"modificationDate":"2020-06-10"}, -{"geonameId":"1849814","name":"Toyota","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":362383,"modificationDate":"2012-02-18"}, -{"geonameId":"2187404","name":"Manukau City","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":362000,"modificationDate":"2011-08-01"}, -{"geonameId":"1784853","name":"Zhaoqing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":361969,"modificationDate":"2019-03-06"}, -{"geonameId":"6947637","name":"Ataşehir","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":361615,"modificationDate":"2015-04-03"}, -{"geonameId":"1276300","name":"Bhāgalpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":361548,"modificationDate":"2014-10-14"}, -{"geonameId":"1165221","name":"Shekhupura","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":361303,"modificationDate":"2019-12-06"}, -{"geonameId":"3466998","name":"Carapicuíba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":361112,"modificationDate":"2013-07-09"}, -{"geonameId":"2805753","name":"Wuppertal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":360797,"modificationDate":"2019-09-05"}, -{"geonameId":"2294877","name":"Tamale","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":360579,"modificationDate":"2019-12-06"}, -{"geonameId":"2014407","name":"Ulan-Ude","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":360278,"modificationDate":"2019-09-04"}, -{"geonameId":"1856215","name":"Nagano","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":360176,"modificationDate":"2017-04-09"}, -{"geonameId":"2362344","name":"Bobo-Dioulasso","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":360106,"modificationDate":"2017-05-21"}, -{"geonameId":"765876","name":"Lublin","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":360044,"modificationDate":"2019-09-05"}, -{"geonameId":"11694038","name":"Huocheng","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":360000,"modificationDate":"2018-12-06"}, -{"geonameId":"5412347","name":"Aurora","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":359407,"modificationDate":"2017-03-09"}, -{"geonameId":"2652221","name":"Coventry","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":359262,"modificationDate":"2019-09-05"}, -{"geonameId":"6324729","name":"Halifax","countryName":"Canada","timeZoneName":"America/Halifax","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":359111,"modificationDate":"2019-09-23"}, -{"geonameId":"1817993","name":"Anqing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":358661,"modificationDate":"2016-04-08"}, -{"geonameId":"1516905","name":"Taraz","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":358153,"modificationDate":"2019-09-05"}, -{"geonameId":"1689395","name":"San Jose del Monte","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":357828,"modificationDate":"2017-12-13"}, -{"geonameId":"3675443","name":"Manizales","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":357814,"modificationDate":"2016-01-28"}, -{"geonameId":"1948005","name":"Kwangmyŏng","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":357545,"modificationDate":"2012-01-20"}, -{"geonameId":"111453","name":"Zanjān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":357471,"modificationDate":"2017-02-08"}, -{"geonameId":"2112539","name":"Iwaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":357309,"modificationDate":"2017-07-22"}, -{"geonameId":"1729524","name":"Bacoor","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":356974,"modificationDate":"2019-08-29"}, -{"geonameId":"2130629","name":"Asahikawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":356612,"modificationDate":"2019-09-05"}, -{"geonameId":"3514519","name":"Xico","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":356352,"modificationDate":"2018-11-03"}, -{"geonameId":"1842943","name":"Kimhae","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":356242,"modificationDate":"2012-01-18"}, -{"geonameId":"581049","name":"Novyye Kholmogory","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":356051,"modificationDate":"2020-06-10"}, -{"geonameId":"1651531","name":"Ambon","countryName":"Indonesia","timeZoneName":"Asia/Jayapura","timeZoneOffsetNameWithoutDst":"Eastern Indonesia Time","population":355596,"modificationDate":"2019-09-05"}, -{"geonameId":"1629001","name":"Samarinda","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":355160,"modificationDate":"2019-09-05"}, -{"geonameId":"3827406","name":"Benito Juarez","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":355017,"modificationDate":"2015-06-22"}, -{"geonameId":"3128026","name":"Bilbao","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":354860,"modificationDate":"2019-09-05"}, -{"geonameId":"3835869","name":"Santiago del Estero","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":354692,"modificationDate":"2019-09-05"}, -{"geonameId":"1850910","name":"Takatsuki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":354468,"modificationDate":"2017-07-22"}, -{"geonameId":"734077","name":"Solun","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":354290,"modificationDate":"2020-06-10"}, -{"geonameId":"3514670","name":"Villahermosa","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":353577,"modificationDate":"2018-11-03"}, -{"geonameId":"3648546","name":"Barinas","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":353442,"modificationDate":"2013-08-06"}, -{"geonameId":"3673899","name":"Neiva","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":352855,"modificationDate":"2018-04-19"}, -{"geonameId":"4005867","name":"Ciudad General Escobedo","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":352444,"modificationDate":"2018-11-03"}, -{"geonameId":"1854376","name":"Okazaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":352361,"modificationDate":"2017-07-22"}, -{"geonameId":"141681","name":"Bandar Abbas","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":352173,"modificationDate":"2019-09-05"}, -{"geonameId":"291074","name":"Ras Al Khaimah City","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":351943,"modificationDate":"2019-09-09"}, -{"geonameId":"1817968","name":"Anshun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":351936,"modificationDate":"2013-03-25"}, -{"geonameId":"1851483","name":"Suita","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":351630,"modificationDate":"2017-07-22"}, -{"geonameId":"1926004","name":"Wakayama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":351000,"modificationDate":"2017-04-09"}, -{"geonameId":"5323810","name":"Anaheim","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":350742,"modificationDate":"2019-09-05"}, -{"geonameId":"1674504","name":"Hualien City","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":350468,"modificationDate":"2017-09-26"}, -{"geonameId":"1707267","name":"Lapu-Lapu City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":350467,"modificationDate":"2017-12-27"}, -{"geonameId":"1259239","name":"Punāsa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":350000,"modificationDate":"2015-10-04"}, -{"geonameId":"8764562","name":"Diepsloot","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":350000,"modificationDate":"2014-04-08"}, -{"geonameId":"1262332","name":"Muzaffarnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":349706,"modificationDate":"2018-05-27"}, -{"geonameId":"3176959","name":"Florence","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":349296,"modificationDate":"2020-01-02"}, -{"geonameId":"117574","name":"Sanandaj","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":349176,"modificationDate":"2019-09-05"}, -{"geonameId":"1265014","name":"Latur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":348967,"modificationDate":"2014-10-13"}, -{"geonameId":"3403642","name":"Campina Grande","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":348936,"modificationDate":"2012-08-03"}, -{"geonameId":"3566067","name":"Puerto Principe","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":347562,"modificationDate":"2020-06-10"}, -{"geonameId":"6058560","name":"London","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":346765,"modificationDate":"2012-08-19"}, -{"geonameId":"2038067","name":"Chifeng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":346654,"modificationDate":"2013-04-12"}, -{"geonameId":"1877030","name":"Hungyam","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":346082,"modificationDate":"2020-06-11"}, -{"geonameId":"1526273","name":"Nur-Sultan","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":345604,"modificationDate":"2020-06-11"}, -{"geonameId":"11048318","name":"Sector 2","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":345370,"modificationDate":"2017-11-24"}, -{"geonameId":"578072","name":"Belgorod","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":345289,"modificationDate":"2019-09-05"}, -{"geonameId":"371760","name":"Kosti","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":345068,"modificationDate":"2014-05-28"}, -{"geonameId":"2035261","name":"Taihecun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":345033,"modificationDate":"2017-06-06"}, -{"geonameId":"290030","name":"Doha","countryName":"Qatar","timeZoneName":"Asia/Qatar","timeZoneOffsetNameWithoutDst":"Arabian Time","population":344939,"modificationDate":"2019-09-05"}, -{"geonameId":"3625829","name":"Turmero","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":344700,"modificationDate":"2015-01-17"}, -{"geonameId":"1501321","name":"Kurgan","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":343129,"modificationDate":"2019-09-05"}, -{"geonameId":"1185188","name":"Rangpur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":343122,"modificationDate":"2016-11-09"}, -{"geonameId":"1182637","name":"Bhimbar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":342900,"modificationDate":"2019-12-06"}, -{"geonameId":"620127","name":"Vitebsk","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":342700,"modificationDate":"2018-10-27"}, -{"geonameId":"1711084","name":"Iligan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":342618,"modificationDate":"2017-12-13"}, -{"geonameId":"3667849","name":"Soledad","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":342556,"modificationDate":"2018-07-04"}, -{"geonameId":"1795060","name":"Shiqi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":342306,"modificationDate":"2012-01-18"}, -{"geonameId":"3453643","name":"Piracicaba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":342209,"modificationDate":"2012-03-10"}, -{"geonameId":"2657896","name":"Zürich","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":341730,"modificationDate":"2019-09-05"}, -{"geonameId":"1265767","name":"Kūkatpalli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":341709,"modificationDate":"2014-10-10"}, -{"geonameId":"1175892","name":"Jhang Sadr","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":341210,"modificationDate":"2019-12-06"}, -{"geonameId":"161325","name":"Arusha","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":341136,"modificationDate":"2016-07-26"}, -{"geonameId":"1278840","name":"Ambattūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":341049,"modificationDate":"2014-10-14"}, -{"geonameId":"2112141","name":"Kōriyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":340560,"modificationDate":"2017-07-22"}, -{"geonameId":"728193","name":"Plovdiv","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":340494,"modificationDate":"2016-02-07"}, -{"geonameId":"4014875","name":"Celaya","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":340387,"modificationDate":"2018-11-03"}, -{"geonameId":"1106542","name":"Chitungwiza","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":340360,"modificationDate":"2019-09-05"}, -{"geonameId":"1859924","name":"Kashiwa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":340221,"modificationDate":"2019-02-28"}, -{"geonameId":"173576","name":"Latakia","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":340181,"modificationDate":"2019-09-05"}, -{"geonameId":"1529660","name":"Aksu","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":340020,"modificationDate":"2017-07-21"}, -{"geonameId":"2411989","name":"Serekunda","countryName":"Gambia","timeZoneName":"Africa/Banjul","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":340000,"modificationDate":"2017-11-20"}, -{"geonameId":"1850181","name":"Tokorozawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":339435,"modificationDate":"2017-07-22"}, -{"geonameId":"3435217","name":"Corrientes","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":339067,"modificationDate":"2019-09-05"}, -{"geonameId":"553915","name":"Kaluga","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":338978,"modificationDate":"2019-09-05"}, -{"geonameId":"3396016","name":"Macapá","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":338936,"modificationDate":"2012-08-03"}, -{"geonameId":"4498303","name":"West Raleigh","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":338759,"modificationDate":"2017-05-23"}, -{"geonameId":"3529947","name":"Cuernavaca","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":338650,"modificationDate":"2019-09-05"}, -{"geonameId":"2990440","name":"Nice","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":338620,"modificationDate":"2019-09-05"}, -{"geonameId":"1876373","name":"Songdo","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":338155,"modificationDate":"2020-06-11"}, -{"geonameId":"3645532","name":"Angostura","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":338000,"modificationDate":"2020-06-10"}, -{"geonameId":"1859740","name":"Kawagoe","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":337931,"modificationDate":"2017-07-22"}, -{"geonameId":"1185098","name":"Tungi","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":337579,"modificationDate":"2016-11-09"}, -{"geonameId":"8504952","name":"Krasnogvargeisky","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":337091,"modificationDate":"2013-04-12"}, -{"geonameId":"963241","name":"Randburg","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":337053,"modificationDate":"2017-12-06"}, -{"geonameId":"1276509","name":"Bellary","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":336681,"modificationDate":"2015-11-08"}, -{"geonameId":"3460644","name":"Itaquaquecetuba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":336679,"modificationDate":"2012-08-03"}, -{"geonameId":"693805","name":"Simferopol","countryName":"Ukraine","timeZoneName":"Europe/Simferopol","timeZoneOffsetNameWithoutDst":"Moscow Time","population":336460,"modificationDate":"2019-09-05"}, -{"geonameId":"1859146","name":"Kochi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":335570,"modificationDate":"2017-04-09"}, -{"geonameId":"2636531","name":"Sunderland","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":335415,"modificationDate":"2017-06-12"}, -{"geonameId":"5392900","name":"Santa Ana","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":335400,"modificationDate":"2019-09-05"}, -{"geonameId":"3470279","name":"Bauru","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":335024,"modificationDate":"2013-03-16"}, -{"geonameId":"3621849","name":"San José","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":335007,"modificationDate":"2019-10-07"}, -{"geonameId":"2521978","name":"Alicante","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":334757,"modificationDate":"2019-09-05"}, -{"geonameId":"1851100","name":"Takamatsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":334223,"modificationDate":"2019-09-05"}, -{"geonameId":"2034439","name":"Tieling","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":333907,"modificationDate":"2018-12-06"}, -{"geonameId":"119505","name":"Qazvin","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":333635,"modificationDate":"2013-05-16"}, -{"geonameId":"1262330","name":"Muzaffarpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":333200,"modificationDate":"2017-03-19"}, -{"geonameId":"1268257","name":"Kamarhatty","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":332965,"modificationDate":"2020-06-10"}, -{"geonameId":"3981941","name":"Tepic","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":332863,"modificationDate":"2019-02-27"}, -{"geonameId":"364103","name":"Wad Medani","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":332714,"modificationDate":"2018-03-29"}, -{"geonameId":"1805741","name":"Jincheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":332650,"modificationDate":"2012-01-18"}, -{"geonameId":"3456814","name":"Montes Claros","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":332379,"modificationDate":"2012-08-03"}, -{"geonameId":"2949186","name":"Bielefeld","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":331906,"modificationDate":"2019-09-05"}, -{"geonameId":"425378","name":"Bujumbura","countryName":"Burundi","timeZoneName":"Africa/Bujumbura","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":331700,"modificationDate":"2019-09-05"}, -{"geonameId":"1701947","name":"Mandaue City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":331320,"modificationDate":"2017-12-27"}, -{"geonameId":"127319","name":"Khorramshahr","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":330606,"modificationDate":"2014-09-04"}, -{"geonameId":"1263364","name":"Mathura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":330511,"modificationDate":"2015-08-07"}, -{"geonameId":"127349","name":"Khorramabad","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":329825,"modificationDate":"2016-01-23"}, -{"geonameId":"3583096","name":"Soyapango","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":329708,"modificationDate":"2014-07-20"}, -{"geonameId":"1260107","name":"Patiāla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":329224,"modificationDate":"2015-08-07"}, -{"geonameId":"1866923","name":"Yuensan","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":329207,"modificationDate":"2020-06-11"}, -{"geonameId":"2654789","name":"Brent","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":329100,"modificationDate":"2019-07-03"}, -{"geonameId":"1520240","name":"Pavlodar","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":329002,"modificationDate":"2019-09-05"}, -{"geonameId":"2519240","name":"Corduba","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":328428,"modificationDate":"2020-06-11"}, -{"geonameId":"1274693","name":"Chandrapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":328351,"modificationDate":"2020-06-10"}, -{"geonameId":"3467467","name":"Canoas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":328291,"modificationDate":"2012-08-03"}, -{"geonameId":"491422","name":"Sochi","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":327608,"modificationDate":"2014-01-09"}, -{"geonameId":"2044757","name":"Chongjin","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":327000,"modificationDate":"2013-05-22"}, -{"geonameId":"2033467","name":"Yanji","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":326957,"modificationDate":"2017-06-29"}, -{"geonameId":"1275960","name":"Bhīlwāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":326431,"modificationDate":"2015-06-07"}, -{"geonameId":"2528910","name":"Tétouan","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":326261,"modificationDate":"2019-09-05"}, -{"geonameId":"3457001","name":"Mogi das Cruzes","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":325746,"modificationDate":"2012-09-27"}, -{"geonameId":"1849876","name":"Toyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":325532,"modificationDate":"2017-04-09"}, -{"geonameId":"3693528","name":"Piura","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":325466,"modificationDate":"2019-09-05"}, -{"geonameId":"2655613","name":"Birkenhead","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":325264,"modificationDate":"2017-06-12"}, -{"geonameId":"1254187","name":"Thrissur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":325110,"modificationDate":"2019-08-28"}, -{"geonameId":"1275198","name":"Brahmapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":324726,"modificationDate":"2014-10-14"}, -{"geonameId":"3448136","name":"São Vicente","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":324457,"modificationDate":"2012-08-03"}, -{"geonameId":"515012","name":"Oriol","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":324200,"modificationDate":"2020-06-10"}, -{"geonameId":"4683416","name":"Corpus Christi","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":324074,"modificationDate":"2019-09-05"}, -{"geonameId":"1793879","name":"Suizhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":323945,"modificationDate":"2006-01-17"}, -{"geonameId":"3429886","name":"Posadas","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":323739,"modificationDate":"2015-04-22"}, -{"geonameId":"99608","name":"Amarah","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":323302,"modificationDate":"2020-06-10"}, -{"geonameId":"472231","name":"Volzhskiy","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":323293,"modificationDate":"2016-12-14"}, -{"geonameId":"5387877","name":"Riverside","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":322424,"modificationDate":"2017-03-09"}, -{"geonameId":"3526682","name":"Ixtapaluca","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":322271,"modificationDate":"2018-11-03"}, -{"geonameId":"3665900","name":"Villavicencio","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":321717,"modificationDate":"2015-04-04"}, -{"geonameId":"3459462","name":"Jundiaí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":321589,"modificationDate":"2013-03-17"}, -{"geonameId":"3701329","name":"San Miguelito","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":321501,"modificationDate":"2015-04-08"}, -{"geonameId":"491687","name":"Smolensk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":320991,"modificationDate":"2019-09-05"}, -{"geonameId":"3439101","name":"Ciudad del Este","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":320782,"modificationDate":"2018-04-09"}, -{"geonameId":"3454244","name":"Pelotas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":320674,"modificationDate":"2018-12-05"}, -{"geonameId":"1256728","name":"Shāhjānpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":320434,"modificationDate":"2019-03-04"}, -{"geonameId":"2113126","name":"Akita","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":320069,"modificationDate":"2018-07-23"}, -{"geonameId":"2244802","name":"Thiès","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":320000,"modificationDate":"2017-11-19"}, -{"geonameId":"2228373","name":"Maroua","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":319941,"modificationDate":"2012-01-16"}, -{"geonameId":"3430545","name":"6 de Septiembre","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":319934,"modificationDate":"2020-06-10"}, -{"geonameId":"3472287","name":"Anápolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":319587,"modificationDate":"2012-08-03"}, -{"geonameId":"1256515","name":"Shimoga","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":319550,"modificationDate":"2014-10-14"}, -{"geonameId":"1216265","name":"Samarkand","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":319366,"modificationDate":"2019-01-09"}, -{"geonameId":"524305","name":"Murmansk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":319263,"modificationDate":"2019-09-05"}, -{"geonameId":"2646003","name":"Islington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":319143,"modificationDate":"2019-10-01"}, -{"geonameId":"3556969","name":"Holquin","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":319102,"modificationDate":"2020-06-10"}, -{"geonameId":"1520316","name":"Ust-Kamenogorsk","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":319067,"modificationDate":"2017-09-19"}, -{"geonameId":"99762","name":"Hiska","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":318801,"modificationDate":"2020-06-10"}, -{"geonameId":"1787858","name":"Shangrao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":318769,"modificationDate":"2016-06-04"}, -{"geonameId":"1635882","name":"Mataram","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":318674,"modificationDate":"2014-07-16"}, -{"geonameId":"1514588","name":"Andijon","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":318419,"modificationDate":"2017-02-20"}, -{"geonameId":"2639577","name":"Reading","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":318014,"modificationDate":"2017-06-12"}, -{"geonameId":"675810","name":"Iaşi","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":318012,"modificationDate":"2019-09-05"}, -{"geonameId":"3106672","name":"Valladolid","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":317864,"modificationDate":"2019-09-05"}, -{"geonameId":"1261481","name":"New Delhi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":317797,"modificationDate":"2020-01-15"}, -{"geonameId":"1858729","name":"Koshigaya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":317437,"modificationDate":"2017-07-22"}, -{"geonameId":"473249","name":"Vladikavkaz","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":317370,"modificationDate":"2019-09-05"}, -{"geonameId":"627904","name":"Hrodna","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":317365,"modificationDate":"2019-09-05"}, -{"geonameId":"3096472","name":"Katowice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":317316,"modificationDate":"2019-09-05"}, -{"geonameId":"1258076","name":"Rohtak","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":317245,"modificationDate":"2015-01-07"}, -{"geonameId":"2038569","name":"Baicheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":316970,"modificationDate":"2019-10-06"}, -{"geonameId":"3698304","name":"Chimbote","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":316966,"modificationDate":"2017-02-05"}, -{"geonameId":"681290","name":"Cluj-Napoca","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":316748,"modificationDate":"2020-06-10"}, -{"geonameId":"1720681","name":"Calamba","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":316612,"modificationDate":"2019-02-28"}, -{"geonameId":"2347470","name":"Bauchi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":316149,"modificationDate":"2016-06-22"}, -{"geonameId":"569223","name":"Cherepovets","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":315738,"modificationDate":"2019-09-05"}, -{"geonameId":"4407066","name":"St. Louis","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":315685,"modificationDate":"2019-09-05"}, -{"geonameId":"3689560","name":"Armenia","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":315328,"modificationDate":"2018-04-18"}, -{"geonameId":"99131","name":"Al Kūt","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":315162,"modificationDate":"2016-06-22"}, -{"geonameId":"665087","name":"Timişoara","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":315053,"modificationDate":"2016-07-30"}, -{"geonameId":"472459","name":"Vologda","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":314900,"modificationDate":"2019-09-05"}, -{"geonameId":"739549","name":"Şişli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":314684,"modificationDate":"2010-12-30"}, -{"geonameId":"4297999","name":"Lexington-Fayette","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":314488,"modificationDate":"2017-03-09"}, -{"geonameId":"2645425","name":"Kingston upon Hull","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":314018,"modificationDate":"2017-06-12"}, -{"geonameId":"3667905","name":"Soacha","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":313945,"modificationDate":"2018-07-04"}, -{"geonameId":"2529013","name":"Temara","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":313510,"modificationDate":"2017-12-06"}, -{"geonameId":"2639912","name":"Preston","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":313332,"modificationDate":"2019-09-05"}, -{"geonameId":"586523","name":"Ganja","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":313300,"modificationDate":"2017-07-08"}, -{"geonameId":"2036434","name":"Lianshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":313247,"modificationDate":"2012-01-18"}, -{"geonameId":"317109","name":"Denizli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":313238,"modificationDate":"2019-09-05"}, -{"geonameId":"2338313","name":"Ikeja","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":313196,"modificationDate":"2016-01-30"}, -{"geonameId":"2946447","name":"Bonn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":313125,"modificationDate":"2019-09-05"}, -{"geonameId":"3068799","name":"Ostrava","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":313088,"modificationDate":"2018-09-08"}, -{"geonameId":"726050","name":"Varna","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":312770,"modificationDate":"2019-09-05"}, -{"geonameId":"3444924","name":"Vitória","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":312656,"modificationDate":"2012-08-03"}, -{"geonameId":"1792621","name":"Wusong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":312588,"modificationDate":"2012-01-18"}, -{"geonameId":"1711082","name":"Iligan City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":312323,"modificationDate":"2010-08-14"}, -{"geonameId":"3941584","name":"Cusco","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":312140,"modificationDate":"2019-09-05"}, -{"geonameId":"3457671","name":"Maringá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":311724,"modificationDate":"2012-03-10"}, -{"geonameId":"1856717","name":"Miyazaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":311203,"modificationDate":"2017-04-09"}, -{"geonameId":"1214189","name":"Percut","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":311063,"modificationDate":"2012-01-17"}, -{"geonameId":"3693345","name":"Pucallpa","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":310750,"modificationDate":"2012-07-19"}, -{"geonameId":"1805680","name":"Jingdezhen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":310565,"modificationDate":"2012-01-18"}, -{"geonameId":"3461789","name":"Guarujá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":310424,"modificationDate":"2015-06-03"}, -{"geonameId":"1870883","name":"Syariin","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":310100,"modificationDate":"2020-06-11"}, -{"geonameId":"473247","name":"Vladimir","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":310024,"modificationDate":"2019-09-05"}, -{"geonameId":"3899539","name":"Antofagasta","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":309832,"modificationDate":"2013-01-11"}, -{"geonameId":"1016670","name":"Botshabelo","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":309714,"modificationDate":"2016-08-04"}, -{"geonameId":"1649150","name":"Bengkulu","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":309712,"modificationDate":"2010-08-09"}, -{"geonameId":"1722186","name":"Butuan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":309709,"modificationDate":"2017-12-13"}, -{"geonameId":"3516355","name":"Tampico","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":309003,"modificationDate":"2019-09-05"}, -{"geonameId":"6094578","name":"Oshawa","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":308875,"modificationDate":"2019-08-08"}, -{"geonameId":"1721281","name":"Cabuyao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":308745,"modificationDate":"2017-12-13"}, -{"geonameId":"2025339","name":"Chita","countryName":"Russia","timeZoneName":"Asia/Chita","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":308500,"modificationDate":"2017-06-22"}, -{"geonameId":"2155472","name":"Newcastle","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":308308,"modificationDate":"2019-09-05"}, -{"geonameId":"3666304","name":"Valledupar","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":308237,"modificationDate":"2016-01-28"}, -{"geonameId":"2503826","name":"Biskra","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":307987,"modificationDate":"2018-08-08"}, -{"geonameId":"2873891","name":"Mannheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":307960,"modificationDate":"2019-09-05"}, -{"geonameId":"710735","name":"Chernihiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":307684,"modificationDate":"2019-09-05"}, -{"geonameId":"248946","name":"Irbid","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":307480,"modificationDate":"2019-09-05"}, -{"geonameId":"1254089","name":"Tumakooru","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":307359,"modificationDate":"2020-06-10"}, -{"geonameId":"1846052","name":"Chinju","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":307242,"modificationDate":"2015-06-03"}, -{"geonameId":"2641598","name":"Newport","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":306844,"modificationDate":"2019-09-19"}, -{"geonameId":"1734199","name":"Tawau","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":306462,"modificationDate":"2018-09-19"}, -{"geonameId":"1812101","name":"Shengli","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":306450,"modificationDate":"2014-08-05"}, -{"geonameId":"1271885","name":"Fīrozābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":306409,"modificationDate":"2015-08-07"}, -{"geonameId":"361320","name":"Shedit","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":306393,"modificationDate":"2020-06-11"}, -{"geonameId":"3662762","name":"Porto Velho","countryName":"Brazil","timeZoneName":"America/Porto_Velho","timeZoneOffsetNameWithoutDst":"Amazon Time","population":306180,"modificationDate":"2012-08-03"}, -{"geonameId":"3836564","name":"San Salvador de Jujuy","countryName":"Argentina","timeZoneName":"America/Argentina/Jujuy","timeZoneOffsetNameWithoutDst":"Argentina Time","population":305891,"modificationDate":"2019-09-05"}, -{"geonameId":"1016181","name":"Brakpan","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":305692,"modificationDate":"2012-07-12"}, -{"geonameId":"5399020","name":"Stockton","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":305658,"modificationDate":"2017-03-09"}, -{"geonameId":"1701966","name":"Mandaluyong City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":305576,"modificationDate":"2017-12-13"}, -{"geonameId":"1261258","name":"Nizāmābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":305438,"modificationDate":"2014-10-10"}, -{"geonameId":"1265711","name":"Kulti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":305405,"modificationDate":"2014-10-14"}, -{"geonameId":"3530580","name":"Ciudad Victoria","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":305155,"modificationDate":"2018-11-03"}, -{"geonameId":"3515463","name":"Tláhuac","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":305076,"modificationDate":"2018-11-03"}, -{"geonameId":"3463011","name":"Franca","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":305041,"modificationDate":"2012-03-10"}, -{"geonameId":"1258932","name":"Rajamandri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":304804,"modificationDate":"2020-06-10"}, -{"geonameId":"5206379","name":"Pittsburgh","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":304391,"modificationDate":"2019-09-05"}, -{"geonameId":"680332","name":"Craiova","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":304142,"modificationDate":"2019-09-05"}, -{"geonameId":"680963","name":"Constanţa","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":303399,"modificationDate":"2019-10-04"}, -{"geonameId":"498698","name":"Saransk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":303394,"modificationDate":"2019-09-05"}, -{"geonameId":"1133616","name":"Mazari-Sharif","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":303282,"modificationDate":"2020-06-09"}, -{"geonameId":"1277029","name":"Bordhoman","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":301725,"modificationDate":"2020-06-10"}, -{"geonameId":"2692969","name":"Malmö","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":301706,"modificationDate":"2017-03-18"}, -{"geonameId":"1177654","name":"Gujrat","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":301506,"modificationDate":"2019-12-06"}, -{"geonameId":"1856035","name":"Naha","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":300795,"modificationDate":"2017-04-09"}, -{"geonameId":"629634","name":"Brest","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":300715,"modificationDate":"2017-05-07"}, -{"geonameId":"1170880","name":"Mardan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":300424,"modificationDate":"2019-12-06"}, -{"geonameId":"1490624","name":"Surgut","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":300367,"modificationDate":"2019-09-05"}, -{"geonameId":"2636432","name":"Swansea","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":300352,"modificationDate":"2017-06-12"}, -{"geonameId":"1529046","name":"Xinyuan","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":300000,"modificationDate":"2017-09-07"}, -{"geonameId":"1787323","name":"Yangshuo","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":300000,"modificationDate":"2010-01-11"}, -{"geonameId":"1519922","name":"Kyzylorda","countryName":"Kazakhstan","timeZoneName":"Asia/Qyzylorda","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":300000,"modificationDate":"2019-09-05"}, -{"geonameId":"1735106","name":"George Town","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":300000,"modificationDate":"2019-03-13"}, -{"geonameId":"1725115","name":"Biñan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":300000,"modificationDate":"2017-12-13"}, -{"geonameId":"1171305","name":"Malir Cantonment","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":300000,"modificationDate":"2018-02-06"}, -{"geonameId":"363807","name":"Winejok","countryName":"South Sudan","timeZoneName":"Africa/Juba","timeZoneOffsetNameWithoutDst":"East Africa Time","population":300000,"modificationDate":"2017-06-17"}, -{"geonameId":"442301","name":"Batikent","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":300000,"modificationDate":"2017-12-21"}, -{"geonameId":"3632308","name":"Mérida","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":300000,"modificationDate":"2019-09-05"}, -{"geonameId":"1730737","name":"Angeles City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":299391,"modificationDate":"2017-12-13"}, -{"geonameId":"2654993","name":"Bradford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":299310,"modificationDate":"2019-09-05"}, -{"geonameId":"1687687","name":"Santol","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":298976,"modificationDate":"2017-12-13"}, -{"geonameId":"5879400","name":"Anchorage","countryName":"United States","timeZoneName":"America/Anchorage","timeZoneOffsetNameWithoutDst":"Alaska Time","population":298695,"modificationDate":"2019-09-05"}, -{"geonameId":"4013704","name":"Obregon","countryName":"Mexico","timeZoneName":"America/Hermosillo","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":298625,"modificationDate":"2020-06-10"}, -{"geonameId":"1859891","name":"Kasugai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":298589,"modificationDate":"2017-07-26"}, -{"geonameId":"1642588","name":"Jember","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":298585,"modificationDate":"2014-05-11"}, -{"geonameId":"2130658","name":"Aomori","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":298394,"modificationDate":"2017-08-03"}, -{"geonameId":"1853574","name":"Ōtsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":298164,"modificationDate":"2019-09-05"}, -{"geonameId":"1277065","name":"Bārāsat","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":298127,"modificationDate":"2016-03-10"}, -{"geonameId":"315808","name":"Mezreh","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":298004,"modificationDate":"2020-06-10"}, -{"geonameId":"12165955","name":"Mulugu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":297671,"modificationDate":"2020-05-17"}, -{"geonameId":"7281931","name":"Okanagan","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":297601,"modificationDate":"2012-01-17"}, -{"geonameId":"3105976","name":"Vigo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":297332,"modificationDate":"2019-09-05"}, -{"geonameId":"1847966","name":"Akashi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":297279,"modificationDate":"2017-07-28"}, -{"geonameId":"1277539","name":"Bally","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":296973,"modificationDate":"2020-06-10"}, -{"geonameId":"4508722","name":"Cincinnati","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":296943,"modificationDate":"2019-09-05"}, -{"geonameId":"1270022","name":"Hisar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":296436,"modificationDate":"2015-06-01"}, -{"geonameId":"1258599","name":"Rāmpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":296418,"modificationDate":"2015-06-07"}, -{"geonameId":"1848373","name":"Yokkaichi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":295841,"modificationDate":"2019-09-05"}, -{"geonameId":"1884138","name":"Yeosu","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":295538,"modificationDate":"2019-04-15"}, -{"geonameId":"2637433","name":"Southend-on-Sea","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":295310,"modificationDate":"2018-03-12"}, -{"geonameId":"2111834","name":"Morioka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":295172,"modificationDate":"2017-04-09"}, -{"geonameId":"3868121","name":"Viña del Mar","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":294551,"modificationDate":"2017-02-20"}, -{"geonameId":"692194","name":"Sumy","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":294456,"modificationDate":"2019-09-05"}, -{"geonameId":"2112923","name":"Fukushima","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":294237,"modificationDate":"2017-04-09"}, -{"geonameId":"677697","name":"Galaţi","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":294087,"modificationDate":"2019-04-18"}, -{"geonameId":"3469968","name":"Blumenau","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":293949,"modificationDate":"2012-03-10"}, -{"geonameId":"6954929","name":"Greater Noida","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":293908,"modificationDate":"2014-10-14"}, -{"geonameId":"7279746","name":"Noida","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":293908,"modificationDate":"2014-10-14"}, -{"geonameId":"3463030","name":"Foz do Iguaçu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":293523,"modificationDate":"2016-10-28"}, -{"geonameId":"109571","name":"Al Hufūf","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":293179,"modificationDate":"2017-10-03"}, -{"geonameId":"1268561","name":"Godavari","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":292923,"modificationDate":"2020-06-10"}, -{"geonameId":"1260476","name":"Pānīpat","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":292808,"modificationDate":"2015-09-06"}, -{"geonameId":"1519422","name":"Semey","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":292780,"modificationDate":"2017-04-07"}, -{"geonameId":"2331140","name":"Makurdi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":292645,"modificationDate":"2016-01-30"}, -{"geonameId":"2171507","name":"Wollongong","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":292190,"modificationDate":"2019-09-05"}, -{"geonameId":"3453186","name":"Ponta Grossa","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":292177,"modificationDate":"2012-08-03"}, -{"geonameId":"2330100","name":"Minna","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":291905,"modificationDate":"2016-01-30"}, -{"geonameId":"776069","name":"Białystok","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":291855,"modificationDate":"2019-12-16"}, -{"geonameId":"154380","name":"Mbeya","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":291649,"modificationDate":"2016-07-26"}, -{"geonameId":"1608133","name":"Mueang Nonthaburi","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":291555,"modificationDate":"2017-04-05"}, -{"geonameId":"1842225","name":"Gumi","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":291006,"modificationDate":"2013-05-11"}, -{"geonameId":"484646","name":"Tambov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":290933,"modificationDate":"2019-09-05"}, -{"geonameId":"2525068","name":"Catania","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":290927,"modificationDate":"2018-03-17"}, -{"geonameId":"109101","name":"Al Mubarraz","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":290802,"modificationDate":"2017-10-03"}, -{"geonameId":"2235189","name":"Bafoussam","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":290768,"modificationDate":"2013-09-05"}, -{"geonameId":"1174625","name":"Kasur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":290643,"modificationDate":"2019-12-06"}, -{"geonameId":"2745912","name":"Utrecht","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":290529,"modificationDate":"2019-09-05"}, -{"geonameId":"1788245","name":"Xiuying","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":290000,"modificationDate":"2012-05-19"}, -{"geonameId":"3392740","name":"Paulista","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":289971,"modificationDate":"2012-08-03"}, -{"geonameId":"99347","name":"Hilla","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":289709,"modificationDate":"2020-06-10"}, -{"geonameId":"3458575","name":"Limeira","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":289665,"modificationDate":"2012-08-03"}, -{"geonameId":"1260341","name":"Parbhani","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":289629,"modificationDate":"2014-10-13"}, -{"geonameId":"6174041","name":"Victoria","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":289625,"modificationDate":"2019-04-30"}, -{"geonameId":"1816705","name":"Beihai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":289568,"modificationDate":"2012-01-18"}, -{"geonameId":"1806776","name":"Huizhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":289201,"modificationDate":"2015-03-15"}, -{"geonameId":"706448","name":"Kherson","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":289096,"modificationDate":"2020-05-20"}, -{"geonameId":"737071","name":"Zeytinburnu","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":288743,"modificationDate":"2011-01-04"}, -{"geonameId":"1818209","name":"Tsuen Wan","countryName":"Hong Kong","timeZoneName":"Asia/Hong_Kong","timeZoneOffsetNameWithoutDst":"Hong Kong Time","population":288728,"modificationDate":"2019-04-27"}, -{"geonameId":"4295940","name":"Ironville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":288649,"modificationDate":"2012-07-14"}, -{"geonameId":"4300488","name":"Meads","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":288649,"modificationDate":"2012-07-14"}, -{"geonameId":"2481700","name":"Sétif","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":288461,"modificationDate":"2019-09-05"}, -{"geonameId":"696643","name":"Poltava","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":288324,"modificationDate":"2020-05-19"}, -{"geonameId":"2537881","name":"Safi","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":288163,"modificationDate":"2019-09-05"}, -{"geonameId":"2040893","name":"Wi-ju","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":288112,"modificationDate":"2020-06-11"}, -{"geonameId":"11048320","name":"Sector 4","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":287828,"modificationDate":"2017-11-24"}, -{"geonameId":"1580240","name":"Huế","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":287217,"modificationDate":"2013-12-09"}, -{"geonameId":"1273491","name":"Darbhanga","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":287150,"modificationDate":"2019-09-05"}, -{"geonameId":"2911287","name":"Marienthal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":287101,"modificationDate":"2017-08-14"}, -{"geonameId":"752850","name":"Adapazarı","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":286787,"modificationDate":"2019-09-05"}, -{"geonameId":"7628419","name":"Sultanbeyli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":286622,"modificationDate":"2018-03-09"}, -{"geonameId":"5505411","name":"Henderson","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":285667,"modificationDate":"2019-09-05"}, -{"geonameId":"4469146","name":"Greensboro","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":285342,"modificationDate":"2019-09-05"}, -{"geonameId":"3445156","name":"Viamão","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":285269,"modificationDate":"2012-08-03"}, -{"geonameId":"359493","name":"Zagazig","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":285097,"modificationDate":"2020-06-11"}, -{"geonameId":"5045360","name":"Saint Paul","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":285068,"modificationDate":"2019-09-05"}, -{"geonameId":"1734705","name":"Kuala Terengganu","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":285065,"modificationDate":"2012-01-17"}, -{"geonameId":"361055","name":"Ismailia","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":284813,"modificationDate":"2019-09-05"}, -{"geonameId":"3487903","name":"Alto Barinas","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":284289,"modificationDate":"2006-01-17"}, -{"geonameId":"96994","name":"Dihok","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":284000,"modificationDate":"2016-11-20"}, -{"geonameId":"2892794","name":"Karlsruhe","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":283799,"modificationDate":"2019-09-05"}, -{"geonameId":"2088122","name":"Port Moresby","countryName":"Papua New Guinea","timeZoneName":"Pacific/Port_Moresby","timeZoneOffsetNameWithoutDst":"Papua New Guinea Time","population":283733,"modificationDate":"2019-09-05"}, -{"geonameId":"4719457","name":"Plano","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":283558,"modificationDate":"2017-03-09"}, -{"geonameId":"2112664","name":"Ichihara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":283531,"modificationDate":"2017-07-22"}, -{"geonameId":"1843491","name":"Iksan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":283501,"modificationDate":"2012-01-18"}, -{"geonameId":"1572151","name":"Nha Trang","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":283441,"modificationDate":"2019-09-05"}, -{"geonameId":"3447212","name":"Suzano","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":283314,"modificationDate":"2012-08-03"}, -{"geonameId":"1278946","name":"Alwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":283228,"modificationDate":"2014-10-14"}, -{"geonameId":"1720840","name":"Cainta","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":283172,"modificationDate":"2017-12-13"}, -{"geonameId":"3719028","name":"Pétionville","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":283052,"modificationDate":"2016-01-30"}, -{"geonameId":"1857843","name":"Maebashi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":282711,"modificationDate":"2017-04-09"}, -{"geonameId":"1275637","name":"Bilāspur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":282705,"modificationDate":"2017-03-19"}, -{"geonameId":"7281838","name":"Logan City","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":282673,"modificationDate":"2013-06-25"}, -{"geonameId":"3868626","name":"Valparaíso","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":282448,"modificationDate":"2019-09-05"}, -{"geonameId":"1633034","name":"Palu","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":282431,"modificationDate":"2016-04-10"}, -{"geonameId":"2057087","name":"Kupang","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":282396,"modificationDate":"2019-09-05"}, -{"geonameId":"686967","name":"Zhytomyr","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":282192,"modificationDate":"2019-09-05"}, -{"geonameId":"5101798","name":"Newark","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":281944,"modificationDate":"2019-09-05"}, -{"geonameId":"3680450","name":"Itagüí","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":281853,"modificationDate":"2018-06-08"}, -{"geonameId":"3522732","name":"Nicolás Romero","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":281799,"modificationDate":"2018-11-26"}, -{"geonameId":"747014","name":"Gebze","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":281436,"modificationDate":"2019-09-05"}, -{"geonameId":"1185117","name":"Narsingdi","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":281080,"modificationDate":"2016-11-09"}, -{"geonameId":"2505572","name":"Batna","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":280798,"modificationDate":"2019-09-05"}, -{"geonameId":"1814757","name":"Chuzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":280582,"modificationDate":"2012-01-18"}, -{"geonameId":"11238838","name":"Merkezefendi","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":280341,"modificationDate":"2016-08-30"}, -{"geonameId":"1861949","name":"Ichinomiya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":280331,"modificationDate":"2019-02-28"}, -{"geonameId":"3928128","name":"Tacna","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":280098,"modificationDate":"2019-09-05"}, -{"geonameId":"8354626","name":"Hamburg-Nord","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":280000,"modificationDate":"2017-08-14"}, -{"geonameId":"1170395","name":"Mingora","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":279914,"modificationDate":"2019-12-06"}, -{"geonameId":"5174035","name":"Toledo","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":279789,"modificationDate":"2019-09-05"}, -{"geonameId":"4006702","name":"Ensenada","countryName":"Mexico","timeZoneName":"America/Tijuana","timeZoneOffsetNameWithoutDst":"Pacific Time","population":279765,"modificationDate":"2019-05-05"}, -{"geonameId":"2343983","name":"Efon-Alaaye","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":279319,"modificationDate":"2018-03-22"}, -{"geonameId":"466806","name":"Yoshkar-Ola","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":279100,"modificationDate":"2016-11-23"}, -{"geonameId":"484907","name":"Taganrog","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":279056,"modificationDate":"2019-09-05"}, -{"geonameId":"3627047","name":"Santa Teresa del Tuy","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":278890,"modificationDate":"2018-08-08"}, -{"geonameId":"707753","name":"Horlivka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":278550,"modificationDate":"2014-04-30"}, -{"geonameId":"6182962","name":"Windsor","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":278013,"modificationDate":"2012-05-04"}, -{"geonameId":"3530569","name":"Coacalco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":277959,"modificationDate":"2018-11-03"}, -{"geonameId":"2337704","name":"Ilesa","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":277904,"modificationDate":"2016-01-30"}, -{"geonameId":"543878","name":"Kostroma","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":277656,"modificationDate":"2019-09-05"}, -{"geonameId":"3121424","name":"Gijón","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":277554,"modificationDate":"2019-09-05"}, -{"geonameId":"3182351","name":"Bari","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":277387,"modificationDate":"2019-02-27"}, -{"geonameId":"5072006","name":"Lincoln","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":277348,"modificationDate":"2019-09-05"}, -{"geonameId":"418710","name":"Sedeh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":277334,"modificationDate":"2020-06-11"}, -{"geonameId":"2467454","name":"Sfax","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":277278,"modificationDate":"2019-09-05"}, -{"geonameId":"2990969","name":"Nantes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":277269,"modificationDate":"2019-10-09"}, -{"geonameId":"3658666","name":"Cuenca","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":276964,"modificationDate":"2019-09-05"}, -{"geonameId":"2325314","name":"Owo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":276574,"modificationDate":"2016-01-30"}, -{"geonameId":"3865086","name":"Bahía Blanca","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":276546,"modificationDate":"2015-04-22"}, -{"geonameId":"1626381","name":"Sukabumi","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":276414,"modificationDate":"2012-01-17"}, -{"geonameId":"710791","name":"Cherkasy","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":276360,"modificationDate":"2020-05-17"}, -{"geonameId":"683844","name":"Braşov","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":276088,"modificationDate":"2019-04-18"}, -{"geonameId":"2021851","name":"Komsomolsk-on-Amur","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":275908,"modificationDate":"2016-12-03"}, -{"geonameId":"2130188","name":"Hakodate","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":275730,"modificationDate":"2017-07-22"}, -{"geonameId":"2505854","name":"Bab Ezzouar","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":275630,"modificationDate":"2019-05-10"}, -{"geonameId":"2226275","name":"Mokolo","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":275239,"modificationDate":"2014-06-04"}, -{"geonameId":"3402429","name":"Caucaia","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":275019,"modificationDate":"2012-08-03"}, -{"geonameId":"2973783","name":"Strasbourg","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":274845,"modificationDate":"2019-09-05"}, -{"geonameId":"2655984","name":"Belfast","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":274770,"modificationDate":"2020-06-18"}, -{"geonameId":"1280849","name":"Kashgar","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":274717,"modificationDate":"2017-07-21"}, -{"geonameId":"98717","name":"Ramadi","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":274539,"modificationDate":"2016-06-22"}, -{"geonameId":"1269834","name":"Ichalkaranji","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":274383,"modificationDate":"2014-10-13"}, -{"geonameId":"1862033","name":"Ibaraki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":273992,"modificationDate":"2017-07-22"}, -{"geonameId":"1848522","name":"Yao","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":273213,"modificationDate":"2017-07-22"}, -{"geonameId":"1140026","name":"Gerat","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":272806,"modificationDate":"2020-06-09"}, -{"geonameId":"3557689","name":"Guatanamo","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":272801,"modificationDate":"2020-06-10"}, -{"geonameId":"523523","name":"Naltschik","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":272800,"modificationDate":"2020-06-10"}, -{"geonameId":"1728930","name":"Baguio","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":272714,"modificationDate":"2017-12-13"}, -{"geonameId":"3454031","name":"Petrópolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":272691,"modificationDate":"2012-08-03"}, -{"geonameId":"289888","name":"Raiyan","countryName":"Qatar","timeZoneName":"Asia/Qatar","timeZoneOffsetNameWithoutDst":"Arabian Time","population":272465,"modificationDate":"2020-06-10"}, -{"geonameId":"2809346","name":"Wiesbaden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":272432,"modificationDate":"2019-09-05"}, -{"geonameId":"3674453","name":"Montería","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":272420,"modificationDate":"2016-01-28"}, -{"geonameId":"3196359","name":"Ljubljana","countryName":"Slovenia","timeZoneName":"Europe/Ljubljana","timeZoneOffsetNameWithoutDst":"Central European Time","population":272220,"modificationDate":"2019-09-05"}, -{"geonameId":"106297","name":"Hafar Al-Batin","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":271642,"modificationDate":"2017-09-12"}, -{"geonameId":"1860704","name":"Kakogawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":271634,"modificationDate":"2020-06-11"}, -{"geonameId":"11048322","name":"Sector 5","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":271575,"modificationDate":"2017-11-24"}, -{"geonameId":"706369","name":"Khmelnytskyy","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":271263,"modificationDate":"2020-05-12"}, -{"geonameId":"1624647","name":"Tasikmalaya","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":271143,"modificationDate":"2018-01-11"}, -{"geonameId":"1275701","name":"Bijapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":271064,"modificationDate":"2014-10-14"}, -{"geonameId":"4167147","name":"Orlando","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":270934,"modificationDate":"2017-03-09"}, -{"geonameId":"1803318","name":"Linyi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":270669,"modificationDate":"2012-01-18"}, -{"geonameId":"2651347","name":"Derby","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":270468,"modificationDate":"2019-09-05"}, -{"geonameId":"1688749","name":"San Pedro","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":270216,"modificationDate":"2017-12-13"}, -{"geonameId":"2867543","name":"Münster","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":270184,"modificationDate":"2019-09-05"}, -{"geonameId":"2921466","name":"Gelsenkirchen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":270028,"modificationDate":"2019-09-05"}, -{"geonameId":"1841066","name":"Mokpo","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":268402,"modificationDate":"2017-11-16"}, -{"geonameId":"3984583","name":"Santa Catarina","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":268347,"modificationDate":"2018-11-03"}, -{"geonameId":"7838895","name":"Russeifa","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":268237,"modificationDate":"2011-05-25"}, -{"geonameId":"3352136","name":"Windhoek","countryName":"Namibia","timeZoneName":"Africa/Windhoek","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":268132,"modificationDate":"2019-09-05"}, -{"geonameId":"204953","name":"Tshikapa","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":267462,"modificationDate":"2016-11-28"}, -{"geonameId":"354775","name":"Kafr el Dawdar","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":267370,"modificationDate":"2020-06-11"}, -{"geonameId":"1850158","name":"Tokushima","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":267345,"modificationDate":"2017-04-09"}, -{"geonameId":"294801","name":"Haifa","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":267300,"modificationDate":"2019-09-05"}, -{"geonameId":"487495","name":"Sterlitamak","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":267231,"modificationDate":"2019-09-05"}, -{"geonameId":"106281","name":"Ha'il","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":267005,"modificationDate":"2016-01-28"}, -{"geonameId":"710719","name":"Chernivtsi","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":266533,"modificationDate":"2020-04-13"}, -{"geonameId":"6544100","name":"Eixample","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":266477,"modificationDate":"2018-11-13"}, -{"geonameId":"1185281","name":"Bagerhat","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":266388,"modificationDate":"2017-06-26"}, -{"geonameId":"1786640","name":"Chengzhong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":265886,"modificationDate":"2013-04-03"}, -{"geonameId":"1790840","name":"Wuzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":265846,"modificationDate":"2012-01-18"}, -{"geonameId":"5336899","name":"Chula Vista","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":265757,"modificationDate":"2017-03-09"}, -{"geonameId":"2036670","name":"Hulan Ergi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":265344,"modificationDate":"2012-01-18"}, -{"geonameId":"1279186","name":"Aizawl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":265331,"modificationDate":"2014-10-14"}, -{"geonameId":"3247449","name":"Aachen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":265208,"modificationDate":"2014-05-11"}, -{"geonameId":"584923","name":"Sumqayyt","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":265150,"modificationDate":"2020-06-10"}, -{"geonameId":"1701472","name":"Mantampay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":265032,"modificationDate":"2017-12-13"}, -{"geonameId":"509820","name":"Petrozavodsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":265025,"modificationDate":"2019-09-05"}, -{"geonameId":"380148","name":"El Daein","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":264734,"modificationDate":"2013-08-10"}, -{"geonameId":"2320576","name":"Umuahia","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":264662,"modificationDate":"2016-01-30"}, -{"geonameId":"3980760","name":"Uruapan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":264439,"modificationDate":"2018-11-03"}, -{"geonameId":"5099836","name":"Jersey City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":264290,"modificationDate":"2017-05-23"}, -{"geonameId":"1800627","name":"Mianyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":264136,"modificationDate":"2015-08-29"}, -{"geonameId":"300619","name":"Sivas","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":264022,"modificationDate":"2019-09-05"}, -{"geonameId":"939270","name":"Witbank","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":262491,"modificationDate":"2019-09-05"}, -{"geonameId":"610611","name":"Aktobe","countryName":"Kazakhstan","timeZoneName":"Asia/Aqtobe","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":262457,"modificationDate":"2019-09-19"}, -{"geonameId":"3841956","name":"Paraná","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":262295,"modificationDate":"2018-11-30"}, -{"geonameId":"1269395","name":"Jālna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":262034,"modificationDate":"2019-03-29"}, -{"geonameId":"7302826","name":"Lal Bahadur Nagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":261987,"modificationDate":"2014-10-10"}, -{"geonameId":"2869894","name":"Muenchen-Gladbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":261742,"modificationDate":"2020-06-10"}, -{"geonameId":"6066513","name":"Markham","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":261573,"modificationDate":"2011-12-30"}, -{"geonameId":"1273066","name":"Dewas","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":261218,"modificationDate":"2014-10-14"}, -{"geonameId":"3667983","name":"Sincelejo","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":261187,"modificationDate":"2016-01-28"}, -{"geonameId":"2034400","name":"Tongliao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":261110,"modificationDate":"2012-01-18"}, -{"geonameId":"3445839","name":"Uberaba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":260843,"modificationDate":"2012-08-03"}, -{"geonameId":"5289282","name":"Chandler","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":260828,"modificationDate":"2017-03-09"}, -{"geonameId":"4920423","name":"Fort Wayne","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":260326,"modificationDate":"2017-05-23"}, -{"geonameId":"2640194","name":"Plymouth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":260203,"modificationDate":"2017-06-12"}, -{"geonameId":"1277082","name":"Baranagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":260072,"modificationDate":"2014-10-14"}, -{"geonameId":"1529401","name":"Karamay","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":260000,"modificationDate":"2018-12-06"}, -{"geonameId":"1529641","name":"Aral","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":260000,"modificationDate":"2017-09-07"}, -{"geonameId":"184622","name":"Nakuru","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":259903,"modificationDate":"2019-09-05"}, -{"geonameId":"1586203","name":"Kan Tho","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":259598,"modificationDate":"2020-06-09"}, -{"geonameId":"2954172","name":"Augsburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":259196,"modificationDate":"2019-09-05"}, -{"geonameId":"1862462","name":"Hiratsuka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":259052,"modificationDate":"2017-07-22"}, -{"geonameId":"7302833","name":"Gajuwaka","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":258944,"modificationDate":"2014-10-10"}, -{"geonameId":"1805179","name":"Jiujiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":258807,"modificationDate":"2017-12-10"}, -{"geonameId":"2036458","name":"Jining","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":258757,"modificationDate":"2012-01-18"}, -{"geonameId":"3671916","name":"Popayán","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":258653,"modificationDate":"2016-01-28"}, -{"geonameId":"103630","name":"Najran","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":258573,"modificationDate":"2020-06-10"}, -{"geonameId":"78754","name":"Mukalla","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":258132,"modificationDate":"2018-08-20"}, -{"geonameId":"5110629","name":"Buffalo","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":258071,"modificationDate":"2019-09-05"}, -{"geonameId":"2643339","name":"Luton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":258018,"modificationDate":"2017-06-12"}, -{"geonameId":"1631766","name":"Pekalongan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":257945,"modificationDate":"2012-01-17"}, -{"geonameId":"3644768","name":"Cumaná","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":257783,"modificationDate":"2019-09-05"}, -{"geonameId":"1257022","name":"Satna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":257778,"modificationDate":"2015-08-07"}, -{"geonameId":"3662574","name":"Rio Branco","countryName":"Brazil","timeZoneName":"America/Rio_Branco","timeZoneOffsetNameWithoutDst":"Acre Time","population":257642,"modificationDate":"2012-08-03"}, -{"geonameId":"4464368","name":"Durham","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":257636,"modificationDate":"2019-09-05"}, -{"geonameId":"1271987","name":"Etāwah","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":257448,"modificationDate":"2015-12-05"}, -{"geonameId":"4005775","name":"Gomez Palacio","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":257352,"modificationDate":"2020-06-10"}, -{"geonameId":"3466779","name":"Cascavel","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":257172,"modificationDate":"2012-08-03"}, -{"geonameId":"4171563","name":"St. Petersburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":257083,"modificationDate":"2019-10-16"}, -{"geonameId":"3120619","name":"L'Hospitalet de Llobregat","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":257038,"modificationDate":"2018-09-13"}, -{"geonameId":"2326171","name":"Ondo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":257005,"modificationDate":"2016-01-30"}, -{"geonameId":"1049261","name":"Chimoio","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":256936,"modificationDate":"2012-01-19"}, -{"geonameId":"5359777","name":"Irvine","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":256927,"modificationDate":"2017-03-09"}, -{"geonameId":"660158","name":"Espoo","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":256760,"modificationDate":"2016-06-11"}, -{"geonameId":"6544489","name":"Latina","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":256644,"modificationDate":"2017-05-26"}, -{"geonameId":"3997479","name":"Los Mochis","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":256613,"modificationDate":"2018-11-03"}, -{"geonameId":"2051523","name":"Bratsk","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":256600,"modificationDate":"2019-09-05"}, -{"geonameId":"3522210","name":"Pachuca de Soto","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":256584,"modificationDate":"2018-11-03"}, -{"geonameId":"299817","name":"Tarsus","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":256482,"modificationDate":"2019-09-05"}, -{"geonameId":"4705349","name":"Laredo","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":255473,"modificationDate":"2017-03-09"}, -{"geonameId":"116996","name":"Sari","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":255396,"modificationDate":"2013-05-12"}, -{"geonameId":"1272181","name":"Durg","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":255283,"modificationDate":"2015-08-30"}, -{"geonameId":"695594","name":"Rivne","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":255106,"modificationDate":"2020-06-17"}, -{"geonameId":"3522507","name":"Oaxaca","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":255029,"modificationDate":"2018-11-03"}, -{"geonameId":"3982912","name":"Soledad de Graciano Sánchez","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":255015,"modificationDate":"2018-11-03"}, -{"geonameId":"1529114","name":"Turpan","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":254900,"modificationDate":"2019-09-05"}, -{"geonameId":"2338106","name":"Ikot Ekpene","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":254806,"modificationDate":"2016-01-30"}, -{"geonameId":"1808198","name":"Heze","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":254602,"modificationDate":"2014-06-05"}, -{"geonameId":"2110556","name":"Yamagata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":254538,"modificationDate":"2017-04-09"}, -{"geonameId":"1646170","name":"Cirebon","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":254298,"modificationDate":"2012-01-17"}, -{"geonameId":"3456068","name":"Novo Hamburgo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":253841,"modificationDate":"2012-08-03"}, -{"geonameId":"1336134","name":"Cox’s Bāzār","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":253788,"modificationDate":"2017-04-04"}, -{"geonameId":"3099424","name":"Gdynia","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":253730,"modificationDate":"2019-09-05"}, -{"geonameId":"6544493","name":"Carabanchel","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":253678,"modificationDate":"2017-05-26"}, -{"geonameId":"1262131","name":"Naihāti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":253221,"modificationDate":"2014-10-14"}, -{"geonameId":"3444914","name":"Vitória da Conquista","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":253137,"modificationDate":"2012-08-03"}, -{"geonameId":"1804386","name":"Laohekou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":253112,"modificationDate":"2018-12-06"}, -{"geonameId":"3870282","name":"Talcahuano","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":252968,"modificationDate":"2019-09-05"}, -{"geonameId":"962367","name":"Richards Bay","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":252968,"modificationDate":"2012-07-12"}, -{"geonameId":"2633691","name":"Wolverhampton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":252791,"modificationDate":"2018-03-12"}, -{"geonameId":"379555","name":"El Fasher","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":252609,"modificationDate":"2013-12-14"}, -{"geonameId":"1882316","name":"Woodlands","countryName":"Singapore","timeZoneName":"Asia/Singapore","timeZoneOffsetNameWithoutDst":"Singapore Time","population":252530,"modificationDate":"2019-08-08"}, -{"geonameId":"2244799","name":"Thiès Nones","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":252320,"modificationDate":"2018-07-04"}, -{"geonameId":"338832","name":"Dire Dawa","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":252279,"modificationDate":"2015-09-05"}, -{"geonameId":"3682385","name":"Floridablanca","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":252267,"modificationDate":"2018-09-05"}, -{"geonameId":"2034655","name":"Suihua","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":252245,"modificationDate":"2013-04-03"}, -{"geonameId":"3470353","name":"Barueri","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":251994,"modificationDate":"2012-08-03"}, -{"geonameId":"140044","name":"Borūjerd","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":251958,"modificationDate":"2014-09-04"}, -{"geonameId":"2911293","name":"Eimsbüttel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":251907,"modificationDate":"2017-09-18"}, -{"geonameId":"8533133","name":"Liupanshui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":251900,"modificationDate":"2014-02-10"}, -{"geonameId":"32767","name":"Qarchak","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":251834,"modificationDate":"2012-12-04"}, -{"geonameId":"3928245","name":"Santiago de Surco","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":251648,"modificationDate":"2016-01-07"}, -{"geonameId":"3446682","name":"Taubaté","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":251641,"modificationDate":"2012-03-10"}, -{"geonameId":"1799629","name":"Nanyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":251532,"modificationDate":"2012-01-18"}, -{"geonameId":"1690039","name":"San Fernando","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":251248,"modificationDate":"2017-12-13"}, -{"geonameId":"153220","name":"Morogoro","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":250902,"modificationDate":"2019-09-05"}, -{"geonameId":"3462315","name":"Governador Valadares","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":250878,"modificationDate":"2012-08-03"}, -{"geonameId":"1254360","name":"Tirupati","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":250821,"modificationDate":"2014-10-10"}, -{"geonameId":"1215502","name":"Banda Aceh","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":250757,"modificationDate":"2016-04-10"}, -{"geonameId":"1792260","name":"Wafangdian","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":250591,"modificationDate":"2012-01-18"}, -{"geonameId":"1255744","name":"Sonepat Punjab","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":250521,"modificationDate":"2020-06-10"}, -{"geonameId":"3537906","name":"Santa Clara","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":250512,"modificationDate":"2016-01-07"}, -{"geonameId":"2336905","name":"Iwo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":250443,"modificationDate":"2016-01-30"}, -{"geonameId":"1706684","name":"Libertad","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":250353,"modificationDate":"2017-12-13"}, -{"geonameId":"2340451","name":"Gombe","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":250258,"modificationDate":"2018-01-18"}, -{"geonameId":"2911296","name":"Altona","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":250192,"modificationDate":"2017-09-19"}, -{"geonameId":"1278130","name":"Āvadi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":250044,"modificationDate":"2014-10-14"}, -{"geonameId":"3452465","name":"Praia Grande","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":250027,"modificationDate":"2012-08-03"}, -{"geonameId":"3718420","name":"Port-de-Paix","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":250000,"modificationDate":"2019-03-25"}, -{"geonameId":"7280708","name":"Colonia del Valle","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":250000,"modificationDate":"2015-06-22"}, -{"geonameId":"787657","name":"Niš","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":250000,"modificationDate":"2020-01-31"}, -{"geonameId":"366847","name":"Singa","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":250000,"modificationDate":"2016-07-17"}, -{"geonameId":"3872348","name":"San Bernardo","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":249858,"modificationDate":"2018-04-09"}, -{"geonameId":"3445451","name":"Várzea Grande","countryName":"Brazil","timeZoneName":"America/Cuiaba","timeZoneOffsetNameWithoutDst":"Amazon Time","population":249752,"modificationDate":"2012-08-03"}, -{"geonameId":"2735943","name":"Porto","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":249633,"modificationDate":"2018-03-15"}, -{"geonameId":"3444876","name":"Volta Redonda","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":249580,"modificationDate":"2019-09-05"}, -{"geonameId":"1697846","name":"Navotas","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":249463,"modificationDate":"2017-12-15"}, -{"geonameId":"3450083","name":"Santa Maria","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":249219,"modificationDate":"2012-03-10"}, -{"geonameId":"5525577","name":"Lubbock","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":249042,"modificationDate":"2017-03-09"}, -{"geonameId":"5261457","name":"Madison","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":248951,"modificationDate":"2019-09-05"}, -{"geonameId":"3516109","name":"Tehuacán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":248716,"modificationDate":"2018-11-03"}, -{"geonameId":"1863985","name":"Fukui-shi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":248707,"modificationDate":"2017-07-22"}, -{"geonameId":"2992166","name":"Montpellier","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":248252,"modificationDate":"2020-06-10"}, -{"geonameId":"2336056","name":"Jimeta","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":248148,"modificationDate":"2016-01-30"}, -{"geonameId":"3100946","name":"Częstochowa","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":248125,"modificationDate":"2019-09-05"}, -{"geonameId":"1254320","name":"Tiruvottiyūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":248059,"modificationDate":"2014-10-14"}, -{"geonameId":"3673164","name":"Palmira","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":247986,"modificationDate":"2018-09-05"}, -{"geonameId":"1217662","name":"Bukhara","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":247644,"modificationDate":"2019-09-05"}, -{"geonameId":"2634341","name":"City of Westminster","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":247614,"modificationDate":"2019-05-09"}, -{"geonameId":"5295903","name":"Gilbert","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":247542,"modificationDate":"2017-03-09"}, -{"geonameId":"1257845","name":"Saugor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":247333,"modificationDate":"2015-08-07"}, -{"geonameId":"1605239","name":"Udon Thani","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":247231,"modificationDate":"2012-01-16"}, -{"geonameId":"2940132","name":"Chemnitz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":247220,"modificationDate":"2019-09-05"}, -{"geonameId":"3938527","name":"Ica","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":246844,"modificationDate":"2019-09-05"}, -{"geonameId":"514734","name":"Orsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":246836,"modificationDate":"2019-09-05"}, -{"geonameId":"944986","name":"Vanderbijlpark","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":246754,"modificationDate":"2012-07-12"}, -{"geonameId":"3628473","name":"San Cristóbal","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":246583,"modificationDate":"2019-09-05"}, -{"geonameId":"2111901","name":"Mito","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":246538,"modificationDate":"2017-04-09"}, -{"geonameId":"4776222","name":"Norfolk","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":246393,"modificationDate":"2019-09-05"}, -{"geonameId":"1797132","name":"Rizhao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":246387,"modificationDate":"2014-04-30"}, -{"geonameId":"2637487","name":"Southampton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":246201,"modificationDate":"2019-09-05"}, -{"geonameId":"11810635","name":"Kyain Seikgyi Township","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":246065,"modificationDate":"2018-02-02"}, -{"geonameId":"3119841","name":"A Coruña","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":246056,"modificationDate":"2015-04-24"}, -{"geonameId":"1263311","name":"Mau","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":246050,"modificationDate":"2015-08-07"}, -{"geonameId":"1852225","name":"Shimonoseki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":245786,"modificationDate":"2019-09-05"}, -{"geonameId":"3937513","name":"Juliaca","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":245675,"modificationDate":"2012-07-19"}, -{"geonameId":"1806445","name":"Luling","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":245000,"modificationDate":"2020-06-10"}, -{"geonameId":"132892","name":"Gorgān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":244937,"modificationDate":"2017-02-04"}, -{"geonameId":"1497543","name":"Nizhnevartovsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":244937,"modificationDate":"2019-09-05"}, -{"geonameId":"2945024","name":"Braunschweig","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":244715,"modificationDate":"2019-09-05"}, -{"geonameId":"1808770","name":"Hebi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":244662,"modificationDate":"2012-01-18"}, -{"geonameId":"1300466","name":"Bago","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":244376,"modificationDate":"2016-06-01"}, -{"geonameId":"1275716","name":"Bihār Sharīf","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":244230,"modificationDate":"2016-05-09"}, -{"geonameId":"3648439","name":"Baruta","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":244216,"modificationDate":"2019-04-10"}, -{"geonameId":"3430697","name":"Merlo","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":244168,"modificationDate":"2019-10-10"}, -{"geonameId":"3112737","name":"Puente de Vallecas","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":244151,"modificationDate":"2017-05-26"}, -{"geonameId":"738648","name":"Trabzon","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":244083,"modificationDate":"2019-09-05"}, -{"geonameId":"1336140","name":"Jessore","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":243987,"modificationDate":"2016-11-09"}, -{"geonameId":"304827","name":"Manisa","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":243971,"modificationDate":"2015-08-01"}, -{"geonameId":"4299276","name":"Louisville","countryName":"United States","timeZoneName":"America/Kentucky/Louisville","timeZoneOffsetNameWithoutDst":"Eastern Time","population":243639,"modificationDate":"2019-09-05"}, -{"geonameId":"3450144","name":"Santa Luzia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":243503,"modificationDate":"2012-08-03"}, -{"geonameId":"1842025","name":"Gunsan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":243406,"modificationDate":"2019-10-24"}, -{"geonameId":"1833105","name":"Wŏnju","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":243387,"modificationDate":"2017-01-24"}, -{"geonameId":"12042053","name":"Musaffah","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":243341,"modificationDate":"2019-10-12"}, -{"geonameId":"2027667","name":"Angarsk","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":243158,"modificationDate":"2019-09-05"}, -{"geonameId":"529237","name":"Mar’ino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":243000,"modificationDate":"2013-04-02"}, -{"geonameId":"1270393","name":"Hāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":242920,"modificationDate":"2018-05-27"}, -{"geonameId":"1276070","name":"Bathinda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":242800,"modificationDate":"2017-03-04"}, -{"geonameId":"170794","name":"Deir ez-Zor","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":242565,"modificationDate":"2017-01-10"}, -{"geonameId":"1806988","name":"Huayin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":242488,"modificationDate":"2016-08-12"}, -{"geonameId":"64435","name":"Berbera","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":242344,"modificationDate":"2019-09-05"}, -{"geonameId":"3827598","name":"Ojo de Agua","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":242272,"modificationDate":"2013-08-01"}, -{"geonameId":"5959974","name":"Gatineau","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":242124,"modificationDate":"2016-06-22"}, -{"geonameId":"1786770","name":"Yibin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":242111,"modificationDate":"2019-12-09"}, -{"geonameId":"3843123","name":"Nequen","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":242092,"modificationDate":"2020-06-10"}, -{"geonameId":"1684712","name":"Tacloban","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":242089,"modificationDate":"2017-12-13"}, -{"geonameId":"518255","name":"Novorossiysk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":241856,"modificationDate":"2017-01-21"}, -{"geonameId":"5511077","name":"Reno","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":241445,"modificationDate":"2017-03-09"}, -{"geonameId":"359792","name":"Aswan","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":241261,"modificationDate":"2019-09-05"}, -{"geonameId":"4499612","name":"Winston-Salem","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":241218,"modificationDate":"2017-05-26"}, -{"geonameId":"1271942","name":"Farrukhābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":241152,"modificationDate":"2015-08-07"}, -{"geonameId":"7628420","name":"Sancaktepe","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":241000,"modificationDate":"2011-01-04"}, -{"geonameId":"1851002","name":"Takasaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":240857,"modificationDate":"2017-07-22"}, -{"geonameId":"1278672","name":"Anantapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":240442,"modificationDate":"2015-10-04"}, -{"geonameId":"3688451","name":"Buenaventura","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":240387,"modificationDate":"2018-09-05"}, -{"geonameId":"147622","name":"Lankaran","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":240300,"modificationDate":"2017-06-27"}, -{"geonameId":"5295985","name":"Glendale","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":240126,"modificationDate":"2019-09-05"}, -{"geonameId":"1864134","name":"Fuji","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":240014,"modificationDate":"2017-07-22"}, -{"geonameId":"550280","name":"Khimki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":239967,"modificationDate":"2019-09-05"}, -{"geonameId":"2655459","name":"Blackpool","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":239409,"modificationDate":"2018-03-12"}, -{"geonameId":"1790371","name":"Xiantao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":239406,"modificationDate":"2016-04-08"}, -{"geonameId":"2130203","name":"Hachinohe","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":239046,"modificationDate":"2017-07-22"}, -{"geonameId":"6173577","name":"Vaughan","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":238866,"modificationDate":"2011-12-07"}, -{"geonameId":"3462089","name":"Gravataí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":238778,"modificationDate":"2014-10-24"}, -{"geonameId":"6697563","name":"Neyagawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":238549,"modificationDate":"2017-07-22"}, -{"geonameId":"3523760","name":"Magdalena Contreras","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":238431,"modificationDate":"2018-11-03"}, -{"geonameId":"1185159","name":"Nāgarpur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":238422,"modificationDate":"2016-11-09"}, -{"geonameId":"1858088","name":"Kurume","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":238197,"modificationDate":"2017-07-22"}, -{"geonameId":"322165","name":"Karassi","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":238151,"modificationDate":"2020-06-10"}, -{"geonameId":"3870011","name":"Temuco","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":238129,"modificationDate":"2013-01-11"}, -{"geonameId":"2884509","name":"Krefeld","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":237984,"modificationDate":"2019-09-05"}, -{"geonameId":"288967","name":"Seeb","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":237816,"modificationDate":"2015-11-30"}, -{"geonameId":"1277066","name":"Bārāsat","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":237783,"modificationDate":"2014-10-14"}, -{"geonameId":"2624652","name":"Århus","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":237551,"modificationDate":"2019-09-16"}, -{"geonameId":"1852899","name":"Sasebo","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":237444,"modificationDate":"2019-09-05"}, -{"geonameId":"1726280","name":"Batangas","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":237370,"modificationDate":"2017-12-13"}, -{"geonameId":"109435","name":"Al Jubayl","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":237274,"modificationDate":"2017-11-07"}, -{"geonameId":"1328421","name":"Pathein","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":237089,"modificationDate":"2016-06-01"}, -{"geonameId":"1624494","name":"Tegal","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":237084,"modificationDate":"2012-01-17"}, -{"geonameId":"4158476","name":"Hialeah","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":237069,"modificationDate":"2017-03-09"}, -{"geonameId":"2394560","name":"Djougou","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":237040,"modificationDate":"2013-08-17"}, -{"geonameId":"1185099","name":"Sylhet","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":237000,"modificationDate":"2016-11-09"}, -{"geonameId":"4693003","name":"Garland","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":236897,"modificationDate":"2017-03-09"}, -{"geonameId":"1258342","name":"Hatlam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":236843,"modificationDate":"2020-06-10"}, -{"geonameId":"5313457","name":"Scottsdale","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":236839,"modificationDate":"2017-03-09"}, -{"geonameId":"4700168","name":"Irving","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":236607,"modificationDate":"2017-03-09"}, -{"geonameId":"707471","name":"Ivano-Frankivsk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":236602,"modificationDate":"2020-05-09"}, -{"geonameId":"724443","name":"Kassa","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":236563,"modificationDate":"2020-06-10"}, -{"geonameId":"1180289","name":"Dera Ghazi Khan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":236093,"modificationDate":"2019-12-06"}, -{"geonameId":"3530517","name":"Coatzacoalcos","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":235983,"modificationDate":"2018-11-03"}, -{"geonameId":"1785974","name":"Yuci","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":235929,"modificationDate":"2012-01-18"}, -{"geonameId":"6544105","name":"Sant Martí","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":235719,"modificationDate":"2020-01-18"}, -{"geonameId":"1166548","name":"Sahiwal","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":235695,"modificationDate":"2019-09-05"}, -{"geonameId":"3104499","name":"Gasteiz / Vitoria","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":235661,"modificationDate":"2018-01-01"}, -{"geonameId":"2013159","name":"Yakutsk","countryName":"Russia","timeZoneName":"Asia/Yakutsk","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":235600,"modificationDate":"2019-09-04"}, -{"geonameId":"4752186","name":"Chesapeake","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":235429,"modificationDate":"2017-03-09"}, -{"geonameId":"3402655","name":"Caruaru","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":235371,"modificationDate":"2012-03-10"}, -{"geonameId":"350550","name":"Qena","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":235362,"modificationDate":"2020-06-11"}, -{"geonameId":"3664980","name":"Boa Vista","countryName":"Brazil","timeZoneName":"America/Boa_Vista","timeZoneOffsetNameWithoutDst":"Amazon Time","population":235150,"modificationDate":"2017-07-06"}, -{"geonameId":"1640660","name":"Kediri","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":235143,"modificationDate":"2012-01-17"}, -{"geonameId":"3378644","name":"Georgetown","countryName":"Guyana","timeZoneName":"America/Guyana","timeZoneOffsetNameWithoutDst":"Guyana Time","population":235017,"modificationDate":"2019-09-05"}, -{"geonameId":"8347656","name":"Ramagundam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":235000,"modificationDate":"2014-10-10"}, -{"geonameId":"55671","name":"Kismayo","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":234852,"modificationDate":"2014-06-01"}, -{"geonameId":"74477","name":"Ibb","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":234837,"modificationDate":"2020-06-11"}, -{"geonameId":"1219649","name":"Novo-Chardzhuy","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":234817,"modificationDate":"2020-06-10"}, -{"geonameId":"5509403","name":"North Las Vegas","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":234807,"modificationDate":"2017-03-09"}, -{"geonameId":"2517117","name":"Granada","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":234325,"modificationDate":"2019-09-05"}, -{"geonameId":"521118","name":"Nizhnekamsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":234297,"modificationDate":"2019-09-05"}, -{"geonameId":"2392087","name":"Porto-Novo","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":234168,"modificationDate":"2019-09-05"}, -{"geonameId":"2911522","name":"Halle (Saale)","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":234107,"modificationDate":"2019-02-26"}, -{"geonameId":"11601943","name":"Azad Panhwar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":233916,"modificationDate":"2020-06-14"}, -{"geonameId":"5992996","name":"Kitchener","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":233700,"modificationDate":"2019-09-05"}, -{"geonameId":"1105777","name":"Centurion","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":233386,"modificationDate":"2012-07-12"}, -{"geonameId":"709932","name":"Kamyanske","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":233358,"modificationDate":"2020-05-23"}, -{"geonameId":"1684269","name":"Magugpo Poblacion","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":233254,"modificationDate":"2018-06-08"}, -{"geonameId":"2911288","name":"Hamburg-Mitte","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":233144,"modificationDate":"2017-08-14"}, -{"geonameId":"563708","name":"Dzerzhinsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":233126,"modificationDate":"2016-11-20"}, -{"geonameId":"2294915","name":"Takoradi","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":232919,"modificationDate":"2019-12-06"}, -{"geonameId":"2891122","name":"Kiel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":232758,"modificationDate":"2019-09-05"}, -{"geonameId":"1803567","name":"Linfen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":232566,"modificationDate":"2016-04-10"}, -{"geonameId":"5350734","name":"Fremont","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":232206,"modificationDate":"2017-03-09"}, -{"geonameId":"219057","name":"Beni","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":232000,"modificationDate":"2018-08-24"}, -{"geonameId":"3031582","name":"Bordeaux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":231844,"modificationDate":"2019-09-05"}, -{"geonameId":"1271685","name":"Gangānagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":231838,"modificationDate":"2020-05-19"}, -{"geonameId":"1864624","name":"Chigasaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":231657,"modificationDate":"2019-02-28"}, -{"geonameId":"2797656","name":"Gent","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":231493,"modificationDate":"2019-09-05"}, -{"geonameId":"1682598","name":"Taytay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":231460,"modificationDate":"2017-12-13"}, -{"geonameId":"1851604","name":"Sōka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":231445,"modificationDate":"2017-07-22"}, -{"geonameId":"2224827","name":"Ngaoundéré","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":231357,"modificationDate":"2013-10-22"}, -{"geonameId":"1835648","name":"Suncheon","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":230796,"modificationDate":"2018-04-06"}, -{"geonameId":"11523293","name":"Sejong","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":230327,"modificationDate":"2017-04-11"}, -{"geonameId":"12076997","name":"José C. Paz","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":230208,"modificationDate":"2019-09-03"}, -{"geonameId":"485239","name":"Syktyvkar","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":230139,"modificationDate":"2019-09-05"}, -{"geonameId":"2518559","name":"Elche","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":230112,"modificationDate":"2012-03-04"}, -{"geonameId":"54225","name":"Marka","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":230100,"modificationDate":"2014-05-28"}, -{"geonameId":"601294","name":"Nukus","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":230006,"modificationDate":"2019-09-05"}, -{"geonameId":"3429652","name":"Quilmes","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":230000,"modificationDate":"2019-03-23"}, -{"geonameId":"355795","name":"Hilwan","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":230000,"modificationDate":"2020-06-11"}, -{"geonameId":"2349019","name":"Atani","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":230000,"modificationDate":"2017-12-06"}, -{"geonameId":"2642465","name":"Milton Keynes","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":229941,"modificationDate":"2017-06-12"}, -{"geonameId":"2874545","name":"Magdeburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":229826,"modificationDate":"2019-09-05"}, -{"geonameId":"3451055","name":"Rio Verde","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":229651,"modificationDate":"2019-07-21"}, -{"geonameId":"1169116","name":"Nawabshah","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":229504,"modificationDate":"2019-12-06"}, -{"geonameId":"266826","name":"Tripoli","countryName":"Lebanon","timeZoneName":"Asia/Beirut","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":229398,"modificationDate":"2019-09-05"}, -{"geonameId":"1276128","name":"Bharatpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":229384,"modificationDate":"2014-10-14"}, -{"geonameId":"6059891","name":"Longueuil","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":229330,"modificationDate":"2019-09-05"}, -{"geonameId":"1847963","name":"Atsugi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":229199,"modificationDate":"2017-07-22"}, -{"geonameId":"3727135","name":"Croix-des-Bouquets","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":229127,"modificationDate":"2019-07-10"}, -{"geonameId":"946877","name":"Uitenhage","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":228912,"modificationDate":"2012-07-12"}, -{"geonameId":"670474","name":"Ploieşti","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":228851,"modificationDate":"2016-02-07"}, -{"geonameId":"1735498","name":"Sungai Petani","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":228843,"modificationDate":"2012-01-17"}, -{"geonameId":"1215355","name":"Binjai","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":228763,"modificationDate":"2019-09-25"}, -{"geonameId":"1705357","name":"Lucena","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":228758,"modificationDate":"2017-12-13"}, -{"geonameId":"3461144","name":"Ipatinga","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":228746,"modificationDate":"2012-08-03"}, -{"geonameId":"1267755","name":"Karīmnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":228745,"modificationDate":"2018-07-13"}, -{"geonameId":"4315588","name":"Baton Rouge","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":228590,"modificationDate":"2019-09-05"}, -{"geonameId":"1568510","name":"Rach Zhia","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":228356,"modificationDate":"2020-06-09"}, -{"geonameId":"2998324","name":"Lille","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":228328,"modificationDate":"2019-09-05"}, -{"geonameId":"1738050","name":"Miri","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":228212,"modificationDate":"2017-09-13"}, -{"geonameId":"3124964","name":"Ciudad Lineal","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":228171,"modificationDate":"2017-05-26"}, -{"geonameId":"2655775","name":"Bexley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":228000,"modificationDate":"2012-06-01"}, -{"geonameId":"3447259","name":"Sumaré","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":227977,"modificationDate":"2017-07-03"}, -{"geonameId":"358448","name":"Hermupolis Parva","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":227943,"modificationDate":"2020-06-11"}, -{"geonameId":"3571824","name":"Nassau","countryName":"Bahamas","timeZoneName":"America/Nassau","timeZoneOffsetNameWithoutDst":"Eastern Time","population":227940,"modificationDate":"2019-09-05"}, -{"geonameId":"3437056","name":"San Lorenzo","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":227876,"modificationDate":"2019-02-26"}, -{"geonameId":"3887127","name":"Iquique","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":227499,"modificationDate":"2018-02-28"}, -{"geonameId":"705812","name":"Kropyvnytskyy","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":227413,"modificationDate":"2020-05-16"}, -{"geonameId":"1259425","name":"Puducherry","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":227411,"modificationDate":"2017-03-18"}, -{"geonameId":"3085128","name":"Sosnowiec","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":227295,"modificationDate":"2010-09-28"}, -{"geonameId":"6956648","name":"Diez de Octubre","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":227293,"modificationDate":"2012-06-26"}, -{"geonameId":"360686","name":"Minya","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":227150,"modificationDate":"2020-06-11"}, -{"geonameId":"487928","name":"Staryy Oskol","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":226977,"modificationDate":"2016-12-04"}, -{"geonameId":"1803834","name":"Liaocheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":226930,"modificationDate":"2014-07-08"}, -{"geonameId":"2339937","name":"Gusau","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":226857,"modificationDate":"2016-06-22"}, -{"geonameId":"2864072","name":"Neue Neustadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":226851,"modificationDate":"2015-09-05"}, -{"geonameId":"760778","name":"Radom","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":226794,"modificationDate":"2019-09-05"}, -{"geonameId":"3429980","name":"Pilar","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":226517,"modificationDate":"2017-12-21"}, -{"geonameId":"1256422","name":"Serampur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":226317,"modificationDate":"2020-06-10"}, -{"geonameId":"2035225","name":"Fendou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":226298,"modificationDate":"2018-07-17"}, -{"geonameId":"118063","name":"Sabzevar","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":226183,"modificationDate":"2014-05-28"}, -{"geonameId":"3348313","name":"Huambo","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":226145,"modificationDate":"2019-02-26"}, -{"geonameId":"558418","name":"Groznyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":226100,"modificationDate":"2017-11-03"}, -{"geonameId":"2165798","name":"Geelong","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":226034,"modificationDate":"2019-07-20"}, -{"geonameId":"1259012","name":"Rāichūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":225962,"modificationDate":"2015-08-07"}, -{"geonameId":"1807508","name":"Huanggang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":225956,"modificationDate":"2012-01-18"}, -{"geonameId":"7302845","name":"Quthbullapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":225816,"modificationDate":"2014-10-10"}, -{"geonameId":"2329821","name":"Mubi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":225705,"modificationDate":"2016-01-30"}, -{"geonameId":"11048317","name":"Sector 1","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":225453,"modificationDate":"2017-11-24"}, -{"geonameId":"217831","name":"Bukavu","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":225389,"modificationDate":"2015-05-25"}, -{"geonameId":"4297983","name":"Lexington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":225366,"modificationDate":"2016-05-01"}, -{"geonameId":"3397147","name":"Juazeiro do Norte","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":225230,"modificationDate":"2012-08-03"}, -{"geonameId":"1185162","name":"Mymensingh","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":225126,"modificationDate":"2016-11-17"}, -{"geonameId":"1267708","name":"Karnāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":225049,"modificationDate":"2015-01-07"}, -{"geonameId":"936374","name":"Roodepoort","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":225000,"modificationDate":"2012-07-12"}, -{"geonameId":"149606","name":"Tanga","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":224876,"modificationDate":"2019-09-05"}, -{"geonameId":"1805618","name":"Jingling","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":224871,"modificationDate":"2012-01-18"}, -{"geonameId":"3903987","name":"Sucre","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":224838,"modificationDate":"2019-09-05"}, -{"geonameId":"1035025","name":"Nacala","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":224795,"modificationDate":"2013-12-01"}, -{"geonameId":"295629","name":"Ashdod","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":224656,"modificationDate":"2017-07-05"}, -{"geonameId":"1857144","name":"Minamirinkan","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":224015,"modificationDate":"2017-04-09"}, -{"geonameId":"3114711","name":"Oviedo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":224005,"modificationDate":"2019-09-05"}, -{"geonameId":"3383330","name":"Paramaribo","countryName":"Suriname","timeZoneName":"America/Paramaribo","timeZoneOffsetNameWithoutDst":"Suriname Time","population":223757,"modificationDate":"2019-09-05"}, -{"geonameId":"325330","name":"Pordonnium","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":223744,"modificationDate":"2020-06-10"}, -{"geonameId":"1278483","name":"Arrah","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":223676,"modificationDate":"2015-10-04"}, -{"geonameId":"1168718","name":"Okara","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":223648,"modificationDate":"2019-12-06"}, -{"geonameId":"1185155","name":"Narajanganj","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":223622,"modificationDate":"2020-06-10"}, -{"geonameId":"1795196","name":"Tongchuanshi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":223603,"modificationDate":"2016-12-03"}, -{"geonameId":"1269771","name":"Imphal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":223523,"modificationDate":"2020-06-10"}, -{"geonameId":"418606","name":"Najafābād","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":223450,"modificationDate":"2020-01-09"}, -{"geonameId":"5509952","name":"Paradise","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":223167,"modificationDate":"2011-05-14"}, -{"geonameId":"1216311","name":"Qarshi","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":222898,"modificationDate":"2013-05-12"}, -{"geonameId":"1270896","name":"Gosaha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":222764,"modificationDate":"2020-06-10"}, -{"geonameId":"1692685","name":"Puerto Princesa","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":222673,"modificationDate":"2017-12-13"}, -{"geonameId":"1788618","name":"Xintai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":222459,"modificationDate":"2012-01-18"}, -{"geonameId":"2511174","name":"Santa Cruz de Tenerife","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":222417,"modificationDate":"2019-09-05"}, -{"geonameId":"1877615","name":"Haeju","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":222396,"modificationDate":"2017-02-04"}, -{"geonameId":"2778067","name":"Graz","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":222326,"modificationDate":"2019-09-05"}, -{"geonameId":"2338273","name":"Ikire","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":222160,"modificationDate":"2019-08-07"}, -{"geonameId":"691650","name":"Ternopil","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":221820,"modificationDate":"2020-05-08"}, -{"geonameId":"3464305","name":"Embu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":221733,"modificationDate":"2012-08-03"}, -{"geonameId":"3433899","name":"Formosa","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":221383,"modificationDate":"2018-11-30"}, -{"geonameId":"496015","name":"Shakhty","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":221312,"modificationDate":"2019-09-05"}, -{"geonameId":"2026609","name":"Blagoveshchensk","countryName":"Russia","timeZoneName":"Asia/Yakutsk","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":221296,"modificationDate":"2019-09-05"}, -{"geonameId":"1697175","name":"Olongapo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":221178,"modificationDate":"2017-12-27"}, -{"geonameId":"3204541","name":"Banja Luka","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":221106,"modificationDate":"2019-09-05"}, -{"geonameId":"8421490","name":"Thị Xã Phú Mỹ","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":221030,"modificationDate":"2019-06-30"}, -{"geonameId":"122285","name":"Neyshābūr","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":220929,"modificationDate":"2017-10-03"}, -{"geonameId":"1790894","name":"Wuxue","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":220661,"modificationDate":"2014-12-02"}, -{"geonameId":"630468","name":"Babruysk","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":220517,"modificationDate":"2012-01-18"}, -{"geonameId":"293703","name":"Rishon Lsiyon","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":220492,"modificationDate":"2020-06-10"}, -{"geonameId":"3531732","name":"Campeche","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":220389,"modificationDate":"2018-11-03"}, -{"geonameId":"4781708","name":"Richmond","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":220289,"modificationDate":"2019-09-05"}, -{"geonameId":"1721906","name":"Cabanatuan City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":220250,"modificationDate":"2017-12-13"}, -{"geonameId":"8285534","name":"Fuencarral-El Pardo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":220085,"modificationDate":"2017-05-26"}, -{"geonameId":"704147","name":"Kremenchuk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":220065,"modificationDate":"2020-05-19"}, -{"geonameId":"1262995","name":"Mirzarpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":220029,"modificationDate":"2020-06-10"}, -{"geonameId":"2524170","name":"Messina","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":219948,"modificationDate":"2018-03-16"}, -{"geonameId":"1234569","name":"Dehiwala-Mount Lavinia","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":219827,"modificationDate":"2018-12-29"}, -{"geonameId":"1851012","name":"Takarazuka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":219789,"modificationDate":"2017-07-22"}, -{"geonameId":"1266976","name":"Kharagpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":219665,"modificationDate":"2014-10-14"}, -{"geonameId":"1272979","name":"Dhanbad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":219636,"modificationDate":"2020-04-18"}, -{"geonameId":"1254649","name":"Tanjore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":219571,"modificationDate":"2017-07-04"}, -{"geonameId":"3129028","name":"Badalona","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":219547,"modificationDate":"2019-09-05"}, -{"geonameId":"1865714","name":"Ageoshimo","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":219401,"modificationDate":"2017-07-29"}, -{"geonameId":"1725094","name":"Binangonan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":219204,"modificationDate":"2017-12-13"}, -{"geonameId":"2860410","name":"Oberhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":219176,"modificationDate":"2018-04-08"}, -{"geonameId":"1611110","name":"Chon Buri","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":219164,"modificationDate":"2015-07-13"}, -{"geonameId":"3164527","name":"Verona","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":219103,"modificationDate":"2018-03-17"}, -{"geonameId":"1494114","name":"Prokoyevsk","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":219000,"modificationDate":"2020-06-10"}, -{"geonameId":"198629","name":"Eldoret","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":218446,"modificationDate":"2013-06-28"}, -{"geonameId":"1791249","name":"Wuhai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":218427,"modificationDate":"2013-08-05"}, -{"geonameId":"2234359","name":"Bertoua","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":218111,"modificationDate":"2012-04-07"}, -{"geonameId":"3398269","name":"Imperatriz","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":218106,"modificationDate":"2012-08-03"}, -{"geonameId":"3493032","name":"San Pedro de Macorís","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":217899,"modificationDate":"2018-02-20"}, -{"geonameId":"1278903","name":"Ambarnath","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":217780,"modificationDate":"2020-06-10"}, -{"geonameId":"1734586","name":"Taiping","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":217647,"modificationDate":"2012-01-17"}, -{"geonameId":"1736309","name":"Alor Setar","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":217368,"modificationDate":"2012-01-17"}, -{"geonameId":"1630328","name":"Purwokerto","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":217222,"modificationDate":"2017-08-11"}, -{"geonameId":"3465927","name":"Colombo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":217000,"modificationDate":"2012-03-10"}, -{"geonameId":"5122520","name":"Jamaica","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":216866,"modificationDate":"2019-09-05"}, -{"geonameId":"500004","name":"Rybinsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":216724,"modificationDate":"2019-09-05"}, -{"geonameId":"2163355","name":"Hobart","countryName":"Australia","timeZoneName":"Australia/Hobart","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":216656,"modificationDate":"2019-09-05"}, -{"geonameId":"1687894","name":"Santa Rosa","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":216650,"modificationDate":"2017-12-13"}, -{"geonameId":"191245","name":"Kisumu","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":216479,"modificationDate":"2019-09-05"}, -{"geonameId":"5391710","name":"San Bernardino","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":216108,"modificationDate":"2017-03-09"}, -{"geonameId":"1710914","name":"Imus","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":216099,"modificationDate":"2017-12-13"}, -{"geonameId":"470451","name":"Vykhino-Zhulebino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":216000,"modificationDate":"2014-02-06"}, -{"geonameId":"2925177","name":"Freiburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":215966,"modificationDate":"2020-04-04"}, -{"geonameId":"2641430","name":"Northampton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":215963,"modificationDate":"2017-06-12"}, -{"geonameId":"1630341","name":"Purwakarta","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":215803,"modificationDate":"2016-01-07"}, -{"geonameId":"463829","name":"Zelenograd","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":215727,"modificationDate":"2010-03-25"}, -{"geonameId":"11777624","name":"Archway","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":215667,"modificationDate":"2017-11-29"}, -{"geonameId":"1170295","name":"Mirpur Khas","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":215657,"modificationDate":"2019-12-06"}, -{"geonameId":"2290486","name":"Daloa","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":215652,"modificationDate":"2016-05-18"}, -{"geonameId":"331180","name":"Mek'ele","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":215546,"modificationDate":"2016-10-12"}, -{"geonameId":"1510018","name":"Biysk","countryName":"Russia","timeZoneName":"Asia/Barnaul","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":215430,"modificationDate":"2016-11-29"}, -{"geonameId":"3893894","name":"Concepción","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":215413,"modificationDate":"2019-09-05"}, -{"geonameId":"3194360","name":"Novi Sad","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":215400,"modificationDate":"2019-09-05"}, -{"geonameId":"1805298","name":"Jinzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":215386,"modificationDate":"2011-10-09"}, -{"geonameId":"3995523","name":"Monclova","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":215271,"modificationDate":"2018-11-03"}, -{"geonameId":"3631741","name":"Mucumpiz","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":215259,"modificationDate":"2018-12-05"}, -{"geonameId":"4000900","name":"La Paz","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":215178,"modificationDate":"2018-11-03"}, -{"geonameId":"519336","name":"Velikiy Novgorod","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":215062,"modificationDate":"2016-12-20"}, -{"geonameId":"2325330","name":"Owerri","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":215038,"modificationDate":"2016-01-30"}, -{"geonameId":"8504960","name":"Centralniy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":214625,"modificationDate":"2013-06-10"}, -{"geonameId":"2323411","name":"Shagamu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":214558,"modificationDate":"2016-01-30"}, -{"geonameId":"3447186","name":"Taboão da Serra","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":214523,"modificationDate":"2012-03-10"}, -{"geonameId":"330186","name":"Nazreth","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":213995,"modificationDate":"2020-06-11"}, -{"geonameId":"1262204","name":"Nāgercoil","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":213858,"modificationDate":"2017-08-02"}, -{"geonameId":"702569","name":"Lutsk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":213661,"modificationDate":"2020-06-10"}, -{"geonameId":"3161732","name":"Bergen","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":213585,"modificationDate":"2019-12-12"}, -{"geonameId":"683902","name":"Brăila","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":213569,"modificationDate":"2020-06-01"}, -{"geonameId":"122438","name":"Naz̧arābād","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":213388,"modificationDate":"2014-09-04"}, -{"geonameId":"1806466","name":"Guangyuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":213365,"modificationDate":"2013-11-24"}, -{"geonameId":"139889","name":"Bokan","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":213331,"modificationDate":"2020-06-10"}, -{"geonameId":"5811696","name":"Spokane","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":213272,"modificationDate":"2019-09-05"}, -{"geonameId":"2641181","name":"Norwich","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":213166,"modificationDate":"2017-06-12"}, -{"geonameId":"3460370","name":"Jacareí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":213110,"modificationDate":"2014-05-15"}, -{"geonameId":"1864518","name":"Chōfu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":212977,"modificationDate":"2018-02-18"}, -{"geonameId":"1637510","name":"Loa Janan","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":212816,"modificationDate":"2007-11-09"}, -{"geonameId":"3873775","name":"Rancagua","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":212695,"modificationDate":"2012-05-03"}, -{"geonameId":"764484","name":"Mokotów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":212670,"modificationDate":"2018-01-16"}, -{"geonameId":"4004886","name":"Nogales","countryName":"Mexico","timeZoneName":"America/Hermosillo","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":212533,"modificationDate":"2018-11-03"}, -{"geonameId":"4049979","name":"Birmingham","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":212461,"modificationDate":"2019-09-05"}, -{"geonameId":"1735079","name":"Bukit Mertajam","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":212329,"modificationDate":"2012-01-17"}, -{"geonameId":"1706090","name":"Lipa City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":212287,"modificationDate":"2017-12-13"}, -{"geonameId":"3457692","name":"Marília","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":212218,"modificationDate":"2012-03-10"}, -{"geonameId":"2875601","name":"Lübeck","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":212207,"modificationDate":"2019-09-05"}, -{"geonameId":"1734821","name":"Sepang","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":212050,"modificationDate":"2015-12-13"}, -{"geonameId":"2520058","name":"Cartagena","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":211996,"modificationDate":"2019-09-05"}, -{"geonameId":"747323","name":"Esenyurt","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":211330,"modificationDate":"2018-03-09"}, -{"geonameId":"5373900","name":"Modesto","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":211266,"modificationDate":"2017-03-09"}, -{"geonameId":"307654","name":"Kırıkkale","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":211138,"modificationDate":"2019-09-05"}, -{"geonameId":"2037078","name":"Hailar","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":211066,"modificationDate":"2019-12-09"}, -{"geonameId":"3108286","name":"Terrassa","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":210941,"modificationDate":"2018-03-09"}, -{"geonameId":"110690","name":"Abha","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":210886,"modificationDate":"2018-05-07"}, -{"geonameId":"2210221","name":"Tarhuna","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":210697,"modificationDate":"2011-09-26"}, -{"geonameId":"355628","name":"Idkū","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":210678,"modificationDate":"2018-04-21"}, -{"geonameId":"1857519","name":"Matsumoto","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":210667,"modificationDate":"2017-07-22"}, -{"geonameId":"1814082","name":"Daliang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":210411,"modificationDate":"2012-06-05"}, -{"geonameId":"1568574","name":"Qui Nhon","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":210338,"modificationDate":"2018-10-25"}, -{"geonameId":"4853828","name":"Des Moines","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":210330,"modificationDate":"2019-09-05"}, -{"geonameId":"1260716","name":"Pāli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":210103,"modificationDate":"2014-10-14"}, -{"geonameId":"3568342","name":"Arroyo Naranjo","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":210053,"modificationDate":"2020-02-07"}, -{"geonameId":"1337233","name":"Bogra","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":210000,"modificationDate":"2016-11-09"}, -{"geonameId":"1519928","name":"Kostanay","countryName":"Kazakhstan","timeZoneName":"Asia/Qostanay","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":210000,"modificationDate":"2016-10-23"}, -{"geonameId":"323779","name":"Antakya","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":210000,"modificationDate":"2019-03-26"}, -{"geonameId":"5134086","name":"Rochester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":209802,"modificationDate":"2017-05-23"}, -{"geonameId":"1845136","name":"Chuncheon","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":209746,"modificationDate":"2015-03-08"}, -{"geonameId":"1562414","name":"Vũng Tàu","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":209683,"modificationDate":"2016-03-29"}, -{"geonameId":"2756253","name":"Eindhoven","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":209620,"modificationDate":"2019-09-05"}, -{"geonameId":"1214204","name":"Pematangsiantar","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":209614,"modificationDate":"2012-01-17"}, -{"geonameId":"2043572","name":"Kanggye","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":209530,"modificationDate":"2017-01-05"}, -{"geonameId":"3452324","name":"Presidente Prudente","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":209502,"modificationDate":"2012-08-03"}, -{"geonameId":"1796663","name":"Sanming","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":209444,"modificationDate":"2016-07-04"}, -{"geonameId":"347796","name":"Sohag","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":209419,"modificationDate":"2016-01-28"}, -{"geonameId":"2983990","name":"Rennes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":209375,"modificationDate":"2019-09-05"}, -{"geonameId":"3448622","name":"São Leopoldo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":209229,"modificationDate":"2012-08-03"}, -{"geonameId":"2338400","name":"Ijebu-Ode","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":209175,"modificationDate":"2016-01-30"}, -{"geonameId":"1252797","name":"Jamna Nagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":208931,"modificationDate":"2020-06-10"}, -{"geonameId":"1608529","name":"Nakhon Ratchasima","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":208781,"modificationDate":"2011-05-28"}, -{"geonameId":"3083271","name":"Toruń","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":208717,"modificationDate":"2019-10-08"}, -{"geonameId":"3909234","name":"Oruro","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":208684,"modificationDate":"2012-01-18"}, -{"geonameId":"769250","name":"Kielce","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":208598,"modificationDate":"2019-09-05"}, -{"geonameId":"1258182","name":"Rewa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":208461,"modificationDate":"2017-03-18"}, -{"geonameId":"3500957","name":"La Romana","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":208437,"modificationDate":"2016-06-05"}, -{"geonameId":"933773","name":"Gaborone","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":208411,"modificationDate":"2019-09-05"}, -{"geonameId":"1808931","name":"Hangu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":208369,"modificationDate":"2012-01-18"}, -{"geonameId":"5303929","name":"Maryvale","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":208189,"modificationDate":"2018-11-24"}, -{"geonameId":"5812944","name":"Tacoma","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":207948,"modificationDate":"2019-09-05"}, -{"geonameId":"3347939","name":"Lobito","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":207932,"modificationDate":"2013-06-09"}, -{"geonameId":"2185964","name":"North Shore","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":207865,"modificationDate":"2011-08-01"}, -{"geonameId":"1646194","name":"Ciputat","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":207858,"modificationDate":"2012-01-17"}, -{"geonameId":"114259","name":"Sirjan","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":207645,"modificationDate":"2014-05-28"}, -{"geonameId":"4744709","name":"Arlington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":207627,"modificationDate":"2015-01-15"}, -{"geonameId":"1688830","name":"San Pablo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":207577,"modificationDate":"2017-12-13"}, -{"geonameId":"2516326","name":"Jerez de la Frontera","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":207532,"modificationDate":"2019-09-05"}, -{"geonameId":"5349755","name":"Fontana","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":207460,"modificationDate":"2017-03-09"}, -{"geonameId":"5380184","name":"Oxnard","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":207254,"modificationDate":"2017-03-09"}, -{"geonameId":"1647383","name":"Ciampea","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":207212,"modificationDate":"2012-01-17"}, -{"geonameId":"1859884","name":"Kasukabe","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":206915,"modificationDate":"2017-07-22"}, -{"geonameId":"671768","name":"Oradea","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":206614,"modificationDate":"2020-05-14"}, -{"geonameId":"2506999","name":"Annaba","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":206570,"modificationDate":"2019-02-07"}, -{"geonameId":"3111199","name":"Sabadell","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":206493,"modificationDate":"2018-03-09"}, -{"geonameId":"3116025","name":"Móstoles","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":206478,"modificationDate":"2019-09-05"}, -{"geonameId":"1053384","name":"Toamasina","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":206373,"modificationDate":"2018-09-07"}, -{"geonameId":"1203891","name":"Dinājpur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":206234,"modificationDate":"2020-05-28"}, -{"geonameId":"3827606","name":"Buenavista","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":206081,"modificationDate":"2013-07-31"}, -{"geonameId":"3460949","name":"Itabuna","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":205660,"modificationDate":"2012-08-03"}, -{"geonameId":"1859383","name":"Kishiwada","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":205561,"modificationDate":"2017-07-22"}, -{"geonameId":"1793743","name":"Suzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":205130,"modificationDate":"2012-01-18"}, -{"geonameId":"3449319","name":"São Carlos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":205035,"modificationDate":"2013-04-14"}, -{"geonameId":"2772400","name":"Linz","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":204846,"modificationDate":"2019-09-05"}, -{"geonameId":"3130616","name":"Alcalá de Henares","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":204574,"modificationDate":"2019-09-05"}, -{"geonameId":"1810437","name":"Gaoping","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":204368,"modificationDate":"2012-01-18"}, -{"geonameId":"1854902","name":"Numazu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":204318,"modificationDate":"2017-07-22"}, -{"geonameId":"5374732","name":"Moreno Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":204198,"modificationDate":"2017-03-09"}, -{"geonameId":"1256922","name":"Secunderabad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":204182,"modificationDate":"2014-10-10"}, -{"geonameId":"6825489","name":"Jōetsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":204137,"modificationDate":"2017-07-22"}, -{"geonameId":"721472","name":"Debrecen","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":204124,"modificationDate":"2019-11-06"}, -{"geonameId":"1275738","name":"Bīdar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":204071,"modificationDate":"2020-03-01"}, -{"geonameId":"3171728","name":"Padova","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":203725,"modificationDate":"2018-08-03"}, -{"geonameId":"3550598","name":"Las Tunas","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":203684,"modificationDate":"2019-02-26"}, -{"geonameId":"1568212","name":"Sa Dec","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":203588,"modificationDate":"2020-05-30"}, -{"geonameId":"3461655","name":"Hortolândia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":203533,"modificationDate":"2012-03-10"}, -{"geonameId":"4562831","name":"Bayamón","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":203499,"modificationDate":"2015-08-03"}, -{"geonameId":"2037860","name":"Daqing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":203488,"modificationDate":"2019-09-05"}, -{"geonameId":"3991328","name":"Puerto Vallarta","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":203342,"modificationDate":"2018-11-03"}, -{"geonameId":"1279290","name":"Agartala","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":203264,"modificationDate":"2014-10-14"}, -{"geonameId":"2929670","name":"Erfurt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":203254,"modificationDate":"2019-09-05"}, -{"geonameId":"1262482","name":"Monghyr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":203163,"modificationDate":"2015-11-08"}, -{"geonameId":"2232239","name":"Edéa","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":203149,"modificationDate":"2012-01-16"}, -{"geonameId":"8504949","name":"Vasyl'evsky Ostrov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":203058,"modificationDate":"2013-11-10"}, -{"geonameId":"1854747","name":"Odawara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":203035,"modificationDate":"2017-07-22"}, -{"geonameId":"2306079","name":"Atsiaman","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":202932,"modificationDate":"2019-12-05"}, -{"geonameId":"303195","name":"Osmaniye","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":202837,"modificationDate":"2019-09-05"}, -{"geonameId":"5911606","name":"Burnaby","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":202799,"modificationDate":"2019-02-26"}, -{"geonameId":"142363","name":"Barfrush","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":202796,"modificationDate":"2020-06-10"}, -{"geonameId":"1275068","name":"Burhānpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":202695,"modificationDate":"2015-08-07"}, -{"geonameId":"634963","name":"Tampere","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":202687,"modificationDate":"2019-09-05"}, -{"geonameId":"3516266","name":"Tapachula","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":202672,"modificationDate":"2018-11-03"}, -{"geonameId":"1808316","name":"Yiyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":202608,"modificationDate":"2015-06-04"}, -{"geonameId":"748893","name":"Tzurullum","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":202578,"modificationDate":"2020-06-10"}, -{"geonameId":"2910685","name":"Harburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":202571,"modificationDate":"2017-08-14"}, -{"geonameId":"1803331","name":"Linxia Chengguanzhen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":202402,"modificationDate":"2013-05-07"}, -{"geonameId":"1336137","name":"Barisāl","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":202242,"modificationDate":"2016-11-09"}, -{"geonameId":"1646494","name":"Cileungsir","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":202190,"modificationDate":"2013-06-04"}, -{"geonameId":"1262292","name":"Naidad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":202067,"modificationDate":"2020-06-10"}, -{"geonameId":"3394682","name":"Mossoró","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":202005,"modificationDate":"2012-08-03"}, -{"geonameId":"504341","name":"Pskov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":201990,"modificationDate":"2019-09-05"}, -{"geonameId":"4466033","name":"Fayetteville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":201963,"modificationDate":"2017-05-23"}, -{"geonameId":"1785738","name":"Yuncheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":201950,"modificationDate":"2013-03-25"}, -{"geonameId":"2219905","name":"Al Khums","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":201943,"modificationDate":"2019-09-05"}, -{"geonameId":"5358705","name":"Huntington Beach","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":201899,"modificationDate":"2017-03-09"}, -{"geonameId":"8063098","name":"Favoriten","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":201882,"modificationDate":"2018-07-29"}, -{"geonameId":"1181096","name":"Chiniot","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":201781,"modificationDate":"2019-12-06"}, -{"geonameId":"3460718","name":"Itapevi","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":201748,"modificationDate":"2012-03-10"}, -{"geonameId":"1274353","name":"Chupra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":201597,"modificationDate":"2020-06-10"}, -{"geonameId":"1629710","name":"Rengasdengklok","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":201463,"modificationDate":"2012-01-17"}, -{"geonameId":"3447624","name":"Sete Lagoas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":201334,"modificationDate":"2012-08-03"}, -{"geonameId":"7281017","name":"La Pintana","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":201178,"modificationDate":"2012-05-03"}, -{"geonameId":"5145215","name":"Yonkers","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":201116,"modificationDate":"2019-09-05"}, -{"geonameId":"5352423","name":"Glendale","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":201020,"modificationDate":"2019-09-05"}, -{"geonameId":"1153671","name":"Chiang Mai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":200952,"modificationDate":"2012-01-16"}, -{"geonameId":"1520172","name":"Petropavl","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":200920,"modificationDate":"2016-01-07"}, -{"geonameId":"3647651","name":"Cabimas","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":200818,"modificationDate":"2018-08-09"}, -{"geonameId":"1272543","name":"Dindigul","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":200797,"modificationDate":"2014-10-14"}, -{"geonameId":"4883817","name":"Aurora","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":200661,"modificationDate":"2017-05-23"}, -{"geonameId":"4076784","name":"Montgomery","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":200602,"modificationDate":"2019-09-05"}, -{"geonameId":"4188985","name":"Columbus","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":200579,"modificationDate":"2017-03-09"}, -{"geonameId":"146268","name":"Nicosia","countryName":"Cyprus","timeZoneName":"Asia/Nicosia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":200452,"modificationDate":"2019-09-05"}, -{"geonameId":"3651297","name":"Santo Domingo de los Colorados","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":200421,"modificationDate":"2017-02-07"}, -{"geonameId":"1139715","name":"Tarun City","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":200331,"modificationDate":"2020-06-09"}, -{"geonameId":"2320831","name":"Ugep","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":200276,"modificationDate":"2016-01-30"}, -{"geonameId":"100425","name":"Yanbu","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":200161,"modificationDate":"2017-05-23"}, -{"geonameId":"2800481","name":"Charleroi","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":200132,"modificationDate":"2019-09-05"}, -{"geonameId":"3448742","name":"São José","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":200000,"modificationDate":"2018-07-04"}, -{"geonameId":"7602078","name":"Ladner","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":200000,"modificationDate":"2019-02-26"}, -{"geonameId":"7799991","name":"New Cairo","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":200000,"modificationDate":"2017-12-06"}, -{"geonameId":"1626103","name":"Sumedang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":200000,"modificationDate":"2017-01-14"}, -{"geonameId":"293918","name":"Tigrah","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":200000,"modificationDate":"2020-06-10"}, -{"geonameId":"6690108","name":"Panchkula","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":200000,"modificationDate":"2019-07-11"}, -{"geonameId":"179330","name":"Thika","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":200000,"modificationDate":"2013-08-17"}, -{"geonameId":"1527534","name":"Osh","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":200000,"modificationDate":"2019-09-05"}, -{"geonameId":"608668","name":"Oral","countryName":"Kazakhstan","timeZoneName":"Asia/Oral","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":200000,"modificationDate":"2019-09-05"}, -{"geonameId":"2218970","name":"Zawia","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":200000,"modificationDate":"2020-06-10"}, -{"geonameId":"10920963","name":"Salé Al Jadida","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":200000,"modificationDate":"2019-12-19"}, -{"geonameId":"12129605","name":"Chakwama","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":200000,"modificationDate":"2020-03-05"}, -{"geonameId":"1282898","name":"Pokhara","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":200000,"modificationDate":"2019-10-19"}, -{"geonameId":"1165569","name":"Shahkot","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":200000,"modificationDate":"2012-07-31"}, -{"geonameId":"496348","name":"Severnyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":200000,"modificationDate":"2013-03-31"}, -{"geonameId":"1256320","name":"Sīkar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":199932,"modificationDate":"2014-10-14"}, -{"geonameId":"2746301","name":"Tilburg","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":199613,"modificationDate":"2019-09-05"}, -{"geonameId":"579492","name":"Balakovo","countryName":"Russia","timeZoneName":"Europe/Saratov","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":199572,"modificationDate":"2019-09-05"}, -{"geonameId":"580922","name":"Armavir","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":199548,"modificationDate":"2019-09-05"}, -{"geonameId":"1175088","name":"Kamoke","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":199531,"modificationDate":"2019-12-06"}, -{"geonameId":"6545349","name":"Saidpur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":199422,"modificationDate":"2013-07-20"}, -{"geonameId":"143534","name":"Amul","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":199382,"modificationDate":"2020-06-10"}, -{"geonameId":"712165","name":"Bila Tserkva","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":199163,"modificationDate":"2019-10-09"}, -{"geonameId":"2650839","name":"Dudley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":199059,"modificationDate":"2010-10-16"}, -{"geonameId":"2912621","name":"Hagen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":198972,"modificationDate":"2018-12-17"}, -{"geonameId":"6141256","name":"Saskatoon","countryName":"Canada","timeZoneName":"America/Regina","timeZoneOffsetNameWithoutDst":"Central Time","population":198958,"modificationDate":"2019-09-05"}, -{"geonameId":"3099230","name":"Gliwice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":198835,"modificationDate":"2019-09-05"}, -{"geonameId":"1529569","name":"Changji","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":198776,"modificationDate":"2018-12-06"}, -{"geonameId":"1702540","name":"Malolos","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":198748,"modificationDate":"2017-12-13"}, -{"geonameId":"5516233","name":"Amarillo","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":198645,"modificationDate":"2017-03-09"}, -{"geonameId":"1275120","name":"Bulandshahr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":198612,"modificationDate":"2015-08-07"}, -{"geonameId":"3439214","name":"Capiatá","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":198553,"modificationDate":"2019-02-26"}, -{"geonameId":"3114472","name":"Pamplona","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":198491,"modificationDate":"2019-09-05"}, -{"geonameId":"1259166","name":"Purnia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":198453,"modificationDate":"2014-10-14"}, -{"geonameId":"1804850","name":"Kaiyuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":198423,"modificationDate":"2012-01-18"}, -{"geonameId":"2844588","name":"Rostock","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":198293,"modificationDate":"2019-09-05"}, -{"geonameId":"1735902","name":"Sibu","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":198239,"modificationDate":"2012-01-17"}, -{"geonameId":"751868","name":"Arnavutköy","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":198165,"modificationDate":"2018-03-27"}, -{"geonameId":"3654533","name":"Machala","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":198123,"modificationDate":"2019-09-05"}, -{"geonameId":"4119403","name":"Little Rock","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":197992,"modificationDate":"2019-09-05"}, -{"geonameId":"1269935","name":"Hospet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":197846,"modificationDate":"2014-10-14"}, -{"geonameId":"3121960","name":"Fuenlabrada","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":197836,"modificationDate":"2019-09-05"}, -{"geonameId":"1800657","name":"Mentougou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":197772,"modificationDate":"2012-09-06"}, -{"geonameId":"5145476","name":"Akron","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":197542,"modificationDate":"2017-05-23"}, -{"geonameId":"3870294","name":"Talca","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":197479,"modificationDate":"2019-09-05"}, -{"geonameId":"1270642","name":"Gurgaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":197340,"modificationDate":"2014-10-13"}, -{"geonameId":"3530594","name":"Ciudad Madero","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":197216,"modificationDate":"2018-11-03"}, -{"geonameId":"4341513","name":"Shreveport","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":197204,"modificationDate":"2017-03-09"}, -{"geonameId":"1584071","name":"Ðà Lạt","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":197000,"modificationDate":"2013-06-29"}, -{"geonameId":"140463","name":"Birdjand","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":196982,"modificationDate":"2020-06-10"}, -{"geonameId":"2282006","name":"San-Pédro","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":196751,"modificationDate":"2019-02-26"}, -{"geonameId":"1651944","name":"Vientiane","countryName":"Laos","timeZoneName":"Asia/Vientiane","timeZoneOffsetNameWithoutDst":"Indochina Time","population":196731,"modificationDate":"2020-02-23"}, -{"geonameId":"2657832","name":"Aberdeen","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":196670,"modificationDate":"2017-06-15"}, -{"geonameId":"1858296","name":"Kure","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":196624,"modificationDate":"2017-07-22"}, -{"geonameId":"745028","name":"İzmit","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":196571,"modificationDate":"2019-02-27"}, -{"geonameId":"2984114","name":"Reims","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":196565,"modificationDate":"2019-10-08"}, -{"geonameId":"2462881","name":"Laayoune","countryName":"Western Sahara","timeZoneName":"Africa/El_Aaiun","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":196331,"modificationDate":"2016-11-23"}, -{"geonameId":"3474574","name":"Palmas","countryName":"Brazil","timeZoneName":"America/Araguaina","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":196272,"modificationDate":"2013-10-22"}, -{"geonameId":"6317872","name":"Parauapebas","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":196259,"modificationDate":"2019-07-21"}, -{"geonameId":"1843702","name":"Icheon-si","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":196230,"modificationDate":"2014-03-08"}, -{"geonameId":"2146142","name":"Townsville","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":196219,"modificationDate":"2013-06-25"}, -{"geonameId":"1257540","name":"Sambhal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":196109,"modificationDate":"2018-05-27"}, -{"geonameId":"3472343","name":"Americana","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":196022,"modificationDate":"2012-08-03"}, -{"geonameId":"563464","name":"Pokrovskaya","countryName":"Russia","timeZoneName":"Europe/Saratov","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":196011,"modificationDate":"2020-06-10"}, -{"geonameId":"1271715","name":"Gandhinagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":195985,"modificationDate":"2018-05-22"}, -{"geonameId":"732770","name":"Burgas","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":195966,"modificationDate":"2019-09-05"}, -{"geonameId":"1262395","name":"Katni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":195856,"modificationDate":"2020-06-10"}, -{"geonameId":"1856199","name":"Nagaoka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":195318,"modificationDate":"2019-09-05"}, -{"geonameId":"1841988","name":"Guri-si","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":195236,"modificationDate":"2014-01-06"}, -{"geonameId":"3645213","name":"Coro","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":195227,"modificationDate":"2014-05-11"}, -{"geonameId":"1850692","name":"Nishi-Tokyo-shi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":195164,"modificationDate":"2017-07-22"}, -{"geonameId":"1806882","name":"Xinhui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":195129,"modificationDate":"2012-01-18"}, -{"geonameId":"4994358","name":"Grand Rapids","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":195097,"modificationDate":"2019-09-05"}, -{"geonameId":"1640344","name":"Kendari","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":195006,"modificationDate":"2013-04-27"}, -{"geonameId":"3392242","name":"Petrolina","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":194650,"modificationDate":"2012-08-03"}, -{"geonameId":"2279755","name":"Yamoussoukro","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":194530,"modificationDate":"2019-09-05"}, -{"geonameId":"2892518","name":"Kassel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":194501,"modificationDate":"2019-09-05"}, -{"geonameId":"1261913","name":"Nangloi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":194363,"modificationDate":"2020-06-10"}, -{"geonameId":"496285","name":"Severodvinsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":194292,"modificationDate":"2019-09-05"}, -{"geonameId":"4076598","name":"Mobile","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":194288,"modificationDate":"2017-03-09"}, -{"geonameId":"2639996","name":"Portsmouth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":194150,"modificationDate":"2019-09-05"}, -{"geonameId":"2328765","name":"Nnewi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":193987,"modificationDate":"2016-01-30"}, -{"geonameId":"1632276","name":"Parung","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":193898,"modificationDate":"2012-01-17"}, -{"geonameId":"3464688","name":"Divinópolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":193832,"modificationDate":"2015-06-20"}, -{"geonameId":"6947639","name":"Başakşehir","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":193750,"modificationDate":"2011-01-04"}, -{"geonameId":"1811619","name":"Ezhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":193652,"modificationDate":"2011-08-07"}, -{"geonameId":"3395473","name":"Maracanaú","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":193529,"modificationDate":"2012-08-03"}, -{"geonameId":"1861310","name":"Itami","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":193524,"modificationDate":"2019-02-28"}, -{"geonameId":"1573517","name":"Nam Din","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":193499,"modificationDate":"2020-06-09"}, -{"geonameId":"1849372","name":"Uji","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":192925,"modificationDate":"2017-07-22"}, -{"geonameId":"1264637","name":"Masulipatnam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":192827,"modificationDate":"2020-06-10"}, -{"geonameId":"2043837","name":"Hyesan","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":192680,"modificationDate":"2020-01-09"}, -{"geonameId":"5780993","name":"Salt Lake City","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":192672,"modificationDate":"2019-09-05"}, -{"geonameId":"3567597","name":"Bayamo","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":192632,"modificationDate":"2019-02-27"}, -{"geonameId":"1267480","name":"Katihar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":192555,"modificationDate":"2014-10-14"}, -{"geonameId":"1624863","name":"Tanjung Pinang","countryName":"Indonesia","timeZoneName":"Asia/Pontianak","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":192493,"modificationDate":"2017-09-28"}, -{"geonameId":"1192366","name":"Pār Naogaon","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":192464,"modificationDate":"2016-11-09"}, -{"geonameId":"2641673","name":"Newcastle upon Tyne","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":192382,"modificationDate":"2019-09-05"}, -{"geonameId":"598098","name":"Klaipėda","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":192307,"modificationDate":"2019-09-16"}, -{"geonameId":"3080985","name":"Zabrze","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":192177,"modificationDate":"2020-01-13"}, -{"geonameId":"140380","name":"Bojnūrd","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":192041,"modificationDate":"2017-02-08"}, -{"geonameId":"3639898","name":"Guatire","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":191903,"modificationDate":"2018-08-08"}, -{"geonameId":"1806696","name":"Humen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":191891,"modificationDate":"2012-12-05"}, -{"geonameId":"2481007","name":"Sidi Bel Abbès","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":191769,"modificationDate":"2019-09-05"}, -{"geonameId":"1610780","name":"Hat Yai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":191696,"modificationDate":"2012-01-16"}, -{"geonameId":"2037086","name":"Haicheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":191651,"modificationDate":"2012-01-18"}, -{"geonameId":"1851348","name":"Suzuka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":191477,"modificationDate":"2017-07-22"}, -{"geonameId":"2437798","name":"Zinder","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":191424,"modificationDate":"2019-09-05"}, -{"geonameId":"1645895","name":"Curug","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":191406,"modificationDate":"2013-08-05"}, -{"geonameId":"3689169","name":"Barrancabermeja","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":191403,"modificationDate":"2018-09-05"}, -{"geonameId":"462444","name":"Zlatoust","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":191366,"modificationDate":"2019-09-05"}, -{"geonameId":"1697018","name":"Ormoc","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":191200,"modificationDate":"2018-01-16"}, -{"geonameId":"1275899","name":"Bhiwāni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":190855,"modificationDate":"2015-06-07"}, -{"geonameId":"4068590","name":"Huntsville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":190582,"modificationDate":"2017-04-02"}, -{"geonameId":"1783633","name":"Zoucheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":190537,"modificationDate":"2012-01-18"}, -{"geonameId":"2965140","name":"Cork","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":190384,"modificationDate":"2019-09-05"}, -{"geonameId":"99454","name":"Feluja","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":190159,"modificationDate":"2020-06-10"}, -{"geonameId":"2337207","name":"Ise-Ekiti","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":190063,"modificationDate":"2016-01-30"}, -{"geonameId":"632453","name":"Vantaa","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":190058,"modificationDate":"2019-09-05"}, -{"geonameId":"1859100","name":"Kōfu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":190000,"modificationDate":"2019-02-27"}, -{"geonameId":"3363094","name":"Paarl","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":190000,"modificationDate":"2015-04-26"}, -{"geonameId":"4174715","name":"Tallahassee","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":189907,"modificationDate":"2019-09-05"}, -{"geonameId":"1166652","name":"Saddiqabad","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":189876,"modificationDate":"2019-12-06"}, -{"geonameId":"359173","name":"Beni Suweif","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":189624,"modificationDate":"2020-06-11"}, -{"geonameId":"11184422","name":"Planaltina","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":189412,"modificationDate":"2019-08-08"}, -{"geonameId":"5513343","name":"Sunrise Manor","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":189372,"modificationDate":"2011-05-14"}, -{"geonameId":"484972","name":"Sysran","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":189338,"modificationDate":"2020-06-10"}, -{"geonameId":"3101950","name":"Bytom","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":189186,"modificationDate":"2019-09-05"}, -{"geonameId":"207570","name":"Mwene-Ditu","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":189177,"modificationDate":"2016-11-22"}, -{"geonameId":"1695743","name":"Panalanoy","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":189090,"modificationDate":"2017-12-13"}, -{"geonameId":"1861107","name":"Izumi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":189085,"modificationDate":"2017-07-22"}, -{"geonameId":"3389353","name":"Santarém","countryName":"Brazil","timeZoneName":"America/Santarem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":189047,"modificationDate":"2013-12-25"}, -{"geonameId":"1791748","name":"Wanxian","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":188980,"modificationDate":"2013-06-16"}, -{"geonameId":"916095","name":"Kabwe","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":188979,"modificationDate":"2019-09-05"}, -{"geonameId":"1028434","name":"Quelimane","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":188964,"modificationDate":"2019-09-05"}, -{"geonameId":"3837702","name":"San Fernando del Valle de Catamarca","countryName":"Argentina","timeZoneName":"America/Argentina/Catamarca","timeZoneOffsetNameWithoutDst":"Argentina Time","population":188812,"modificationDate":"2016-01-30"}, -{"geonameId":"2521886","name":"Almería","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":188810,"modificationDate":"2019-09-16"}, -{"geonameId":"3468031","name":"Camaçari","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":188758,"modificationDate":"2015-05-23"}, -{"geonameId":"1638868","name":"Labuan Bajo","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":188724,"modificationDate":"2016-02-12"}, -{"geonameId":"1647003","name":"Cibinong","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":188663,"modificationDate":"2018-04-24"}, -{"geonameId":"1812521","name":"Donghai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":188602,"modificationDate":"2012-01-18"}, -{"geonameId":"6956647","name":"Boyeros","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":188593,"modificationDate":"2016-09-27"}, -{"geonameId":"1817240","name":"Baiyin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":188533,"modificationDate":"2018-12-06"}, -{"geonameId":"1704703","name":"Mabalacat City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":188050,"modificationDate":"2017-12-13"}, -{"geonameId":"3450404","name":"Santa Bárbara d'Oeste","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":188000,"modificationDate":"2020-03-31"}, -{"geonameId":"1804578","name":"Laizhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":188000,"modificationDate":"2018-12-06"}, -{"geonameId":"9781227","name":"Kultali","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":187942,"modificationDate":"2014-10-18"}, -{"geonameId":"6545348","name":"Praga Południe","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":187845,"modificationDate":"2018-01-16"}, -{"geonameId":"3451138","name":"Rio Grande","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":187838,"modificationDate":"2016-06-13"}, -{"geonameId":"4694482","name":"Grand Prairie","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":187809,"modificationDate":"2017-03-09"}, -{"geonameId":"2542051","name":"Mohammedia","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":187708,"modificationDate":"2018-12-21"}, -{"geonameId":"2636503","name":"Sutton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":187600,"modificationDate":"2014-04-28"}, -{"geonameId":"1512979","name":"Kokand","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":187477,"modificationDate":"2020-06-10"}, -{"geonameId":"2122104","name":"Petropavlovsk-Kamchatsky","countryName":"Russia","timeZoneName":"Asia/Kamchatka","timeZoneOffsetNameWithoutDst":"Petropavlovsk-Kamchatski Time","population":187282,"modificationDate":"2019-09-05"}, -{"geonameId":"3530870","name":"Chilpancingo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":187251,"modificationDate":"2018-11-03"}, -{"geonameId":"3165185","name":"Trieste","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":187056,"modificationDate":"2019-09-05"}, -{"geonameId":"3468376","name":"Cachoeiro de Itapemirim","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":187019,"modificationDate":"2020-03-15"}, -{"geonameId":"11903636","name":"Donaustadt","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":187007,"modificationDate":"2018-07-29"}, -{"geonameId":"2314705","name":"Kikwit","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":186991,"modificationDate":"2017-07-10"}, -{"geonameId":"3544091","name":"Pinar del Río","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":186990,"modificationDate":"2016-11-21"}, -{"geonameId":"1696710","name":"Pagadian","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":186852,"modificationDate":"2017-12-13"}, -{"geonameId":"1336143","name":"Pābna","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":186781,"modificationDate":"2016-11-09"}, -{"geonameId":"3564124","name":"Cienfuegos","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":186644,"modificationDate":"2019-09-05"}, -{"geonameId":"295530","name":"Beersheba","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":186600,"modificationDate":"2019-03-15"}, -{"geonameId":"4276873","name":"Overland Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":186515,"modificationDate":"2017-05-23"}, -{"geonameId":"1259064","name":"Raebareli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":186433,"modificationDate":"2015-08-15"}, -{"geonameId":"952865","name":"Springs","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":186394,"modificationDate":"2018-09-27"}, -{"geonameId":"349158","name":"Shebin al-Kom","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":186345,"modificationDate":"2020-06-11"}, -{"geonameId":"2112708","name":"Hitachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":186307,"modificationDate":"2017-07-22"}, -{"geonameId":"1069166","name":"Antsirabe","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":186253,"modificationDate":"2018-09-07"}, -{"geonameId":"2216885","name":"Zawiya","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":186123,"modificationDate":"2011-09-26"}, -{"geonameId":"1636930","name":"Madiun","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":186099,"modificationDate":"2012-01-17"}, -{"geonameId":"1270351","name":"Haridwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":186079,"modificationDate":"2014-10-14"}, -{"geonameId":"3118594","name":"Leganés","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":186066,"modificationDate":"2019-09-05"}, -{"geonameId":"380174","name":"Ad-Damazin","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":186051,"modificationDate":"2014-04-20"}, -{"geonameId":"3899361","name":"Arica","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":185999,"modificationDate":"2012-12-05"}, -{"geonameId":"3003796","name":"Le Havre","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":185972,"modificationDate":"2019-09-05"}, -{"geonameId":"2636389","name":"Swindon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":185609,"modificationDate":"2017-06-12"}, -{"geonameId":"7279754","name":"Singrauli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":185580,"modificationDate":"2014-10-14"}, -{"geonameId":"6122091","name":"Richmond Hill","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":185541,"modificationDate":"2018-01-20"}, -{"geonameId":"3110044","name":"Donostia / San Sebastián","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":185357,"modificationDate":"2020-03-18"}, -{"geonameId":"2911240","name":"Hamm","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":185327,"modificationDate":"2019-09-05"}, -{"geonameId":"4634946","name":"Knoxville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":185291,"modificationDate":"2017-03-09"}, -{"geonameId":"56399","name":"Jamaame","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":185270,"modificationDate":"2018-04-03"}, -{"geonameId":"3521168","name":"Poza Rica de Hidalgo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":185242,"modificationDate":"2018-11-03"}, -{"geonameId":"1234633","name":"Moratuwa","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":185031,"modificationDate":"2018-12-29"}, -{"geonameId":"305268","name":"Kutaya","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":185008,"modificationDate":"2020-06-10"}, -{"geonameId":"2874225","name":"Mainz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":184997,"modificationDate":"2020-06-10"}, -{"geonameId":"1699802","name":"Meycauayan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":184839,"modificationDate":"2017-12-13"}, -{"geonameId":"3181554","name":"Brescia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":184826,"modificationDate":"2017-12-12"}, -{"geonameId":"4956184","name":"Worcester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":184815,"modificationDate":"2019-09-05"}, -{"geonameId":"12157007","name":"Santa Anita - Los Ficus","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":184614,"modificationDate":"2020-05-07"}, -{"geonameId":"1785462","name":"Zaoyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":184509,"modificationDate":"2012-01-18"}, -{"geonameId":"9827976","name":"Paltan","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":184492,"modificationDate":"2016-11-09"}, -{"geonameId":"1268773","name":"Junaghur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":184447,"modificationDate":"2020-06-10"}, -{"geonameId":"884979","name":"Mutare","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":184205,"modificationDate":"2019-09-05"}, -{"geonameId":"2312895","name":"Mbandaka","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":184185,"modificationDate":"2016-12-30"}, -{"geonameId":"1631648","name":"Pemalang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":184149,"modificationDate":"2018-03-27"}, -{"geonameId":"1797353","name":"Quanzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":184143,"modificationDate":"2016-07-04"}, -{"geonameId":"3837056","name":"San Luis","countryName":"Argentina","timeZoneName":"America/Argentina/San_Luis","timeZoneOffsetNameWithoutDst":"Argentina Time","population":183982,"modificationDate":"2016-09-05"}, -{"geonameId":"2660646","name":"Genève","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":183981,"modificationDate":"2019-09-05"}, -{"geonameId":"1682812","name":"Tarlac City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":183930,"modificationDate":"2017-12-13"}, -{"geonameId":"1182092","name":"Būrewāla","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":183915,"modificationDate":"2019-12-11"}, -{"geonameId":"4676740","name":"Brownsville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":183887,"modificationDate":"2017-03-09"}, -{"geonameId":"2038584","name":"Baishan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":183880,"modificationDate":"2017-02-02"}, -{"geonameId":"1255560","name":"Sūjāngarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":183808,"modificationDate":"2014-10-14"}, -{"geonameId":"1785453","name":"Zaozhuang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":183665,"modificationDate":"2012-01-18"}, -{"geonameId":"2129376","name":"Kushiro","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":183612,"modificationDate":"2017-07-22"}, -{"geonameId":"8555643","name":"Cergy-Pontoise","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":183430,"modificationDate":"2016-02-18"}, -{"geonameId":"748879","name":"Euchaita","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":183418,"modificationDate":"2020-06-10"}, -{"geonameId":"1272051","name":"Ellore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":183387,"modificationDate":"2019-07-29"}, -{"geonameId":"1282931","name":"Pātan","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":183310,"modificationDate":"2019-10-19"}, -{"geonameId":"3654410","name":"Manta","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":183166,"modificationDate":"2019-09-05"}, -{"geonameId":"1638063","name":"Lembang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":183130,"modificationDate":"2012-01-17"}, -{"geonameId":"6544104","name":"Sants-Montjuïc","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":183120,"modificationDate":"2017-05-26"}, -{"geonameId":"1275778","name":"Bhusāval","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":183001,"modificationDate":"2016-01-07"}, -{"geonameId":"1608048","name":"Pak Kret","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":182926,"modificationDate":"2016-06-04"}, -{"geonameId":"1267031","name":"Khandwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":182841,"modificationDate":"2015-08-07"}, -{"geonameId":"3109718","name":"Santander","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":182700,"modificationDate":"2019-09-05"}, -{"geonameId":"2792413","name":"Liège","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":182597,"modificationDate":"2019-09-05"}, -{"geonameId":"3644918","name":"Cúa","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":182558,"modificationDate":"2018-08-08"}, -{"geonameId":"2111220","name":"Sakura","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":182549,"modificationDate":"2017-07-22"}, -{"geonameId":"1504826","name":"Kamensk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":182500,"modificationDate":"2020-06-10"}, -{"geonameId":"3460950","name":"Itaboraí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":182498,"modificationDate":"2012-08-03"}, -{"geonameId":"2503769","name":"Blida","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":182447,"modificationDate":"2019-09-05"}, -{"geonameId":"4776024","name":"Newport News","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":182385,"modificationDate":"2017-03-09"}, -{"geonameId":"5393049","name":"Santa Clarita","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":182371,"modificationDate":"2017-03-09"}, -{"geonameId":"1283582","name":"Biratnagar","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":182324,"modificationDate":"2019-10-19"}, -{"geonameId":"1014073","name":"Carletonville","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":182304,"modificationDate":"2012-07-12"}, -{"geonameId":"1277799","name":"Bahraigh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":182218,"modificationDate":"2015-08-07"}, -{"geonameId":"5894171","name":"Barrie","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":182041,"modificationDate":"2013-09-22"}, -{"geonameId":"1308522","name":"Monywa","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":182011,"modificationDate":"2016-06-01"}, -{"geonameId":"6122085","name":"Richmond","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":182000,"modificationDate":"2019-02-26"}, -{"geonameId":"3169921","name":"Prato","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":181820,"modificationDate":"2016-05-06"}, -{"geonameId":"1630634","name":"Probolinggo","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":181656,"modificationDate":"2012-01-17"}, -{"geonameId":"1256052","name":"Sirsa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":181639,"modificationDate":"2014-10-13"}, -{"geonameId":"3640049","name":"Guarenas","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":181612,"modificationDate":"2018-08-08"}, -{"geonameId":"2038650","name":"Anda","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":181271,"modificationDate":"2013-04-03"}, -{"geonameId":"2842647","name":"Saarbrücken","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":181227,"modificationDate":"2019-09-05"}, -{"geonameId":"1783934","name":"Shangqiu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":181218,"modificationDate":"2012-01-18"}, -{"geonameId":"246013","name":"Wadi Sir","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":181212,"modificationDate":"2020-06-10"}, -{"geonameId":"2755251","name":"Groningen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":181194,"modificationDate":"2019-09-05"}, -{"geonameId":"3165926","name":"Taranto","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":181082,"modificationDate":"2017-05-23"}, -{"geonameId":"1734759","name":"Malacca","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":180671,"modificationDate":"2015-06-23"}, -{"geonameId":"1274784","name":"Chandannagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":180623,"modificationDate":"2014-10-14"}, -{"geonameId":"1843137","name":"Gangneung","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":180611,"modificationDate":"2018-02-06"}, -{"geonameId":"1277820","name":"Baharampur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":180547,"modificationDate":"2014-10-14"}, -{"geonameId":"160196","name":"Dodoma","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":180541,"modificationDate":"2019-09-05"}, -{"geonameId":"2652053","name":"Crawley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":180508,"modificationDate":"2017-06-12"}, -{"geonameId":"3451234","name":"Rio Claro","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":180147,"modificationDate":"2012-08-03"}, -{"geonameId":"1336144","name":"Tāngāil","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":180144,"modificationDate":"2016-11-09"}, -{"geonameId":"2313002","name":"Matadi","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":180109,"modificationDate":"2019-09-05"}, -{"geonameId":"2519752","name":"Castelló de la Plana","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":180005,"modificationDate":"2016-05-11"}, -{"geonameId":"6087029","name":"Nepean","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":180000,"modificationDate":"2019-09-26"}, -{"geonameId":"610529","name":"Atyrau","countryName":"Kazakhstan","timeZoneName":"Asia/Atyrau","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":180000,"modificationDate":"2019-09-05"}, -{"geonameId":"468809","name":"Yasenevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":180000,"modificationDate":"2014-03-05"}, -{"geonameId":"1832847","name":"Yangju","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":179923,"modificationDate":"2010-07-09"}, -{"geonameId":"3461311","name":"Indaiatuba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":179911,"modificationDate":"2014-06-28"}, -{"geonameId":"1255349","name":"Surendranagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":179628,"modificationDate":"2014-10-13"}, -{"geonameId":"112214","name":"Varāmīn","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":179603,"modificationDate":"2014-09-04"}, -{"geonameId":"3685095","name":"Dosquebradas","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":179583,"modificationDate":"2018-09-05"}, -{"geonameId":"3454857","name":"Passo Fundo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":179529,"modificationDate":"2012-08-03"}, -{"geonameId":"1790396","name":"Xianning","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":179494,"modificationDate":"2018-12-06"}, -{"geonameId":"1706889","name":"Legaspi","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":179481,"modificationDate":"2017-12-13"}, -{"geonameId":"1529376","name":"Korla","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":179465,"modificationDate":"2017-07-21"}, -{"geonameId":"1716771","name":"Cotabato","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":179433,"modificationDate":"2018-07-18"}, -{"geonameId":"508101","name":"Podolsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":179400,"modificationDate":"2016-12-20"}, -{"geonameId":"1253084","name":"Vizianagaram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":179358,"modificationDate":"2014-10-10"}, -{"geonameId":"5224151","name":"Providence","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":179207,"modificationDate":"2019-09-05"}, -{"geonameId":"2337765","name":"Ila Orangun","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":179192,"modificationDate":"2016-01-30"}, -{"geonameId":"1786067","name":"Qianjiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":179079,"modificationDate":"2013-11-23"}, -{"geonameId":"1815059","name":"Chenzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":179038,"modificationDate":"2018-12-06"}, -{"geonameId":"3127461","name":"Burgos","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":178966,"modificationDate":"2019-09-05"}, -{"geonameId":"989921","name":"Klerksdorp","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":178921,"modificationDate":"2019-09-05"}, -{"geonameId":"1606250","name":"Si Racha","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":178916,"modificationDate":"2012-01-16"}, -{"geonameId":"2476897","name":"Tiaret","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":178915,"modificationDate":"2018-08-08"}, -{"geonameId":"2271772","name":"Amadora","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":178858,"modificationDate":"2018-04-30"}, -{"geonameId":"2646057","name":"Ipswich","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":178835,"modificationDate":"2017-06-12"}, -{"geonameId":"1860437","name":"Kamirenjaku","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":178739,"modificationDate":"2018-01-14"}, -{"geonameId":"2323390","name":"Saki","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":178677,"modificationDate":"2016-01-30"}, -{"geonameId":"2498611","name":"Chlef","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":178616,"modificationDate":"2019-03-09"}, -{"geonameId":"4155966","name":"Fort Lauderdale","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":178590,"modificationDate":"2017-03-09"}, -{"geonameId":"5115843","name":"East Flatbush","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":178464,"modificationDate":"2017-04-16"}, -{"geonameId":"1865294","name":"Anjō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":178402,"modificationDate":"2019-02-28"}, -{"geonameId":"5512909","name":"Spring Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":178395,"modificationDate":"2011-05-14"}, -{"geonameId":"613607","name":"Kutaisi","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":178338,"modificationDate":"2014-11-02"}, -{"geonameId":"3746181","name":"Ciudad Camilo Cienfuegos","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":178041,"modificationDate":"2020-02-07"}, -{"geonameId":"1805540","name":"Jingzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":177878,"modificationDate":"2014-02-02"}, -{"geonameId":"1259312","name":"Proddatūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":177797,"modificationDate":"2014-10-10"}, -{"geonameId":"1295765","name":"Sittwe","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":177743,"modificationDate":"2016-06-01"}, -{"geonameId":"172955","name":"Ar Raqqah","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":177636,"modificationDate":"2017-07-21"}, -{"geonameId":"1309793","name":"Meiktila","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":177442,"modificationDate":"2016-06-01"}, -{"geonameId":"2229152","name":"Loum","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":177429,"modificationDate":"2012-01-16"}, -{"geonameId":"1253286","name":"Vellore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":177081,"modificationDate":"2019-09-05"}, -{"geonameId":"1269910","name":"Hugli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":177005,"modificationDate":"2014-10-14"}, -{"geonameId":"1278985","name":"Alappuzha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":176783,"modificationDate":"2019-08-28"}, -{"geonameId":"3583334","name":"Santa Ana","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":176661,"modificationDate":"2019-09-05"}, -{"geonameId":"4612862","name":"Chattanooga","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":176588,"modificationDate":"2017-03-09"}, -{"geonameId":"125185","name":"Malāyer","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":176573,"modificationDate":"2016-10-07"}, -{"geonameId":"3103402","name":"Bielsko-Biala","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":176515,"modificationDate":"2020-01-08"}, -{"geonameId":"2119441","name":"Yuzhno-Sakhalinsk","countryName":"Russia","timeZoneName":"Asia/Sakhalin","timeZoneOffsetNameWithoutDst":"Sakhalin Time","population":176484,"modificationDate":"2019-09-05"}, -{"geonameId":"2759879","name":"Almere Stad","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":176432,"modificationDate":"2017-10-17"}, -{"geonameId":"3190261","name":"Split","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":176314,"modificationDate":"2019-09-05"}, -{"geonameId":"2980291","name":"Saint-Étienne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":176280,"modificationDate":"2019-02-26"}, -{"geonameId":"1278708","name":"Amroha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":176253,"modificationDate":"2014-10-14"}, -{"geonameId":"6119109","name":"Regina","countryName":"Canada","timeZoneName":"America/Regina","timeZoneOffsetNameWithoutDst":"Central Time","population":176183,"modificationDate":"2019-09-05"}, -{"geonameId":"1784580","name":"Zhenzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":176006,"modificationDate":"2016-04-09"}, -{"geonameId":"2246452","name":"Saint-Louis","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":176000,"modificationDate":"2019-09-05"}, -{"geonameId":"633679","name":"Turku","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":175945,"modificationDate":"2019-09-05"}, -{"geonameId":"5317058","name":"Tempe","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":175826,"modificationDate":"2017-03-09"}, -{"geonameId":"1789137","name":"Xindi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":175761,"modificationDate":"2015-11-14"}, -{"geonameId":"5378771","name":"Oceanside","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":175691,"modificationDate":"2017-03-09"}, -{"geonameId":"3511550","name":"Bella Vista","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":175683,"modificationDate":"2016-06-05"}, -{"geonameId":"2110683","name":"Tsukuba","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":175589,"modificationDate":"2017-07-22"}, -{"geonameId":"116667","name":"Sāveh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":175533,"modificationDate":"2014-09-04"}, -{"geonameId":"2633948","name":"Wigan","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":175405,"modificationDate":"2017-06-12"}, -{"geonameId":"5351515","name":"Garden Grove","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":175393,"modificationDate":"2017-03-09"}, -{"geonameId":"126972","name":"Khowy","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":175370,"modificationDate":"2017-10-03"}, -{"geonameId":"925475","name":"Mzuzu","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":175345,"modificationDate":"2013-08-05"}, -{"geonameId":"300614","name":"Siverek","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":175341,"modificationDate":"2012-01-18"}, -{"geonameId":"5385955","name":"Rancho Cucamonga","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":175236,"modificationDate":"2017-03-09"}, -{"geonameId":"4149962","name":"Cape Coral","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":175229,"modificationDate":"2017-03-09"}, -{"geonameId":"2036401","name":"Jiutai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":175115,"modificationDate":"2012-01-18"}, -{"geonameId":"2130057","name":"Hirosaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":174972,"modificationDate":"2017-07-22"}, -{"geonameId":"5393287","name":"Santa Rosa","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":174972,"modificationDate":"2017-03-09"}, -{"geonameId":"1698829","name":"Naga","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":174931,"modificationDate":"2017-12-13"}, -{"geonameId":"3465284","name":"Cotia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":174828,"modificationDate":"2012-03-10"}, -{"geonameId":"2127733","name":"Tomakomai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":174806,"modificationDate":"2017-07-22"}, -{"geonameId":"1255062","name":"Tambaram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":174787,"modificationDate":"2017-03-16"}, -{"geonameId":"1632937","name":"Pamulang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":174557,"modificationDate":"2018-12-04"}, -{"geonameId":"2410048","name":"Bo","countryName":"Sierra Leone","timeZoneName":"Africa/Freetown","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":174354,"modificationDate":"2012-01-18"}, -{"geonameId":"1260137","name":"Rathankot","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":174306,"modificationDate":"2020-06-10"}, -{"geonameId":"1863431","name":"Hadano","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":174281,"modificationDate":"2019-02-28"}, -{"geonameId":"1816234","name":"Bozhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":174140,"modificationDate":"2018-12-06"}, -{"geonameId":"1985663","name":"Cikupa","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":174041,"modificationDate":"2018-12-06"}, -{"geonameId":"1275926","name":"Bhind","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":174035,"modificationDate":"2014-10-14"}, -{"geonameId":"3629706","name":"Puerto Cabello","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":174000,"modificationDate":"2019-04-03"}, -{"geonameId":"2128815","name":"Obihiro","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":173890,"modificationDate":"2017-07-22"}, -{"geonameId":"1849498","name":"Ube","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":173733,"modificationDate":"2017-07-22"}, -{"geonameId":"704508","name":"Kramatorskaya","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":173700,"modificationDate":"2020-06-10"}, -{"geonameId":"1256237","name":"Shimla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":173503,"modificationDate":"2014-10-13"}, -{"geonameId":"2651817","name":"Croydon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":173314,"modificationDate":"2017-03-01"}, -{"geonameId":"1309611","name":"Myeik","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":173298,"modificationDate":"2017-12-29"}, -{"geonameId":"5115985","name":"East New York","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":173198,"modificationDate":"2007-06-19"}, -{"geonameId":"281124","name":"Khān Yūnis","countryName":"Palestinian Territory","timeZoneName":"Asia/Gaza","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":173183,"modificationDate":"2019-03-24"}, -{"geonameId":"2310046","name":"Bata","countryName":"Equatorial Guinea","timeZoneName":"Africa/Malabo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":173046,"modificationDate":"2019-09-05"}, -{"geonameId":"1105776","name":"Midrand","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":173009,"modificationDate":"2012-07-12"}, -{"geonameId":"3530937","name":"Chicoloapan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":172919,"modificationDate":"2018-11-03"}, -{"geonameId":"1261045","name":"Ongole","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":172872,"modificationDate":"2015-09-06"}, -{"geonameId":"5814616","name":"Vancouver","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":172860,"modificationDate":"2017-03-09"}, -{"geonameId":"8740017","name":"Gadag-Betageri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":172813,"modificationDate":"2017-12-06"}, -{"geonameId":"1803791","name":"Licheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":172775,"modificationDate":"2013-10-05"}, -{"geonameId":"1629131","name":"Salatiga","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":172645,"modificationDate":"2018-05-09"}, -{"geonameId":"717582","name":"Miskolc","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":172637,"modificationDate":"2019-11-06"}, -{"geonameId":"311073","name":"Isparta","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":172334,"modificationDate":"2019-09-05"}, -{"geonameId":"1791636","name":"Weinan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":172321,"modificationDate":"2012-01-18"}, -{"geonameId":"2250805","name":"Kaolack","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":172305,"modificationDate":"2016-12-09"}, -{"geonameId":"2634853","name":"Walsall","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":172141,"modificationDate":"2019-02-28"}, -{"geonameId":"2905891","name":"Herne","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":172108,"modificationDate":"2019-09-05"}, -{"geonameId":"532535","name":"Lyublino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":172000,"modificationDate":"2018-09-23"}, -{"geonameId":"2643097","name":"Mansfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":171958,"modificationDate":"2017-06-12"}, -{"geonameId":"763166","name":"Olsztyn","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":171803,"modificationDate":"2019-09-05"}, -{"geonameId":"3462980","name":"Francisco Morato","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":171790,"modificationDate":"2012-08-03"}, -{"geonameId":"1862599","name":"Hino","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":171777,"modificationDate":"2017-07-22"}, -{"geonameId":"294071","name":"Netanya","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":171676,"modificationDate":"2019-09-05"}, -{"geonameId":"1799846","name":"Nanping","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":171674,"modificationDate":"2016-07-04"}, -{"geonameId":"2347209","name":"Bida","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":171656,"modificationDate":"2016-01-30"}, -{"geonameId":"5231851","name":"Sioux Falls","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":171544,"modificationDate":"2019-02-27"}, -{"geonameId":"786712","name":"Prizren","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":171464,"modificationDate":"2015-02-22"}, -{"geonameId":"2037620","name":"Dongling","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":171454,"modificationDate":"2012-01-18"}, -{"geonameId":"685948","name":"Bacău","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":171396,"modificationDate":"2019-04-18"}, -{"geonameId":"2640729","name":"Oxford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":171380,"modificationDate":"2020-05-14"}, -{"geonameId":"1607508","name":"Phra Pradaeng","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":171333,"modificationDate":"2012-01-16"}, -{"geonameId":"1716198","name":"Dagupan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":171271,"modificationDate":"2017-12-27"}, -{"geonameId":"5308480","name":"Peoria","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":171237,"modificationDate":"2017-03-09"}, -{"geonameId":"5379439","name":"Ontario","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":171214,"modificationDate":"2017-03-09"}, -{"geonameId":"1261653","name":"Navsari","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":171109,"modificationDate":"2020-04-04"}, -{"geonameId":"2867838","name":"Mülheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":171000,"modificationDate":"2018-04-09"}, -{"geonameId":"1734393","name":"Kulim","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":170889,"modificationDate":"2012-01-29"}, -{"geonameId":"1259184","name":"Puri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":170841,"modificationDate":"2014-10-14"}, -{"geonameId":"1344377","name":"Haldia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":170695,"modificationDate":"2014-10-14"}, -{"geonameId":"4431410","name":"Jackson","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":170674,"modificationDate":"2019-09-05"}, -{"geonameId":"1518262","name":"Temirtau","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":170600,"modificationDate":"2016-05-07"}, -{"geonameId":"1176515","name":"Jacobabad","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":170588,"modificationDate":"2018-03-06"}, -{"geonameId":"1267076","name":"Khammam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":170503,"modificationDate":"2014-10-12"}, -{"geonameId":"4563243","name":"Carolina","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":170404,"modificationDate":"2015-08-03"}, -{"geonameId":"204405","name":"Uvira","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":170391,"modificationDate":"2012-12-05"}, -{"geonameId":"3652941","name":"Portoviejo","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":170326,"modificationDate":"2019-09-05"}, -{"geonameId":"1259009","name":"Rayganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":170252,"modificationDate":"2020-06-10"}, -{"geonameId":"1851032","name":"Takaoka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":170077,"modificationDate":"2017-07-22"}, -{"geonameId":"1269723","name":"Ingrāj Bāzār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":170039,"modificationDate":"2014-10-14"}, -{"geonameId":"3471859","name":"Araçatuba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":170024,"modificationDate":"2016-10-13"}, -{"geonameId":"1810845","name":"Fuyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":170023,"modificationDate":"2012-01-18"}, -{"geonameId":"1732811","name":"Kluang","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":169828,"modificationDate":"2015-03-28"}, -{"geonameId":"2522258","name":"Albacete","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":169716,"modificationDate":"2020-05-15"}, -{"geonameId":"1804586","name":"Laiyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":169594,"modificationDate":"2012-01-18"}, -{"geonameId":"1269135","name":"Jaunpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":169572,"modificationDate":"2015-08-07"}, -{"geonameId":"3530599","name":"Ciudad del Carmen","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":169466,"modificationDate":"2018-11-03"}, -{"geonameId":"2523630","name":"Reggio Calabria","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":169140,"modificationDate":"2014-06-01"}, -{"geonameId":"1242833","name":"Jaffna","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":169102,"modificationDate":"2019-09-05"}, -{"geonameId":"686254","name":"Arad","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":169065,"modificationDate":"2017-07-04"}, -{"geonameId":"342884","name":"Bahir Dar","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":168899,"modificationDate":"2013-04-21"}, -{"geonameId":"630429","name":"Baranovichi","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":168772,"modificationDate":"2018-10-26"}, -{"geonameId":"3531200","name":"Chalco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":168720,"modificationDate":"2018-11-03"}, -{"geonameId":"2972328","name":"Toulon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":168701,"modificationDate":"2019-09-05"}, -{"geonameId":"281129","name":"Jabalya","countryName":"Palestinian Territory","timeZoneName":"Asia/Gaza","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":168568,"modificationDate":"2020-06-10"}, -{"geonameId":"3471766","name":"Araraquara","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":168468,"modificationDate":"2013-12-01"}, -{"geonameId":"2503701","name":"Bordj Bou Arreridj","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":168346,"modificationDate":"2018-08-08"}, -{"geonameId":"3037656","name":"Angers","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":168279,"modificationDate":"2019-09-05"}, -{"geonameId":"6544103","name":"Horta-Guinardó","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":168092,"modificationDate":"2017-05-26"}, -{"geonameId":"255683","name":"Patrasse","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":168034,"modificationDate":"2020-06-10"}, -{"geonameId":"3130564","name":"Alcorcón","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":167967,"modificationDate":"2019-09-05"}, -{"geonameId":"2498954","name":"Ech Chettia","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":167955,"modificationDate":"2012-01-19"}, -{"geonameId":"1185106","name":"Jamālpur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":167900,"modificationDate":"2016-11-17"}, -{"geonameId":"3463422","name":"Ferraz de Vasconcelos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":167900,"modificationDate":"2012-08-03"}, -{"geonameId":"1514210","name":"Chirchiq","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":167842,"modificationDate":"2012-01-17"}, -{"geonameId":"3658192","name":"Eloy Alfaro","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":167784,"modificationDate":"2017-02-07"}, -{"geonameId":"1805611","name":"Jingmen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":167750,"modificationDate":"2018-12-06"}, -{"geonameId":"577206","name":"Berezniki","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":167748,"modificationDate":"2019-09-05"}, -{"geonameId":"2348773","name":"Awka","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":167738,"modificationDate":"2016-01-30"}, -{"geonameId":"472761","name":"Volgodonsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":167731,"modificationDate":"2019-09-05"}, -{"geonameId":"2544248","name":"Khouribga","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":167673,"modificationDate":"2016-11-02"}, -{"geonameId":"2758401","name":"Breda","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":167673,"modificationDate":"2019-09-05"}, -{"geonameId":"670609","name":"Piteshti","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":167669,"modificationDate":"2020-06-10"}, -{"geonameId":"5357527","name":"Hollywood","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":167664,"modificationDate":"2016-05-28"}, -{"geonameId":"2338385","name":"Ijero-Ekiti","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":167632,"modificationDate":"2016-01-30"}, -{"geonameId":"1498894","name":"Miass","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":167500,"modificationDate":"2019-09-05"}, -{"geonameId":"3436043","name":"Berazategui","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":167498,"modificationDate":"2017-12-06"}, -{"geonameId":"2286304","name":"Korhogo","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":167359,"modificationDate":"2017-12-28"}, -{"geonameId":"1512236","name":"Abakan","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":167289,"modificationDate":"2019-09-05"}, -{"geonameId":"2864695","name":"Neukölln","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":167248,"modificationDate":"2018-12-17"}, -{"geonameId":"1064890","name":"Fianarantsoa","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":167227,"modificationDate":"2018-09-07"}, -{"geonameId":"3121437","name":"Getafe","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":167164,"modificationDate":"2019-09-05"}, -{"geonameId":"1630997","name":"Plumbon","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":167105,"modificationDate":"2012-01-17"}, -{"geonameId":"359280","name":"Benna","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":167029,"modificationDate":"2020-06-11"}, -{"geonameId":"518970","name":"Novocherkassk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":166974,"modificationDate":"2019-09-05"}, -{"geonameId":"5346111","name":"Elk Grove","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":166913,"modificationDate":"2017-03-09"}, -{"geonameId":"4409896","name":"Springfield","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":166810,"modificationDate":"2019-02-27"}, -{"geonameId":"4168139","name":"Pembroke Pines","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":166611,"modificationDate":"2017-03-09"}, -{"geonameId":"3407327","name":"Arapiraca","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":166562,"modificationDate":"2012-08-03"}, -{"geonameId":"1810979","name":"Fuling","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":166507,"modificationDate":"2012-11-08"}, -{"geonameId":"601734","name":"Tashauz","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":166500,"modificationDate":"2020-06-10"}, -{"geonameId":"1271912","name":"Fatehpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":166480,"modificationDate":"2015-08-07"}, -{"geonameId":"2856883","name":"Osnabrück","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":166462,"modificationDate":"2019-09-05"}, -{"geonameId":"2555745","name":"Beni Mellal","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":166399,"modificationDate":"2017-02-03"}, -{"geonameId":"1271717","name":"Gandi Dham","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":166388,"modificationDate":"2020-06-10"}, -{"geonameId":"6252065","name":"Nou Barris","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":166310,"modificationDate":"2017-05-26"}, -{"geonameId":"3631412","name":"Ocumare del Tuy","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":166072,"modificationDate":"2018-08-08"}, -{"geonameId":"1810295","name":"Gaozhou","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":166069,"modificationDate":"2012-01-18"}, -{"geonameId":"1860672","name":"Kamakura","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":166016,"modificationDate":"2019-09-05"}, -{"geonameId":"2034312","name":"Ulanhot","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":165846,"modificationDate":"2019-05-07"}, -{"geonameId":"109323","name":"Khobar","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":165799,"modificationDate":"2013-11-17"}, -{"geonameId":"294751","name":"H̱olon","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":165787,"modificationDate":"2017-07-05"}, -{"geonameId":"1795928","name":"Shanwei","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":165699,"modificationDate":"2012-01-18"}, -{"geonameId":"6092122","name":"Oakville","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":165697,"modificationDate":"2012-01-15"}, -{"geonameId":"5292387","name":"Deer Valley","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":165656,"modificationDate":"2018-11-24"}, -{"geonameId":"3666645","name":"Tuluá","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":165501,"modificationDate":"2018-09-05"}, -{"geonameId":"2634739","name":"Warrington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":165456,"modificationDate":"2017-06-12"}, -{"geonameId":"139817","name":"Bushehr","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":165377,"modificationDate":"2017-08-22"}, -{"geonameId":"1261927","name":"Nandial","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":165337,"modificationDate":"2020-06-10"}, -{"geonameId":"1853303","name":"Saga","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":165236,"modificationDate":"2017-04-09"}, -{"geonameId":"3657990","name":"Esmeraldas","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":165216,"modificationDate":"2017-02-07"}, -{"geonameId":"1169605","name":"Muzaffargarh","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":165192,"modificationDate":"2019-12-06"}, -{"geonameId":"1806096","name":"Jiaozhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":165026,"modificationDate":"2012-01-18"}, -{"geonameId":"1253952","name":"Udupi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":165000,"modificationDate":"2018-03-26"}, -{"geonameId":"1650227","name":"Banjaran","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":164952,"modificationDate":"2012-01-17"}, -{"geonameId":"715429","name":"Szeged","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":164883,"modificationDate":"2016-12-08"}, -{"geonameId":"2036920","name":"Fendou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":164844,"modificationDate":"2013-05-07"}, -{"geonameId":"1264773","name":"Loni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":164810,"modificationDate":"2015-05-06"}, -{"geonameId":"1627549","name":"Serang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":164767,"modificationDate":"2016-04-10"}, -{"geonameId":"3458930","name":"Lages","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":164676,"modificationDate":"2012-08-03"}, -{"geonameId":"4169171","name":"Port Saint Lucie","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":164603,"modificationDate":"2011-05-14"}, -{"geonameId":"5750162","name":"Salem","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":164549,"modificationDate":"2019-09-19"}, -{"geonameId":"2661604","name":"Basel","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":164488,"modificationDate":"2020-03-21"}, -{"geonameId":"1255969","name":"Sītāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":164435,"modificationDate":"2014-10-14"}, -{"geonameId":"3186573","name":"Zenica","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":164423,"modificationDate":"2016-06-05"}, -{"geonameId":"5911592","name":"Burlington","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":164415,"modificationDate":"2010-09-22"}, -{"geonameId":"2831580","name":"Solingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":164359,"modificationDate":"2019-09-05"}, -{"geonameId":"1514019","name":"Fergana","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":164322,"modificationDate":"2019-09-05"}, -{"geonameId":"157738","name":"Kigoma","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":164268,"modificationDate":"2019-09-05"}, -{"geonameId":"1169692","name":"Muridke","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":164246,"modificationDate":"2019-12-06"}, -{"geonameId":"5339631","name":"Corona","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":164226,"modificationDate":"2017-03-09"}, -{"geonameId":"1256451","name":"Shivpuri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":164215,"modificationDate":"2015-08-07"}, -{"geonameId":"285629","name":"Ḩawallī","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":164212,"modificationDate":"2013-08-04"}, -{"geonameId":"3068160","name":"Pilsen","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":164180,"modificationDate":"2018-09-08"}, -{"geonameId":"2337490","name":"Inisa","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":164161,"modificationDate":"2019-10-20"}, -{"geonameId":"523064","name":"Kosta-Khetagurovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":164131,"modificationDate":"2020-06-10"}, -{"geonameId":"2464915","name":"Sousse","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":164123,"modificationDate":"2019-09-05"}, -{"geonameId":"2505329","name":"Bougie","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":164103,"modificationDate":"2020-06-11"}, -{"geonameId":"3470636","name":"Barra Mansa","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":164052,"modificationDate":"2013-04-21"}, -{"geonameId":"3456223","name":"Nossa Senhora do Socorro","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":163993,"modificationDate":"2012-08-03"}, -{"geonameId":"1276321","name":"Bhadrāvati","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":163903,"modificationDate":"2014-10-14"}, -{"geonameId":"2637627","name":"Slough","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":163777,"modificationDate":"2018-03-12"}, -{"geonameId":"1562798","name":"Vinh","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":163759,"modificationDate":"2013-10-04"}, -{"geonameId":"2392204","name":"Parakou","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":163753,"modificationDate":"2012-01-18"}, -{"geonameId":"255274","name":"Piraeus","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":163688,"modificationDate":"2019-09-05"}, -{"geonameId":"1279335","name":"Ādoni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":163631,"modificationDate":"2015-11-08"}, -{"geonameId":"2655095","name":"Bournemouth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":163600,"modificationDate":"2020-05-14"}, -{"geonameId":"268064","name":"Sidon","countryName":"Lebanon","timeZoneName":"Asia/Beirut","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":163554,"modificationDate":"2019-09-19"}, -{"geonameId":"2441291","name":"Maradi","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":163487,"modificationDate":"2019-01-08"}, -{"geonameId":"1849796","name":"Tsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":163461,"modificationDate":"2017-04-09"}, -{"geonameId":"5725846","name":"Eugene","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":163460,"modificationDate":"2019-09-05"}, -{"geonameId":"2640354","name":"Peterborough","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":163379,"modificationDate":"2018-03-12"}, -{"geonameId":"1792520","name":"Tongzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":163326,"modificationDate":"2012-09-06"}, -{"geonameId":"1253237","name":"Verāval","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":163326,"modificationDate":"2018-05-28"}, -{"geonameId":"2875376","name":"Ludwigshafen am Rhein","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":163196,"modificationDate":"2018-03-09"}, -{"geonameId":"286621","name":"Salala","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":163140,"modificationDate":"2020-06-10"}, -{"geonameId":"6947641","name":"Büyükçekmece","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":163140,"modificationDate":"2011-01-04"}, -{"geonameId":"322830","name":"Tralles","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":163022,"modificationDate":"2020-06-10"}, -{"geonameId":"3682631","name":"Envigado","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":163007,"modificationDate":"2018-06-08"}, -{"geonameId":"379303","name":"Geneina","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":162981,"modificationDate":"2013-11-10"}, -{"geonameId":"1818116","name":"Anbu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":162964,"modificationDate":"2012-01-18"}, -{"geonameId":"4710178","name":"McKinney","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":162898,"modificationDate":"2017-03-09"}, -{"geonameId":"1257542","name":"Sambalpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":162887,"modificationDate":"2015-09-06"}, -{"geonameId":"2779469","name":"Floridsdorf","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":162779,"modificationDate":"2018-07-29"}, -{"geonameId":"2878234","name":"Leverkusen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":162738,"modificationDate":"2019-02-28"}, -{"geonameId":"2479536","name":"Skikda","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":162702,"modificationDate":"2020-03-22"}, -{"geonameId":"3848950","name":"La Rioja","countryName":"Argentina","timeZoneName":"America/Argentina/La_Rioja","timeZoneOffsetNameWithoutDst":"Argentina Time","population":162620,"modificationDate":"2019-09-05"}, -{"geonameId":"1271850","name":"Gadag","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":162569,"modificationDate":"2014-10-14"}, -{"geonameId":"2316702","name":"Boma","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":162521,"modificationDate":"2019-02-28"}, -{"geonameId":"125446","name":"Mahābād","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":162434,"modificationDate":"2012-01-16"}, -{"geonameId":"3526485","name":"Jiutepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":162427,"modificationDate":"2013-07-31"}, -{"geonameId":"3464460","name":"Dourados","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":162202,"modificationDate":"2014-01-08"}, -{"geonameId":"2322794","name":"Suleja","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":162135,"modificationDate":"2016-01-30"}, -{"geonameId":"3465196","name":"Criciúma","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":161954,"modificationDate":"2017-02-26"}, -{"geonameId":"1135689","name":"Kunduz","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":161902,"modificationDate":"2019-02-26"}, -{"geonameId":"3583446","name":"San Miguel","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":161880,"modificationDate":"2013-10-06"}, -{"geonameId":"2323675","name":"Sapele","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":161686,"modificationDate":"2016-01-30"}, -{"geonameId":"1253747","name":"Unao","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":161671,"modificationDate":"2020-06-10"}, -{"geonameId":"3120635","name":"Hortaleza","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":161661,"modificationDate":"2019-04-03"}, -{"geonameId":"1275163","name":"Budaun","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":161555,"modificationDate":"2015-10-04"}, -{"geonameId":"3893629","name":"Coquimbo","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":161317,"modificationDate":"2018-02-06"}, -{"geonameId":"1268907","name":"Jīnd","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":161260,"modificationDate":"2015-09-06"}, -{"geonameId":"1582173","name":"Đưc Trọng","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":161232,"modificationDate":"2017-02-04"}, -{"geonameId":"5577147","name":"Fort Collins","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":161175,"modificationDate":"2017-03-09"}, -{"geonameId":"1264543","name":"Madhyamgram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":161126,"modificationDate":"2014-10-14"}, -{"geonameId":"5364940","name":"Lancaster","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":161103,"modificationDate":"2017-03-09"}, -{"geonameId":"1493467","name":"Rubtsovsk","countryName":"Russia","timeZoneName":"Asia/Barnaul","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":161065,"modificationDate":"2019-09-05"}, -{"geonameId":"1907146","name":"Sayama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":160843,"modificationDate":"2017-07-22"}, -{"geonameId":"3691674","name":"Sullana","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":160789,"modificationDate":"2012-07-19"}, -{"geonameId":"370737","name":"Malakal","countryName":"South Sudan","timeZoneName":"Africa/Juba","timeZoneOffsetNameWithoutDst":"East Africa Time","population":160765,"modificationDate":"2017-06-09"}, -{"geonameId":"1571058","name":"Xa Phan Thiet","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":160652,"modificationDate":"2020-06-09"}, -{"geonameId":"1577995","name":"La Gi","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":160652,"modificationDate":"2018-03-28"}, -{"geonameId":"2803201","name":"Anderlecht","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":160553,"modificationDate":"2020-05-30"}, -{"geonameId":"523812","name":"Mytishchi","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":160542,"modificationDate":"2019-09-05"}, -{"geonameId":"1859675","name":"Kawanishi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":160520,"modificationDate":"2017-07-21"}, -{"geonameId":"3530049","name":"Guajimalpa","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":160491,"modificationDate":"2020-06-10"}, -{"geonameId":"285066","name":"Hebron","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":160470,"modificationDate":"2019-09-05"}, -{"geonameId":"1790254","name":"Xiaogan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":160437,"modificationDate":"2018-12-06"}, -{"geonameId":"3584399","name":"Mejicanos","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":160317,"modificationDate":"2019-11-06"}, -{"geonameId":"1269280","name":"Jaykaynagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":160242,"modificationDate":"2020-06-10"}, -{"geonameId":"3988214","name":"Salamanca","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":160169,"modificationDate":"2018-11-03"}, -{"geonameId":"3466296","name":"Chapecó","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":160157,"modificationDate":"2012-08-03"}, -{"geonameId":"1293960","name":"Taunggyi","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":160115,"modificationDate":"2016-06-01"}, -{"geonameId":"76184","name":"Damar","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":160114,"modificationDate":"2020-06-10"}, -{"geonameId":"3874960","name":"Puerto Montt","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":160054,"modificationDate":"2017-12-11"}, -{"geonameId":"1529279","name":"Qapqal","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":160000,"modificationDate":"2018-12-06"}, -{"geonameId":"311111","name":"Myriandrus","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":159965,"modificationDate":"2020-06-10"}, -{"geonameId":"1853483","name":"Oyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":159936,"modificationDate":"2017-07-22"}, -{"geonameId":"499292","name":"Salavat","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":159893,"modificationDate":"2019-09-05"}, -{"geonameId":"2243940","name":"Ziguinchor","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":159778,"modificationDate":"2016-12-03"}, -{"geonameId":"4459467","name":"Cary","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":159769,"modificationDate":"2019-02-27"}, -{"geonameId":"1732745","name":"Skudai","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":159733,"modificationDate":"2014-04-26"}, -{"geonameId":"1865005","name":"Ashikaga","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":159671,"modificationDate":"2017-07-22"}, -{"geonameId":"288764","name":"Bawshar","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":159487,"modificationDate":"2018-01-10"}, -{"geonameId":"7483743","name":"Puthia","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":159406,"modificationDate":"2017-06-09"}, -{"geonameId":"1784554","name":"Zhicheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":159383,"modificationDate":"2020-02-05"}, -{"geonameId":"1638284","name":"Lawang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":159380,"modificationDate":"2018-04-24"}, -{"geonameId":"3538803","name":"San Miguel del Padrón","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":159273,"modificationDate":"2020-02-07"}, -{"geonameId":"3903320","name":"Tarija","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":159269,"modificationDate":"2010-01-29"}, -{"geonameId":"2857458","name":"Oldenburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":159218,"modificationDate":"2019-09-05"}, -{"geonameId":"549479","name":"Khoroshëvo-Mnevniki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":159000,"modificationDate":"2013-04-02"}, -{"geonameId":"576432","name":"Bibirevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":159000,"modificationDate":"2018-11-14"}, -{"geonameId":"1839652","name":"Osan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":158978,"modificationDate":"2017-04-12"}, -{"geonameId":"3173331","name":"Modena","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":158886,"modificationDate":"2018-03-12"}, -{"geonameId":"2750053","name":"Nijmegen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":158732,"modificationDate":"2020-01-13"}, -{"geonameId":"7284820","name":"Jaigaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":158664,"modificationDate":"2014-10-14"}, -{"geonameId":"1632033","name":"Pasuruan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":158600,"modificationDate":"2012-01-17"}, -{"geonameId":"1273802","name":"Cuddalore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":158569,"modificationDate":"2017-09-05"}, -{"geonameId":"3014728","name":"Grenoble","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":158552,"modificationDate":"2019-09-05"}, -{"geonameId":"91597","name":"Saimarreh","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":158508,"modificationDate":"2020-06-10"}, -{"geonameId":"2653941","name":"Cambridge","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":158434,"modificationDate":"2019-09-05"}, -{"geonameId":"759734","name":"Rzeszów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":158382,"modificationDate":"2019-09-05"}, -{"geonameId":"5317071","name":"Tempe Junction","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":158368,"modificationDate":"2006-01-17"}, -{"geonameId":"5380698","name":"Palmdale","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":158351,"modificationDate":"2017-03-09"}, -{"geonameId":"2498766","name":"El Achir","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":158333,"modificationDate":"2020-05-31"}, -{"geonameId":"1806535","name":"Huzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":158320,"modificationDate":"2014-06-05"}, -{"geonameId":"3470583","name":"Barreiras","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":158292,"modificationDate":"2012-08-03"}, -{"geonameId":"5355933","name":"Hayward","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":158289,"modificationDate":"2017-03-09"}, -{"geonameId":"1261039","name":"Orai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":158265,"modificationDate":"2015-08-07"}, -{"geonameId":"1575627","name":"Long Swiyen","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":158153,"modificationDate":"2020-06-09"}, -{"geonameId":"3746183","name":"Centro Habana","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":158151,"modificationDate":"2012-05-31"}, -{"geonameId":"1269937","name":"Hoshiārpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":158142,"modificationDate":"2018-04-22"}, -{"geonameId":"2651123","name":"Doncaster","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":158141,"modificationDate":"2019-09-05"}, -{"geonameId":"3985604","name":"San Luis","countryName":"Mexico","timeZoneName":"America/Hermosillo","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":158089,"modificationDate":"2020-06-10"}, -{"geonameId":"3519537","name":"San Cristobal","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":158027,"modificationDate":"2020-06-10"}, -{"geonameId":"560465","name":"Gol’yanovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":158000,"modificationDate":"2013-04-02"}, -{"geonameId":"3387296","name":"Sobral","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":157996,"modificationDate":"2013-12-28"}, -{"geonameId":"1213614","name":"Sunggal","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":157914,"modificationDate":"2012-01-17"}, -{"geonameId":"8504953","name":"Admiralteisky","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":157897,"modificationDate":"2013-06-10"}, -{"geonameId":"5964700","name":"Greater Sudbury","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":157857,"modificationDate":"2014-05-12"}, -{"geonameId":"347591","name":"Talha","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":157737,"modificationDate":"2020-06-11"}, -{"geonameId":"7645166","name":"San Miguel","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":157532,"modificationDate":"2019-08-07"}, -{"geonameId":"5391295","name":"Salinas","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":157380,"modificationDate":"2017-03-09"}, -{"geonameId":"6544488","name":"San Blas-Canillejas","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":157367,"modificationDate":"2017-05-26"}, -{"geonameId":"1214191","name":"Perbaungan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":157174,"modificationDate":"2012-01-17"}, -{"geonameId":"1260692","name":"Pallāvaram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":157145,"modificationDate":"2014-10-14"}, -{"geonameId":"2014006","name":"Ussuriysk","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":157068,"modificationDate":"2016-12-03"}, -{"geonameId":"2035644","name":"Nanpiao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":157044,"modificationDate":"2012-01-18"}, -{"geonameId":"617239","name":"Tiraspol","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":157000,"modificationDate":"2019-09-05"}, -{"geonameId":"153209","name":"Moshi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":156959,"modificationDate":"2016-07-26"}, -{"geonameId":"1681602","name":"Toledo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":156916,"modificationDate":"2017-12-13"}, -{"geonameId":"1165108","name":"Shikarpur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":156901,"modificationDate":"2019-12-06"}, -{"geonameId":"940316","name":"Westonaria","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":156831,"modificationDate":"2018-09-27"}, -{"geonameId":"1857550","name":"Matsue","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":156811,"modificationDate":"2017-04-09"}, -{"geonameId":"6822096","name":"Hitachi-Naka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":156811,"modificationDate":"2017-11-19"}, -{"geonameId":"2479215","name":"Souk Ahras","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":156745,"modificationDate":"2018-08-08"}, -{"geonameId":"2325590","name":"Osogbo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":156694,"modificationDate":"2016-01-30"}, -{"geonameId":"1831142","name":"Sihanoukville","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":156691,"modificationDate":"2019-02-26"}, -{"geonameId":"3046526","name":"Vasas","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":156649,"modificationDate":"2020-06-10"}, -{"geonameId":"727523","name":"Ruse","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":156238,"modificationDate":"2019-03-04"}, -{"geonameId":"1732687","name":"Batu Pahat","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":156236,"modificationDate":"2015-02-23"}, -{"geonameId":"3518135","name":"San Pablo de las Salinas","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":156191,"modificationDate":"2018-11-03"}, -{"geonameId":"1152473","name":"Lampang","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":156139,"modificationDate":"2012-01-16"}, -{"geonameId":"1856184","name":"Nagareyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":156000,"modificationDate":"2017-07-22"}, -{"geonameId":"2548880","name":"Old Fes","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":156000,"modificationDate":"2020-06-11"}, -{"geonameId":"2112312","name":"Katsuta","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":155968,"modificationDate":"2018-07-04"}, -{"geonameId":"2309527","name":"Malabo","countryName":"Equatorial Guinea","timeZoneName":"Africa/Malabo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":155963,"modificationDate":"2018-01-23"}, -{"geonameId":"1858428","name":"Kumagaya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":155813,"modificationDate":"2019-02-28"}, -{"geonameId":"2294700","name":"Tema","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":155782,"modificationDate":"2019-12-05"}, -{"geonameId":"2033413","name":"Yichun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":155762,"modificationDate":"2012-12-09"}, -{"geonameId":"3460845","name":"Itajaí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":155716,"modificationDate":"2017-06-13"}, -{"geonameId":"6621166","name":"Seogwipo","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":155691,"modificationDate":"2015-06-07"}, -{"geonameId":"1270407","name":"Hanumāngarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":155687,"modificationDate":"2014-10-14"}, -{"geonameId":"3111108","name":"Salamanca","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":155619,"modificationDate":"2018-03-09"}, -{"geonameId":"783920","name":"Zemun","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":155591,"modificationDate":"2020-06-18"}, -{"geonameId":"2334327","name":"Kisi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":155510,"modificationDate":"2016-01-30"}, -{"geonameId":"3461408","name":"Ilhéus","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":155499,"modificationDate":"2015-06-03"}, -{"geonameId":"1712051","name":"Guyong","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":155391,"modificationDate":"2017-12-13"}, -{"geonameId":"1841603","name":"Gyeongju","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":155237,"modificationDate":"2017-12-06"}, -{"geonameId":"934154","name":"Port Louis","countryName":"Mauritius","timeZoneName":"Indian/Mauritius","timeZoneOffsetNameWithoutDst":"Mauritius Time","population":155226,"modificationDate":"2019-09-05"}, -{"geonameId":"1268159","name":"Kanchipuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":155029,"modificationDate":"2019-03-09"}, -{"geonameId":"1919014","name":"Lianghu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":155000,"modificationDate":"2011-02-04"}, -{"geonameId":"3108118","name":"Tetuán de las Victorias","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":155000,"modificationDate":"2017-05-26"}, -{"geonameId":"2038342","name":"Beipiao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":154999,"modificationDate":"2012-01-18"}, -{"geonameId":"1809879","name":"Guangshui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":154771,"modificationDate":"2012-01-18"}, -{"geonameId":"976361","name":"Middelburg","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":154706,"modificationDate":"2020-04-12"}, -{"geonameId":"1062663","name":"Mahajanga","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":154657,"modificationDate":"2019-09-05"}, -{"geonameId":"532615","name":"Lyubertsy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":154650,"modificationDate":"2019-09-05"}, -{"geonameId":"217562","name":"Butembo","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":154621,"modificationDate":"2013-01-02"}, -{"geonameId":"3884373","name":"La Serena","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":154521,"modificationDate":"2013-01-11"}, -{"geonameId":"1804153","name":"Leshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":154477,"modificationDate":"2015-06-03"}, -{"geonameId":"216449","name":"Gandajika","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":154425,"modificationDate":"2015-01-07"}, -{"geonameId":"4692559","name":"Frisco","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":154407,"modificationDate":"2019-02-26"}, -{"geonameId":"2033168","name":"Zhaodong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":154406,"modificationDate":"2013-04-03"}, -{"geonameId":"295514","name":"Bnei Brak","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":154400,"modificationDate":"2017-07-03"}, -{"geonameId":"3660689","name":"Ambato","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":154369,"modificationDate":"2017-02-07"}, -{"geonameId":"3529982","name":"Cuautla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":154358,"modificationDate":"2018-11-03"}, -{"geonameId":"4951788","name":"Springfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":154341,"modificationDate":"2017-05-23"}, -{"geonameId":"2500017","name":"Djelfa","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":154265,"modificationDate":"2018-08-08"}, -{"geonameId":"1632228","name":"Pasarkemis","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":154234,"modificationDate":"2013-04-03"}, -{"geonameId":"543460","name":"Kovrov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":154224,"modificationDate":"2019-09-05"}, -{"geonameId":"298033","name":"Wiranschehir","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":154163,"modificationDate":"2020-06-10"}, -{"geonameId":"1849892","name":"Tottori","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":154098,"modificationDate":"2017-07-21"}, -{"geonameId":"3511540","name":"San Cristóbal","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":154040,"modificationDate":"2019-02-27"}, -{"geonameId":"4619947","name":"East Chattanooga","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":154024,"modificationDate":"2006-01-17"}, -{"geonameId":"1788450","name":"Xinzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":154003,"modificationDate":"2019-09-05"}, -{"geonameId":"146384","name":"Limassol","countryName":"Cyprus","timeZoneName":"Asia/Nicosia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":154000,"modificationDate":"2019-09-05"}, -{"geonameId":"336014","name":"Gondar","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":153914,"modificationDate":"2018-10-16"}, -{"geonameId":"4717782","name":"Pasadena","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":153784,"modificationDate":"2017-03-09"}, -{"geonameId":"1279064","name":"Alandur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":153775,"modificationDate":"2014-10-14"}, -{"geonameId":"3174659","name":"Livorno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":153773,"modificationDate":"2017-07-01"}, -{"geonameId":"3838874","name":"Río Cuarto","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":153757,"modificationDate":"2015-04-22"}, -{"geonameId":"2633352","name":"York","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":153717,"modificationDate":"2019-09-09"}, -{"geonameId":"1789273","name":"Sanshui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":153714,"modificationDate":"2012-01-18"}, -{"geonameId":"1270711","name":"Guna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":153689,"modificationDate":"2015-08-07"}, -{"geonameId":"1177384","name":"Hafizabad","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":153656,"modificationDate":"2019-12-06"}, -{"geonameId":"2756071","name":"Enschede","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":153655,"modificationDate":"2019-09-05"}, -{"geonameId":"3472177","name":"Angra dos Reis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":153635,"modificationDate":"2012-03-10"}, -{"geonameId":"1277835","name":"Bahādurgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":153613,"modificationDate":"2015-08-07"}, -{"geonameId":"1816265","name":"Boshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":153596,"modificationDate":"2012-01-18"}, -{"geonameId":"1814786","name":"Yangchun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":153547,"modificationDate":"2012-01-18"}, -{"geonameId":"1276100","name":"Broach","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":153528,"modificationDate":"2020-06-10"}, -{"geonameId":"4744091","name":"Alexandria","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":153511,"modificationDate":"2017-03-09"}, -{"geonameId":"2766824","name":"Salzburg","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":153377,"modificationDate":"2019-09-05"}, -{"geonameId":"3456166","name":"Nova Friburgo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":153361,"modificationDate":"2012-03-10"}, -{"geonameId":"1263220","name":"Midnapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":153349,"modificationDate":"2020-06-10"}, -{"geonameId":"5384170","name":"Pomona","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":153266,"modificationDate":"2017-03-09"}, -{"geonameId":"701404","name":"Melitopol","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":153112,"modificationDate":"2020-05-21"}, -{"geonameId":"3943789","name":"Chincha Alta","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":153076,"modificationDate":"2012-07-19"}, -{"geonameId":"2172797","name":"Cairns","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":153075,"modificationDate":"2019-05-22"}, -{"geonameId":"1271976","name":"Fyzabad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":153047,"modificationDate":"2020-06-10"}, -{"geonameId":"1273581","name":"Dinapore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":152940,"modificationDate":"2016-01-07"}, -{"geonameId":"1803422","name":"Linhai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":152937,"modificationDate":"2017-04-22"}, -{"geonameId":"1812728","name":"Dingzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":152934,"modificationDate":"2012-01-18"}, -{"geonameId":"3450909","name":"Rondonópolis","countryName":"Brazil","timeZoneName":"America/Cuiaba","timeZoneOffsetNameWithoutDst":"Amazon Time","population":152912,"modificationDate":"2012-08-03"}, -{"geonameId":"98530","name":"As Samawah","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":152890,"modificationDate":"2016-06-22"}, -{"geonameId":"298299","name":"Ushaq","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":152862,"modificationDate":"2020-06-10"}, -{"geonameId":"1513886","name":"Jizzax","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":152642,"modificationDate":"2020-02-07"}, -{"geonameId":"2190324","name":"Hamilton","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":152641,"modificationDate":"2019-09-05"}, -{"geonameId":"4566880","name":"Ponce","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":152634,"modificationDate":"2019-03-11"}, -{"geonameId":"5143307","name":"Washington Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":152613,"modificationDate":"2017-04-16"}, -{"geonameId":"5427946","name":"Lakewood","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":152597,"modificationDate":"2017-03-09"}, -{"geonameId":"1791673","name":"Weihai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":152595,"modificationDate":"2017-09-11"}, -{"geonameId":"97990","name":"Baqubah","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":152550,"modificationDate":"2016-02-28"}, -{"geonameId":"2864118","name":"Neuss","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":152457,"modificationDate":"2019-09-05"}, -{"geonameId":"1815302","name":"Chenghua","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":152453,"modificationDate":"2012-01-18"}, -{"geonameId":"1869446","name":"Songnim","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":152425,"modificationDate":"2012-01-19"}, -{"geonameId":"1256287","name":"Silchar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":152393,"modificationDate":"2014-10-13"}, -{"geonameId":"1277397","name":"Bānda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":152218,"modificationDate":"2015-08-07"}, -{"geonameId":"324496","name":"Aksaray","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":152201,"modificationDate":"2019-09-05"}, -{"geonameId":"1586296","name":"Can Gioc","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":152200,"modificationDate":"2020-06-09"}, -{"geonameId":"6693228","name":"Balvanera","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":152198,"modificationDate":"2017-12-06"}, -{"geonameId":"1812961","name":"Deyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":152194,"modificationDate":"2015-08-29"}, -{"geonameId":"1786746","name":"Yichun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":152169,"modificationDate":"2013-02-03"}, -{"geonameId":"3118150","name":"Logroño","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":152107,"modificationDate":"2019-10-04"}, -{"geonameId":"1853677","name":"Ōta","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":152104,"modificationDate":"2017-07-22"}, -{"geonameId":"2035980","name":"Longfeng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":152074,"modificationDate":"2013-04-03"}, -{"geonameId":"1262771","name":"Morena","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":152004,"modificationDate":"2015-08-07"}, -{"geonameId":"487150","name":"Strogino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":152000,"modificationDate":"2013-04-02"}, -{"geonameId":"1588275","name":"Cong Hinh","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":151915,"modificationDate":"2020-06-09"}, -{"geonameId":"667268","name":"Sibiu","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":151894,"modificationDate":"2019-09-05"}, -{"geonameId":"4003757","name":"Villa Juarez","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":151893,"modificationDate":"2020-06-10"}, -{"geonameId":"5400075","name":"Sunnyvale","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":151754,"modificationDate":"2017-03-09"}, -{"geonameId":"3640465","name":"Guacara","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":151752,"modificationDate":"2012-01-03"}, -{"geonameId":"5881791","name":"Abbotsford","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":151683,"modificationDate":"2019-02-26"}, -{"geonameId":"1737486","name":"Bintulu","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":151617,"modificationDate":"2012-01-17"}, -{"geonameId":"3460748","name":"Itapecerica da Serra","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":151605,"modificationDate":"2012-08-03"}, -{"geonameId":"5346827","name":"Escondido","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":151451,"modificationDate":"2017-03-09"}, -{"geonameId":"1173491","name":"Kohat","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":151427,"modificationDate":"2019-12-06"}, -{"geonameId":"1254241","name":"Tonk","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":151331,"modificationDate":"2014-10-14"}, -{"geonameId":"4273837","name":"Kansas City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":151306,"modificationDate":"2017-05-23"}, -{"geonameId":"1797945","name":"Qingyuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":151287,"modificationDate":"2012-01-18"}, -{"geonameId":"3531023","name":"Chetumal","countryName":"Mexico","timeZoneName":"America/Cancun","timeZoneOffsetNameWithoutDst":"Eastern Time","population":151243,"modificationDate":"2018-11-03"}, -{"geonameId":"117392","name":"Saqqez","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":151237,"modificationDate":"2009-03-03"}, -{"geonameId":"3351663","name":"Benguela","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":151226,"modificationDate":"2011-10-28"}, -{"geonameId":"1858926","name":"Komaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":151025,"modificationDate":"2017-07-22"}, -{"geonameId":"3641351","name":"El Tigre","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":150999,"modificationDate":"2018-08-08"}, -{"geonameId":"1626560","name":"Soreang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":150932,"modificationDate":"2018-04-24"}, -{"geonameId":"3461879","name":"Guarapuava","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":150850,"modificationDate":"2014-12-27"}, -{"geonameId":"1810458","name":"Gaomi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":150793,"modificationDate":"2012-01-18"}, -{"geonameId":"1258831","name":"Raj Nandga","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":150755,"modificationDate":"2020-06-10"}, -{"geonameId":"1802238","name":"Loudi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":150684,"modificationDate":"2018-12-06"}, -{"geonameId":"2511401","name":"La Laguna","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":150661,"modificationDate":"2019-02-27"}, -{"geonameId":"1854703","name":"Ōgaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":150570,"modificationDate":"2017-07-22"}, -{"geonameId":"7279570","name":"Higashimurayama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":150556,"modificationDate":"2017-08-02"}, -{"geonameId":"7302856","name":"Serilingampalle","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":150525,"modificationDate":"2014-10-10"}, -{"geonameId":"1807143","name":"Huangyan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":150448,"modificationDate":"2012-10-06"}, -{"geonameId":"1831797","name":"Battambang","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":150444,"modificationDate":"2016-12-27"}, -{"geonameId":"3895088","name":"Chillán","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":150396,"modificationDate":"2018-11-28"}, -{"geonameId":"1253133","name":"Virār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":150357,"modificationDate":"2014-10-13"}, -{"geonameId":"3392998","name":"Parnamirim","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":150343,"modificationDate":"2012-03-10"}, -{"geonameId":"1729085","name":"Bago City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":150250,"modificationDate":"2017-12-13"}, -{"geonameId":"1630333","name":"Purwodadi","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":150206,"modificationDate":"2016-01-07"}, -{"geonameId":"3992619","name":"Piedras Negras","countryName":"Mexico","timeZoneName":"America/Matamoros","timeZoneOffsetNameWithoutDst":"Central Time","population":150178,"modificationDate":"2014-04-11"}, -{"geonameId":"307084","name":"Kyzyltepe","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":150174,"modificationDate":"2020-06-10"}, -{"geonameId":"5107464","name":"Astoria","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":150165,"modificationDate":"2017-04-16"}, -{"geonameId":"1512473","name":"Urganch","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":150110,"modificationDate":"2020-04-08"}, -{"geonameId":"579464","name":"Balashikha","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":150103,"modificationDate":"2019-09-05"}, -{"geonameId":"2640101","name":"Poole","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":150092,"modificationDate":"2020-05-14"}, -{"geonameId":"2648404","name":"Gloucester","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":150053,"modificationDate":"2019-09-05"}, -{"geonameId":"942470","name":"Vryheid","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":150012,"modificationDate":"2012-07-12"}, -{"geonameId":"2490098","name":"Mascara","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":150000,"modificationDate":"2018-08-08"}, -{"geonameId":"7302828","name":"Malkajgiri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":150000,"modificationDate":"2018-05-28"}, -{"geonameId":"1842944","name":"Gimcheon","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":150000,"modificationDate":"2010-07-09"}, -{"geonameId":"1163198","name":"Tordher","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":150000,"modificationDate":"2019-12-06"}, -{"geonameId":"462745","name":"Zhulebino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":150000,"modificationDate":"2014-02-06"}, -{"geonameId":"1645457","name":"Dili","countryName":"Timor Leste","timeZoneName":"Asia/Dili","timeZoneOffsetNameWithoutDst":"East Timor Time","population":150000,"modificationDate":"2019-09-05"}, -{"geonameId":"1256639","name":"Shāntipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":149983,"modificationDate":"2014-10-14"}, -{"geonameId":"3521342","name":"Playa del Carmen","countryName":"Mexico","timeZoneName":"America/Cancun","timeZoneOffsetNameWithoutDst":"Eastern Time","population":149923,"modificationDate":"2018-11-03"}, -{"geonameId":"3021372","name":"Dijon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":149782,"modificationDate":"2019-09-05"}, -{"geonameId":"4158928","name":"Hollywood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":149728,"modificationDate":"2017-03-09"}, -{"geonameId":"6544494","name":"City Center","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":149718,"modificationDate":"2017-05-26"}, -{"geonameId":"1635283","name":"Metro","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":149526,"modificationDate":"2012-01-17"}, -{"geonameId":"2654264","name":"Burnley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":149422,"modificationDate":"2017-06-12"}, -{"geonameId":"1854162","name":"Ōme","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":149323,"modificationDate":"2017-07-22"}, -{"geonameId":"2525473","name":"Cagliari","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":149257,"modificationDate":"2019-09-05"}, -{"geonameId":"5109790","name":"Borough Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":149248,"modificationDate":"2017-04-16"}, -{"geonameId":"2666199","name":"Uppsala","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":149245,"modificationDate":"2019-09-05"}, -{"geonameId":"4613868","name":"Clarksville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":149176,"modificationDate":"2017-03-09"}, -{"geonameId":"2646458","name":"Huddersfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":149017,"modificationDate":"2019-09-05"}, -{"geonameId":"706524","name":"Kerch","countryName":"Ukraine","timeZoneName":"Europe/Simferopol","timeZoneOffsetNameWithoutDst":"Moscow Time","population":148932,"modificationDate":"2019-10-21"}, -{"geonameId":"2852217","name":"Prenzlauer Berg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":148878,"modificationDate":"2013-03-06"}, -{"geonameId":"124721","name":"Marvdasht","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":148858,"modificationDate":"2019-02-08"}, -{"geonameId":"2037534","name":"Dunhua","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":148844,"modificationDate":"2012-01-18"}, -{"geonameId":"2516548","name":"Huelva","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":148806,"modificationDate":"2018-04-25"}, -{"geonameId":"6544487","name":"Arganzuela","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":148797,"modificationDate":"2017-05-26"}, -{"geonameId":"919009","name":"Chingola","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":148564,"modificationDate":"2016-10-16"}, -{"geonameId":"108512","name":"Arar","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":148540,"modificationDate":"2018-12-07"}, -{"geonameId":"1785781","name":"Yulin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":148485,"modificationDate":"2019-12-31"}, -{"geonameId":"5403022","name":"Torrance","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":148475,"modificationDate":"2017-03-09"}, -{"geonameId":"5405288","name":"Valencia","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":148456,"modificationDate":"2012-05-30"}, -{"geonameId":"616635","name":"Gyumri","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":148381,"modificationDate":"2019-09-05"}, -{"geonameId":"1814934","name":"Chizhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":148375,"modificationDate":"2014-11-24"}, -{"geonameId":"1856584","name":"Moriguchi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":148350,"modificationDate":"2017-07-22"}, -{"geonameId":"2521420","name":"Badajoz","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":148334,"modificationDate":"2019-03-29"}, -{"geonameId":"4907959","name":"Rockford","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":148278,"modificationDate":"2019-09-05"}, -{"geonameId":"3642833","name":"El Limón","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":148247,"modificationDate":"2018-08-08"}, -{"geonameId":"1637158","name":"Lubuklinggau","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":148243,"modificationDate":"2018-09-22"}, -{"geonameId":"2990363","name":"Nismes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":148236,"modificationDate":"2020-06-10"}, -{"geonameId":"1277100","name":"Chanak","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":148174,"modificationDate":"2020-06-10"}, -{"geonameId":"1633118","name":"Palangkaraya","countryName":"Indonesia","timeZoneName":"Asia/Pontianak","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":148139,"modificationDate":"2017-11-11"}, -{"geonameId":"2034638","name":"Sujiatun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":148113,"modificationDate":"2012-01-18"}, -{"geonameId":"3402383","name":"Caxias","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":148072,"modificationDate":"2013-05-30"}, -{"geonameId":"1580410","name":"Hon Goi","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":148066,"modificationDate":"2020-06-09"}, -{"geonameId":"1651112","name":"Astanajapura","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":148047,"modificationDate":"2012-01-17"}, -{"geonameId":"2492913","name":"Jijel","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":148000,"modificationDate":"2019-10-14"}, -{"geonameId":"4756955","name":"East Hampton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":147993,"modificationDate":"2006-01-17"}, -{"geonameId":"3345439","name":"Telford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":147980,"modificationDate":"2019-09-05"}, -{"geonameId":"2036876","name":"Honggang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":147977,"modificationDate":"2013-04-03"}, -{"geonameId":"3696417","name":"Huánuco","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":147959,"modificationDate":"2016-12-05"}, -{"geonameId":"6544102","name":"Sarrià-Sant Gervasi","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":147912,"modificationDate":"2017-05-26"}, -{"geonameId":"4898015","name":"Joliet","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":147861,"modificationDate":"2017-05-23"}, -{"geonameId":"5102466","name":"Paterson","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":147754,"modificationDate":"2017-05-23"}, -{"geonameId":"3110876","name":"Sant Andreu","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":147732,"modificationDate":"2017-05-26"}, -{"geonameId":"2650752","name":"Dundee","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":147710,"modificationDate":"2019-09-05"}, -{"geonameId":"2488835","name":"Medeah","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":147707,"modificationDate":"2020-06-11"}, -{"geonameId":"6544491","name":"Salamanca","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":147707,"modificationDate":"2017-05-26"}, -{"geonameId":"546230","name":"Kolomna","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":147690,"modificationDate":"2019-09-05"}, -{"geonameId":"118994","name":"Rafsanjān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":147680,"modificationDate":"2017-02-08"}, -{"geonameId":"6545326","name":"Ursynów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":147676,"modificationDate":"2018-01-16"}, -{"geonameId":"3173529","name":"Mestre","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":147662,"modificationDate":"2016-09-29"}, -{"geonameId":"285704","name":"Salmiyyeh","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":147649,"modificationDate":"2020-06-10"}, -{"geonameId":"5282804","name":"Bridgeport","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":147629,"modificationDate":"2019-09-05"}, -{"geonameId":"2755003","name":"Haarlem","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":147590,"modificationDate":"2020-05-14"}, -{"geonameId":"1609776","name":"Khon Kaen","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":147579,"modificationDate":"2015-03-04"}, -{"geonameId":"2550078","name":"El Jadid","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":147549,"modificationDate":"2019-09-05"}, -{"geonameId":"2884161","name":"Kreuzberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":147532,"modificationDate":"2017-09-19"}, -{"geonameId":"789128","name":"Kragujevac","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":147473,"modificationDate":"2019-09-05"}, -{"geonameId":"610612","name":"Shevchenko","countryName":"Kazakhstan","timeZoneName":"Asia/Aqtau","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":147443,"modificationDate":"2020-04-08"}, -{"geonameId":"3456290","name":"Nilópolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":147281,"modificationDate":"2013-07-22"}, -{"geonameId":"1272013","name":"Erode","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":147270,"modificationDate":"2014-10-14"}, -{"geonameId":"3133880","name":"Trondheim","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":147139,"modificationDate":"2019-09-05"}, -{"geonameId":"4903279","name":"Naperville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":147100,"modificationDate":"2020-03-14"}, -{"geonameId":"290340","name":"Manama","countryName":"Bahrain","timeZoneName":"Asia/Bahrain","timeZoneOffsetNameWithoutDst":"Arabian Time","population":147074,"modificationDate":"2019-09-05"}, -{"geonameId":"1586896","name":"Buôn Ma Thuột","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":146975,"modificationDate":"2013-06-29"}, -{"geonameId":"214974","name":"Kalemie","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":146974,"modificationDate":"2016-11-28"}, -{"geonameId":"2019528","name":"Nakhodka","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":146920,"modificationDate":"2019-09-05"}, -{"geonameId":"665004","name":"Târgu-Mureş","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":146863,"modificationDate":"2016-02-07"}, -{"geonameId":"233346","name":"Gulu","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":146858,"modificationDate":"2016-06-22"}, -{"geonameId":"3038354","name":"Aix-en-Provence","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":146821,"modificationDate":"2019-02-27"}, -{"geonameId":"1278860","name":"Ambata","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":146787,"modificationDate":"2020-06-10"}, -{"geonameId":"1586350","name":"Cam Ranh","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":146771,"modificationDate":"2010-01-29"}, -{"geonameId":"3547398","name":"Matanzas","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":146733,"modificationDate":"2019-09-05"}, -{"geonameId":"8533870","name":"Saint-Quentin-en-Yvelines","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":146598,"modificationDate":"2016-02-18"}, -{"geonameId":"3453303","name":"Poços de Caldas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":146588,"modificationDate":"2017-03-01"}, -{"geonameId":"2655524","name":"Blackburn","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":146521,"modificationDate":"2017-06-12"}, -{"geonameId":"3171457","name":"Parma","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":146299,"modificationDate":"2017-02-28"}, -{"geonameId":"3086800","name":"Ruda Śląska","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":146189,"modificationDate":"2016-08-02"}, -{"geonameId":"325303","name":"Afyonkarahisar","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":146136,"modificationDate":"2019-09-05"}, -{"geonameId":"890422","name":"Gweru","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":146073,"modificationDate":"2018-10-04"}, -{"geonameId":"1797318","name":"Qujing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":146015,"modificationDate":"2012-01-18"}, -{"geonameId":"3493175","name":"Puerto Plata","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":146000,"modificationDate":"2016-06-05"}, -{"geonameId":"5586437","name":"Boise","countryName":"United States","timeZoneName":"America/Boise","timeZoneOffsetNameWithoutDst":"Mountain Time","population":145987,"modificationDate":"2019-09-05"}, -{"geonameId":"1808857","name":"Hanzhong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":145986,"modificationDate":"2017-01-04"}, -{"geonameId":"6544492","name":"Chamberí","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":145934,"modificationDate":"2017-05-26"}, -{"geonameId":"2615876","name":"Odense","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":145931,"modificationDate":"2019-09-05"}, -{"geonameId":"1265859","name":"Krishnanagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":145926,"modificationDate":"2014-10-14"}, -{"geonameId":"1788816","name":"Xinji","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":145911,"modificationDate":"2012-01-18"}, -{"geonameId":"3395503","name":"Marabá","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":145860,"modificationDate":"2015-11-22"}, -{"geonameId":"967476","name":"Orkney","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":145801,"modificationDate":"2012-07-12"}, -{"geonameId":"1257804","name":"Saharsa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":145764,"modificationDate":"2015-11-08"}, -{"geonameId":"4221552","name":"Savannah","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":145674,"modificationDate":"2019-09-19"}, -{"geonameId":"1732721","name":"Kampung Pasir Gudang Baru","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":145639,"modificationDate":"2012-01-17"}, -{"geonameId":"1646698","name":"Cikampek","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":145620,"modificationDate":"2018-04-24"}, -{"geonameId":"1848689","name":"Yamaguchi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":145515,"modificationDate":"2017-04-09"}, -{"geonameId":"1276720","name":"Butala","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":145468,"modificationDate":"2020-06-10"}, -{"geonameId":"1793700","name":"Taishan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":145440,"modificationDate":"2016-02-28"}, -{"geonameId":"2852458","name":"Potsdam","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":145292,"modificationDate":"2017-12-05"}, -{"geonameId":"149658","name":"Tabora","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":145292,"modificationDate":"2016-07-26"}, -{"geonameId":"3435261","name":"Concordia","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":145210,"modificationDate":"2016-01-30"}, -{"geonameId":"3488465","name":"Spanish Town","countryName":"Jamaica","timeZoneName":"America/Jamaica","timeZoneOffsetNameWithoutDst":"Eastern Time","population":145018,"modificationDate":"2017-03-14"}, -{"geonameId":"1175864","name":"Jhelum","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":145000,"modificationDate":"2019-12-06"}, -{"geonameId":"3030300","name":"Brest","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":144899,"modificationDate":"2017-05-23"}, -{"geonameId":"1514879","name":"Khujand","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":144865,"modificationDate":"2020-01-17"}, -{"geonameId":"2656194","name":"Basildon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":144859,"modificationDate":"2019-09-05"}, -{"geonameId":"4710826","name":"Mesquite","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":144788,"modificationDate":"2017-03-09"}, -{"geonameId":"2451185","name":"Sikasso","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":144786,"modificationDate":"2017-06-19"}, -{"geonameId":"1796556","name":"Sanya","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":144753,"modificationDate":"2019-09-05"}, -{"geonameId":"2038679","name":"Acheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":144665,"modificationDate":"2019-05-07"}, -{"geonameId":"258576","name":"Lárisa","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":144651,"modificationDate":"2015-10-22"}, -{"geonameId":"3618030","name":"León","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":144538,"modificationDate":"2019-09-05"}, -{"geonameId":"3003603","name":"Le Mans","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":144515,"modificationDate":"2019-02-27"}, -{"geonameId":"2229752","name":"Kumba","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":144413,"modificationDate":"2012-01-16"}, -{"geonameId":"563523","name":"Elektrostal’","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":144387,"modificationDate":"2014-03-13"}, -{"geonameId":"1805733","name":"Jinchang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":144363,"modificationDate":"2018-12-06"}, -{"geonameId":"1800779","name":"Meizhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":144212,"modificationDate":"2018-12-06"}, -{"geonameId":"1643837","name":"Gorontalo","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":144195,"modificationDate":"2017-09-14"}, -{"geonameId":"5140405","name":"Syracuse","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":144142,"modificationDate":"2019-09-05"}, -{"geonameId":"216281","name":"Goma","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":144124,"modificationDate":"2012-12-05"}, -{"geonameId":"528293","name":"Maykop","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":144055,"modificationDate":"2016-11-23"}, -{"geonameId":"2294665","name":"Teshi Old Town","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":144013,"modificationDate":"2019-12-05"}, -{"geonameId":"2475744","name":"Tizi Ouzou","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":144000,"modificationDate":"2019-09-27"}, -{"geonameId":"576279","name":"Biryulëvo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":144000,"modificationDate":"2013-04-02"}, -{"geonameId":"6418220","name":"Orekhovo-Borisovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":144000,"modificationDate":"2013-04-02"}, -{"geonameId":"755330","name":"Wola","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":143996,"modificationDate":"2018-01-16"}, -{"geonameId":"354502","name":"Kafr ash Shaykh","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":143970,"modificationDate":"2017-05-08"}, -{"geonameId":"630376","name":"Barysaw","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":143919,"modificationDate":"2018-02-27"}, -{"geonameId":"2128574","name":"Otaru","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":143792,"modificationDate":"2017-07-22"}, -{"geonameId":"1645133","name":"Dumai","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":143760,"modificationDate":"2016-01-07"}, -{"geonameId":"1849186","name":"Urayasu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":143758,"modificationDate":"2019-02-28"}, -{"geonameId":"3649833","name":"Acarigua","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":143704,"modificationDate":"2012-10-18"}, -{"geonameId":"6137270","name":"Saguenay","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":143692,"modificationDate":"2016-06-22"}, -{"geonameId":"1701053","name":"Marawi City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":143627,"modificationDate":"2017-12-13"}, -{"geonameId":"3458329","name":"Luziânia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":143601,"modificationDate":"2012-08-03"}, -{"geonameId":"726848","name":"Stara Zagora","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":143431,"modificationDate":"2019-09-05"}, -{"geonameId":"2505530","name":"Béchar","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":143382,"modificationDate":"2018-08-08"}, -{"geonameId":"2907911","name":"Heidelberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":143345,"modificationDate":"2020-05-21"}, -{"geonameId":"2407790","name":"Kenema","countryName":"Sierra Leone","timeZoneName":"Africa/Freetown","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":143137,"modificationDate":"2014-12-03"}, -{"geonameId":"3404545","name":"Cabo","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":143105,"modificationDate":"2018-07-04"}, -{"geonameId":"3037854","name":"Amiens","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":143086,"modificationDate":"2019-09-05"}, -{"geonameId":"3897347","name":"Calama","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":143084,"modificationDate":"2018-02-06"}, -{"geonameId":"3458266","name":"Macaé","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":143029,"modificationDate":"2017-05-07"}, -{"geonameId":"2302357","name":"Cape Coast","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":143015,"modificationDate":"2019-12-06"}, -{"geonameId":"517121","name":"Novyye Kuz’minki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":143000,"modificationDate":"2013-04-02"}, -{"geonameId":"537832","name":"Kuz’minki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":143000,"modificationDate":"2013-04-02"}, -{"geonameId":"1275947","name":"Bhīmavaram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":142967,"modificationDate":"2014-10-10"}, -{"geonameId":"503550","name":"Pyatigorsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":142865,"modificationDate":"2016-12-03"}, -{"geonameId":"2642607","name":"Middlesbrough","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":142707,"modificationDate":"2019-09-05"}, -{"geonameId":"3086586","name":"Rybnik","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":142510,"modificationDate":"2019-09-05"}, -{"geonameId":"1213547","name":"Tanjungbalai","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":142506,"modificationDate":"2018-04-24"}, -{"geonameId":"352951","name":"Mallauri","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":142504,"modificationDate":"2020-06-11"}, -{"geonameId":"4333190","name":"Metairie Terrace","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":142489,"modificationDate":"2006-01-17"}, -{"geonameId":"3188582","name":"Tuzla","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":142486,"modificationDate":"2019-09-05"}, -{"geonameId":"1174167","name":"Khanpur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":142426,"modificationDate":"2019-12-06"}, -{"geonameId":"1337240","name":"Nawābganj","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":142361,"modificationDate":"2016-11-09"}, -{"geonameId":"5381396","name":"Pasadena","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":142250,"modificationDate":"2019-09-05"}, -{"geonameId":"1805528","name":"Jinhua","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":142206,"modificationDate":"2012-08-04"}, -{"geonameId":"2855745","name":"Paderborn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":142161,"modificationDate":"2019-09-05"}, -{"geonameId":"990930","name":"Kimberley","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":142089,"modificationDate":"2019-09-05"}, -{"geonameId":"3564178","name":"Ciego de Ávila","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":142027,"modificationDate":"2018-01-11"}, -{"geonameId":"6418146","name":"Chertanovo Yuzhnoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":142000,"modificationDate":"2016-04-11"}, -{"geonameId":"1805844","name":"Jieshou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":141993,"modificationDate":"2018-12-06"}, -{"geonameId":"1818223","name":"Yuen Long Kau Hui","countryName":"Hong Kong","timeZoneName":"Asia/Hong_Kong","timeZoneOffsetNameWithoutDst":"Hong Kong Time","population":141900,"modificationDate":"2013-08-11"}, -{"geonameId":"2529317","name":"Taza","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":141890,"modificationDate":"2016-11-02"}, -{"geonameId":"1005646","name":"eMbalenhle","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":141741,"modificationDate":"2014-04-06"}, -{"geonameId":"1307835","name":"Myingyan","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":141713,"modificationDate":"2016-06-01"}, -{"geonameId":"2759661","name":"Arnhem","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":141674,"modificationDate":"2020-01-13"}, -{"geonameId":"463355","name":"Zheleznodorozhnyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":141648,"modificationDate":"2016-04-11"}, -{"geonameId":"3979802","name":"Zamora","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":141627,"modificationDate":"2018-11-03"}, -{"geonameId":"2972191","name":"Tours","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":141621,"modificationDate":"2019-09-05"}, -{"geonameId":"3591415","name":"Petapa","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":141455,"modificationDate":"2019-04-10"}, -{"geonameId":"1277508","name":"Bālurghāt","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":141404,"modificationDate":"2017-03-21"}, -{"geonameId":"3461563","name":"Ibirité","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":141374,"modificationDate":"2012-08-03"}, -{"geonameId":"1848277","name":"Yonago","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":141368,"modificationDate":"2017-07-22"}, -{"geonameId":"2655237","name":"Bolton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":141331,"modificationDate":"2010-10-16"}, -{"geonameId":"6317464","name":"Lauro de Freitas","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":141280,"modificationDate":"2012-08-03"}, -{"geonameId":"3907584","name":"Ciudad Potosi","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":141251,"modificationDate":"2020-06-10"}, -{"geonameId":"1173664","name":"Khuzdar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":141227,"modificationDate":"2019-12-06"}, -{"geonameId":"6544490","name":"Usera","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":141189,"modificationDate":"2017-05-26"}, -{"geonameId":"2998286","name":"Limoges","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":141176,"modificationDate":"2019-09-05"}, -{"geonameId":"3191648","name":"Rijeka","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":141172,"modificationDate":"2017-05-23"}, -{"geonameId":"3455070","name":"Paranaguá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":141013,"modificationDate":"2014-12-28"}, -{"geonameId":"1141269","name":"Ghazni","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":141000,"modificationDate":"2018-02-17"}, -{"geonameId":"5379513","name":"Orange","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":140992,"modificationDate":"2019-09-19"}, -{"geonameId":"130802","name":"Īlām","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":140940,"modificationDate":"2017-02-08"}, -{"geonameId":"2037222","name":"Gongzhuling","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":140909,"modificationDate":"2017-10-30"}, -{"geonameId":"3530240","name":"Córdoba","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":140896,"modificationDate":"2018-11-03"}, -{"geonameId":"3860443","name":"Comodoro Rivadavia","countryName":"Argentina","timeZoneName":"America/Argentina/Rio_Gallegos","timeZoneOffsetNameWithoutDst":"Argentina Time","population":140850,"modificationDate":"2019-09-09"}, -{"geonameId":"1764160","name":"Kampung Sungai Ara","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":140849,"modificationDate":"2018-04-11"}, -{"geonameId":"5351247","name":"Fullerton","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":140847,"modificationDate":"2017-03-09"}, -{"geonameId":"4703223","name":"Killeen","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":140806,"modificationDate":"2017-03-09"}, -{"geonameId":"1497337","name":"Norilsk","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":140800,"modificationDate":"2019-09-05"}, -{"geonameId":"970566","name":"Nigel","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":140644,"modificationDate":"2012-07-12"}, -{"geonameId":"3633622","name":"Los Teques","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":140617,"modificationDate":"2013-08-11"}, -{"geonameId":"1268593","name":"Kaithal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":140604,"modificationDate":"2015-08-07"}, -{"geonameId":"4509884","name":"Dayton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":140599,"modificationDate":"2017-05-23"}, -{"geonameId":"582432","name":"Al’met’yevsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":140437,"modificationDate":"2016-11-25"}, -{"geonameId":"2938913","name":"Darmstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":140385,"modificationDate":"2019-09-05"}, -{"geonameId":"1215957","name":"Tirmiz","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":140385,"modificationDate":"2011-07-09"}, -{"geonameId":"3108288","name":"Tarragona","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":140323,"modificationDate":"2010-08-23"}, -{"geonameId":"4709796","name":"McAllen","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":140269,"modificationDate":"2017-03-09"}, -{"geonameId":"1265242","name":"Lakhīmpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":140223,"modificationDate":"2015-09-06"}, -{"geonameId":"973111","name":"Mpumalanga","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":140121,"modificationDate":"2013-04-04"}, -{"geonameId":"2744114","name":"Zaanstad","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":140085,"modificationDate":"2010-01-30"}, -{"geonameId":"1270164","name":"Hazarybaugh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":140063,"modificationDate":"2020-06-10"}, -{"geonameId":"11468429","name":"Kuwana","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":140051,"modificationDate":"2018-03-24"}, -{"geonameId":"1253200","name":"Vidisha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":140045,"modificationDate":"2015-08-07"}, -{"geonameId":"3947019","name":"Ayacucho","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":140033,"modificationDate":"2019-09-05"}, -{"geonameId":"5927690","name":"Coquitlam","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":140000,"modificationDate":"2019-04-16"}, -{"geonameId":"2034996","name":"Shanhaiguan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":140000,"modificationDate":"2017-06-27"}, -{"geonameId":"3125239","name":"Chamartín","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":140000,"modificationDate":"2017-05-26"}, -{"geonameId":"1632353","name":"Parepare","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":140000,"modificationDate":"2019-04-10"}, -{"geonameId":"255524","name":"Peristéri","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":139981,"modificationDate":"2019-10-23"}, -{"geonameId":"2759821","name":"Amersfoort","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":139914,"modificationDate":"2019-01-14"}, -{"geonameId":"11695689","name":"Jeongeup","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":139876,"modificationDate":"2017-09-19"}, -{"geonameId":"5786882","name":"Bellevue","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":139820,"modificationDate":"2017-03-09"}, -{"geonameId":"554233","name":"Korolev","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":139798,"modificationDate":"2019-01-18"}, -{"geonameId":"1180809","name":"Dadu","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":139784,"modificationDate":"2019-12-06"}, -{"geonameId":"1178231","name":"Gojra","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":139726,"modificationDate":"2019-12-06"}, -{"geonameId":"2675408","name":"Sollentuna","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":139606,"modificationDate":"2017-03-18"}, -{"geonameId":"1270498","name":"Haldwani","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":139497,"modificationDate":"2014-10-14"}, -{"geonameId":"2341355","name":"Gbongan","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":139485,"modificationDate":"2016-01-30"}, -{"geonameId":"1822214","name":"Siem Reap","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":139458,"modificationDate":"2017-09-11"}, -{"geonameId":"2284647","name":"Man","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":139341,"modificationDate":"2012-01-17"}, -{"geonameId":"1529651","name":"Altay","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":139341,"modificationDate":"2015-01-03"}, -{"geonameId":"1270568","name":"Hābra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":139297,"modificationDate":"2014-10-14"}, -{"geonameId":"1265683","name":"Kumbakonam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":139264,"modificationDate":"2014-10-14"}, -{"geonameId":"1627253","name":"Sidoarjo","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":139189,"modificationDate":"2016-01-07"}, -{"geonameId":"412800","name":"Şabāḩ as Sālim","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":139163,"modificationDate":"2017-06-22"}, -{"geonameId":"1860034","name":"Kariya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":139159,"modificationDate":"2017-07-22"}, -{"geonameId":"3613533","name":"Choloma","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":139100,"modificationDate":"2007-02-18"}, -{"geonameId":"2636882","name":"Stockport","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":139052,"modificationDate":"2019-09-05"}, -{"geonameId":"7284824","name":"Budapest XI. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":139049,"modificationDate":"2019-09-23"}, -{"geonameId":"2036776","name":"Huadian","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":139047,"modificationDate":"2012-01-18"}, -{"geonameId":"1621613","name":"Weru","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":139004,"modificationDate":"2012-01-17"}, -{"geonameId":"2654710","name":"Brighton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":139001,"modificationDate":"2019-09-05"}, -{"geonameId":"546105","name":"Kolpino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":138979,"modificationDate":"2019-09-05"}, -{"geonameId":"3436077","name":"Belgrano","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":138942,"modificationDate":"2017-12-06"}, -{"geonameId":"3518692","name":"San Juan del Río","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":138878,"modificationDate":"2018-11-03"}, -{"geonameId":"2295458","name":"Sekondi-Takoradi","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":138872,"modificationDate":"2019-12-06"}, -{"geonameId":"1259395","name":"Porbandar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":138872,"modificationDate":"2014-10-13"}, -{"geonameId":"2037335","name":"Fuyu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":138704,"modificationDate":"2012-01-18"}, -{"geonameId":"3024635","name":"Clermont-Ferrand","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":138681,"modificationDate":"2019-09-05"}, -{"geonameId":"1274056","name":"Chitradurga","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":138587,"modificationDate":"2014-10-14"}, -{"geonameId":"4333177","name":"Metairie","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":138481,"modificationDate":"2011-05-14"}, -{"geonameId":"1815427","name":"Chaohu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":138463,"modificationDate":"2012-01-18"}, -{"geonameId":"2343784","name":"Ejigbo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":138357,"modificationDate":"2016-01-30"}, -{"geonameId":"1254657","name":"Thānesar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":138279,"modificationDate":"2015-02-06"}, -{"geonameId":"1254327","name":"Tiruvannāmalai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":138243,"modificationDate":"2014-10-14"}, -{"geonameId":"1278685","name":"Anand","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":138009,"modificationDate":"2017-05-06"}, -{"geonameId":"3393001","name":"Parnaíba","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":138008,"modificationDate":"2017-08-28"}, -{"geonameId":"3723779","name":"Jacmel","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":137966,"modificationDate":"2016-01-30"}, -{"geonameId":"2296606","name":"Obuase","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":137856,"modificationDate":"2019-12-06"}, -{"geonameId":"3460535","name":"Itu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":137586,"modificationDate":"2012-08-03"}, -{"geonameId":"358172","name":"Dikirnis","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":137542,"modificationDate":"2013-07-06"}, -{"geonameId":"1856367","name":"Musashino","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":137479,"modificationDate":"2017-07-22"}, -{"geonameId":"1805857","name":"Jieshi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":137444,"modificationDate":"2012-06-05"}, -{"geonameId":"3402591","name":"Castanhal","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":137406,"modificationDate":"2012-08-03"}, -{"geonameId":"4013516","name":"Colima","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":137383,"modificationDate":"2018-11-03"}, -{"geonameId":"1019330","name":"Bhisho","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":137287,"modificationDate":"2012-07-12"}, -{"geonameId":"1233369","name":"Negombo","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":137223,"modificationDate":"2019-02-26"}, -{"geonameId":"935264","name":"Saint-Denis","countryName":"Reunion","timeZoneName":"Indian/Reunion","timeZoneOffsetNameWithoutDst":"Réunion Time","population":137195,"modificationDate":"2019-05-16"}, -{"geonameId":"261745","name":"Irákleion","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":137154,"modificationDate":"2019-09-09"}, -{"geonameId":"4164601","name":"Miramar","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":137132,"modificationDate":"2017-03-09"}, -{"geonameId":"7303248","name":"Jiashan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":137112,"modificationDate":"2010-06-27"}, -{"geonameId":"1529484","name":"Hami","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":137072,"modificationDate":"2013-05-08"}, -{"geonameId":"516215","name":"Odintsovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":137041,"modificationDate":"2019-09-05"}, -{"geonameId":"3176885","name":"Foggia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":137032,"modificationDate":"2020-01-26"}, -{"geonameId":"1268715","name":"Kancharapara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":136954,"modificationDate":"2020-06-10"}, -{"geonameId":"3589885","name":"San Juan Sacatepéquez","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":136886,"modificationDate":"2015-02-06"}, -{"geonameId":"2342490","name":"Funtua","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":136811,"modificationDate":"2016-06-22"}, -{"geonameId":"1293625","name":"Dawei","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":136783,"modificationDate":"2016-06-01"}, -{"geonameId":"2338711","name":"Igboho","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":136764,"modificationDate":"2016-01-30"}, -{"geonameId":"2759706","name":"Apeldoorn","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":136670,"modificationDate":"2019-09-05"}, -{"geonameId":"1794806","name":"Shizuishan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":136570,"modificationDate":"2012-01-18"}, -{"geonameId":"685826","name":"Baia Mare","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":136553,"modificationDate":"2017-10-28"}, -{"geonameId":"1709968","name":"Kabankalan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":136483,"modificationDate":"2017-12-13"}, -{"geonameId":"3193044","name":"Podgorica","countryName":"Montenegro","timeZoneName":"Europe/Podgorica","timeZoneOffsetNameWithoutDst":"Central European Time","population":136473,"modificationDate":"2019-09-05"}, -{"geonameId":"4762894","name":"Hampton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":136454,"modificationDate":"2017-03-09"}, -{"geonameId":"3449324","name":"São Caetano do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":136453,"modificationDate":"2014-11-03"}, -{"geonameId":"5405693","name":"Van Nuys","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":136443,"modificationDate":"2018-04-18"}, -{"geonameId":"5784607","name":"West Valley City","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":136208,"modificationDate":"2017-03-09"}, -{"geonameId":"1810240","name":"Gejiu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":136135,"modificationDate":"2012-12-01"}, -{"geonameId":"1264407","name":"Mahbūbnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":136135,"modificationDate":"2018-07-13"}, -{"geonameId":"339219","name":"Dessye","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":136056,"modificationDate":"2020-06-11"}, -{"geonameId":"3118514","name":"Lleida","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":135919,"modificationDate":"2018-03-11"}, -{"geonameId":"1272552","name":"Dimāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":135860,"modificationDate":"2017-03-19"}, -{"geonameId":"1735093","name":"Tasek Glugor","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":135786,"modificationDate":"2012-01-17"}, -{"geonameId":"3877949","name":"Osorno","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":135773,"modificationDate":"2018-02-06"}, -{"geonameId":"2036597","name":"Jiagedaqi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":135760,"modificationDate":"2017-08-25"}, -{"geonameId":"3452073","name":"Queimados","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":135741,"modificationDate":"2012-08-03"}, -{"geonameId":"1185191","name":"Kushtia","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":135724,"modificationDate":"2016-11-09"}, -{"geonameId":"212902","name":"Kindu","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":135698,"modificationDate":"2013-02-08"}, -{"geonameId":"1727995","name":"Baliuag","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":135679,"modificationDate":"2017-12-13"}, -{"geonameId":"2634491","name":"West Bromwich","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":135618,"modificationDate":"2011-03-03"}, -{"geonameId":"1586357","name":"Cẩm Phả Mines","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":135477,"modificationDate":"2018-07-03"}, -{"geonameId":"2346615","name":"Buguma","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":135404,"modificationDate":"2016-01-30"}, -{"geonameId":"1795055","name":"Shiqiao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":135308,"modificationDate":"2013-10-05"}, -{"geonameId":"1299154","name":"Pyay","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":135308,"modificationDate":"2016-06-01"}, -{"geonameId":"368277","name":"Rabak","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":135281,"modificationDate":"2013-05-18"}, -{"geonameId":"1258109","name":"Robertsonpet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":135218,"modificationDate":"2016-11-22"}, -{"geonameId":"267008","name":"Tyre","countryName":"Lebanon","timeZoneName":"Asia/Beirut","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":135204,"modificationDate":"2012-02-02"}, -{"geonameId":"2427455","name":"Moundou","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":135167,"modificationDate":"2019-09-05"}, -{"geonameId":"3699088","name":"Cajamarca","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":135000,"modificationDate":"2019-09-05"}, -{"geonameId":"1325211","name":"Hinthada","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":134947,"modificationDate":"2016-06-01"}, -{"geonameId":"1897007","name":"Hanam","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":134902,"modificationDate":"2012-01-19"}, -{"geonameId":"2082600","name":"Jayapura","countryName":"Indonesia","timeZoneName":"Asia/Jayapura","timeZoneOffsetNameWithoutDst":"Eastern Indonesia Time","population":134895,"modificationDate":"2017-01-19"}, -{"geonameId":"776029","name":"Bielany","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":134854,"modificationDate":"2018-01-16"}, -{"geonameId":"1274304","name":"Sindwara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":134847,"modificationDate":"2020-06-10"}, -{"geonameId":"1263814","name":"Mandya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":134845,"modificationDate":"2015-11-08"}, -{"geonameId":"3687230","name":"Cartago","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":134827,"modificationDate":"2016-01-28"}, -{"geonameId":"3728474","name":"Okap","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":134815,"modificationDate":"2016-10-12"}, -{"geonameId":"1649593","name":"Baturaja","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":134759,"modificationDate":"2016-01-07"}, -{"geonameId":"2497411","name":"El Oued","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":134699,"modificationDate":"2018-08-08"}, -{"geonameId":"1848004","name":"Zama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":134671,"modificationDate":"2017-07-22"}, -{"geonameId":"2514169","name":"Marbella","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":134623,"modificationDate":"2019-09-05"}, -{"geonameId":"2747351","name":"'s-Hertogenbosch","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":134520,"modificationDate":"2020-01-13"}, -{"geonameId":"1699296","name":"Rodriguez","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":134432,"modificationDate":"2019-12-23"}, -{"geonameId":"89113","name":"Ajdabiya","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":134358,"modificationDate":"2019-09-05"}, -{"geonameId":"522377","name":"Nevinnomyssk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":134345,"modificationDate":"2019-09-05"}, -{"geonameId":"1689056","name":"San Mateo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":134327,"modificationDate":"2017-12-13"}, -{"geonameId":"758470","name":"Śródmieście","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":134306,"modificationDate":"2020-03-29"}, -{"geonameId":"3118532","name":"León","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":134305,"modificationDate":"2013-07-06"}, -{"geonameId":"4276614","name":"Olathe","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":134305,"modificationDate":"2017-05-23"}, -{"geonameId":"1852663","name":"Seto","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":134246,"modificationDate":"2017-07-22"}, -{"geonameId":"2338269","name":"Ikirun","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":134240,"modificationDate":"2016-01-30"}, -{"geonameId":"4013728","name":"Ciudad Acuña","countryName":"Mexico","timeZoneName":"America/Matamoros","timeZoneOffsetNameWithoutDst":"Central Time","population":134233,"modificationDate":"2018-11-03"}, -{"geonameId":"3722286","name":"Yaguana","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":134190,"modificationDate":"2020-06-11"}, -{"geonameId":"1651887","name":"Adiwerna","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":134188,"modificationDate":"2012-01-17"}, -{"geonameId":"2647878","name":"Grimsby","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":134160,"modificationDate":"2017-06-12"}, -{"geonameId":"2353099","name":"Abakaliki","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":134102,"modificationDate":"2016-01-30"}, -{"geonameId":"5014051","name":"Warren","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":134056,"modificationDate":"2019-09-05"}, -{"geonameId":"1814093","name":"Dali","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":134040,"modificationDate":"2013-04-03"}, -{"geonameId":"1277264","name":"Bānkura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":133966,"modificationDate":"2014-10-14"}, -{"geonameId":"745169","name":"İnegol","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":133959,"modificationDate":"2015-07-12"}, -{"geonameId":"2130404","name":"Ebetsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":133953,"modificationDate":"2017-07-22"}, -{"geonameId":"1566319","name":"Thái Nguyên","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":133877,"modificationDate":"2019-01-09"}, -{"geonameId":"4575352","name":"Columbia","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":133803,"modificationDate":"2019-09-05"}, -{"geonameId":"1626932","name":"Singaraja","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":133784,"modificationDate":"2010-01-29"}, -{"geonameId":"2805615","name":"Würzburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":133731,"modificationDate":"2020-04-04"}, -{"geonameId":"963230","name":"Randfontein","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":133654,"modificationDate":"2012-07-12"}, -{"geonameId":"1270525","name":"Hājīpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":133606,"modificationDate":"2016-01-07"}, -{"geonameId":"510808","name":"Pervoural’sk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":133600,"modificationDate":"2013-08-04"}, -{"geonameId":"1270996","name":"Gonda Oudh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":133583,"modificationDate":"2020-06-10"}, -{"geonameId":"3654215","name":"Milagro","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":133508,"modificationDate":"2017-02-07"}, -{"geonameId":"1513243","name":"Margilan","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":133490,"modificationDate":"2020-06-10"}, -{"geonameId":"1275812","name":"Bhuj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":133459,"modificationDate":"2014-10-13"}, -{"geonameId":"5441492","name":"Thornton","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":133451,"modificationDate":"2017-03-09"}, -{"geonameId":"2647356","name":"Hastings","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":133422,"modificationDate":"2017-06-12"}, -{"geonameId":"3868707","name":"Valdivia","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":133419,"modificationDate":"2019-09-05"}, -{"geonameId":"1270079","name":"Hindupur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":133298,"modificationDate":"2015-10-04"}, -{"geonameId":"3169522","name":"Reggio nell'Emilia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":133296,"modificationDate":"2018-12-11"}, -{"geonameId":"2326899","name":"Okrika","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":133271,"modificationDate":"2016-01-30"}, -{"geonameId":"1283581","name":"Birgunj","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":133238,"modificationDate":"2020-06-10"}, -{"geonameId":"2646914","name":"High Wycombe","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":133204,"modificationDate":"2017-06-12"}, -{"geonameId":"4679195","name":"Carrollton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":133168,"modificationDate":"2017-03-09"}, -{"geonameId":"1683881","name":"Talisay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":133148,"modificationDate":"2017-12-13"}, -{"geonameId":"343137","name":"Hawassa","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":133097,"modificationDate":"2013-05-18"}, -{"geonameId":"355635","name":"Edfu","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":133000,"modificationDate":"2020-06-11"}, -{"geonameId":"3655673","name":"Ibarra","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":132977,"modificationDate":"2017-02-07"}, -{"geonameId":"5526337","name":"Midland","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":132950,"modificationDate":"2017-03-09"}, -{"geonameId":"1798473","name":"Puqi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":132891,"modificationDate":"2012-01-18"}, -{"geonameId":"1850034","name":"Tondabayashichō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":132873,"modificationDate":"2017-07-29"}, -{"geonameId":"1864132","name":"Fujieda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":132859,"modificationDate":"2017-07-22"}, -{"geonameId":"1853008","name":"Sanda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":132858,"modificationDate":"2020-06-11"}, -{"geonameId":"1256523","name":"Shillong","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":132842,"modificationDate":"2014-10-14"}, -{"geonameId":"124085","name":"Mīāndoāb","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":132819,"modificationDate":"2014-09-04"}, -{"geonameId":"548114","name":"Kislovodsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":132771,"modificationDate":"2019-09-05"}, -{"geonameId":"2787149","name":"Schaerbeek","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":132761,"modificationDate":"2020-05-25"}, -{"geonameId":"2753801","name":"Hoofddorp","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":132734,"modificationDate":"2020-02-26"}, -{"geonameId":"2416969","name":"Nzérékoré","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":132728,"modificationDate":"2013-05-10"}, -{"geonameId":"1260728","name":"Palakkad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":132728,"modificationDate":"2020-06-10"}, -{"geonameId":"293725","name":"Ruhaybah","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":132671,"modificationDate":"2020-06-10"}, -{"geonameId":"1789065","name":"Ankang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":132654,"modificationDate":"2019-02-11"}, -{"geonameId":"4574324","name":"Charleston","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":132609,"modificationDate":"2017-03-09"}, -{"geonameId":"2775220","name":"Innsbruck","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":132493,"modificationDate":"2019-09-05"}, -{"geonameId":"1648580","name":"Blitar","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":132416,"modificationDate":"2012-01-17"}, -{"geonameId":"4739526","name":"Waco","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":132356,"modificationDate":"2017-03-09"}, -{"geonameId":"3564436","name":"Cerro","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":132351,"modificationDate":"2020-02-07"}, -{"geonameId":"2475687","name":"Tlemcen","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":132341,"modificationDate":"2019-09-05"}, -{"geonameId":"1860735","name":"Kakamigahara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":132241,"modificationDate":"2017-07-22"}, -{"geonameId":"3590979","name":"Quetzaltenango","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":132230,"modificationDate":"2012-12-05"}, -{"geonameId":"566199","name":"Dimitrovgrad","countryName":"Russia","timeZoneName":"Europe/Ulyanovsk","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":132226,"modificationDate":"2019-09-05"}, -{"geonameId":"2033225","name":"Zhalantun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":132224,"modificationDate":"2016-06-20"}, -{"geonameId":"3453837","name":"Pindamonhangaba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":132218,"modificationDate":"2012-08-03"}, -{"geonameId":"1699054","name":"Muricay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":132094,"modificationDate":"2017-12-13"}, -{"geonameId":"5011148","name":"Sterling Heights","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":132052,"modificationDate":"2017-05-23"}, -{"geonameId":"12166273","name":"Quận Đức Thịnh","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":132000,"modificationDate":"2020-05-30"}, -{"geonameId":"6155721","name":"St. Catharines","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":131989,"modificationDate":"2019-09-05"}, -{"geonameId":"1854083","name":"Ōmuta","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":131974,"modificationDate":"2017-07-22"}, -{"geonameId":"1271107","name":"Godhra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":131913,"modificationDate":"2014-10-13"}, -{"geonameId":"135423","name":"Shahrud","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":131889,"modificationDate":"2014-02-01"}, -{"geonameId":"1813344","name":"Dawukou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":131880,"modificationDate":"2012-01-18"}, -{"geonameId":"1722930","name":"Bulaon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":131818,"modificationDate":"2017-12-13"}, -{"geonameId":"3629576","name":"Punto Fijo","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":131784,"modificationDate":"2018-08-08"}, -{"geonameId":"2113164","name":"Abiko","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":131771,"modificationDate":"2018-05-09"}, -{"geonameId":"1266486","name":"Kishangarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":131749,"modificationDate":"2017-08-23"}, -{"geonameId":"1860871","name":"Kadoma","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":131727,"modificationDate":"2017-07-22"}, -{"geonameId":"1801401","name":"Majie","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":131696,"modificationDate":"2015-03-08"}, -{"geonameId":"1636022","name":"Martapura","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":131449,"modificationDate":"2013-12-09"}, -{"geonameId":"2968254","name":"Villeurbanne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":131445,"modificationDate":"2019-09-05"}, -{"geonameId":"132938","name":"Gonbad Qavoos","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":131416,"modificationDate":"2020-06-10"}, -{"geonameId":"1258470","name":"Rānīganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":131261,"modificationDate":"2014-10-14"}, -{"geonameId":"2146268","name":"Toowoomba","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":131258,"modificationDate":"2013-06-25"}, -{"geonameId":"1808336","name":"Hepo","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":131238,"modificationDate":"2012-01-18"}, -{"geonameId":"1160939","name":"Iranshahr","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":131232,"modificationDate":"2017-02-25"}, -{"geonameId":"4685907","name":"Denton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":131044,"modificationDate":"2017-03-09"}, -{"geonameId":"1314759","name":"Lashio","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":131016,"modificationDate":"2016-06-01"}, -{"geonameId":"1259686","name":"Pilibhhit","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":131008,"modificationDate":"2020-06-10"}, -{"geonameId":"1856775","name":"Miyakonojō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":130994,"modificationDate":"2017-07-22"}, -{"geonameId":"518557","name":"Novomoskovsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":130982,"modificationDate":"2019-09-05"}, -{"geonameId":"683123","name":"Buzeu","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":130954,"modificationDate":"2020-06-10"}, -{"geonameId":"3448031","name":"Sapucaia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":130937,"modificationDate":"2012-08-03"}, -{"geonameId":"1857568","name":"Matsubara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":130855,"modificationDate":"2017-07-22"}, -{"geonameId":"623549","name":"Pinsk","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":130777,"modificationDate":"2018-10-26"}, -{"geonameId":"1276634","name":"Beāwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":130777,"modificationDate":"2014-10-14"}, -{"geonameId":"1813325","name":"Dazhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":130749,"modificationDate":"2018-12-06"}, -{"geonameId":"174018","name":"Al Bāb","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":130745,"modificationDate":"2015-06-07"}, -{"geonameId":"2034834","name":"Shuangcheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":130710,"modificationDate":"2012-01-18"}, -{"geonameId":"1861436","name":"Isesaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":130692,"modificationDate":"2017-07-22"}, -{"geonameId":"1279403","name":"Abohar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":130603,"modificationDate":"2015-02-06"}, -{"geonameId":"3100796","name":"Dąbrowa Górnicza","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":130601,"modificationDate":"2019-02-28"}, -{"geonameId":"594739","name":"Szawle","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":130587,"modificationDate":"2020-06-10"}, -{"geonameId":"1262951","name":"Moga","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":130549,"modificationDate":"2015-05-06"}, -{"geonameId":"2219701","name":"Al Ajaylat","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":130546,"modificationDate":"2018-10-16"}, -{"geonameId":"8504948","name":"Petrogradka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":130455,"modificationDate":"2013-06-10"}, -{"geonameId":"4850751","name":"Cedar Rapids","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":130405,"modificationDate":"2019-02-27"}, -{"geonameId":"1791056","name":"Dongyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":130387,"modificationDate":"2012-01-18"}, -{"geonameId":"3675657","name":"Maicao","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":130348,"modificationDate":"2018-07-04"}, -{"geonameId":"3682426","name":"Florencia","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":130337,"modificationDate":"2016-01-28"}, -{"geonameId":"282615","name":"Nablus","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":130326,"modificationDate":"2020-01-02"}, -{"geonameId":"4839366","name":"New Haven","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":130322,"modificationDate":"2019-09-05"}, -{"geonameId":"1805935","name":"Jiazi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":130298,"modificationDate":"2012-06-05"}, -{"geonameId":"3682028","name":"Girardot City","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":130289,"modificationDate":"2018-04-23"}, -{"geonameId":"5388881","name":"Roseville","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":130269,"modificationDate":"2017-03-09"}, -{"geonameId":"3874096","name":"Quilpué","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":130263,"modificationDate":"2018-02-06"}, -{"geonameId":"1794035","name":"Songjiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":130218,"modificationDate":"2012-06-05"}, -{"geonameId":"3608248","name":"La Ceiba","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":130218,"modificationDate":"2019-02-26"}, -{"geonameId":"3460102","name":"Jaraguá do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":130130,"modificationDate":"2012-08-03"}, -{"geonameId":"4156404","name":"Gainesville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":130128,"modificationDate":"2017-03-09"}, -{"geonameId":"367644","name":"Sinnar","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":130122,"modificationDate":"2016-07-17"}, -{"geonameId":"3617723","name":"Masaya","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":130113,"modificationDate":"2010-11-24"}, -{"geonameId":"5406567","name":"Visalia","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":130104,"modificationDate":"2017-03-09"}, -{"geonameId":"2483668","name":"Relizane","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":130094,"modificationDate":"2018-08-08"}, -{"geonameId":"3996663","name":"Manzanillo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":130035,"modificationDate":"2018-11-03"}, -{"geonameId":"1187530","name":"Sonārgaon","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":130000,"modificationDate":"2017-07-04"}, -{"geonameId":"7910932","name":"Shangri-La","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":130000,"modificationDate":"2018-12-06"}, -{"geonameId":"2487134","name":"Mostaganem","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":130000,"modificationDate":"2018-08-08"}, -{"geonameId":"3042430","name":"Zugló","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":130000,"modificationDate":"2019-09-23"}, -{"geonameId":"2212775","name":"Sebhah","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":130000,"modificationDate":"2020-06-10"}, -{"geonameId":"12157008","name":"San Martin","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":130000,"modificationDate":"2020-05-07"}, -{"geonameId":"3082914","name":"Tychy","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":130000,"modificationDate":"2011-07-31"}, -{"geonameId":"502971","name":"Ramenki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":130000,"modificationDate":"2013-04-02"}, -{"geonameId":"691999","name":"Severodonetsk","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":130000,"modificationDate":"2020-06-10"}, -{"geonameId":"1273309","name":"Dehri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":129938,"modificationDate":"2015-10-04"}, -{"geonameId":"1791325","name":"Wuda","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":129922,"modificationDate":"2012-01-18"}, -{"geonameId":"1214882","name":"Kisaran","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":129911,"modificationDate":"2016-01-07"}, -{"geonameId":"1841598","name":"Gyeongsan-si","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":129903,"modificationDate":"2014-03-30"}, -{"geonameId":"64536","name":"Baidoa","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":129839,"modificationDate":"2013-09-21"}, -{"geonameId":"1171123","name":"Mandi Bahauddin","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":129733,"modificationDate":"2019-12-06"}, -{"geonameId":"1513131","name":"Navoiy","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":129725,"modificationDate":"2017-10-28"}, -{"geonameId":"738743","name":"Tokat","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":129702,"modificationDate":"2019-09-05"}, -{"geonameId":"2388873","name":"Bimbo","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":129655,"modificationDate":"2016-06-22"}, -{"geonameId":"1273193","name":"Deoria","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":129570,"modificationDate":"2014-10-14"}, -{"geonameId":"1864416","name":"Daitōchō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":129521,"modificationDate":"2017-07-27"}, -{"geonameId":"4151909","name":"Coral Springs","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":129485,"modificationDate":"2017-03-09"}, -{"geonameId":"6146143","name":"Sherbrooke","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":129447,"modificationDate":"2019-09-05"}, -{"geonameId":"2485801","name":"Ouargla","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":129402,"modificationDate":"2010-08-03"}, -{"geonameId":"3183539","name":"Acilia-Castel Fusano-Ostia Antica","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":129362,"modificationDate":"2016-12-28"}, -{"geonameId":"5402405","name":"Thousand Oaks","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":129339,"modificationDate":"2017-03-09"}, -{"geonameId":"1846986","name":"Andong","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":129319,"modificationDate":"2017-10-04"}, -{"geonameId":"1026014","name":"Tete","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":129316,"modificationDate":"2012-01-19"}, -{"geonameId":"3893656","name":"Copiapó","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":129280,"modificationDate":"2013-01-11"}, -{"geonameId":"1633037","name":"Palopo","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":129273,"modificationDate":"2016-01-07"}, -{"geonameId":"2541479","name":"Nador","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":129260,"modificationDate":"2016-11-02"}, -{"geonameId":"358840","name":"Bilbays","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":129211,"modificationDate":"2012-01-19"}, -{"geonameId":"3645854","name":"Charallave","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":129182,"modificationDate":"2018-08-08"}, -{"geonameId":"115770","name":"Shahr-e Kord","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":129153,"modificationDate":"2019-03-07"}, -{"geonameId":"2849483","name":"Regensburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":129151,"modificationDate":"2019-09-05"}, -{"geonameId":"1857046","name":"Mino","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":129127,"modificationDate":"2017-07-27"}, -{"geonameId":"1804208","name":"Leiyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":129116,"modificationDate":"2012-01-18"}, -{"geonameId":"2073124","name":"Darwin","countryName":"Australia","timeZoneName":"Australia/Darwin","timeZoneOffsetNameWithoutDst":"Australian Central Time","population":129062,"modificationDate":"2019-09-05"}, -{"geonameId":"1721168","name":"Cadiz","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":129053,"modificationDate":"2017-12-13"}, -{"geonameId":"3979844","name":"Zacatecas","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":129011,"modificationDate":"2018-11-03"}, -{"geonameId":"5097598","name":"Elizabeth","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":129007,"modificationDate":"2017-05-23"}, -{"geonameId":"461835","name":"Zyablikovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":129000,"modificationDate":"2016-04-01"}, -{"geonameId":"295548","name":"Bat Yam","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":128979,"modificationDate":"2017-07-02"}, -{"geonameId":"1185111","name":"Shatkhira","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":128918,"modificationDate":"2020-06-10"}, -{"geonameId":"3630932","name":"Palo Negro","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":128875,"modificationDate":"2018-08-08"}, -{"geonameId":"4843564","name":"Stamford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":128874,"modificationDate":"2017-05-23"}, -{"geonameId":"3457000","name":"Mogi Guaçu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":128865,"modificationDate":"2016-11-10"}, -{"geonameId":"361546","name":"Arish","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":128855,"modificationDate":"2017-11-10"}, -{"geonameId":"169389","name":"Idlib","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":128840,"modificationDate":"2012-01-17"}, -{"geonameId":"90708","name":"Sina","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":128776,"modificationDate":"2020-06-10"}, -{"geonameId":"5339111","name":"Concord","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":128667,"modificationDate":"2019-10-01"}, -{"geonameId":"553287","name":"Kamyshin","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":128626,"modificationDate":"2019-09-05"}, -{"geonameId":"643492","name":"Oulu","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":128618,"modificationDate":"2019-09-05"}, -{"geonameId":"1270239","name":"Hassan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":128531,"modificationDate":"2014-10-14"}, -{"geonameId":"518976","name":"Novocheboksarsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":128468,"modificationDate":"2012-01-17"}, -{"geonameId":"3033123","name":"Besançon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":128426,"modificationDate":"2020-06-15"}, -{"geonameId":"5316428","name":"Surprise","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":128422,"modificationDate":"2017-03-09"}, -{"geonameId":"2498392","name":"El Eulma","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":128351,"modificationDate":"2012-01-19"}, -{"geonameId":"1266945","name":"Khardah","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":128346,"modificationDate":"2014-10-14"}, -{"geonameId":"102527","name":"Sakakah","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":128332,"modificationDate":"2015-12-13"}, -{"geonameId":"333772","name":"Jimma","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":128306,"modificationDate":"2016-10-22"}, -{"geonameId":"379149","name":"Manaqil","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":128297,"modificationDate":"2020-06-11"}, -{"geonameId":"1990589","name":"Teluknaga","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":128275,"modificationDate":"2012-01-20"}, -{"geonameId":"3052009","name":"Győr","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":128265,"modificationDate":"2019-10-07"}, -{"geonameId":"355026","name":"Girga","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":128250,"modificationDate":"2020-06-11"}, -{"geonameId":"3547867","name":"Manzanillo","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":128188,"modificationDate":"2016-01-07"}, -{"geonameId":"1252770","name":"Yavatmāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":128175,"modificationDate":"2015-04-08"}, -{"geonameId":"1270484","name":"Halishahar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":128172,"modificationDate":"2020-06-10"}, -{"geonameId":"496527","name":"Serpukhov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":128158,"modificationDate":"2016-12-20"}, -{"geonameId":"2210554","name":"Sirte","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":128123,"modificationDate":"2019-09-05"}, -{"geonameId":"293788","name":"Ramat Gan","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":128095,"modificationDate":"2019-09-05"}, -{"geonameId":"1907299","name":"Asaka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":128058,"modificationDate":"2017-07-22"}, -{"geonameId":"1260434","name":"Panvel","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":128046,"modificationDate":"2014-10-13"}, -{"geonameId":"515027","name":"Orekhovo-Borisovo Severnoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":128000,"modificationDate":"2016-04-01"}, -{"geonameId":"555129","name":"Ivanovskoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":128000,"modificationDate":"2016-04-01"}, -{"geonameId":"1732869","name":"Muar","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":127897,"modificationDate":"2012-01-17"}, -{"geonameId":"2289887","name":"Divo","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":127867,"modificationDate":"2016-05-18"}, -{"geonameId":"1622636","name":"Ungaran","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":127812,"modificationDate":"2016-01-07"}, -{"geonameId":"5551123","name":"Alhambra","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":127764,"modificationDate":"2018-11-24"}, -{"geonameId":"1788081","name":"Xuanzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":127758,"modificationDate":"2015-07-23"}, -{"geonameId":"1254309","name":"Titāgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":127751,"modificationDate":"2014-10-14"}, -{"geonameId":"3836846","name":"San Nicolás de los Arroyos","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":127742,"modificationDate":"2017-11-29"}, -{"geonameId":"1858067","name":"Kusatsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":127680,"modificationDate":"2017-07-22"}, -{"geonameId":"3090048","name":"Opole","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":127676,"modificationDate":"2019-09-05"}, -{"geonameId":"4330145","name":"Lafayette","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":127657,"modificationDate":"2018-02-03"}, -{"geonameId":"3359041","name":"Worcester","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":127597,"modificationDate":"2019-09-05"}, -{"geonameId":"3099759","name":"Elblong","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":127558,"modificationDate":"2020-06-11"}, -{"geonameId":"2482572","name":"Saïda","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":127497,"modificationDate":"2018-08-08"}, -{"geonameId":"1185115","name":"Sirajganj","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":127481,"modificationDate":"2017-05-04"}, -{"geonameId":"3459943","name":"Jequié","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":127475,"modificationDate":"2017-09-08"}, -{"geonameId":"3088825","name":"Płock","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":127474,"modificationDate":"2019-09-05"}, -{"geonameId":"3082707","name":"Wałbrzych","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":127431,"modificationDate":"2019-09-05"}, -{"geonameId":"584649","name":"Yevlakh","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":127400,"modificationDate":"2019-07-01"}, -{"geonameId":"363885","name":"Wau","countryName":"South Sudan","timeZoneName":"Africa/Juba","timeZoneOffsetNameWithoutDst":"East Africa Time","population":127384,"modificationDate":"2017-06-09"}, -{"geonameId":"1024552","name":"Xai-Xai","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":127366,"modificationDate":"2014-09-02"}, -{"geonameId":"2676209","name":"Södermalm","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":127323,"modificationDate":"2019-06-13"}, -{"geonameId":"1807689","name":"Huaihua","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":127322,"modificationDate":"2018-12-06"}, -{"geonameId":"2350249","name":"Amaigbo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":127300,"modificationDate":"2012-05-05"}, -{"geonameId":"4280539","name":"Topeka","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":127265,"modificationDate":"2019-09-05"}, -{"geonameId":"2332515","name":"Lafia","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":127236,"modificationDate":"2016-01-30"}, -{"geonameId":"1885823","name":"Jiangyou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":127225,"modificationDate":"2006-01-17"}, -{"geonameId":"1163965","name":"Tando Allahyar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":127202,"modificationDate":"2019-12-06"}, -{"geonameId":"1150515","name":"Surat Thani","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":127201,"modificationDate":"2012-01-16"}, -{"geonameId":"215771","name":"Isiro","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":127076,"modificationDate":"2019-02-28"}, -{"geonameId":"3540667","name":"Sancti Spíritus","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":127069,"modificationDate":"2017-05-07"}, -{"geonameId":"1273800","name":"Cuddapah","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":127010,"modificationDate":"2016-10-08"}, -{"geonameId":"1276393","name":"Bettiah","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":127008,"modificationDate":"2015-10-04"}, -{"geonameId":"1514581","name":"Angren","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":126957,"modificationDate":"2012-01-17"}, -{"geonameId":"5799625","name":"Kent","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":126952,"modificationDate":"2017-03-09"}, -{"geonameId":"1302439","name":"Pakokku","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":126938,"modificationDate":"2016-06-01"}, -{"geonameId":"524294","name":"Murom","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":126931,"modificationDate":"2019-09-05"}, -{"geonameId":"1180436","name":"Daska Kalan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":126924,"modificationDate":"2019-12-06"}, -{"geonameId":"1630058","name":"Rangkasbitung","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":126910,"modificationDate":"2016-01-07"}, -{"geonameId":"1270216","name":"Hāthras","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":126882,"modificationDate":"2015-08-07"}, -{"geonameId":"1639900","name":"Klaten","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":126831,"modificationDate":"2016-01-07"}, -{"geonameId":"550478","name":"Khasavyurt","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":126829,"modificationDate":"2016-12-02"}, -{"geonameId":"522942","name":"Neftekamsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":126805,"modificationDate":"2019-09-05"}, -{"geonameId":"3104748","name":"Villaverde","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":126802,"modificationDate":"2017-05-26"}, -{"geonameId":"5396003","name":"Simi Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":126788,"modificationDate":"2017-03-09"}, -{"geonameId":"1789647","name":"Xichang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":126787,"modificationDate":"2019-07-26"}, -{"geonameId":"2520600","name":"Cadiz","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":126766,"modificationDate":"2017-05-23"}, -{"geonameId":"1168555","name":"Pakpattan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":126706,"modificationDate":"2019-12-06"}, -{"geonameId":"1813812","name":"Danshui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":126701,"modificationDate":"2012-01-18"}, -{"geonameId":"1332083","name":"Bahawalnagar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":126700,"modificationDate":"2019-12-06"}, -{"geonameId":"1183883","name":"Bahawalnagar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":126617,"modificationDate":"2019-12-06"}, -{"geonameId":"1849429","name":"Ueda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":126606,"modificationDate":"2018-05-26"}, -{"geonameId":"3667873","name":"Sogamoso","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":126551,"modificationDate":"2018-06-08"}, -{"geonameId":"5344994","name":"East Los Angeles","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":126496,"modificationDate":"2011-05-14"}, -{"geonameId":"1265157","name":"Lalitpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":126475,"modificationDate":"2015-08-07"}, -{"geonameId":"747712","name":"Edirne","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":126470,"modificationDate":"2019-09-05"}, -{"geonameId":"1642414","name":"Jombang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":126465,"modificationDate":"2007-11-09"}, -{"geonameId":"877401","name":"Songea","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":126449,"modificationDate":"2016-07-26"}, -{"geonameId":"1266305","name":"Kolār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":126441,"modificationDate":"2016-10-08"}, -{"geonameId":"6325521","name":"Lévis","countryName":"Canada","timeZoneName":"America/Blanc-Sablon","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":126396,"modificationDate":"2018-08-25"}, -{"geonameId":"3620381","name":"Chinandega","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":126387,"modificationDate":"2012-01-14"}, -{"geonameId":"2219960","name":"Al Jadīd","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":126386,"modificationDate":"2013-08-13"}, -{"geonameId":"3437863","name":"Lambaré","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":126377,"modificationDate":"2019-02-26"}, -{"geonameId":"1801582","name":"Macheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":126366,"modificationDate":"2013-11-23"}, -{"geonameId":"281102","name":"Rafaḩ","countryName":"Palestinian Territory","timeZoneName":"Asia/Gaza","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":126305,"modificationDate":"2019-03-24"}, -{"geonameId":"1735168","name":"Ampang","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":126285,"modificationDate":"2019-07-09"}, -{"geonameId":"3460728","name":"Itapetininga","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":126243,"modificationDate":"2012-08-03"}, -{"geonameId":"3454783","name":"Patos de Minas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":126234,"modificationDate":"2017-03-25"}, -{"geonameId":"5393015","name":"Santa Clara","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":126215,"modificationDate":"2017-03-09"}, -{"geonameId":"1632197","name":"Paseh","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":126181,"modificationDate":"2012-01-17"}, -{"geonameId":"4644312","name":"Murfreesboro","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":126118,"modificationDate":"2017-03-09"}, -{"geonameId":"6544495","name":"Retiro","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":126058,"modificationDate":"2017-05-26"}, -{"geonameId":"8436486","name":"Sunset Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":126000,"modificationDate":"2017-12-06"}, -{"geonameId":"1632654","name":"Pangkalpinang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":125933,"modificationDate":"2013-05-09"}, -{"geonameId":"1806881","name":"Huicheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":125919,"modificationDate":"2012-01-18"}, -{"geonameId":"2341656","name":"Gashua","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":125817,"modificationDate":"2016-06-22"}, -{"geonameId":"3728097","name":"Les Cayes","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":125799,"modificationDate":"2016-01-30"}, -{"geonameId":"3168673","name":"Salerno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":125797,"modificationDate":"2020-05-27"}, -{"geonameId":"2634677","name":"Watford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":125707,"modificationDate":"2016-07-22"}, -{"geonameId":"1789703","name":"Xiazhen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":125667,"modificationDate":"2012-01-18"}, -{"geonameId":"112646","name":"Turbet-i-Haidari","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":125633,"modificationDate":"2020-06-10"}, -{"geonameId":"1163967","name":"Tando Adam","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":125598,"modificationDate":"2019-12-06"}, -{"geonameId":"250799","name":"Adjlun","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":125557,"modificationDate":"2020-06-10"}, -{"geonameId":"1626542","name":"Sorong","countryName":"Indonesia","timeZoneName":"Asia/Jayapura","timeZoneOffsetNameWithoutDst":"Eastern Indonesia Time","population":125535,"modificationDate":"2013-04-21"}, -{"geonameId":"1708522","name":"Koronadal","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":125502,"modificationDate":"2019-02-28"}, -{"geonameId":"748208","name":"Derince","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":125485,"modificationDate":"2019-03-11"}, -{"geonameId":"1894616","name":"Okinawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":125483,"modificationDate":"2017-07-22"}, -{"geonameId":"3882428","name":"Los Anjeles","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":125430,"modificationDate":"2020-06-10"}, -{"geonameId":"1809062","name":"Haimen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":125427,"modificationDate":"2012-06-05"}, -{"geonameId":"2638703","name":"Saint Peters","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":125370,"modificationDate":"2018-07-03"}, -{"geonameId":"624079","name":"Orsha","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":125347,"modificationDate":"2018-10-27"}, -{"geonameId":"1796421","name":"Shahecheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":125132,"modificationDate":"2012-01-18"}, -{"geonameId":"5990579","name":"Kelowna","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":125109,"modificationDate":"2019-02-26"}, -{"geonameId":"3469092","name":"Bragança Paulista","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":125096,"modificationDate":"2015-06-20"}, -{"geonameId":"2395049","name":"Bohicon","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":125092,"modificationDate":"2018-05-29"}, -{"geonameId":"1864750","name":"Beppu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":125065,"modificationDate":"2017-07-22"}, -{"geonameId":"3513090","name":"Willemstad","countryName":"Curacao","timeZoneName":"America/Curacao","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":125000,"modificationDate":"2019-09-05"}, -{"geonameId":"96961","name":"Soran","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":125000,"modificationDate":"2019-06-19"}, -{"geonameId":"618605","name":"Byelcy","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":125000,"modificationDate":"2020-06-10"}, -{"geonameId":"483551","name":"Tyoply Stan","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":125000,"modificationDate":"2016-03-31"}, -{"geonameId":"1263834","name":"Mandsaur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":124988,"modificationDate":"2014-10-14"}, -{"geonameId":"1963770","name":"Padalarang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":124946,"modificationDate":"2018-04-24"}, -{"geonameId":"1793900","name":"Suining","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":124924,"modificationDate":"2012-01-18"}, -{"geonameId":"1270990","name":"Gondia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":124897,"modificationDate":"2020-06-10"}, -{"geonameId":"3827414","name":"Huixquilucan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":124846,"modificationDate":"2015-06-22"}, -{"geonameId":"116402","name":"Semnan","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":124826,"modificationDate":"2018-11-03"}, -{"geonameId":"693468","name":"Sloviansk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":124800,"modificationDate":"2020-05-07"}, -{"geonameId":"3493146","name":"San Francisco de Macorís","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":124763,"modificationDate":"2016-06-05"}, -{"geonameId":"2033242","name":"Yushu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":124736,"modificationDate":"2012-01-18"}, -{"geonameId":"1665443","name":"Yuanlin","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":124725,"modificationDate":"2019-09-04"}, -{"geonameId":"3584257","name":"Santa Tecla","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":124694,"modificationDate":"2012-01-06"}, -{"geonameId":"3483849","name":"Ciudad Valles","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":124644,"modificationDate":"2018-11-03"}, -{"geonameId":"4005509","name":"Guadalupe","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":124623,"modificationDate":"2018-11-03"}, -{"geonameId":"1162004","name":"Khairpur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":124602,"modificationDate":"2020-06-10"}, -{"geonameId":"1859951","name":"Kashihara-shi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":124521,"modificationDate":"2017-07-22"}, -{"geonameId":"3652350","name":"Riobamba","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":124478,"modificationDate":"2017-02-07"}, -{"geonameId":"1522203","name":"Kokshetau","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":124444,"modificationDate":"2019-04-10"}, -{"geonameId":"3098722","name":"Landsberg an der Warthe","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":124430,"modificationDate":"2020-06-11"}, -{"geonameId":"3386361","name":"Timon","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":124427,"modificationDate":"2012-08-03"}, -{"geonameId":"1169027","name":"New Mirpur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":124352,"modificationDate":"2019-12-06"}, -{"geonameId":"2448085","name":"Agadez","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":124324,"modificationDate":"2017-02-04"}, -{"geonameId":"757065","name":"Targówek","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":124316,"modificationDate":"2018-01-16"}, -{"geonameId":"5363748","name":"Koreatown","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":124281,"modificationDate":"2017-12-06"}, -{"geonameId":"1804252","name":"Lecheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":124268,"modificationDate":"2014-06-27"}, -{"geonameId":"3448632","name":"São José dos Pinhais","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":124224,"modificationDate":"2014-08-17"}, -{"geonameId":"124862","name":"Marand","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":124191,"modificationDate":"2014-09-04"}, -{"geonameId":"1258916","name":"Rajapalaiyam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":124168,"modificationDate":"2014-10-14"}, -{"geonameId":"2989317","name":"Orléans","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":124149,"modificationDate":"2019-09-05"}, -{"geonameId":"1804591","name":"Laiwu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":124108,"modificationDate":"2012-01-18"}, -{"geonameId":"958724","name":"Rustenburg","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":124064,"modificationDate":"2012-07-12"}, -{"geonameId":"4835797","name":"Hartford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":124006,"modificationDate":"2019-09-05"}, -{"geonameId":"1519843","name":"Rudnyy","countryName":"Kazakhstan","timeZoneName":"Asia/Qostanay","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":124000,"modificationDate":"2012-06-05"}, -{"geonameId":"3446606","name":"Teresópolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":123979,"modificationDate":"2019-12-13"}, -{"geonameId":"2994160","name":"Metz","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":123914,"modificationDate":"2019-09-05"}, -{"geonameId":"2036403","name":"Jiupu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":123843,"modificationDate":"2018-12-06"}, -{"geonameId":"1273467","name":"Dārjiling","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":123797,"modificationDate":"2014-10-14"}, -{"geonameId":"2038438","name":"Baoshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":123791,"modificationDate":"2012-01-18"}, -{"geonameId":"3493240","name":"Salvaleón de Higüey","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":123787,"modificationDate":"2016-06-05"}, -{"geonameId":"965289","name":"Polokwane","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":123749,"modificationDate":"2020-01-28"}, -{"geonameId":"1292288","name":"Thaton","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":123727,"modificationDate":"2016-06-01"}, -{"geonameId":"7284842","name":"Budapest III. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":123723,"modificationDate":"2019-09-23"}, -{"geonameId":"964349","name":"Potchefstroom","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":123669,"modificationDate":"2012-07-12"}, -{"geonameId":"1647149","name":"Ciamis","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":123637,"modificationDate":"2012-01-17"}, -{"geonameId":"1637090","name":"Lumajang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":123626,"modificationDate":"2012-01-17"}, -{"geonameId":"2495662","name":"Guelma","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":123590,"modificationDate":"2018-08-08"}, -{"geonameId":"1711982","name":"Hagonoy","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":123531,"modificationDate":"2017-12-13"}, -{"geonameId":"6992326","name":"Mohali","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":123484,"modificationDate":"2014-10-14"}, -{"geonameId":"3445679","name":"Uruguaiana","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":123480,"modificationDate":"2012-08-03"}, -{"geonameId":"1260777","name":"Pālanpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":123294,"modificationDate":"2015-09-06"}, -{"geonameId":"1643078","name":"Indramayu","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":123263,"modificationDate":"2016-01-07"}, -{"geonameId":"1085510","name":"Epworth","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":123250,"modificationDate":"2012-01-19"}, -{"geonameId":"2503661","name":"Bordj el Kiffan","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":123246,"modificationDate":"2019-05-10"}, -{"geonameId":"2288829","name":"Gagnoa","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":123184,"modificationDate":"2016-05-18"}, -{"geonameId":"3452640","name":"Porto Seguro","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":123173,"modificationDate":"2012-08-03"}, -{"geonameId":"1801799","name":"Luoyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":123144,"modificationDate":"2012-01-18"}, -{"geonameId":"2806654","name":"Wolfsburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":123064,"modificationDate":"2019-09-05"}, -{"geonameId":"1855425","name":"Niihama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":123059,"modificationDate":"2017-07-22"}, -{"geonameId":"2036536","name":"Minzhu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":123018,"modificationDate":"2014-06-05"}, -{"geonameId":"536164","name":"Tsaritsyno","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":123000,"modificationDate":"2019-08-13"}, -{"geonameId":"2518794","name":"Dos Hermanas","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":122943,"modificationDate":"2018-06-08"}, -{"geonameId":"1631992","name":"Pati","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":122785,"modificationDate":"2018-04-25"}, -{"geonameId":"1272243","name":"Dam Dam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":122719,"modificationDate":"2017-07-14"}, -{"geonameId":"3472766","name":"Alagoinhas","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":122688,"modificationDate":"2012-08-03"}, -{"geonameId":"98245","name":"Az Zubayr","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":122676,"modificationDate":"2016-06-22"}, -{"geonameId":"1270370","name":"Hardoī","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":122635,"modificationDate":"2016-02-06"}, -{"geonameId":"4005937","name":"San Pedro Garza Garcia","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":122627,"modificationDate":"2020-06-18"}, -{"geonameId":"1807112","name":"Huangzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":122563,"modificationDate":"2012-01-18"}, -{"geonameId":"5137849","name":"Sheepshead Bay","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":122534,"modificationDate":"2017-04-16"}, -{"geonameId":"1259163","name":"Puruliya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":122533,"modificationDate":"2014-10-14"}, -{"geonameId":"1605245","name":"Ubon Ratchathani","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":122533,"modificationDate":"2017-10-31"}, -{"geonameId":"1859393","name":"Kisarazu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":122524,"modificationDate":"2017-07-22"}, -{"geonameId":"943882","name":"Virginia","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":122502,"modificationDate":"2012-07-12"}, -{"geonameId":"1015621","name":"Brits","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":122497,"modificationDate":"2012-07-12"}, -{"geonameId":"6947640","name":"Beylikdüzü","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":122452,"modificationDate":"2020-02-12"}, -{"geonameId":"2849647","name":"Recklinghausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":122438,"modificationDate":"2019-02-28"}, -{"geonameId":"3455478","name":"Palhoça","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":122423,"modificationDate":"2012-03-10"}, -{"geonameId":"1788268","name":"Xiulin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":122411,"modificationDate":"2015-09-25"}, -{"geonameId":"1784178","name":"Zhoucun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":122402,"modificationDate":"2012-01-18"}, -{"geonameId":"1280957","name":"Jiayuguan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":122396,"modificationDate":"2014-08-20"}, -{"geonameId":"2751283","name":"Maastricht","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":122378,"modificationDate":"2019-09-05"}, -{"geonameId":"5107129","name":"Amherst","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":122366,"modificationDate":"2017-05-23"}, -{"geonameId":"1574023","name":"Mitho","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":122310,"modificationDate":"2020-06-09"}, -{"geonameId":"738927","name":"Tekirdağ","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":122287,"modificationDate":"2019-09-05"}, -{"geonameId":"5406222","name":"Victorville","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":122225,"modificationDate":"2017-03-09"}, -{"geonameId":"2624886","name":"Aalborg","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":122219,"modificationDate":"2019-09-05"}, -{"geonameId":"3470858","name":"Barbacena","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":122211,"modificationDate":"2012-08-03"}, -{"geonameId":"2654200","name":"Burton upon Trent","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":122199,"modificationDate":"2018-07-03"}, -{"geonameId":"1181073","name":"Chishtian","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":122199,"modificationDate":"2019-12-06"}, -{"geonameId":"3587923","name":"Villa Canales","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":122194,"modificationDate":"2019-04-10"}, -{"geonameId":"1272648","name":"Dibrugarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":122155,"modificationDate":"2016-07-02"}, -{"geonameId":"2918632","name":"Göttingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":122149,"modificationDate":"2019-09-05"}, -{"geonameId":"3185728","name":"Durrës","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":122034,"modificationDate":"2019-09-05"}, -{"geonameId":"473972","name":"Veshnyaki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":122000,"modificationDate":"2016-04-03"}, -{"geonameId":"542634","name":"Presnenskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":122000,"modificationDate":"2018-11-14"}, -{"geonameId":"1113217","name":"Zābol","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":121989,"modificationDate":"2017-02-08"}, -{"geonameId":"1260637","name":"Palwal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":121965,"modificationDate":"2015-09-06"}, -{"geonameId":"1855095","name":"Nobeoka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":121949,"modificationDate":"2017-07-22"}, -{"geonameId":"2652618","name":"Colchester","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":121859,"modificationDate":"2017-06-12"}, -{"geonameId":"1262067","name":"Nalgonda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":121826,"modificationDate":"2014-10-10"}, -{"geonameId":"615532","name":"Batumi","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":121806,"modificationDate":"2019-02-26"}, -{"geonameId":"3117164","name":"Mataró","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":121722,"modificationDate":"2012-03-04"}, -{"geonameId":"4669635","name":"Abilene","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":121721,"modificationDate":"2019-09-05"}, -{"geonameId":"1276320","name":"Bhadreswar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":121662,"modificationDate":"2014-10-14"}, -{"geonameId":"2661552","name":"Bern","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":121631,"modificationDate":"2019-09-18"}, -{"geonameId":"1253315","name":"Vejalpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":121610,"modificationDate":"2014-10-13"}, -{"geonameId":"3137115","name":"Stavanger","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":121610,"modificationDate":"2018-03-15"}, -{"geonameId":"1631905","name":"Payakumbuh","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":121572,"modificationDate":"2013-07-04"}, -{"geonameId":"1023441","name":"Alberton","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":121536,"modificationDate":"2017-12-06"}, -{"geonameId":"1864105","name":"Fujinomiya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":121515,"modificationDate":"2017-07-22"}, -{"geonameId":"3121245","name":"Gràcia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":121502,"modificationDate":"2017-05-26"}, -{"geonameId":"1274220","name":"Chikmanglur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":121484,"modificationDate":"2020-06-10"}, -{"geonameId":"1524325","name":"Ekibastuz","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":121470,"modificationDate":"2019-09-05"}, -{"geonameId":"1689286","name":"San Juan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":121430,"modificationDate":"2017-12-27"}, -{"geonameId":"1855078","name":"Noda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":121411,"modificationDate":"2017-07-22"}, -{"geonameId":"2742032","name":"Braga","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":121394,"modificationDate":"2018-05-01"}, -{"geonameId":"2035669","name":"Lianhe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":121367,"modificationDate":"2013-05-07"}, -{"geonameId":"1259005","name":"Raigarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":121278,"modificationDate":"2015-09-06"}, -{"geonameId":"5405380","name":"Vallejo","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":121253,"modificationDate":"2017-05-30"}, -{"geonameId":"4839745","name":"North Stamford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":121230,"modificationDate":"2017-05-23"}, -{"geonameId":"1513064","name":"Olmaliq","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":121207,"modificationDate":"2012-01-17"}, -{"geonameId":"152451","name":"Musoma","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":121119,"modificationDate":"2016-07-26"}, -{"geonameId":"3468403","name":"Cachoeirinha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":121084,"modificationDate":"2012-08-03"}, -{"geonameId":"1848774","name":"Yaizu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":121057,"modificationDate":"2017-07-22"}, -{"geonameId":"81302","name":"Tobruk","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":121052,"modificationDate":"2019-09-05"}, -{"geonameId":"461740","name":"Zyuzino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":121000,"modificationDate":"2013-04-02"}, -{"geonameId":"5327684","name":"Berkeley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":120972,"modificationDate":"2019-09-05"}, -{"geonameId":"2033824","name":"Xilin Hot","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":120965,"modificationDate":"2012-01-18"}, -{"geonameId":"1270670","name":"Guntakal Junction","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":120964,"modificationDate":"2015-11-08"}, -{"geonameId":"4006163","name":"Fresnillo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":120944,"modificationDate":"2018-11-03"}, -{"geonameId":"3522307","name":"Orizaba","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":120844,"modificationDate":"2018-11-03"}, -{"geonameId":"1151933","name":"Nakhon Si Thammarat","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":120836,"modificationDate":"2012-01-16"}, -{"geonameId":"2907669","name":"Heilbronn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":120733,"modificationDate":"2014-01-17"}, -{"geonameId":"2895992","name":"Ingolstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":120658,"modificationDate":"2018-03-09"}, -{"geonameId":"1849845","name":"Toyokawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":120537,"modificationDate":"2017-07-31"}, -{"geonameId":"2037411","name":"Fengcheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":120514,"modificationDate":"2012-01-18"}, -{"geonameId":"905395","name":"Mufulira","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":120500,"modificationDate":"2012-01-17"}, -{"geonameId":"2820256","name":"Ulm","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":120451,"modificationDate":"2019-09-05"}, -{"geonameId":"1735150","name":"Rawang","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":120447,"modificationDate":"2012-01-17"}, -{"geonameId":"309527","name":"Karaman","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":120399,"modificationDate":"2019-09-05"}, -{"geonameId":"5913695","name":"Cambridge","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":120372,"modificationDate":"2010-04-28"}, -{"geonameId":"3081741","name":"Włocławek","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":120339,"modificationDate":"2019-09-05"}, -{"geonameId":"4543762","name":"Norman","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":120284,"modificationDate":"2017-03-09"}, -{"geonameId":"5178127","name":"Allentown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":120207,"modificationDate":"2017-05-23"}, -{"geonameId":"3438115","name":"Fernando de la Mora","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":120167,"modificationDate":"2019-02-27"}, -{"geonameId":"3171180","name":"Perugia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":120137,"modificationDate":"2016-04-15"}, -{"geonameId":"1271675","name":"Gangāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":120115,"modificationDate":"2014-10-14"}, -{"geonameId":"1784953","name":"Zhaoyuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":120000,"modificationDate":"2018-12-06"}, -{"geonameId":"1650319","name":"Bangil","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":120000,"modificationDate":"2013-10-29"}, -{"geonameId":"10263232","name":"Deoli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":120000,"modificationDate":"2017-08-04"}, -{"geonameId":"278913","name":"Nabatîyé et Tahta","countryName":"Lebanon","timeZoneName":"Asia/Beirut","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":120000,"modificationDate":"2018-03-28"}, -{"geonameId":"1185056","name":"Abbottabad","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":120000,"modificationDate":"2019-12-06"}, -{"geonameId":"490971","name":"Solntsevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":120000,"modificationDate":"2012-09-20"}, -{"geonameId":"515024","name":"Orekhovo-Zuyevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":120000,"modificationDate":"2019-09-05"}, -{"geonameId":"8504621","name":"Gereida","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":120000,"modificationDate":"2017-12-06"}, -{"geonameId":"4257227","name":"Evansville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":119943,"modificationDate":"2019-09-05"}, -{"geonameId":"2945756","name":"Bottrop","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":119909,"modificationDate":"2019-02-28"}, -{"geonameId":"3389321","name":"Santa Rita","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":119893,"modificationDate":"2012-08-03"}, -{"geonameId":"1039536","name":"Maxixe","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":119868,"modificationDate":"2012-01-19"}, -{"geonameId":"2940187","name":"Charlottenburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":119857,"modificationDate":"2017-10-02"}, -{"geonameId":"2473449","name":"Kairouan","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":119794,"modificationDate":"2018-08-26"}, -{"geonameId":"1176106","name":"Jaranwala","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":119785,"modificationDate":"2019-12-06"}, -{"geonameId":"3109981","name":"Santa Coloma de Gramenet","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":119717,"modificationDate":"2018-06-08"}, -{"geonameId":"2751773","name":"Leiden","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":119713,"modificationDate":"2019-09-05"}, -{"geonameId":"6169141","name":"Trois-Rivières","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":119693,"modificationDate":"2019-09-05"}, -{"geonameId":"7290243","name":"Bergedorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":119665,"modificationDate":"2017-08-14"}, -{"geonameId":"3172629","name":"Monza","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":119618,"modificationDate":"2018-03-12"}, -{"geonameId":"2330028","name":"Modakeke","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":119529,"modificationDate":"2019-08-07"}, -{"geonameId":"1686547","name":"Silang","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":119475,"modificationDate":"2017-12-13"}, -{"geonameId":"3652567","name":"Quevedo","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":119436,"modificationDate":"2017-02-07"}, -{"geonameId":"303873","name":"Nazilli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":119370,"modificationDate":"2019-09-05"}, -{"geonameId":"230166","name":"Lira","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":119323,"modificationDate":"2016-06-22"}, -{"geonameId":"3446370","name":"Toledo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":119313,"modificationDate":"2013-09-27"}, -{"geonameId":"2853969","name":"Pforzheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":119313,"modificationDate":"2019-09-05"}, -{"geonameId":"2756669","name":"Dordrecht","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":119260,"modificationDate":"2020-05-14"}, -{"geonameId":"3460005","name":"Jaú","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":119206,"modificationDate":"2012-08-03"}, -{"geonameId":"2857807","name":"Offenbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":119192,"modificationDate":"2018-03-09"}, -{"geonameId":"1255927","name":"Savan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":119181,"modificationDate":"2020-06-10"}, -{"geonameId":"4381982","name":"Columbia","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":119108,"modificationDate":"2019-02-27"}, -{"geonameId":"2537406","name":"Settat","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":119082,"modificationDate":"2016-11-03"}, -{"geonameId":"3647549","name":"Cagua","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":119033,"modificationDate":"2012-01-03"}, -{"geonameId":"5527554","name":"Odessa","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":118968,"modificationDate":"2017-03-09"}, -{"geonameId":"1041190","name":"Mandimba","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":118922,"modificationDate":"2018-11-24"}, -{"geonameId":"3413829","name":"Reykjavík","countryName":"Iceland","timeZoneName":"Atlantic/Reykjavik","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":118918,"modificationDate":"2019-09-05"}, -{"geonameId":"1689510","name":"San Jose","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":118807,"modificationDate":"2017-12-13"}, -{"geonameId":"1273587","name":"Damoh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":118776,"modificationDate":"2015-08-07"}, -{"geonameId":"1907301","name":"Shimotoda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":118731,"modificationDate":"2017-04-09"}, -{"geonameId":"1280737","name":"Lhasa","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":118721,"modificationDate":"2017-07-21"}, -{"geonameId":"2507972","name":"Paul Cazelles","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":118687,"modificationDate":"2020-06-11"}, -{"geonameId":"1858964","name":"Kokubunji","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":118682,"modificationDate":"2017-07-22"}, -{"geonameId":"728203","name":"Pleven","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":118675,"modificationDate":"2019-09-05"}, -{"geonameId":"3169361","name":"Rimini","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":118673,"modificationDate":"2018-03-16"}, -{"geonameId":"3523149","name":"Miramar","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":118614,"modificationDate":"2018-11-14"}, -{"geonameId":"1609899","name":"Khlong Luang","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":118551,"modificationDate":"2012-01-16"}, -{"geonameId":"1279344","name":"Ādilābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":118526,"modificationDate":"2014-10-10"}, -{"geonameId":"5059163","name":"Fargo","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":118523,"modificationDate":"2019-09-05"}, -{"geonameId":"3526798","name":"Iguala de la Independencia","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":118468,"modificationDate":"2018-11-03"}, -{"geonameId":"1627610","name":"Sepatan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":118439,"modificationDate":"2012-01-17"}, -{"geonameId":"3080165","name":"Zielona Góra","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":118433,"modificationDate":"2019-09-05"}, -{"geonameId":"3465059","name":"Cubatão","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":118410,"modificationDate":"2012-08-03"}, -{"geonameId":"932505","name":"Maseru","countryName":"Lesotho","timeZoneName":"Africa/Maseru","timeZoneOffsetNameWithoutDst":"South Africa Time","population":118355,"modificationDate":"2019-09-05"}, -{"geonameId":"1255647","name":"Srikakulam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":118299,"modificationDate":"2019-03-30"}, -{"geonameId":"187968","name":"Malindi","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":118265,"modificationDate":"2013-08-17"}, -{"geonameId":"1253744","name":"Uppal Kalan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":118259,"modificationDate":"2014-10-10"}, -{"geonameId":"2650497","name":"Eastbourne","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":118219,"modificationDate":"2017-06-12"}, -{"geonameId":"2317397","name":"Bandundu","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":118211,"modificationDate":"2016-11-22"}, -{"geonameId":"1230089","name":"Pita Kotte","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":118179,"modificationDate":"2018-12-29"}, -{"geonameId":"3107784","name":"Torrejón de Ardoz","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":118162,"modificationDate":"2014-11-10"}, -{"geonameId":"4672989","name":"Beaumont","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":118129,"modificationDate":"2017-03-09"}, -{"geonameId":"2347954","name":"Bama","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":118121,"modificationDate":"2016-06-22"}, -{"geonameId":"2337659","name":"Ilobu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":118089,"modificationDate":"2016-01-30"}, -{"geonameId":"4013720","name":"Ciudad Delicias","countryName":"Mexico","timeZoneName":"America/Chihuahua","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":118071,"modificationDate":"2018-11-03"}, -{"geonameId":"1269065","name":"Jetpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":118068,"modificationDate":"2014-10-13"}, -{"geonameId":"1802940","name":"Puning","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":118023,"modificationDate":"2018-12-06"}, -{"geonameId":"1262775","name":"Morbi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":118022,"modificationDate":"2018-05-28"}, -{"geonameId":"3688256","name":"Guadalajara de Buga","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":118004,"modificationDate":"2018-09-05"}, -{"geonameId":"481453","name":"Troparëvo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":118000,"modificationDate":"2016-04-06"}, -{"geonameId":"1608534","name":"Nakhon Pathom","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":117927,"modificationDate":"2012-01-16"}, -{"geonameId":"1260173","name":"Pātan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":117863,"modificationDate":"2014-10-13"}, -{"geonameId":"2924573","name":"Friedrichshain","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":117829,"modificationDate":"2014-04-12"}, -{"geonameId":"2364104","name":"Sokodé","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":117811,"modificationDate":"2012-01-18"}, -{"geonameId":"757026","name":"Tarnów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":117799,"modificationDate":"2019-09-05"}, -{"geonameId":"3654667","name":"Loja","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":117796,"modificationDate":"2017-02-07"}, -{"geonameId":"2649808","name":"Exeter","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":117763,"modificationDate":"2017-06-12"}, -{"geonameId":"2336589","name":"Jalingo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":117757,"modificationDate":"2016-01-30"}, -{"geonameId":"2664454","name":"Västerås","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":117746,"modificationDate":"2019-09-05"}, -{"geonameId":"2315728","name":"Gemena","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":117639,"modificationDate":"2012-04-05"}, -{"geonameId":"1512165","name":"Achinsk","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":117634,"modificationDate":"2019-09-05"}, -{"geonameId":"2034754","name":"Shunyi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":117623,"modificationDate":"2012-09-06"}, -{"geonameId":"2639093","name":"Rotherham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":117618,"modificationDate":"2011-03-03"}, -{"geonameId":"1861749","name":"Ikoma","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":117601,"modificationDate":"2017-07-22"}, -{"geonameId":"3980194","name":"Ciudad de Villa de Álvarez","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":117600,"modificationDate":"2013-08-01"}, -{"geonameId":"3486270","name":"Anaco","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":117596,"modificationDate":"2020-02-02"}, -{"geonameId":"1213500","name":"Tebingtinggi","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":117530,"modificationDate":"2012-01-17"}, -{"geonameId":"3718962","name":"Tigwav","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":117504,"modificationDate":"2017-04-07"}, -{"geonameId":"3666608","name":"Tunja","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":117479,"modificationDate":"2016-01-28"}, -{"geonameId":"2944368","name":"Bremerhaven","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":117446,"modificationDate":"2020-03-08"}, -{"geonameId":"3874787","name":"Punta Arenas","countryName":"Chile","timeZoneName":"America/Punta_Arenas","timeZoneOffsetNameWithoutDst":"GMT-03:00","population":117430,"modificationDate":"2019-09-05"}, -{"geonameId":"596128","name":"Panevėžys","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":117395,"modificationDate":"2015-11-11"}, -{"geonameId":"1309937","name":"Pyin Oo Lwin","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":117303,"modificationDate":"2020-02-01"}, -{"geonameId":"4391812","name":"Independence","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":117255,"modificationDate":"2017-05-23"}, -{"geonameId":"1640581","name":"Kedungwuni","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":117249,"modificationDate":"2012-01-17"}, -{"geonameId":"2112576","name":"Ishinomaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":117233,"modificationDate":"2017-07-22"}, -{"geonameId":"2035966","name":"Longjing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":117185,"modificationDate":"2012-01-18"}, -{"geonameId":"1267016","name":"Khanna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":117137,"modificationDate":"2015-08-07"}, -{"geonameId":"3647444","name":"Calabozo","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":117132,"modificationDate":"2012-01-03"}, -{"geonameId":"2848273","name":"Remscheid","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":117118,"modificationDate":"2019-02-28"}, -{"geonameId":"2262963","name":"Setúbal","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":117110,"modificationDate":"2019-09-14"}, -{"geonameId":"792078","name":"Čačak","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":117072,"modificationDate":"2019-09-05"}, -{"geonameId":"4984247","name":"Ann Arbor","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":117070,"modificationDate":"2017-05-23"}, -{"geonameId":"2223763","name":"Nkongsamba","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":117063,"modificationDate":"2012-01-16"}, -{"geonameId":"2419533","name":"Kindia","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":117062,"modificationDate":"2018-11-21"}, -{"geonameId":"1786731","name":"Qingzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":117056,"modificationDate":"2012-01-18"}, -{"geonameId":"1275218","name":"Botād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":117053,"modificationDate":"2018-05-28"}, -{"geonameId":"1258126","name":"Rishra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":117014,"modificationDate":"2014-10-14"}, -{"geonameId":"6317953","name":"Pinhais","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":117000,"modificationDate":"2012-08-03"}, -{"geonameId":"2491889","name":"Khenchela","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":117000,"modificationDate":"2018-08-08"}, -{"geonameId":"1862302","name":"Hōfu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":116925,"modificationDate":"2017-07-26"}, -{"geonameId":"741100","name":"Ordu","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":116788,"modificationDate":"2019-02-28"}, -{"geonameId":"2042893","name":"Nanpaojin","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":116760,"modificationDate":"2020-06-11"}, -{"geonameId":"2659994","name":"Lausanne","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":116751,"modificationDate":"2019-09-10"}, -{"geonameId":"5345743","name":"El Monte","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":116732,"modificationDate":"2017-03-09"}, -{"geonameId":"4180386","name":"Athens","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":116714,"modificationDate":"2011-05-14"}, -{"geonameId":"2800931","name":"Brugge","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":116709,"modificationDate":"2019-09-05"}, -{"geonameId":"6318694","name":"Simões Filho","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":116662,"modificationDate":"2012-08-03"}, -{"geonameId":"1278083","name":"Azamgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":116644,"modificationDate":"2020-06-16"}, -{"geonameId":"3171168","name":"Pescara","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":116596,"modificationDate":"2018-03-12"}, -{"geonameId":"1184845","name":"Ahmadpur East","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":116579,"modificationDate":"2019-12-06"}, -{"geonameId":"3445487","name":"Varginha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":116571,"modificationDate":"2012-08-03"}, -{"geonameId":"4250542","name":"Springfield","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":116565,"modificationDate":"2019-09-05"}, -{"geonameId":"1518542","name":"Taldykorgan","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":116558,"modificationDate":"2019-09-05"}, -{"geonameId":"2516395","name":"Jaén","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":116557,"modificationDate":"2012-12-15"}, -{"geonameId":"3931276","name":"Puno","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":116552,"modificationDate":"2019-09-05"}, -{"geonameId":"6544099","name":"Moncloa-Aravaca","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":116531,"modificationDate":"2017-05-26"}, -{"geonameId":"2653261","name":"Cheltenham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":116447,"modificationDate":"2017-06-12"}, -{"geonameId":"1252758","name":"Yelahanka","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":116447,"modificationDate":"2015-10-04"}, -{"geonameId":"5120034","name":"Harlem","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":116345,"modificationDate":"2019-11-12"}, -{"geonameId":"1807301","name":"Dasha","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":116307,"modificationDate":"2012-08-04"}, -{"geonameId":"716935","name":"Nyíregyháza","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":116298,"modificationDate":"2019-09-05"}, -{"geonameId":"2033536","name":"Yakeshi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":116284,"modificationDate":"2014-06-26"}, -{"geonameId":"569154","name":"Cherkessk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":116224,"modificationDate":"2016-12-02"}, -{"geonameId":"2522013","name":"Algeciras","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":116209,"modificationDate":"2016-02-12"}, -{"geonameId":"1270801","name":"Gudivāda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":116161,"modificationDate":"2015-09-06"}, -{"geonameId":"1714956","name":"Digos","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":116122,"modificationDate":"2017-12-13"}, -{"geonameId":"1863209","name":"Handa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":116119,"modificationDate":"2017-07-26"}, -{"geonameId":"6318696","name":"Sinop","countryName":"Brazil","timeZoneName":"America/Cuiaba","timeZoneOffsetNameWithoutDst":"Amazon Time","population":116013,"modificationDate":"2013-01-09"}, -{"geonameId":"484912","name":"Taganskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":116000,"modificationDate":"2014-01-31"}, -{"geonameId":"713716","name":"Woroschilowsk","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":116000,"modificationDate":"2020-06-10"}, -{"geonameId":"4724129","name":"Round Rock","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":115997,"modificationDate":"2017-03-09"}, -{"geonameId":"520068","name":"Noginsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":115979,"modificationDate":"2019-09-05"}, -{"geonameId":"2836788","name":"Schöneberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":115976,"modificationDate":"2019-06-21"}, -{"geonameId":"4499379","name":"Wilmington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":115933,"modificationDate":"2019-09-19"}, -{"geonameId":"1717641","name":"Cavite City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":115932,"modificationDate":"2017-12-13"}, -{"geonameId":"6332428","name":"East Harlem","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":115921,"modificationDate":"2019-11-12"}, -{"geonameId":"1816336","name":"Binzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":115893,"modificationDate":"2019-09-05"}, -{"geonameId":"2743856","name":"Zoetermeer","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":115845,"modificationDate":"2017-10-17"}, -{"geonameId":"1238992","name":"Sri Jayewardenepura Kotte","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":115826,"modificationDate":"2018-12-29"}, -{"geonameId":"2686657","name":"Örebro","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":115765,"modificationDate":"2019-09-05"}, -{"geonameId":"5967629","name":"Guelph","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":115760,"modificationDate":"2019-06-10"}, -{"geonameId":"467978","name":"Yelets","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":115688,"modificationDate":"2019-09-05"}, -{"geonameId":"3114256","name":"Parla","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":115611,"modificationDate":"2014-11-17"}, -{"geonameId":"1649881","name":"Batang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":115537,"modificationDate":"2018-04-25"}, -{"geonameId":"511510","name":"Novo-Peredelkino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":115536,"modificationDate":"2014-06-10"}, -{"geonameId":"1277780","name":"Baidyabāti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":115504,"modificationDate":"2014-10-14"}, -{"geonameId":"2327143","name":"Okigwe","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":115499,"modificationDate":"2016-01-30"}, -{"geonameId":"1804169","name":"Lengshuijiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":115399,"modificationDate":"2012-01-18"}, -{"geonameId":"1791536","name":"Tianfu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":115370,"modificationDate":"2019-09-04"}, -{"geonameId":"5412199","name":"Arvada","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":115368,"modificationDate":"2017-03-09"}, -{"geonameId":"1055429","name":"Toliara","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":115319,"modificationDate":"2018-09-07"}, -{"geonameId":"2472706","name":"Bizerte","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":115268,"modificationDate":"2018-08-26"}, -{"geonameId":"5780026","name":"Provo","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":115264,"modificationDate":"2017-03-09"}, -{"geonameId":"3452525","name":"Pouso Alegre","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":115201,"modificationDate":"2012-08-03"}, -{"geonameId":"1276736","name":"Basti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":115115,"modificationDate":"2020-06-10"}, -{"geonameId":"1680932","name":"Tuguegarao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":115105,"modificationDate":"2017-12-13"}, -{"geonameId":"4905687","name":"Peoria","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":115070,"modificationDate":"2017-05-23"}, -{"geonameId":"4998830","name":"Lansing","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":115056,"modificationDate":"2019-09-05"}, -{"geonameId":"1791544","name":"Wenchang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":115000,"modificationDate":"2017-09-12"}, -{"geonameId":"690548","name":"Uzhgorod","countryName":"Ukraine","timeZoneName":"Europe/Uzhgorod","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":114897,"modificationDate":"2020-05-07"}, -{"geonameId":"1147290","name":"Balkh","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":114883,"modificationDate":"2018-02-17"}, -{"geonameId":"2644487","name":"Lincoln","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":114879,"modificationDate":"2019-09-05"}, -{"geonameId":"1800498","name":"Mingshui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":114858,"modificationDate":"2012-01-18"}, -{"geonameId":"684039","name":"Botoşani","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":114783,"modificationDate":"2019-04-18"}, -{"geonameId":"1218667","name":"Mary","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":114680,"modificationDate":"2012-01-17"}, -{"geonameId":"1567788","name":"Sok Trang","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":114453,"modificationDate":"2020-06-09"}, -{"geonameId":"2191562","name":"Dunedin","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":114347,"modificationDate":"2017-12-09"}, -{"geonameId":"1277599","name":"Balasore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":114321,"modificationDate":"2014-10-14"}, -{"geonameId":"1632998","name":"Pamanukan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":114290,"modificationDate":"2012-01-17"}, -{"geonameId":"3463690","name":"Eunápolis","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":114275,"modificationDate":"2017-03-23"}, -{"geonameId":"1569684","name":"Pleiku","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":114225,"modificationDate":"2012-01-16"}, -{"geonameId":"5343858","name":"Downey","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":114219,"modificationDate":"2017-03-09"}, -{"geonameId":"5992500","name":"Kingston","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":114195,"modificationDate":"2014-05-11"}, -{"geonameId":"1785545","name":"Yuyao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":114177,"modificationDate":"2018-12-06"}, -{"geonameId":"3182164","name":"Bergamo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":114162,"modificationDate":"2018-03-12"}, -{"geonameId":"1628453","name":"Sawangan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":114069,"modificationDate":"2018-05-09"}, -{"geonameId":"1272842","name":"Dharmavaram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":114050,"modificationDate":"2015-10-04"}, -{"geonameId":"300822","name":"Siirt","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":114034,"modificationDate":"2019-09-05"}, -{"geonameId":"315373","name":"Erzincan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":114027,"modificationDate":"2015-02-07"}, -{"geonameId":"2419992","name":"Kankan","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":114009,"modificationDate":"2012-06-15"}, -{"geonameId":"4012406","name":"San Antonio de los Arenales","countryName":"Mexico","timeZoneName":"America/Chihuahua","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":114007,"modificationDate":"2020-06-10"}, -{"geonameId":"3427408","name":"Villa Lugano","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":114000,"modificationDate":"2017-05-08"}, -{"geonameId":"1281019","name":"Hotan","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":114000,"modificationDate":"2014-04-30"}, -{"geonameId":"516264","name":"Ochakovo-Matveyevskoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":114000,"modificationDate":"2013-04-02"}, -{"geonameId":"2491191","name":"Laghouat","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":113872,"modificationDate":"2018-08-08"}, -{"geonameId":"3469136","name":"Botucatu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":113862,"modificationDate":"2012-03-10"}, -{"geonameId":"1264111","name":"Māler Kotla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":113840,"modificationDate":"2014-10-14"}, -{"geonameId":"3995019","name":"Navojoa","countryName":"Mexico","timeZoneName":"America/Hermosillo","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":113836,"modificationDate":"2018-11-03"}, -{"geonameId":"2327879","name":"Offa","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":113830,"modificationDate":"2016-01-30"}, -{"geonameId":"1489530","name":"Tobol’sk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":113800,"modificationDate":"2017-01-21"}, -{"geonameId":"1252942","name":"Wardha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":113759,"modificationDate":"2015-08-07"}, -{"geonameId":"1798713","name":"Pingshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":113631,"modificationDate":"2012-01-18"}, -{"geonameId":"3348078","name":"Cuito","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":113624,"modificationDate":"2013-06-04"}, -{"geonameId":"2035399","name":"Songyuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":113611,"modificationDate":"2018-12-06"}, -{"geonameId":"1801615","name":"Maba","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":113609,"modificationDate":"2012-01-18"}, -{"geonameId":"3460170","name":"Jandira","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":113605,"modificationDate":"2012-08-03"}, -{"geonameId":"1714201","name":"Dumaguete","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":113541,"modificationDate":"2017-12-13"}, -{"geonameId":"7284830","name":"Budapest XIII. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":113531,"modificationDate":"2019-09-23"}, -{"geonameId":"2862375","name":"Nippes","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":113487,"modificationDate":"2015-03-19"}, -{"geonameId":"1856977","name":"Mishima","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":113479,"modificationDate":"2017-07-22"}, -{"geonameId":"5334223","name":"Carlsbad","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":113453,"modificationDate":"2017-03-09"}, -{"geonameId":"3101619","name":"Chorzów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":113430,"modificationDate":"2019-09-05"}, -{"geonameId":"909863","name":"Luanshya","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":113365,"modificationDate":"2012-01-17"}, -{"geonameId":"3374333","name":"Praia","countryName":"Cabo Verde","timeZoneName":"Atlantic/Cape_Verde","timeZoneOffsetNameWithoutDst":"Cape Verde Time","population":113364,"modificationDate":"2019-09-05"}, -{"geonameId":"5116495","name":"Elmhurst","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":113364,"modificationDate":"2017-04-16"}, -{"geonameId":"5339840","name":"Costa Mesa","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":113204,"modificationDate":"2017-03-09"}, -{"geonameId":"1268936","name":"Jhunjhunūn","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":113193,"modificationDate":"2014-10-14"}, -{"geonameId":"4164167","name":"Miami Gardens","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":113187,"modificationDate":"2017-03-09"}, -{"geonameId":"2129537","name":"Kitami","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":113137,"modificationDate":"2017-07-22"}, -{"geonameId":"5443910","name":"Westminster","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":113130,"modificationDate":"2017-03-09"}, -{"geonameId":"4005143","name":"Heroica Guaymas","countryName":"Mexico","timeZoneName":"America/Hermosillo","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":113082,"modificationDate":"2018-11-03"}, -{"geonameId":"2653225","name":"Chesterfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":113057,"modificationDate":"2017-06-12"}, -{"geonameId":"4903976","name":"North Peoria","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":113004,"modificationDate":"2017-05-23"}, -{"geonameId":"4151316","name":"Clearwater","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":113003,"modificationDate":"2017-03-09"}, -{"geonameId":"495344","name":"Shchelkovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":113000,"modificationDate":"2016-05-04"}, -{"geonameId":"5347335","name":"Fairfield","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":112970,"modificationDate":"2017-03-09"}, -{"geonameId":"324190","name":"Alanya","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":112969,"modificationDate":"2018-08-11"}, -{"geonameId":"3557846","name":"Guanabacoa","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":112964,"modificationDate":"2020-02-07"}, -{"geonameId":"1162813","name":"Vihari","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":112840,"modificationDate":"2019-12-06"}, -{"geonameId":"2034497","name":"Guangming","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":112819,"modificationDate":"2013-06-04"}, -{"geonameId":"1257055","name":"Satara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":112793,"modificationDate":"2016-06-21"}, -{"geonameId":"2982652","name":"Rouen","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":112787,"modificationDate":"2019-09-05"}, -{"geonameId":"1809077","name":"Haikou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":112644,"modificationDate":"2012-01-29"}, -{"geonameId":"1274767","name":"Chanduasi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":112635,"modificationDate":"2015-08-07"}, -{"geonameId":"1497917","name":"Nefteyugansk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":112632,"modificationDate":"2014-06-26"}, -{"geonameId":"2847736","name":"Reutlingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":112627,"modificationDate":"2014-01-16"}, -{"geonameId":"5110918","name":"Bushwick","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":112620,"modificationDate":"2017-04-16"}, -{"geonameId":"1795857","name":"Shaowu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":112585,"modificationDate":"2020-05-07"}, -{"geonameId":"1635111","name":"Mojokerto","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":112557,"modificationDate":"2012-01-17"}, -{"geonameId":"667873","name":"Satu Mare","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":112490,"modificationDate":"2019-09-05"}, -{"geonameId":"1566166","name":"Thanh Hóa","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":112473,"modificationDate":"2012-12-09"}, -{"geonameId":"2036337","name":"Kaiyuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":112462,"modificationDate":"2012-01-18"}, -{"geonameId":"1175156","name":"Kamalia","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":112426,"modificationDate":"2019-12-06"}, -{"geonameId":"3640226","name":"Guanare","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":112286,"modificationDate":"2016-01-07"}, -{"geonameId":"5119167","name":"Gravesend","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":112229,"modificationDate":"2017-04-16"}, -{"geonameId":"5043473","name":"Rochester","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":112225,"modificationDate":"2017-05-23"}, -{"geonameId":"1203344","name":"Farīdpur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":112187,"modificationDate":"2018-12-04"}, -{"geonameId":"3587345","name":"Apopa","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":112158,"modificationDate":"2012-01-18"}, -{"geonameId":"1262710","name":"Motihan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":112144,"modificationDate":"2020-06-10"}, -{"geonameId":"1274553","name":"Chās","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":112141,"modificationDate":"2014-10-14"}, -{"geonameId":"625324","name":"Mazyr","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":112137,"modificationDate":"2018-10-26"}, -{"geonameId":"1259297","name":"Pudukkottai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":112118,"modificationDate":"2014-10-14"}, -{"geonameId":"4890864","name":"Elgin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":112111,"modificationDate":"2017-05-23"}, -{"geonameId":"3646382","name":"Carúpano","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":112082,"modificationDate":"2016-02-06"}, -{"geonameId":"1258178","name":"Rewāri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":112079,"modificationDate":"2015-01-07"}, -{"geonameId":"1259385","name":"Port Blair","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":112050,"modificationDate":"2019-09-05"}, -{"geonameId":"3523183","name":"Minatitlán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":112046,"modificationDate":"2018-11-03"}, -{"geonameId":"2343093","name":"Esuk Oron","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":112033,"modificationDate":"2018-07-04"}, -{"geonameId":"2923544","name":"Fürth","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":112025,"modificationDate":"2019-09-05"}, -{"geonameId":"1816790","name":"Beibei","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":112019,"modificationDate":"2012-11-08"}, -{"geonameId":"5401395","name":"Temecula","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":112011,"modificationDate":"2019-02-27"}, -{"geonameId":"5784549","name":"West Jordan","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":111946,"modificationDate":"2017-03-09"}, -{"geonameId":"1586443","name":"Song Kualon","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":111894,"modificationDate":"2020-06-09"}, -{"geonameId":"3451329","name":"Ribeirão Pires","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":111888,"modificationDate":"2012-08-03"}, -{"geonameId":"170592","name":"Douma","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":111864,"modificationDate":"2012-01-17"}, -{"geonameId":"159071","name":"Iringa","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":111820,"modificationDate":"2016-07-26"}, -{"geonameId":"2743477","name":"Zwolle","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":111805,"modificationDate":"2019-09-05"}, -{"geonameId":"518659","name":"Novokuybyshevsk","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":111800,"modificationDate":"2019-09-05"}, -{"geonameId":"119115","name":"Gochan","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":111752,"modificationDate":"2020-06-10"}, -{"geonameId":"1255344","name":"Suriāpet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":111729,"modificationDate":"2018-05-28"}, -{"geonameId":"1241622","name":"Kandy","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":111701,"modificationDate":"2019-09-05"}, -{"geonameId":"1277324","name":"Bangaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":111693,"modificationDate":"2014-10-14"}, -{"geonameId":"5359488","name":"Inglewood","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":111666,"modificationDate":"2017-03-09"}, -{"geonameId":"702972","name":"Lisichansk","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":111600,"modificationDate":"2020-06-10"}, -{"geonameId":"3465644","name":"Conselheiro Lafaiete","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":111596,"modificationDate":"2012-08-03"}, -{"geonameId":"1274337","name":"Chhatarpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":111594,"modificationDate":"2015-08-07"}, -{"geonameId":"460413","name":"Daugavpils","countryName":"Latvia","timeZoneName":"Europe/Riga","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":111564,"modificationDate":"2019-09-05"}, -{"geonameId":"3451668","name":"Resende","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":111514,"modificationDate":"2020-03-21"}, -{"geonameId":"2653266","name":"Chelmsford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":111511,"modificationDate":"2017-06-12"}, -{"geonameId":"124620","name":"Masjid-i-Sulaiman","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":111510,"modificationDate":"2020-06-10"}, -{"geonameId":"1646492","name":"Cileunyi","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":111476,"modificationDate":"2012-01-17"}, -{"geonameId":"7302861","name":"Ashoknagar Kalyangarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":111475,"modificationDate":"2014-10-14"}, -{"geonameId":"1636884","name":"Magelang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":111461,"modificationDate":"2012-01-17"}, -{"geonameId":"2991214","name":"Mulhouse","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":111430,"modificationDate":"2020-03-21"}, -{"geonameId":"3835994","name":"Santa Rosa","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":111424,"modificationDate":"2016-01-30"}, -{"geonameId":"934765","name":"Beau Bassin-Rose Hill","countryName":"Mauritius","timeZoneName":"Indian/Mauritius","timeZoneOffsetNameWithoutDst":"Mauritius Time","population":111355,"modificationDate":"2017-09-15"}, -{"geonameId":"2227613","name":"Mbouda","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":111320,"modificationDate":"2014-06-04"}, -{"geonameId":"3471697","name":"Araucária","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":111302,"modificationDate":"2012-08-03"}, -{"geonameId":"1279390","name":"Achalpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":111278,"modificationDate":"2015-08-07"}, -{"geonameId":"1261669","name":"Nadia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":111123,"modificationDate":"2020-06-10"}, -{"geonameId":"2328684","name":"Nsukka","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":111017,"modificationDate":"2016-01-30"}, -{"geonameId":"2328952","name":"Nguru","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":111014,"modificationDate":"2016-06-22"}, -{"geonameId":"1812228","name":"Dongtai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":110988,"modificationDate":"2012-01-18"}, -{"geonameId":"1276856","name":"Bārsi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":110983,"modificationDate":"2016-07-04"}, -{"geonameId":"3471335","name":"Atibaia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":110968,"modificationDate":"2017-09-02"}, -{"geonameId":"3445446","name":"Várzea Paulista","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":110936,"modificationDate":"2012-08-03"}, -{"geonameId":"1862636","name":"Hikone","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":110925,"modificationDate":"2017-07-22"}, -{"geonameId":"1811729","name":"Encheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":110921,"modificationDate":"2013-10-05"}, -{"geonameId":"738618","name":"Turhal","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":110884,"modificationDate":"2014-06-27"}, -{"geonameId":"141679","name":"Pehlevi","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":110826,"modificationDate":"2020-06-10"}, -{"geonameId":"4722625","name":"Richardson","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":110815,"modificationDate":"2017-03-09"}, -{"geonameId":"2339631","name":"Hadejia","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":110753,"modificationDate":"2016-06-22"}, -{"geonameId":"1783940","name":"Zhuji","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":110721,"modificationDate":"2012-01-18"}, -{"geonameId":"2987914","name":"Perpignan","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":110706,"modificationDate":"2019-09-05"}, -{"geonameId":"4942618","name":"Lowell","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":110699,"modificationDate":"2017-05-23"}, -{"geonameId":"4385018","name":"East Independence","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":110675,"modificationDate":"2017-05-23"}, -{"geonameId":"700051","name":"Nikopol","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":110669,"modificationDate":"2020-05-24"}, -{"geonameId":"3029241","name":"Caen","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":110624,"modificationDate":"2019-09-05"}, -{"geonameId":"1285173","name":"Yenangyaung","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":110553,"modificationDate":"2016-06-01"}, -{"geonameId":"5729485","name":"Gresham","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":110553,"modificationDate":"2017-03-09"}, -{"geonameId":"5324200","name":"Antioch","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":110542,"modificationDate":"2017-03-09"}, -{"geonameId":"934995","name":"Manzini","countryName":"Eswatini","timeZoneName":"Africa/Mbabane","timeZoneOffsetNameWithoutDst":"South Africa Time","population":110537,"modificationDate":"2013-04-13"}, -{"geonameId":"6615440","name":"Delicias","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":110520,"modificationDate":"2011-09-02"}, -{"geonameId":"712451","name":"Berdyansk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":110455,"modificationDate":"2020-05-21"}, -{"geonameId":"4931972","name":"Cambridge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":110402,"modificationDate":"2019-09-05"}, -{"geonameId":"1255491","name":"Sultānpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":110368,"modificationDate":"2015-08-07"}, -{"geonameId":"2208032","name":"Tauranga","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":110338,"modificationDate":"2019-02-27"}, -{"geonameId":"4471025","name":"High Point","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":110268,"modificationDate":"2017-05-23"}, -{"geonameId":"5640350","name":"Billings","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":110263,"modificationDate":"2017-03-09"}, -{"geonameId":"5089178","name":"Manchester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":110229,"modificationDate":"2017-05-23"}, -{"geonameId":"1859405","name":"Kiryū","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":110219,"modificationDate":"2019-02-28"}, -{"geonameId":"1639362","name":"Kresek","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":110182,"modificationDate":"2012-01-17"}, -{"geonameId":"618577","name":"Bender","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":110175,"modificationDate":"2019-09-05"}, -{"geonameId":"971534","name":"Nelspruit","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":110159,"modificationDate":"2013-03-02"}, -{"geonameId":"1646034","name":"Citeureup","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":110155,"modificationDate":"2012-01-17"}, -{"geonameId":"3399058","name":"Garanhuns","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":110085,"modificationDate":"2016-06-22"}, -{"geonameId":"2468369","name":"Tacape","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":110075,"modificationDate":"2020-06-10"}, -{"geonameId":"1803367","name":"Qingnian","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":110046,"modificationDate":"2014-07-08"}, -{"geonameId":"6947756","name":"Mendip","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":110000,"modificationDate":"2018-07-03"}, -{"geonameId":"99135","name":"Kufa","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":110000,"modificationDate":"2019-09-05"}, -{"geonameId":"933945","name":"Vacoas","countryName":"Mauritius","timeZoneName":"Indian/Mauritius","timeZoneOffsetNameWithoutDst":"Mauritius Time","population":110000,"modificationDate":"2013-06-05"}, -{"geonameId":"1028079","name":"Ressano Garcia","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":110000,"modificationDate":"2013-05-05"}, -{"geonameId":"1496503","name":"Noyabrsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":110000,"modificationDate":"2013-12-01"}, -{"geonameId":"2208485","name":"Zliten","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":109972,"modificationDate":"2013-08-13"}, -{"geonameId":"1783988","name":"Mizhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":109968,"modificationDate":"2014-03-06"}, -{"geonameId":"578740","name":"Bataysk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":109962,"modificationDate":"2012-01-17"}, -{"geonameId":"1803352","name":"Linshui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":109955,"modificationDate":"2006-01-17"}, -{"geonameId":"2037069","name":"Hailun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":109881,"modificationDate":"2013-04-03"}, -{"geonameId":"1278815","name":"Ambur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":109873,"modificationDate":"2014-10-14"}, -{"geonameId":"3050434","name":"Kecskemét","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":109847,"modificationDate":"2018-01-26"}, -{"geonameId":"1538637","name":"Seversk","countryName":"Russia","timeZoneName":"Asia/Tomsk","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":109844,"modificationDate":"2019-09-05"}, -{"geonameId":"1043893","name":"Lichinga","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":109839,"modificationDate":"2012-01-19"}, -{"geonameId":"5375911","name":"Murrieta","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":109830,"modificationDate":"2017-06-26"}, -{"geonameId":"5416541","name":"Centennial","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":109741,"modificationDate":"2017-03-09"}, -{"geonameId":"1795184","name":"Shilong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":109733,"modificationDate":"2012-06-05"}, -{"geonameId":"5387428","name":"Richmond","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":109708,"modificationDate":"2017-03-09"}, -{"geonameId":"2393693","name":"Kandi","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":109701,"modificationDate":"2012-01-18"}, -{"geonameId":"5113779","name":"Corona","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":109698,"modificationDate":"2018-03-29"}, -{"geonameId":"3471715","name":"Araruama","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":109637,"modificationDate":"2012-08-03"}, -{"geonameId":"2034440","name":"Tieli","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":109636,"modificationDate":"2013-05-07"}, -{"geonameId":"3466692","name":"Catanduva","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":109612,"modificationDate":"2012-08-03"}, -{"geonameId":"6949678","name":"Taitung City","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":109584,"modificationDate":"2017-09-27"}, -{"geonameId":"2037685","name":"Dongxing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":109561,"modificationDate":"2013-05-08"}, -{"geonameId":"580724","name":"Arzamas","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":109479,"modificationDate":"2019-09-05"}, -{"geonameId":"965528","name":"Phalaborwa","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":109468,"modificationDate":"2012-07-12"}, -{"geonameId":"2036973","name":"Heihe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":109427,"modificationDate":"2017-07-21"}, -{"geonameId":"5435464","name":"Pueblo","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":109412,"modificationDate":"2017-03-09"}, -{"geonameId":"1784841","name":"Zhaotong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":109400,"modificationDate":"2012-01-18"}, -{"geonameId":"1269939","name":"Hoshangābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":109358,"modificationDate":"2015-08-07"}, -{"geonameId":"2543549","name":"Larache","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":109294,"modificationDate":"2016-11-02"}, -{"geonameId":"2338403","name":"Ijebu-Igbo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":109261,"modificationDate":"2016-01-30"}, -{"geonameId":"496638","name":"Sergiyev Posad","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":109252,"modificationDate":"2012-01-17"}, -{"geonameId":"3691148","name":"Tumbes","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":109223,"modificationDate":"2019-09-05"}, -{"geonameId":"910111","name":"Livingstone","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":109203,"modificationDate":"2016-06-03"}, -{"geonameId":"3836669","name":"San Rafael","countryName":"Argentina","timeZoneName":"America/Argentina/Mendoza","timeZoneOffsetNameWithoutDst":"Argentina Time","population":109163,"modificationDate":"2016-01-30"}, -{"geonameId":"2396518","name":"Port-Gentil","countryName":"Gabon","timeZoneName":"Africa/Libreville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":109163,"modificationDate":"2011-08-25"}, -{"geonameId":"2036671","name":"Hulan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":109104,"modificationDate":"2012-01-18"}, -{"geonameId":"3617708","name":"Matagalpa","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":109089,"modificationDate":"2012-01-14"}, -{"geonameId":"1858910","name":"Komatsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":109045,"modificationDate":"2017-07-22"}, -{"geonameId":"1500665","name":"Leninsk-Kuznetsky","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":109023,"modificationDate":"2019-09-05"}, -{"geonameId":"1786546","name":"Zhongxiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":108883,"modificationDate":"2016-04-08"}, -{"geonameId":"3462964","name":"Franco da Rocha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":108858,"modificationDate":"2012-08-03"}, -{"geonameId":"1861164","name":"Iwatsuki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":108833,"modificationDate":"2017-04-09"}, -{"geonameId":"4718097","name":"Pearland","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":108821,"modificationDate":"2017-03-09"}, -{"geonameId":"2037712","name":"Dehui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":108818,"modificationDate":"2012-01-18"}, -{"geonameId":"4845193","name":"Waterbury","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":108802,"modificationDate":"2017-05-23"}, -{"geonameId":"3031137","name":"Boulogne-Billancourt","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":108782,"modificationDate":"2019-04-10"}, -{"geonameId":"3096880","name":"Kalisz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":108759,"modificationDate":"2019-09-05"}, -{"geonameId":"2544001","name":"Ksar El Kebir","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":108753,"modificationDate":"2016-11-04"}, -{"geonameId":"1028918","name":"Pemba","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":108737,"modificationDate":"2019-04-20"}, -{"geonameId":"6076211","name":"Moncton","countryName":"Canada","timeZoneName":"America/Moncton","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":108620,"modificationDate":"2019-08-08"}, -{"geonameId":"1256949","name":"Sawāi Mādhopur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":108612,"modificationDate":"2014-10-14"}, -{"geonameId":"2319668","name":"Uromi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":108608,"modificationDate":"2016-01-30"}, -{"geonameId":"1283460","name":"Dharan","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":108600,"modificationDate":"2020-06-10"}, -{"geonameId":"1264621","name":"Madanapalle","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":108593,"modificationDate":"2014-10-10"}, -{"geonameId":"158151","name":"Katumba","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":108558,"modificationDate":"2016-07-26"}, -{"geonameId":"5407933","name":"West Covina","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":108484,"modificationDate":"2017-03-09"}, -{"geonameId":"5503766","name":"Enterprise","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":108481,"modificationDate":"2011-05-14"}, -{"geonameId":"1277240","name":"Bansberia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":108474,"modificationDate":"2020-06-10"}, -{"geonameId":"3682018","name":"Girón","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":108466,"modificationDate":"2018-09-05"}, -{"geonameId":"2453348","name":"Mopti","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":108456,"modificationDate":"2012-05-31"}, -{"geonameId":"1147540","name":"Bagolaggo","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":108449,"modificationDate":"2020-06-09"}, -{"geonameId":"3529986","name":"Cuautitlán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":108449,"modificationDate":"2018-11-03"}, -{"geonameId":"1226260","name":"Trincomalee","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":108420,"modificationDate":"2019-09-05"}, -{"geonameId":"1687801","name":"Santiago","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":108414,"modificationDate":"2017-12-13"}, -{"geonameId":"2651621","name":"Dagenham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":108368,"modificationDate":"2012-04-27"}, -{"geonameId":"4589387","name":"North Charleston","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":108304,"modificationDate":"2017-03-09"}, -{"geonameId":"286282","name":"Sohar","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":108274,"modificationDate":"2017-05-24"}, -{"geonameId":"2035610","name":"Nehe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":108253,"modificationDate":"2014-06-27"}, -{"geonameId":"1500973","name":"Kyzyl","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":108240,"modificationDate":"2019-09-05"}, -{"geonameId":"3468615","name":"Cabo Frio","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":108239,"modificationDate":"2020-03-21"}, -{"geonameId":"515879","name":"Oktyabrsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":108200,"modificationDate":"2020-06-10"}, -{"geonameId":"1255264","name":"Tādepallegūdem","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":108167,"modificationDate":"2015-09-06"}, -{"geonameId":"1650077","name":"Banyuwangi","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":108166,"modificationDate":"2017-11-12"}, -{"geonameId":"2347059","name":"Birnin Kebbi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":108164,"modificationDate":"2016-06-22"}, -{"geonameId":"1798760","name":"Pingliang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":108156,"modificationDate":"2013-05-07"}, -{"geonameId":"1688253","name":"Santa Cruz","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":108145,"modificationDate":"2017-12-13"}, -{"geonameId":"2062338","name":"Rockingham","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":108022,"modificationDate":"2019-07-20"}, -{"geonameId":"5793933","name":"Everett","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":108010,"modificationDate":"2017-03-09"}, -{"geonameId":"378699","name":"Nahad","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":108008,"modificationDate":"2020-06-11"}, -{"geonameId":"378231","name":"Atbara","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":107930,"modificationDate":"2012-01-28"}, -{"geonameId":"1815251","name":"Jiangyin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":107918,"modificationDate":"2014-11-05"}, -{"geonameId":"1591474","name":"Bak Lieu","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":107911,"modificationDate":"2020-06-09"}, -{"geonameId":"4682464","name":"College Station","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":107889,"modificationDate":"2017-03-09"}, -{"geonameId":"4167499","name":"Palm Bay","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":107888,"modificationDate":"2017-03-09"}, -{"geonameId":"1269388","name":"Jalpāiguri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":107832,"modificationDate":"2014-10-14"}, -{"geonameId":"2036595","name":"Jalai Nur","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":107828,"modificationDate":"2014-06-26"}, -{"geonameId":"1851193","name":"Tajimi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":107818,"modificationDate":"2017-07-22"}, -{"geonameId":"2870221","name":"Moers","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":107816,"modificationDate":"2019-09-05"}, -{"geonameId":"4169014","name":"Pompano Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":107762,"modificationDate":"2017-03-09"}, -{"geonameId":"3114965","name":"Ourense","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":107742,"modificationDate":"2013-07-22"}, -{"geonameId":"3925033","name":"Ji Paraná","countryName":"Brazil","timeZoneName":"America/Porto_Velho","timeZoneOffsetNameWithoutDst":"Amazon Time","population":107697,"modificationDate":"2013-05-30"}, -{"geonameId":"2656192","name":"Basingstoke","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":107642,"modificationDate":"2017-06-12"}, -{"geonameId":"751077","name":"Panormus","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":107631,"modificationDate":"2020-06-10"}, -{"geonameId":"3906194","name":"Sacaba","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":107628,"modificationDate":"2017-12-06"}, -{"geonameId":"2643179","name":"Maidstone","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":107627,"modificationDate":"2017-06-12"}, -{"geonameId":"89824","name":"Um Kasr","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":107620,"modificationDate":"2020-06-10"}, -{"geonameId":"1735076","name":"Butterworth","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":107591,"modificationDate":"2017-12-17"}, -{"geonameId":"1795842","name":"Shaping","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":107589,"modificationDate":"2013-10-05"}, -{"geonameId":"668872","name":"Râmnicu Vâlcea","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":107558,"modificationDate":"2019-04-18"}, -{"geonameId":"3130583","name":"Alcobendas","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":107514,"modificationDate":"2013-08-24"}, -{"geonameId":"3471758","name":"Araras","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":107463,"modificationDate":"2012-08-03"}, -{"geonameId":"3095049","name":"Koszalin","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":107450,"modificationDate":"2019-09-05"}, -{"geonameId":"3453406","name":"Poá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":107432,"modificationDate":"2012-08-03"}, -{"geonameId":"1337248","name":"Sherpur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":107419,"modificationDate":"2016-11-17"}, -{"geonameId":"516436","name":"Obninsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":107392,"modificationDate":"2019-09-05"}, -{"geonameId":"3384987","name":"Vitória de Santo Antão","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":107383,"modificationDate":"2012-08-03"}, -{"geonameId":"150006","name":"Shinyanga","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":107362,"modificationDate":"2016-07-26"}, -{"geonameId":"5574991","name":"Boulder","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":107349,"modificationDate":"2017-03-09"}, -{"geonameId":"3445782","name":"Umuarama","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":107319,"modificationDate":"2016-08-03"}, -{"geonameId":"2886946","name":"Koblenz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":107319,"modificationDate":"2019-09-05"}, -{"geonameId":"2832495","name":"Siegen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":107242,"modificationDate":"2015-09-04"}, -{"geonameId":"1283613","name":"Bharatpur","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":107157,"modificationDate":"2019-10-18"}, -{"geonameId":"288955","name":"As Suwayq","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":107143,"modificationDate":"2018-01-10"}, -{"geonameId":"5377995","name":"Norwalk","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":107140,"modificationDate":"2017-03-09"}, -{"geonameId":"3164419","name":"Vicenza","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":107129,"modificationDate":"2014-04-13"}, -{"geonameId":"3111933","name":"Reus","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":107118,"modificationDate":"2018-03-09"}, -{"geonameId":"1861864","name":"Iida","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":107111,"modificationDate":"2017-07-22"}, -{"geonameId":"215976","name":"Ilebo","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":107093,"modificationDate":"2017-07-10"}, -{"geonameId":"3471910","name":"Apucarana","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":107085,"modificationDate":"2012-08-03"}, -{"geonameId":"1560037","name":"Yên Vinh","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":107082,"modificationDate":"2018-07-03"}, -{"geonameId":"789225","name":"Mitrovicë","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":107045,"modificationDate":"2015-02-22"}, -{"geonameId":"2636486","name":"Sutton Coldfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":107030,"modificationDate":"2013-07-11"}, -{"geonameId":"2558470","name":"Khemisset","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":106991,"modificationDate":"2016-11-02"}, -{"geonameId":"563514","name":"Elista","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":106971,"modificationDate":"2019-09-05"}, -{"geonameId":"1290596","name":"Taungoo","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":106945,"modificationDate":"2016-06-01"}, -{"geonameId":"2656046","name":"Bedford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":106940,"modificationDate":"2017-06-12"}, -{"geonameId":"3644417","name":"Ejido","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":106915,"modificationDate":"2019-03-28"}, -{"geonameId":"361179","name":"Hawamidyah","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":106841,"modificationDate":"2020-06-11"}, -{"geonameId":"3646190","name":"Catia La Mar","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":106822,"modificationDate":"2018-08-08"}, -{"geonameId":"1803886","name":"Lianran","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":106795,"modificationDate":"2012-01-18"}, -{"geonameId":"4177887","name":"West Palm Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":106779,"modificationDate":"2017-03-09"}, -{"geonameId":"1607017","name":"Rayong","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":106737,"modificationDate":"2015-03-04"}, -{"geonameId":"1274040","name":"Chittaurgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":106710,"modificationDate":"2016-07-04"}, -{"geonameId":"1864031","name":"Fukayachō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":106595,"modificationDate":"2017-04-09"}, -{"geonameId":"569273","name":"Cherëmushki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":106587,"modificationDate":"2016-04-03"}, -{"geonameId":"2740637","name":"Coimbra","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":106582,"modificationDate":"2019-02-26"}, -{"geonameId":"4531405","name":"Broken Arrow","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":106563,"modificationDate":"2017-03-09"}, -{"geonameId":"5341430","name":"Daly City","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":106562,"modificationDate":"2017-03-09"}, -{"geonameId":"2694762","name":"Linköping","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":106502,"modificationDate":"2019-09-05"}, -{"geonameId":"1646678","name":"Cikarang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":106479,"modificationDate":"2018-04-24"}, -{"geonameId":"2035970","name":"Longjiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":106384,"modificationDate":"2013-04-03"}, -{"geonameId":"1897118","name":"Hwado","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":106358,"modificationDate":"2018-12-05"}, -{"geonameId":"1816221","name":"Buhe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":106347,"modificationDate":"2012-01-18"}, -{"geonameId":"2324857","name":"Pindiga","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":106322,"modificationDate":"2016-10-08"}, -{"geonameId":"2790471","name":"Namur","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":106284,"modificationDate":"2019-09-05"}, -{"geonameId":"1271662","name":"Gangavati","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":106250,"modificationDate":"2020-06-10"}, -{"geonameId":"688105","name":"Yevpatoriya","countryName":"Ukraine","timeZoneName":"Europe/Simferopol","timeZoneOffsetNameWithoutDst":"Moscow Time","population":106202,"modificationDate":"2017-02-22"}, -{"geonameId":"517836","name":"Novotroitsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":106186,"modificationDate":"2019-09-05"}, -{"geonameId":"2950349","name":"Bergisch Gladbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":106184,"modificationDate":"2018-03-09"}, -{"geonameId":"2160517","name":"Launceston","countryName":"Australia","timeZoneName":"Australia/Hobart","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":106153,"modificationDate":"2019-07-20"}, -{"geonameId":"3450269","name":"Santa Cruz do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":106113,"modificationDate":"2019-10-31"}, -{"geonameId":"3093692","name":"Legnica","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":106033,"modificationDate":"2019-09-05"}, -{"geonameId":"295620","name":"Ashkelon","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":105995,"modificationDate":"2017-11-10"}, -{"geonameId":"6354908","name":"Sydney","countryName":"Canada","timeZoneName":"America/Glace_Bay","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":105968,"modificationDate":"2019-09-19"}, -{"geonameId":"566532","name":"Derbent","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":105965,"modificationDate":"2019-09-05"}, -{"geonameId":"1784820","name":"Xinghua","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":105918,"modificationDate":"2012-01-18"}, -{"geonameId":"1266607","name":"Khurja","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":105909,"modificationDate":"2015-08-07"}, -{"geonameId":"1700360","name":"Mati","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":105908,"modificationDate":"2017-12-13"}, -{"geonameId":"3461859","name":"Guaratinguetá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":105880,"modificationDate":"2017-09-19"}, -{"geonameId":"1651226","name":"Arjawinangun","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":105845,"modificationDate":"2012-01-17"}, -{"geonameId":"665850","name":"Suceava","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":105796,"modificationDate":"2019-09-05"}, -{"geonameId":"2508287","name":"Aïn Beïda","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":105765,"modificationDate":"2013-04-21"}, -{"geonameId":"2348595","name":"Azare","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":105687,"modificationDate":"2016-06-22"}, -{"geonameId":"1671566","name":"Nantou","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":105682,"modificationDate":"2017-09-27"}, -{"geonameId":"1817990","name":"Anqiu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":105665,"modificationDate":"2012-01-18"}, -{"geonameId":"1733953","name":"Lahad Datu","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":105622,"modificationDate":"2018-08-01"}, -{"geonameId":"1259411","name":"Ponnāni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":105512,"modificationDate":"2014-10-13"}, -{"geonameId":"1683013","name":"Tanza","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":105510,"modificationDate":"2017-12-13"}, -{"geonameId":"3632929","name":"Mariara","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":105486,"modificationDate":"2018-08-08"}, -{"geonameId":"1185263","name":"Bhairab Town","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":105457,"modificationDate":"2020-06-10"}, -{"geonameId":"1793036","name":"Chengtangcun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":105456,"modificationDate":"2016-10-08"}, -{"geonameId":"2505653","name":"Baraki","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":105402,"modificationDate":"2020-03-12"}, -{"geonameId":"2990999","name":"Nancy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":105334,"modificationDate":"2019-10-09"}, -{"geonameId":"4221333","name":"Sandy Springs","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":105330,"modificationDate":"2017-03-09"}, -{"geonameId":"5331835","name":"Burbank","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":105319,"modificationDate":"2017-03-09"}, -{"geonameId":"963516","name":"Queenstown","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":105309,"modificationDate":"2012-07-12"}, -{"geonameId":"1580830","name":"Hoa Bin","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":105260,"modificationDate":"2020-06-09"}, -{"geonameId":"697889","name":"Pavlohrad","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":105238,"modificationDate":"2020-05-24"}, -{"geonameId":"5254962","name":"Green Bay","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":105207,"modificationDate":"2017-05-23"}, -{"geonameId":"105299","name":"Jizan","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":105198,"modificationDate":"2014-02-01"}, -{"geonameId":"3515715","name":"Texcoco de Mora","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":105165,"modificationDate":"2018-11-03"}, -{"geonameId":"5393180","name":"Santa Maria","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":105093,"modificationDate":"2017-03-09"}, -{"geonameId":"12157013","name":"San Francisco De Borja","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":105076,"modificationDate":"2020-05-07"}, -{"geonameId":"3458498","name":"Linhares","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":105075,"modificationDate":"2012-08-03"}, -{"geonameId":"3407357","name":"Araguaína","countryName":"Brazil","timeZoneName":"America/Araguaina","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":105019,"modificationDate":"2014-01-01"}, -{"geonameId":"1276895","name":"Barnāla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":105016,"modificationDate":"2015-05-06"}, -{"geonameId":"5404794","name":"Universal City","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":105000,"modificationDate":"2018-04-18"}, -{"geonameId":"3116156","name":"Moratalaz","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":104923,"modificationDate":"2017-05-26"}, -{"geonameId":"1807544","name":"Daxing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":104904,"modificationDate":"2012-09-06"}, -{"geonameId":"4004867","name":"Parral","countryName":"Mexico","timeZoneName":"America/Chihuahua","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":104836,"modificationDate":"2018-11-03"}, -{"geonameId":"141584","name":"Bane","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":104799,"modificationDate":"2020-06-10"}, -{"geonameId":"2641022","name":"Oldham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":104782,"modificationDate":"2010-10-16"}, -{"geonameId":"1665196","name":"Douliu","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":104723,"modificationDate":"2017-09-27"}, -{"geonameId":"2895044","name":"Jena","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":104712,"modificationDate":"2019-09-05"}, -{"geonameId":"4741752","name":"Wichita Falls","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":104710,"modificationDate":"2017-03-09"}, -{"geonameId":"2921232","name":"Gera","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":104659,"modificationDate":"2019-09-05"}, -{"geonameId":"1277976","name":"Badlapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":104636,"modificationDate":"2014-10-13"}, -{"geonameId":"2769359","name":"Ottakring","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":104627,"modificationDate":"2018-07-29"}, -{"geonameId":"99446","name":"Fao Terminal","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":104569,"modificationDate":"2020-06-10"}, -{"geonameId":"1645518","name":"Depok","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":104527,"modificationDate":"2018-12-04"}, -{"geonameId":"3194828","name":"Mostar","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":104518,"modificationDate":"2018-12-29"}, -{"geonameId":"4161438","name":"Lakeland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":104401,"modificationDate":"2017-03-09"}, -{"geonameId":"1516589","name":"Zhezqazghan","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":104357,"modificationDate":"2017-03-17"}, -{"geonameId":"1848445","name":"Honmachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":104341,"modificationDate":"2019-02-28"}, -{"geonameId":"3427833","name":"Tandil","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":104325,"modificationDate":"2015-04-22"}, -{"geonameId":"7281020","name":"Lo Prado","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":104316,"modificationDate":"2012-05-03"}, -{"geonameId":"1798490","name":"Pulandian","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":104277,"modificationDate":"2012-01-18"}, -{"geonameId":"2706767","name":"Helsingborg","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":104250,"modificationDate":"2019-09-05"}, -{"geonameId":"1173378","name":"Kot Addu","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":104217,"modificationDate":"2019-12-06"}, -{"geonameId":"339666","name":"Bishoftu","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":104215,"modificationDate":"2014-11-30"}, -{"geonameId":"2366152","name":"Kara","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":104207,"modificationDate":"2012-01-18"}, -{"geonameId":"5338122","name":"Clovis","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":104180,"modificationDate":"2017-03-09"}, -{"geonameId":"1800829","name":"Wuchuan","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":104168,"modificationDate":"2012-01-18"}, -{"geonameId":"688148","name":"Yenakiyeve","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":104101,"modificationDate":"2016-05-04"}, -{"geonameId":"4706057","name":"Lewisville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":104039,"modificationDate":"2017-03-09"}, -{"geonameId":"2293549","name":"Abengourou","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":104020,"modificationDate":"2016-05-21"}, -{"geonameId":"1861212","name":"Iwakuni","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":104004,"modificationDate":"2017-07-22"}, -{"geonameId":"1430991","name":"Soyībug","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":104000,"modificationDate":"2015-09-06"}, -{"geonameId":"554787","name":"Izmaylovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":104000,"modificationDate":"2013-04-02"}, -{"geonameId":"1503277","name":"Kizelovsk","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":104000,"modificationDate":"2020-06-10"}, -{"geonameId":"986846","name":"Kroonstad","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":103992,"modificationDate":"2012-07-12"}, -{"geonameId":"2036418","name":"Jishu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":103988,"modificationDate":"2012-01-18"}, -{"geonameId":"2649997","name":"Enfield Town","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":103970,"modificationDate":"2015-10-29"}, -{"geonameId":"380173","name":"Ed Damer","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":103941,"modificationDate":"2016-01-07"}, -{"geonameId":"2633709","name":"Woking","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":103932,"modificationDate":"2010-08-03"}, -{"geonameId":"2258261","name":"Dolisie","countryName":"Republic of the Congo","timeZoneName":"Africa/Brazzaville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":103894,"modificationDate":"2013-04-22"}, -{"geonameId":"1258044","name":"Roorkee","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":103894,"modificationDate":"2015-05-06"}, -{"geonameId":"1277939","name":"Bagaha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":103855,"modificationDate":"2019-06-16"}, -{"geonameId":"1784185","name":"Yuxi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":103829,"modificationDate":"2012-01-18"}, -{"geonameId":"2873074","name":"Marzahn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":103768,"modificationDate":"2018-12-17"}, -{"geonameId":"2328811","name":"Nkpor","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":103733,"modificationDate":"2016-01-30"}, -{"geonameId":"1269934","name":"Hosūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":103724,"modificationDate":"2014-10-14"}, -{"geonameId":"4738214","name":"Tyler","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":103700,"modificationDate":"2017-03-09"}, -{"geonameId":"1282027","name":"Male","countryName":"Maldives","timeZoneName":"Indian/Maldives","timeZoneOffsetNameWithoutDst":"Maldives Time","population":103693,"modificationDate":"2017-11-27"}, -{"geonameId":"5345529","name":"El Cajon","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":103679,"modificationDate":"2019-02-27"}, -{"geonameId":"1141857","name":"Gardez","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":103601,"modificationDate":"2018-02-13"}, -{"geonameId":"607610","name":"Zhanaozen","countryName":"Kazakhstan","timeZoneName":"Asia/Aqtau","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":103598,"modificationDate":"2016-12-02"}, -{"geonameId":"358821","name":"Bilqās","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":103596,"modificationDate":"2013-06-05"}, -{"geonameId":"5392423","name":"San Mateo","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":103536,"modificationDate":"2019-02-27"}, -{"geonameId":"1273892","name":"Chūru","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":103533,"modificationDate":"2014-10-14"}, -{"geonameId":"1262209","name":"Nagda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":103501,"modificationDate":"2014-10-14"}, -{"geonameId":"4148757","name":"Brandon","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":103483,"modificationDate":"2011-05-14"}, -{"geonameId":"1631393","name":"Prabumulih","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":103470,"modificationDate":"2013-05-07"}, -{"geonameId":"1607708","name":"Phitsanulok","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":103427,"modificationDate":"2012-01-16"}, -{"geonameId":"1861449","name":"Isehara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":103401,"modificationDate":"2017-07-22"}, -{"geonameId":"2264268","name":"Queluz","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":103399,"modificationDate":"2012-01-17"}, -{"geonameId":"1855189","name":"Nishio","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":103337,"modificationDate":"2017-07-22"}, -{"geonameId":"1562693","name":"Vĩnh Long","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":103314,"modificationDate":"2018-04-01"}, -{"geonameId":"8504958","name":"Akademicheskoe","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":103304,"modificationDate":"2013-03-29"}, -{"geonameId":"298806","name":"Turgutlu","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":103292,"modificationDate":"2013-08-06"}, -{"geonameId":"3464008","name":"Esmeraldas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":103206,"modificationDate":"2012-08-03"}, -{"geonameId":"3595803","name":"Escuintla","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":103165,"modificationDate":"2020-03-08"}, -{"geonameId":"476077","name":"Velikiye Luki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":103149,"modificationDate":"2012-01-17"}, -{"geonameId":"1267579","name":"Kashipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":103138,"modificationDate":"2014-10-14"}, -{"geonameId":"5387288","name":"Rialto","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":103132,"modificationDate":"2017-03-09"}, -{"geonameId":"1271306","name":"Ghazīpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":103095,"modificationDate":"2015-09-06"}, -{"geonameId":"1276609","name":"Begusarai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":103060,"modificationDate":"2014-10-14"}, -{"geonameId":"2338287","name":"Ikere-Ekiti","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":103054,"modificationDate":"2016-01-30"}, -{"geonameId":"2904789","name":"Hildesheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":103052,"modificationDate":"2019-09-05"}, -{"geonameId":"1214073","name":"Rantauprapat","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":103009,"modificationDate":"2018-11-23"}, -{"geonameId":"575505","name":"Bogorodskoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":103000,"modificationDate":"2017-11-17"}, -{"geonameId":"108648","name":"Qurayyat","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":102903,"modificationDate":"2016-10-23"}, -{"geonameId":"3488981","name":"Portmore","countryName":"Jamaica","timeZoneName":"America/Jamaica","timeZoneOffsetNameWithoutDst":"Eastern Time","population":102861,"modificationDate":"2017-03-14"}, -{"geonameId":"3545064","name":"Palma Soriano","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":102826,"modificationDate":"2016-02-07"}, -{"geonameId":"503977","name":"Pushkino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":102816,"modificationDate":"2012-01-17"}, -{"geonameId":"1173687","name":"Khushāb","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":102793,"modificationDate":"2019-12-06"}, -{"geonameId":"2332504","name":"Lafiagi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":102779,"modificationDate":"2016-01-30"}, -{"geonameId":"1215412","name":"Belawan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":102707,"modificationDate":"2012-01-17"}, -{"geonameId":"1691444","name":"Roxas City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":102688,"modificationDate":"2017-12-25"}, -{"geonameId":"670889","name":"Piatra Neamţ","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":102688,"modificationDate":"2016-02-07"}, -{"geonameId":"2929567","name":"Erlangen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":102675,"modificationDate":"2019-09-05"}, -{"geonameId":"3817746","name":"Tepexpan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":102667,"modificationDate":"2018-11-03"}, -{"geonameId":"4853423","name":"Davenport","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":102582,"modificationDate":"2017-03-09"}, -{"geonameId":"2638785","name":"St Helens","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":102555,"modificationDate":"2014-04-28"}, -{"geonameId":"5097529","name":"Edison","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":102548,"modificationDate":"2019-02-27"}, -{"geonameId":"3347762","name":"Lubango","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":102541,"modificationDate":"2020-06-02"}, -{"geonameId":"2425791","name":"Sarh","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":102528,"modificationDate":"2019-03-08"}, -{"geonameId":"1272805","name":"Dhaulpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":102462,"modificationDate":"2014-10-14"}, -{"geonameId":"1162456","name":"Wazirabad","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":102444,"modificationDate":"2019-12-06"}, -{"geonameId":"3892870","name":"Curicó","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":102438,"modificationDate":"2018-02-06"}, -{"geonameId":"3509382","name":"Concepción de La Vega","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":102426,"modificationDate":"2016-06-05"}, -{"geonameId":"1185121","name":"Sahzadpur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":102420,"modificationDate":"2020-06-10"}, -{"geonameId":"3515062","name":"Tulancingo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":102406,"modificationDate":"2018-11-03"}, -{"geonameId":"776251","name":"Bemowo","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":102393,"modificationDate":"2018-01-16"}, -{"geonameId":"6544106","name":"Ciutat Vella","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":102347,"modificationDate":"2017-05-26"}, -{"geonameId":"5731371","name":"Hillsboro","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":102347,"modificationDate":"2017-04-09"}, -{"geonameId":"678817","name":"Drobeta-Turnu Severin","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":102346,"modificationDate":"2019-09-05"}, -{"geonameId":"1263494","name":"Mormugao","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":102345,"modificationDate":"2017-05-24"}, -{"geonameId":"1805270","name":"Qianzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":102332,"modificationDate":"2013-05-07"}, -{"geonameId":"2027456","name":"Artëm","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":102300,"modificationDate":"2018-08-21"}, -{"geonameId":"3469989","name":"Birigui","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":102277,"modificationDate":"2012-08-03"}, -{"geonameId":"479411","name":"Ukhta","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":102187,"modificationDate":"2019-09-05"}, -{"geonameId":"1271883","name":"Ferozepore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":102130,"modificationDate":"2019-03-04"}, -{"geonameId":"1861602","name":"Inazawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":102130,"modificationDate":"2017-07-26"}, -{"geonameId":"1707404","name":"Laoag","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":102105,"modificationDate":"2017-12-13"}, -{"geonameId":"2212771","name":"Şabrātah","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":102038,"modificationDate":"2012-12-05"}, -{"geonameId":"358108","name":"Dessouk","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":102037,"modificationDate":"2020-06-11"}, -{"geonameId":"495136","name":"Shchukino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":102000,"modificationDate":"2013-04-02"}, -{"geonameId":"571741","name":"Brateyevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":102000,"modificationDate":"2016-04-01"}, -{"geonameId":"1019760","name":"Bethal","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":101919,"modificationDate":"2012-07-12"}, -{"geonameId":"1692520","name":"Pulong Santa Cruz","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":101914,"modificationDate":"2017-12-13"}, -{"geonameId":"1626916","name":"Singkawang","countryName":"Indonesia","timeZoneName":"Asia/Pontianak","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":101838,"modificationDate":"2015-11-07"}, -{"geonameId":"3518723","name":"Tuxtepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":101810,"modificationDate":"2018-11-03"}, -{"geonameId":"1270994","name":"Gondal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":101801,"modificationDate":"2014-10-13"}, -{"geonameId":"2510253","name":"Torrevieja","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":101792,"modificationDate":"2019-02-27"}, -{"geonameId":"1624041","name":"Ternate","countryName":"Indonesia","timeZoneName":"Asia/Jayapura","timeZoneOffsetNameWithoutDst":"Eastern Indonesia Time","population":101731,"modificationDate":"2016-01-07"}, -{"geonameId":"6074377","name":"Milton","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":101715,"modificationDate":"2019-09-05"}, -{"geonameId":"1648186","name":"Bontang","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":101691,"modificationDate":"2016-01-07"}, -{"geonameId":"5937615","name":"Delta","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":101668,"modificationDate":"2019-02-26"}, -{"geonameId":"121380","name":"Pārsābād","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":101661,"modificationDate":"2017-02-08"}, -{"geonameId":"2633563","name":"Worcester","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":101659,"modificationDate":"2019-09-05"}, -{"geonameId":"5475352","name":"Las Cruces","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":101643,"modificationDate":"2018-04-09"}, -{"geonameId":"287830","name":"‘Ibrī","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":101640,"modificationDate":"2019-09-27"}, -{"geonameId":"1180281","name":"Dera Ismail Khan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":101616,"modificationDate":"2019-07-11"}, -{"geonameId":"622428","name":"Salihorsk","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":101614,"modificationDate":"2015-11-11"}, -{"geonameId":"3044774","name":"Székesfehérvár","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":101600,"modificationDate":"2019-09-05"}, -{"geonameId":"3471374","name":"Assis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":101597,"modificationDate":"2016-03-07"}, -{"geonameId":"3675595","name":"Malambo","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":101534,"modificationDate":"2018-10-24"}, -{"geonameId":"4926563","name":"South Bend","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":101516,"modificationDate":"2019-09-05"}, -{"geonameId":"1504682","name":"Kansk","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":101502,"modificationDate":"2019-09-05"}, -{"geonameId":"3037044","name":"Argenteuil","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":101475,"modificationDate":"2019-04-10"}, -{"geonameId":"2765028","name":"Simmering","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":101420,"modificationDate":"2018-07-29"}, -{"geonameId":"741385","name":"Kirmasti","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":101412,"modificationDate":"2020-06-10"}, -{"geonameId":"1256826","name":"Seoni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":101379,"modificationDate":"2015-08-07"}, -{"geonameId":"5935277","name":"Dartmouth","countryName":"Canada","timeZoneName":"America/Halifax","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":101343,"modificationDate":"2010-09-22"}, -{"geonameId":"625625","name":"Maladziečna","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":101300,"modificationDate":"2020-05-07"}, -{"geonameId":"1269605","name":"Jagādhri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":101300,"modificationDate":"2015-03-08"}, -{"geonameId":"3069011","name":"Olomouc","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":101268,"modificationDate":"2019-09-05"}, -{"geonameId":"2807363","name":"Witten","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":101247,"modificationDate":"2019-09-05"}, -{"geonameId":"1263012","name":"Miriālgūda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":101234,"modificationDate":"2014-10-10"}, -{"geonameId":"3470451","name":"Barretos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":101220,"modificationDate":"2012-08-03"}, -{"geonameId":"2298330","name":"Medina Estates","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":101207,"modificationDate":"2019-12-05"}, -{"geonameId":"1181636","name":"Chakwal","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":101200,"modificationDate":"2019-12-06"}, -{"geonameId":"2188164","name":"Lower Hutt","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":101194,"modificationDate":"2011-08-01"}, -{"geonameId":"3465944","name":"Colatina","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":101190,"modificationDate":"2012-08-03"}, -{"geonameId":"2648657","name":"Gillingham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":101187,"modificationDate":"2010-08-03"}, -{"geonameId":"3446621","name":"Teófilo Otoni","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":101170,"modificationDate":"2017-07-18"}, -{"geonameId":"1850152","name":"Tokuyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":101133,"modificationDate":"2017-04-09"}, -{"geonameId":"1892823","name":"Tonghae","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":101128,"modificationDate":"2018-07-04"}, -{"geonameId":"616530","name":"Vanadzor","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":101098,"modificationDate":"2019-09-05"}, -{"geonameId":"588335","name":"Tartu","countryName":"Estonia","timeZoneName":"Europe/Tallinn","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":101092,"modificationDate":"2019-02-26"}, -{"geonameId":"964315","name":"Mokopane","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":101090,"modificationDate":"2012-07-12"}, -{"geonameId":"2842150","name":"Salzgitter","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":101079,"modificationDate":"2019-09-05"}, -{"geonameId":"1253958","name":"Udgīr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":101064,"modificationDate":"2014-10-13"}, -{"geonameId":"1680197","name":"Urdaneta","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":101037,"modificationDate":"2017-12-13"}, -{"geonameId":"1498920","name":"Mezhdurechensk","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":101026,"modificationDate":"2019-09-05"}, -{"geonameId":"3473964","name":"Guaíba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":101024,"modificationDate":"2012-08-03"}, -{"geonameId":"1710141","name":"Jolo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":101002,"modificationDate":"2017-12-13"}, -{"geonameId":"508751","name":"Ryazanskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":101000,"modificationDate":"2013-04-02"}, -{"geonameId":"517161","name":"Novyye Cherëmushki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":101000,"modificationDate":"2013-04-02"}, -{"geonameId":"1797551","name":"Qinzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":100996,"modificationDate":"2013-10-05"}, -{"geonameId":"3461888","name":"Guarapari","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":100925,"modificationDate":"2017-07-15"}, -{"geonameId":"3465476","name":"Coronel Fabriciano","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":100916,"modificationDate":"2012-08-03"}, -{"geonameId":"783263","name":"Elbasan","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":100903,"modificationDate":"2017-12-20"}, -{"geonameId":"5406602","name":"Vista","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":100890,"modificationDate":"2017-03-09"}, -{"geonameId":"624784","name":"Navapolatsk","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":100885,"modificationDate":"2012-02-28"}, -{"geonameId":"5577592","name":"Greeley","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":100883,"modificationDate":"2017-03-09"}, -{"geonameId":"4152820","name":"Davie","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":100882,"modificationDate":"2017-03-09"}, -{"geonameId":"2267827","name":"Funchal","countryName":"Portugal","timeZoneName":"Atlantic/Madeira","timeZoneOffsetNameWithoutDst":"Western European Time","population":100847,"modificationDate":"2019-09-05"}, -{"geonameId":"2484620","name":"Oum el Bouaghi","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":100821,"modificationDate":"2018-08-08"}, -{"geonameId":"491023","name":"Solikamsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":100812,"modificationDate":"2019-09-05"}, -{"geonameId":"3610613","name":"El Progreso","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":100810,"modificationDate":"2012-01-18"}, -{"geonameId":"1269374","name":"Jamālpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":100780,"modificationDate":"2014-10-14"}, -{"geonameId":"3460899","name":"Itaguaí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":100752,"modificationDate":"2018-10-17"}, -{"geonameId":"1261931","name":"Nandurbar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":100703,"modificationDate":"2015-08-07"}, -{"geonameId":"362485","name":"Abū Kabīr","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":100684,"modificationDate":"2012-01-19"}, -{"geonameId":"561347","name":"Glazov","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":100676,"modificationDate":"2019-09-05"}, -{"geonameId":"2292852","name":"Anyama","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":100653,"modificationDate":"2016-12-03"}, -{"geonameId":"261414","name":"Kallithéa","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":100641,"modificationDate":"2019-10-23"}, -{"geonameId":"2111684","name":"Narita","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":100641,"modificationDate":"2017-07-22"}, -{"geonameId":"3708306","name":"Juan Díaz","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":100636,"modificationDate":"2017-08-15"}, -{"geonameId":"2176187","name":"Bendigo","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":100617,"modificationDate":"2019-07-20"}, -{"geonameId":"1643761","name":"Grogol","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":100613,"modificationDate":"2018-12-04"}, -{"geonameId":"1861091","name":"Izumisano","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":100595,"modificationDate":"2018-02-22"}, -{"geonameId":"1269653","name":"Itārsi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":100574,"modificationDate":"2014-10-14"}, -{"geonameId":"5336477","name":"Chinatown","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":100574,"modificationDate":"2017-12-06"}, -{"geonameId":"1214369","name":"Padangsidempuan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":100561,"modificationDate":"2016-01-07"}, -{"geonameId":"350789","name":"Qaliub","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":100495,"modificationDate":"2020-06-11"}, -{"geonameId":"1253367","name":"Vasco da Gama","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":100485,"modificationDate":"2017-11-12"}, -{"geonameId":"5530022","name":"San Angelo","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":100450,"modificationDate":"2018-01-13"}, -{"geonameId":"1853140","name":"Sakata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":100446,"modificationDate":"2017-07-22"}, -{"geonameId":"1858836","name":"Kōnan","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":100389,"modificationDate":"2017-07-22"}, -{"geonameId":"1864572","name":"Chikushino-shi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":100353,"modificationDate":"2017-07-22"}, -{"geonameId":"1804120","name":"Lianjiang","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":100341,"modificationDate":"2012-01-18"}, -{"geonameId":"1803334","name":"Linxi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":100316,"modificationDate":"2015-01-07"}, -{"geonameId":"3675692","name":"Mangue","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":100313,"modificationDate":"2020-06-11"}, -{"geonameId":"2244616","name":"Tiébo","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":100289,"modificationDate":"2006-01-17"}, -{"geonameId":"2013952","name":"Ust’-Ilimsk","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":100271,"modificationDate":"2017-01-22"}, -{"geonameId":"5808189","name":"Renton","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":100242,"modificationDate":"2017-03-09"}, -{"geonameId":"737022","name":"Zonguldak","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":100229,"modificationDate":"2019-09-05"}, -{"geonameId":"126409","name":"Kūhdasht","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":100208,"modificationDate":"2014-09-04"}, -{"geonameId":"1242110","name":"Kalmunai","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":100171,"modificationDate":"2018-12-29"}, -{"geonameId":"1259827","name":"Phagwāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":100146,"modificationDate":"2015-09-06"}, -{"geonameId":"2821164","name":"Trier","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":100129,"modificationDate":"2019-09-05"}, -{"geonameId":"3494242","name":"Punta Cana","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":100023,"modificationDate":"2016-06-05"}, -{"geonameId":"2510542","name":"Telde","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":100015,"modificationDate":"2012-03-04"}, -{"geonameId":"3451205","name":"Rio das Ostras","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":100000,"modificationDate":"2014-05-22"}, -{"geonameId":"1785036","name":"Zhangye","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":100000,"modificationDate":"2018-12-06"}, -{"geonameId":"1802171","name":"Kangding","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":100000,"modificationDate":"2018-12-06"}, -{"geonameId":"3569370","name":"Alamar","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":100000,"modificationDate":"2020-02-07"}, -{"geonameId":"2486690","name":"M’Sila","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":100000,"modificationDate":"2018-08-08"}, -{"geonameId":"6690870","name":"Becontree","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":100000,"modificationDate":"2010-05-25"}, -{"geonameId":"1626100","name":"Sumedang Utara","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":100000,"modificationDate":"2017-01-14"}, -{"geonameId":"293253","name":"Jaffa","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":100000,"modificationDate":"2020-05-19"}, -{"geonameId":"7279599","name":"Airoli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":100000,"modificationDate":"2014-10-13"}, -{"geonameId":"1871871","name":"Sanchon","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":100000,"modificationDate":"2020-06-11"}, -{"geonameId":"2210394","name":"Tagiura","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":100000,"modificationDate":"2013-08-13"}, -{"geonameId":"7280711","name":"Colonia Lindavista","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":100000,"modificationDate":"2015-03-22"}, -{"geonameId":"3189595","name":"Subotica","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":100000,"modificationDate":"2016-05-18"}, -{"geonameId":"483826","name":"Sadki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":100000,"modificationDate":"2020-06-10"}, -{"geonameId":"11670045","name":"Sabt Alalayah","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":100000,"modificationDate":"2020-04-28"}, -{"geonameId":"4782167","name":"Roanoke","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":99897,"modificationDate":"2017-03-09"}, -{"geonameId":"5258393","name":"Kenosha","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":99858,"modificationDate":"2017-05-23"}, -{"geonameId":"3440714","name":"Salto","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":99823,"modificationDate":"2012-02-14"}, -{"geonameId":"1849563","name":"Tsuruoka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":99820,"modificationDate":"2017-07-22"}, -{"geonameId":"1611269","name":"Chanthaburi","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":99819,"modificationDate":"2012-01-16"}, -{"geonameId":"1812256","name":"Dongsheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":99809,"modificationDate":"2017-10-31"}, -{"geonameId":"706950","name":"Kamyianets-Podilskyy","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":99755,"modificationDate":"2020-05-12"}, -{"geonameId":"4989133","name":"Clinton Township","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":99753,"modificationDate":"2017-04-24"}, -{"geonameId":"1278715","name":"Amreli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":99742,"modificationDate":"2018-07-13"}, -{"geonameId":"1256529","name":"Shikohābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":99678,"modificationDate":"2015-08-07"}, -{"geonameId":"4352053","name":"Columbia","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":99615,"modificationDate":"2011-05-14"}, -{"geonameId":"463835","name":"Zelenodolsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":99600,"modificationDate":"2019-09-05"}, -{"geonameId":"107797","name":"Dhahran","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":99540,"modificationDate":"2019-09-05"}, -{"geonameId":"167357","name":"Manbij","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":99497,"modificationDate":"2018-10-13"}, -{"geonameId":"3460960","name":"Itabira","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":99496,"modificationDate":"2012-08-03"}, -{"geonameId":"3098218","name":"Grudziądz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":99486,"modificationDate":"2019-09-05"}, -{"geonameId":"2487772","name":"Messaad","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":99485,"modificationDate":"2012-01-19"}, -{"geonameId":"517963","name":"Novoshakhtinsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":99478,"modificationDate":"2012-01-17"}, -{"geonameId":"1861795","name":"Ikeda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":99476,"modificationDate":"2017-07-22"}, -{"geonameId":"5188843","name":"Erie","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":99475,"modificationDate":"2017-05-23"}, -{"geonameId":"1267588","name":"Kāsganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":99462,"modificationDate":"2015-08-07"}, -{"geonameId":"361661","name":"Panospolis","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":99446,"modificationDate":"2020-06-11"}, -{"geonameId":"2035801","name":"Meihekou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":99419,"modificationDate":"2020-06-10"}, -{"geonameId":"3444866","name":"Votorantim","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":99390,"modificationDate":"2012-08-03"}, -{"geonameId":"360716","name":"Matarieh","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":99357,"modificationDate":"2020-06-11"}, -{"geonameId":"2454268","name":"Koutiala","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":99353,"modificationDate":"2013-11-09"}, -{"geonameId":"265488","name":"Acharnés","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":99346,"modificationDate":"2019-10-23"}, -{"geonameId":"6166142","name":"Thunder Bay","countryName":"Canada","timeZoneName":"America/Thunder_Bay","timeZoneOffsetNameWithoutDst":"Eastern Time","population":99334,"modificationDate":"2018-01-20"}, -{"geonameId":"935221","name":"Saint-Paul","countryName":"Reunion","timeZoneName":"Indian/Reunion","timeZoneOffsetNameWithoutDst":"Réunion Time","population":99307,"modificationDate":"2019-02-26"}, -{"geonameId":"1256913","name":"Sehore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":99284,"modificationDate":"2014-10-14"}, -{"geonameId":"63795","name":"Burao","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":99270,"modificationDate":"2014-06-01"}, -{"geonameId":"141736","name":"Bam","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":99268,"modificationDate":"2018-09-14"}, -{"geonameId":"304854","name":"Manavgat","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":99254,"modificationDate":"2013-11-10"}, -{"geonameId":"3447651","name":"Sertãozinho","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":99211,"modificationDate":"2012-08-03"}, -{"geonameId":"6324733","name":"St. John's","countryName":"Canada","timeZoneName":"America/St_Johns","timeZoneOffsetNameWithoutDst":"Newfoundland Time","population":99182,"modificationDate":"2019-09-05"}, -{"geonameId":"888710","name":"Kwekwe","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":99149,"modificationDate":"2012-01-17"}, -{"geonameId":"2633521","name":"Worthing","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":99110,"modificationDate":"2014-09-14"}, -{"geonameId":"1258474","name":"Renibennur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":99105,"modificationDate":"2020-06-10"}, -{"geonameId":"1336136","name":"Bhola","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":99079,"modificationDate":"2020-02-11"}, -{"geonameId":"3691582","name":"Talara","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":99074,"modificationDate":"2012-07-19"}, -{"geonameId":"3181913","name":"Bolzano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":99049,"modificationDate":"2018-03-12"}, -{"geonameId":"4780011","name":"Portsmouth Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":99049,"modificationDate":"2006-01-17"}, -{"geonameId":"1269562","name":"Jagtiāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":99035,"modificationDate":"2018-05-27"}, -{"geonameId":"4018400","name":"Apatzingán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":99010,"modificationDate":"2018-11-03"}, -{"geonameId":"3449948","name":"Santana de Parnaíba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":98989,"modificationDate":"2012-09-27"}, -{"geonameId":"5133825","name":"Richmond Hill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":98984,"modificationDate":"2018-02-06"}, -{"geonameId":"2033766","name":"Xingcheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":98968,"modificationDate":"2012-01-18"}, -{"geonameId":"1803245","name":"Lishui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":98946,"modificationDate":"2012-06-05"}, -{"geonameId":"3471196","name":"Bagé","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":98940,"modificationDate":"2017-06-14"}, -{"geonameId":"746881","name":"Giresun","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":98864,"modificationDate":"2015-09-26"}, -{"geonameId":"2505629","name":"Barika","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":98846,"modificationDate":"2019-09-07"}, -{"geonameId":"498687","name":"Sarapul","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":98830,"modificationDate":"2019-09-05"}, -{"geonameId":"649360","name":"Lahti","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":98826,"modificationDate":"2019-09-05"}, -{"geonameId":"2803560","name":"Zwickau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":98796,"modificationDate":"2019-09-05"}, -{"geonameId":"2334008","name":"Kontagora","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":98754,"modificationDate":"2016-01-30"}, -{"geonameId":"3454847","name":"Passos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":98752,"modificationDate":"2012-08-03"}, -{"geonameId":"1647866","name":"Bukittinggi","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":98746,"modificationDate":"2012-01-17"}, -{"geonameId":"2894003","name":"Kaiserslautern","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":98732,"modificationDate":"2017-08-02"}, -{"geonameId":"4670249","name":"Alief","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":98725,"modificationDate":"2017-12-06"}, -{"geonameId":"1252416","name":"Thimphu","countryName":"Bhutan","timeZoneName":"Asia/Thimphu","timeZoneOffsetNameWithoutDst":"Bhutan Time","population":98676,"modificationDate":"2019-09-05"}, -{"geonameId":"1724489","name":"Bocaue","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":98649,"modificationDate":"2017-12-13"}, -{"geonameId":"1276325","name":"Bhadrakh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":98648,"modificationDate":"2014-10-14"}, -{"geonameId":"471430","name":"Votkinsk","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":98633,"modificationDate":"2019-09-05"}, -{"geonameId":"4173838","name":"Spring Hill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":98621,"modificationDate":"2011-05-14"}, -{"geonameId":"3085450","name":"Słupsk","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":98608,"modificationDate":"2019-09-05"}, -{"geonameId":"1797181","name":"Renqiu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":98569,"modificationDate":"2012-01-18"}, -{"geonameId":"1275103","name":"Būndi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":98569,"modificationDate":"2014-10-14"}, -{"geonameId":"3565432","name":"Cárdenas","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":98515,"modificationDate":"2019-09-05"}, -{"geonameId":"3374036","name":"Bridgetown","countryName":"Barbados","timeZoneName":"America/Barbados","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":98511,"modificationDate":"2016-10-28"}, -{"geonameId":"5106834","name":"Albany","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":98469,"modificationDate":"2019-09-05"}, -{"geonameId":"5339066","name":"Compton","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":98462,"modificationDate":"2017-09-09"}, -{"geonameId":"3109453","name":"Barakaldo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":98460,"modificationDate":"2018-03-09"}, -{"geonameId":"1492663","name":"Serov","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":98438,"modificationDate":"2019-09-05"}, -{"geonameId":"274874","name":"Habboush","countryName":"Lebanon","timeZoneName":"Asia/Beirut","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":98433,"modificationDate":"2020-06-10"}, -{"geonameId":"1788638","name":"Xinshi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":98422,"modificationDate":"2012-01-18"}, -{"geonameId":"3450594","name":"Salto","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":98387,"modificationDate":"2012-07-29"}, -{"geonameId":"7284831","name":"Budapest IV. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":98374,"modificationDate":"2019-09-23"}, -{"geonameId":"144410","name":"Akbar Abad Kawar","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":98342,"modificationDate":"2020-06-10"}, -{"geonameId":"3183072","name":"Andria","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":98342,"modificationDate":"2018-03-12"}, -{"geonameId":"4094455","name":"Tuscaloosa","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":98332,"modificationDate":"2017-03-09"}, -{"geonameId":"4705692","name":"League City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":98312,"modificationDate":"2017-03-09"}, -{"geonameId":"4992982","name":"Flint","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":98310,"modificationDate":"2017-05-23"}, -{"geonameId":"1812057","name":"Xinyi","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":98259,"modificationDate":"2012-01-18"}, -{"geonameId":"108927","name":"Qatif","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":98259,"modificationDate":"2020-06-10"}, -{"geonameId":"1253993","name":"Ooty","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":98238,"modificationDate":"2014-10-14"}, -{"geonameId":"2548526","name":"Guelmim","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":98229,"modificationDate":"2019-12-04"}, -{"geonameId":"4002224","name":"Lagos de Moreno","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":98206,"modificationDate":"2018-11-03"}, -{"geonameId":"2038080","name":"Chengzihe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":98188,"modificationDate":"2012-01-18"}, -{"geonameId":"1292037","name":"Thayetmyo","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":98185,"modificationDate":"2016-06-01"}, -{"geonameId":"1803616","name":"Xishan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":98162,"modificationDate":"2013-09-06"}, -{"geonameId":"4670300","name":"Allen","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":98143,"modificationDate":"2017-03-09"}, -{"geonameId":"579460","name":"Balashov","countryName":"Russia","timeZoneName":"Europe/Saratov","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":98107,"modificationDate":"2019-09-05"}, -{"geonameId":"1645154","name":"Dukuhturi","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":98074,"modificationDate":"2018-12-04"}, -{"geonameId":"134721","name":"Fassa","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":98061,"modificationDate":"2020-06-10"}, -{"geonameId":"1262634","name":"Moghulserdai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":98043,"modificationDate":"2020-06-10"}, -{"geonameId":"626081","name":"Lida","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":98036,"modificationDate":"2012-01-18"}, -{"geonameId":"170905","name":"Adraa","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":97969,"modificationDate":"2020-06-10"}, -{"geonameId":"1256671","name":"Shāmli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":97966,"modificationDate":"2018-05-27"}, -{"geonameId":"2177091","name":"Ballarat","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":97937,"modificationDate":"2014-05-01"}, -{"geonameId":"2895669","name":"Iserlohn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":97910,"modificationDate":"2015-09-05"}, -{"geonameId":"463343","name":"Zheleznogorsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":97900,"modificationDate":"2016-12-17"}, -{"geonameId":"3445859","name":"Ubá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":97828,"modificationDate":"2012-08-03"}, -{"geonameId":"3455729","name":"Ourinhos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":97799,"modificationDate":"2012-08-03"}, -{"geonameId":"2043835","name":"Hyesan-dong","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":97794,"modificationDate":"2020-01-09"}, -{"geonameId":"3516035","name":"Temixco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":97788,"modificationDate":"2018-11-03"}, -{"geonameId":"3071961","name":"Liberec","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":97770,"modificationDate":"2019-09-05"}, -{"geonameId":"3165072","name":"Udine","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":97761,"modificationDate":"2018-03-16"}, -{"geonameId":"4013714","name":"Ciudad Guzmán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":97750,"modificationDate":"2018-11-03"}, -{"geonameId":"1839726","name":"Asan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":97749,"modificationDate":"2014-04-19"}, -{"geonameId":"2473247","name":"Ariana","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":97687,"modificationDate":"2019-04-11"}, -{"geonameId":"2771706","name":"Meidling","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":97624,"modificationDate":"2018-07-29"}, -{"geonameId":"1808212","name":"Hechuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":97575,"modificationDate":"2012-11-08"}, -{"geonameId":"1270077","name":"Hinganghāt","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":97568,"modificationDate":"2015-08-07"}, -{"geonameId":"2639272","name":"Rochdale","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":97550,"modificationDate":"2011-03-03"}, -{"geonameId":"3530367","name":"Comitán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":97537,"modificationDate":"2018-11-03"}, -{"geonameId":"3446038","name":"Trindade","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":97521,"modificationDate":"2012-08-03"}, -{"geonameId":"3471798","name":"Arapongas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":97512,"modificationDate":"2020-02-22"}, -{"geonameId":"3723593","name":"Jérémie","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":97503,"modificationDate":"2016-01-30"}, -{"geonameId":"229268","name":"Mbarara","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":97500,"modificationDate":"2016-06-22"}, -{"geonameId":"744562","name":"Karabük","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":97481,"modificationDate":"2015-08-01"}, -{"geonameId":"1788508","name":"Xinyu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":97480,"modificationDate":"2018-12-06"}, -{"geonameId":"1624725","name":"Tarakan","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":97478,"modificationDate":"2015-11-07"}, -{"geonameId":"6176823","name":"Waterloo","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":97475,"modificationDate":"2010-01-29"}, -{"geonameId":"2523083","name":"Siracusa","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":97472,"modificationDate":"2019-09-05"}, -{"geonameId":"290332","name":"Al Muharraq","countryName":"Bahrain","timeZoneName":"Asia/Bahrain","timeZoneOffsetNameWithoutDst":"Arabian Time","population":97458,"modificationDate":"2019-06-17"}, -{"geonameId":"980921","name":"Mabopane","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":97417,"modificationDate":"2012-07-12"}, -{"geonameId":"1298987","name":"Pyinmana","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":97409,"modificationDate":"2016-06-22"}, -{"geonameId":"1253166","name":"Villupuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":97380,"modificationDate":"2014-10-14"}, -{"geonameId":"1861464","name":"Isahaya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":97371,"modificationDate":"2017-07-22"}, -{"geonameId":"1278931","name":"Amalner","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":97369,"modificationDate":"2015-09-06"}, -{"geonameId":"2333604","name":"Kuje","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":97367,"modificationDate":"2016-01-30"}, -{"geonameId":"1164216","name":"Swabi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":97363,"modificationDate":"2019-12-20"}, -{"geonameId":"1517945","name":"Turkestan","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":97360,"modificationDate":"2018-07-08"}, -{"geonameId":"2756987","name":"Deventer","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":97331,"modificationDate":"2019-02-27"}, -{"geonameId":"3868192","name":"Villa Alemana","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":97320,"modificationDate":"2012-05-03"}, -{"geonameId":"2111855","name":"Mobara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":97315,"modificationDate":"2017-07-22"}, -{"geonameId":"1861450","name":"Ise","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":97314,"modificationDate":"2017-07-22"}, -{"geonameId":"1614295","name":"Pattaya","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":97296,"modificationDate":"2018-10-13"}, -{"geonameId":"1277936","name":"Bagalkot","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":97269,"modificationDate":"2014-10-14"}, -{"geonameId":"1171965","name":"Lodhran","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":97249,"modificationDate":"2019-12-06"}, -{"geonameId":"1254780","name":"Tellicherry","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":97201,"modificationDate":"2015-11-08"}, -{"geonameId":"462755","name":"Zhukovskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":97200,"modificationDate":"2016-12-20"}, -{"geonameId":"1261848","name":"Narasaraopet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":97194,"modificationDate":"2015-09-06"}, -{"geonameId":"1860635","name":"Kameoka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":97181,"modificationDate":"2017-07-22"}, -{"geonameId":"665010","name":"Jiu","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":97179,"modificationDate":"2020-06-10"}, -{"geonameId":"3598529","name":"Chinautla","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":97172,"modificationDate":"2019-04-10"}, -{"geonameId":"5373763","name":"Mission Viejo","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":97156,"modificationDate":"2017-03-09"}, -{"geonameId":"3165771","name":"Terni","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":97050,"modificationDate":"2018-03-12"}, -{"geonameId":"2791018","name":"Molenbeek-Saint-Jean","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":97037,"modificationDate":"2020-05-25"}, -{"geonameId":"1811542","name":"Fangshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":97026,"modificationDate":"2014-12-03"}, -{"geonameId":"1312609","name":"Magway","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":96954,"modificationDate":"2016-06-01"}, -{"geonameId":"1262216","name":"Nagaur Marwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":96847,"modificationDate":"2020-06-10"}, -{"geonameId":"5405228","name":"Vacaville","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":96803,"modificationDate":"2017-03-09"}, -{"geonameId":"66093","name":"Yasuj","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":96786,"modificationDate":"2013-11-10"}, -{"geonameId":"7116866","name":"Villa Mercedes","countryName":"Argentina","timeZoneName":"America/Argentina/San_Luis","timeZoneOffsetNameWithoutDst":"Argentina Time","population":96781,"modificationDate":"2016-01-30"}, -{"geonameId":"1912209","name":"Wabu","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":96775,"modificationDate":"2015-07-03"}, -{"geonameId":"5405878","name":"Ventura","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":96769,"modificationDate":"2011-03-02"}, -{"geonameId":"1341204","name":"Nowshera Cantonment","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":96766,"modificationDate":"2019-12-06"}, -{"geonameId":"217695","name":"Bunia","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":96764,"modificationDate":"2016-11-22"}, -{"geonameId":"1261631","name":"Nawāda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":96730,"modificationDate":"2014-10-14"}, -{"geonameId":"5425043","name":"Highlands Ranch","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":96713,"modificationDate":"2011-05-14"}, -{"geonameId":"3117814","name":"Lugo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":96678,"modificationDate":"2018-03-09"}, -{"geonameId":"1853209","name":"Sakado","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":96656,"modificationDate":"2017-07-22"}, -{"geonameId":"4540737","name":"Lawton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":96655,"modificationDate":"2017-03-09"}, -{"geonameId":"7701354","name":"Azimpur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":96641,"modificationDate":"2016-11-09"}, -{"geonameId":"2834282","name":"Schwerin","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":96641,"modificationDate":"2019-09-05"}, -{"geonameId":"750516","name":"Bolu","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":96629,"modificationDate":"2019-09-05"}, -{"geonameId":"877747","name":"Mtwara","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":96602,"modificationDate":"2016-07-26"}, -{"geonameId":"5713376","name":"Beaverton","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":96577,"modificationDate":"2017-03-09"}, -{"geonameId":"3471830","name":"Araguari","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":96565,"modificationDate":"2012-08-03"}, -{"geonameId":"3097333","name":"Jaworzno","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":96541,"modificationDate":"2019-09-05"}, -{"geonameId":"1560349","name":"Yen Bay","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":96540,"modificationDate":"2020-06-09"}, -{"geonameId":"3465342","name":"Corumbá","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":96520,"modificationDate":"2012-08-03"}, -{"geonameId":"3619194","name":"Estelí","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":96422,"modificationDate":"2012-01-14"}, -{"geonameId":"5397603","name":"South Gate","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":96401,"modificationDate":"2017-03-09"}, -{"geonameId":"1269557","name":"Jahānābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":96387,"modificationDate":"2015-10-04"}, -{"geonameId":"1274868","name":"Chālisgaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":96381,"modificationDate":"2015-09-06"}, -{"geonameId":"727079","name":"Sliven","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":96368,"modificationDate":"2019-09-05"}, -{"geonameId":"2511388","name":"San Fernando","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":96366,"modificationDate":"2018-03-09"}, -{"geonameId":"273140","name":"Jounieh","countryName":"Lebanon","timeZoneName":"Asia/Beirut","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":96315,"modificationDate":"2017-03-29"}, -{"geonameId":"318675","name":"Ceyhan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":96303,"modificationDate":"2019-09-05"}, -{"geonameId":"2637546","name":"Solihull","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":96267,"modificationDate":"2019-09-30"}, -{"geonameId":"2299522","name":"Koforidua","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":96266,"modificationDate":"2019-12-06"}, -{"geonameId":"4779999","name":"Portsmouth","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":96201,"modificationDate":"2017-03-09"}, -{"geonameId":"2129101","name":"Muroran","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":96197,"modificationDate":"2017-07-22"}, -{"geonameId":"3121456","name":"Girona","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":96188,"modificationDate":"2018-03-09"}, -{"geonameId":"2913366","name":"Gütersloh","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":96180,"modificationDate":"2015-09-05"}, -{"geonameId":"128447","name":"Soultanabad","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":96151,"modificationDate":"2020-06-10"}, -{"geonameId":"3437842","name":"Limpio","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":96143,"modificationDate":"2019-02-27"}, -{"geonameId":"2980916","name":"Saint-Denis","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":96128,"modificationDate":"2019-04-10"}, -{"geonameId":"1136469","name":"Khowst","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":96123,"modificationDate":"2020-06-09"}, -{"geonameId":"1275019","name":"Buxar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":96120,"modificationDate":"2015-08-07"}, -{"geonameId":"2232444","name":"Dschang","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":96112,"modificationDate":"2013-07-04"}, -{"geonameId":"5512862","name":"Sparks","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":96094,"modificationDate":"2017-03-09"}, -{"geonameId":"3464073","name":"Erechim","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":96087,"modificationDate":"2014-12-23"}, -{"geonameId":"3077916","name":"České Budějovice","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":96053,"modificationDate":"2018-09-08"}, -{"geonameId":"1713014","name":"General Trias","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":96022,"modificationDate":"2017-12-13"}, -{"geonameId":"2318044","name":"Yola","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":96006,"modificationDate":"2016-01-30"}, -{"geonameId":"2300182","name":"Japekrom","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":96000,"modificationDate":"2019-12-08"}, -{"geonameId":"502965","name":"Ramenskoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":96000,"modificationDate":"2019-09-05"}, -{"geonameId":"1278148","name":"Aurangābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":95929,"modificationDate":"2015-10-04"}, -{"geonameId":"1625929","name":"Sungai Penuh","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":95913,"modificationDate":"2013-02-08"}, -{"geonameId":"1257794","name":"Sāhibganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":95890,"modificationDate":"2016-01-07"}, -{"geonameId":"1802177","name":"Lubu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":95820,"modificationDate":"2019-03-06"}, -{"geonameId":"3097391","name":"Jastrzębie Zdrój","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":95813,"modificationDate":"2017-12-16"}, -{"geonameId":"1705536","name":"Los Baños","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":95750,"modificationDate":"2017-12-13"}, -{"geonameId":"2982681","name":"Roubaix","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":95721,"modificationDate":"2019-02-27"}, -{"geonameId":"1260546","name":"Pandharpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":95665,"modificationDate":"2014-10-13"}, -{"geonameId":"1805408","name":"Jinsha","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":95647,"modificationDate":"2014-11-05"}, -{"geonameId":"3520271","name":"El Ebano","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":95647,"modificationDate":"2020-06-10"}, -{"geonameId":"361291","name":"Hurghada","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":95622,"modificationDate":"2019-09-05"}, -{"geonameId":"1270090","name":"Hindaun","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":95593,"modificationDate":"2014-10-14"}, -{"geonameId":"1786760","name":"Yicheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":95530,"modificationDate":"2018-09-06"}, -{"geonameId":"1811929","name":"Ducheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":95525,"modificationDate":"2013-10-05"}, -{"geonameId":"217745","name":"Bumba","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":95520,"modificationDate":"2016-11-22"}, -{"geonameId":"585514","name":"Mingelchaur","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":95453,"modificationDate":"2020-01-03"}, -{"geonameId":"1795632","name":"Shenjiamen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":95433,"modificationDate":"2012-04-05"}, -{"geonameId":"7647007","name":"San Carlos de Bariloche","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":95394,"modificationDate":"2015-04-22"}, -{"geonameId":"3746184","name":"La Habana Vieja","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":95383,"modificationDate":"2012-06-27"}, -{"geonameId":"1181439","name":"Charsadda","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":95319,"modificationDate":"2019-12-06"}, -{"geonameId":"4931429","name":"Brockton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":95314,"modificationDate":"2017-05-23"}, -{"geonameId":"2123628","name":"Magadan","countryName":"Russia","timeZoneName":"Asia/Magadan","timeZoneOffsetNameWithoutDst":"Magadan Time","population":95282,"modificationDate":"2019-09-05"}, -{"geonameId":"2038274","name":"Boli","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":95260,"modificationDate":"2014-08-05"}, -{"geonameId":"1789998","name":"Xiaoshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":95234,"modificationDate":"2012-01-18"}, -{"geonameId":"1811720","name":"Enshi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":95227,"modificationDate":"2018-12-06"}, -{"geonameId":"3074967","name":"Hradec Králové","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":95195,"modificationDate":"2019-09-05"}, -{"geonameId":"2644737","name":"Royal Leamington Spa","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":95172,"modificationDate":"2018-10-05"}, -{"geonameId":"3195506","name":"Maribor","countryName":"Slovenia","timeZoneName":"Europe/Ljubljana","timeZoneOffsetNameWithoutDst":"Central European Time","population":95171,"modificationDate":"2019-02-26"}, -{"geonameId":"4990510","name":"Dearborn","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":95171,"modificationDate":"2017-05-23"}, -{"geonameId":"5794245","name":"Federal Way","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":95171,"modificationDate":"2017-03-09"}, -{"geonameId":"3460132","name":"Japeri","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":95101,"modificationDate":"2012-08-03"}, -{"geonameId":"4394870","name":"Lee's Summit","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":95094,"modificationDate":"2017-05-23"}, -{"geonameId":"3109642","name":"Santiago de Compostela","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":95092,"modificationDate":"2019-09-05"}, -{"geonameId":"2757345","name":"Delft","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":95060,"modificationDate":"2019-01-14"}, -{"geonameId":"89570","name":"Zaxo","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":95052,"modificationDate":"2017-11-07"}, -{"geonameId":"149129","name":"Ushirombo","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":95052,"modificationDate":"2016-07-26"}, -{"geonameId":"250774","name":"Aqaba","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":95048,"modificationDate":"2009-11-24"}, -{"geonameId":"2621942","name":"Frederiksberg","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":95029,"modificationDate":"2017-10-18"}, -{"geonameId":"986083","name":"Kutloanong","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":95008,"modificationDate":"2018-12-05"}, -{"geonameId":"2346995","name":"Biu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":95005,"modificationDate":"2016-06-22"}, -{"geonameId":"2326302","name":"Olupona","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":95002,"modificationDate":"2016-01-30"}, -{"geonameId":"2639192","name":"Romford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":95000,"modificationDate":"2018-08-01"}, -{"geonameId":"513471","name":"Ozerki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":95000,"modificationDate":"2013-03-29"}, -{"geonameId":"518879","name":"Novogireyevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":95000,"modificationDate":"2016-04-01"}, -{"geonameId":"8505053","name":"Vostochnoe Degunino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":95000,"modificationDate":"2018-11-14"}, -{"geonameId":"1266928","name":"Khargone","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":94985,"modificationDate":"2015-09-06"}, -{"geonameId":"4945121","name":"New Bedford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":94958,"modificationDate":"2019-07-10"}, -{"geonameId":"6822146","name":"Ōnojō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":94957,"modificationDate":"2017-07-22"}, -{"geonameId":"5811729","name":"Spokane Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":94919,"modificationDate":"2017-03-09"}, -{"geonameId":"1860098","name":"Kanuma","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":94903,"modificationDate":"2017-07-22"}, -{"geonameId":"164947","name":"Salamiyeh","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":94887,"modificationDate":"2020-06-10"}, -{"geonameId":"1260290","name":"Purli Vaijnath","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":94863,"modificationDate":"2020-06-10"}, -{"geonameId":"2759899","name":"Alkmaar","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":94853,"modificationDate":"2017-10-17"}, -{"geonameId":"1710544","name":"Iriga City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":94846,"modificationDate":"2017-12-13"}, -{"geonameId":"726418","name":"Dobrich","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":94831,"modificationDate":"2019-09-05"}, -{"geonameId":"1266489","name":"Kishanganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":94807,"modificationDate":"2016-02-11"}, -{"geonameId":"2034141","name":"Wuchang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":94786,"modificationDate":"2012-01-18"}, -{"geonameId":"2656173","name":"Bath","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":94782,"modificationDate":"2019-09-05"}, -{"geonameId":"788709","name":"Leskovac","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":94758,"modificationDate":"2019-09-05"}, -{"geonameId":"3445162","name":"Vespasiano","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":94749,"modificationDate":"2012-08-03"}, -{"geonameId":"723819","name":"Eperjes","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":94718,"modificationDate":"2020-06-10"}, -{"geonameId":"6163012","name":"Terrebonne","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":94703,"modificationDate":"2016-06-22"}, -{"geonameId":"5117549","name":"Fordham","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":94678,"modificationDate":"2017-04-16"}, -{"geonameId":"3467736","name":"Campo Largo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":94668,"modificationDate":"2014-10-24"}, -{"geonameId":"3437665","name":"Nemby","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":94641,"modificationDate":"2019-03-29"}, -{"geonameId":"136014","name":"Dogonbadan","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":94638,"modificationDate":"2013-10-22"}, -{"geonameId":"4999837","name":"Livonia","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":94635,"modificationDate":"2017-05-23"}, -{"geonameId":"1264292","name":"Mainpuri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":94619,"modificationDate":"2015-08-07"}, -{"geonameId":"3682516","name":"Facatativá","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":94611,"modificationDate":"2018-07-04"}, -{"geonameId":"1267084","name":"Khāmgaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":94604,"modificationDate":"2014-10-13"}, -{"geonameId":"128321","name":"Kazeroun","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":94511,"modificationDate":"2020-06-10"}, -{"geonameId":"4219934","name":"Roswell","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":94501,"modificationDate":"2017-03-09"}, -{"geonameId":"2110498","name":"Yonezawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":94486,"modificationDate":"2017-07-22"}, -{"geonameId":"1786378","name":"Yongchuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":94465,"modificationDate":"2018-09-05"}, -{"geonameId":"5779334","name":"Orem","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":94457,"modificationDate":"2017-03-09"}, -{"geonameId":"2647461","name":"Harlow","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":94365,"modificationDate":"2019-09-05"}, -{"geonameId":"144616","name":"Ahar","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":94348,"modificationDate":"2014-09-04"}, -{"geonameId":"307515","name":"Mokissus","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":94336,"modificationDate":"2020-06-10"}, -{"geonameId":"1789289","name":"Ximeicun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":94326,"modificationDate":"2019-10-09"}, -{"geonameId":"3361025","name":"Stellenbosch","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":94263,"modificationDate":"2019-09-24"}, -{"geonameId":"1262260","name":"Negapatam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":94238,"modificationDate":"2017-08-02"}, -{"geonameId":"1496511","name":"Novyy Urengoy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":94212,"modificationDate":"2014-03-06"}, -{"geonameId":"1674199","name":"Yilan","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":94188,"modificationDate":"2017-09-29"}, -{"geonameId":"791646","name":"Gjakovë","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":94158,"modificationDate":"2015-02-22"}, -{"geonameId":"5322053","name":"Yuma","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":94139,"modificationDate":"2017-03-09"}, -{"geonameId":"1786455","name":"Yishui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":94115,"modificationDate":"2012-01-18"}, -{"geonameId":"2808473","name":"Wilmersdorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":94113,"modificationDate":"2017-09-19"}, -{"geonameId":"3063548","name":"Ústí nad Labem","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":94105,"modificationDate":"2019-03-20"}, -{"geonameId":"1567723","name":"Song Ko","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":94066,"modificationDate":"2020-06-09"}, -{"geonameId":"1274213","name":"Chilakalūrupet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":94011,"modificationDate":"2015-09-06"}, -{"geonameId":"2270503","name":"Cacém","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":93982,"modificationDate":"2012-02-01"}, -{"geonameId":"1270800","name":"Gudiyatham","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":93973,"modificationDate":"2014-10-14"}, -{"geonameId":"2556272","name":"Berrechid","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":93954,"modificationDate":"2016-11-02"}, -{"geonameId":"4274277","name":"Lawrence","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":93917,"modificationDate":"2019-09-05"}, -{"geonameId":"1264206","name":"Makrāna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":93904,"modificationDate":"2014-10-14"}, -{"geonameId":"1176368","name":"Jalalpur Jattan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":93883,"modificationDate":"2019-12-06"}, -{"geonameId":"2112227","name":"Kitakami","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":93854,"modificationDate":"2017-07-22"}, -{"geonameId":"1538636","name":"Sverdlovsk-44","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":93849,"modificationDate":"2020-06-11"}, -{"geonameId":"4736476","name":"The Woodlands","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":93847,"modificationDate":"2019-10-14"}, -{"geonameId":"1538635","name":"Zheleznogorsk","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":93834,"modificationDate":"2016-12-02"}, -{"geonameId":"2702979","name":"Jönköping","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":93797,"modificationDate":"2019-09-05"}, -{"geonameId":"5143620","name":"West Albany","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":93794,"modificationDate":"2017-05-23"}, -{"geonameId":"3646487","name":"Carora","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":93788,"modificationDate":"2018-08-08"}, -{"geonameId":"1283318","name":"Janakpur","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":93767,"modificationDate":"2020-06-10"}, -{"geonameId":"2688368","name":"Norrköping","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":93765,"modificationDate":"2019-09-05"}, -{"geonameId":"3625542","name":"Valera","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":93756,"modificationDate":"2012-01-03"}, -{"geonameId":"1786112","name":"Heyuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":93718,"modificationDate":"2012-01-18"}, -{"geonameId":"5816605","name":"Yakima","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":93701,"modificationDate":"2017-03-09"}, -{"geonameId":"1529626","name":"Baijiantan","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":93697,"modificationDate":"2019-01-09"}, -{"geonameId":"2033135","name":"Zhengjiatun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":93666,"modificationDate":"2012-01-18"}, -{"geonameId":"1277214","name":"Bānswāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":93648,"modificationDate":"2014-10-14"}, -{"geonameId":"3980190","name":"García","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":93641,"modificationDate":"2018-11-03"}, -{"geonameId":"3176746","name":"Forlì","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":93638,"modificationDate":"2017-07-16"}, -{"geonameId":"4948247","name":"Quincy","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":93618,"modificationDate":"2017-05-23"}, -{"geonameId":"333373","name":"Kombolcha","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":93605,"modificationDate":"2017-08-11"}, -{"geonameId":"3446692","name":"Tatuí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":93580,"modificationDate":"2012-03-10"}, -{"geonameId":"1604870","name":"Yala","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":93558,"modificationDate":"2012-01-16"}, -{"geonameId":"1714674","name":"Dipolog","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":93549,"modificationDate":"2017-12-13"}, -{"geonameId":"1277044","name":"Baraut","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":93544,"modificationDate":"2015-04-08"}, -{"geonameId":"1258744","name":"Closepet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":93528,"modificationDate":"2016-09-08"}, -{"geonameId":"140918","name":"Behshahr","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":93500,"modificationDate":"2014-09-04"}, -{"geonameId":"527191","name":"Michurinsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":93499,"modificationDate":"2019-09-05"}, -{"geonameId":"1562820","name":"Vietri","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":93475,"modificationDate":"2020-06-09"}, -{"geonameId":"3833883","name":"Trelew","countryName":"Argentina","timeZoneName":"America/Argentina/Catamarca","timeZoneOffsetNameWithoutDst":"Argentina Time","population":93442,"modificationDate":"2016-01-30"}, -{"geonameId":"2934486","name":"Düren","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":93440,"modificationDate":"2015-09-05"}, -{"geonameId":"2496049","name":"Ghardaïa","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":93423,"modificationDate":"2017-06-04"}, -{"geonameId":"1626183","name":"Sumber","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":93420,"modificationDate":"2018-04-24"}, -{"geonameId":"5117378","name":"Flatbush","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":93361,"modificationDate":"2017-04-16"}, -{"geonameId":"2037930","name":"Dalai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":93297,"modificationDate":"2012-01-18"}, -{"geonameId":"3172189","name":"Novara","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":93295,"modificationDate":"2018-03-12"}, -{"geonameId":"5356576","name":"Hesperia","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":93295,"modificationDate":"2017-03-09"}, -{"geonameId":"2332079","name":"Lere","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":93290,"modificationDate":"2016-06-22"}, -{"geonameId":"5334519","name":"Carson","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":93281,"modificationDate":"2017-03-09"}, -{"geonameId":"3182340","name":"Barletta","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":93279,"modificationDate":"2018-03-16"}, -{"geonameId":"302525","name":"Polath","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":93262,"modificationDate":"2020-06-10"}, -{"geonameId":"4148411","name":"Boca Raton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":93235,"modificationDate":"2017-03-09"}, -{"geonameId":"3171058","name":"Piacenza","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":93228,"modificationDate":"2018-03-12"}, -{"geonameId":"7284836","name":"Budapest XVIII. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":93225,"modificationDate":"2019-09-23"}, -{"geonameId":"5393212","name":"Santa Monica","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":93220,"modificationDate":"2019-09-05"}, -{"geonameId":"763442","name":"Ochota","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":93192,"modificationDate":"2018-01-16"}, -{"geonameId":"6545347","name":"Praga Północ","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":93192,"modificationDate":"2018-01-16"}, -{"geonameId":"1268293","name":"Kalyani","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":93184,"modificationDate":"2014-10-14"}, -{"geonameId":"2038154","name":"Changping","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":93174,"modificationDate":"2012-09-06"}, -{"geonameId":"2520611","name":"Cáceres","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":93131,"modificationDate":"2019-09-05"}, -{"geonameId":"1246294","name":"Galle","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":93118,"modificationDate":"2019-09-05"}, -{"geonameId":"952192","name":"Stilfontein","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":93110,"modificationDate":"2012-07-12"}, -{"geonameId":"2754652","name":"Heerlen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":93084,"modificationDate":"2019-01-14"}, -{"geonameId":"1696899","name":"Ozamiz City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":93082,"modificationDate":"2018-09-05"}, -{"geonameId":"233114","name":"Jinja","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":93061,"modificationDate":"2016-06-22"}, -{"geonameId":"2139521","name":"Nouméa","countryName":"New Caledonia","timeZoneName":"Pacific/Noumea","timeZoneOffsetNameWithoutDst":"New Caledonia Time","population":93060,"modificationDate":"2017-07-27"}, -{"geonameId":"1255254","name":"Tādpatri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":93044,"modificationDate":"2016-10-08"}, -{"geonameId":"1621395","name":"Wonosobo","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":92990,"modificationDate":"2016-01-07"}, -{"geonameId":"548605","name":"Kineshma","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":92983,"modificationDate":"2019-09-05"}, -{"geonameId":"751335","name":"Bafra","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":92944,"modificationDate":"2012-01-18"}, -{"geonameId":"2130452","name":"Chitose","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":92942,"modificationDate":"2017-07-22"}, -{"geonameId":"3893532","name":"Coronel","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":92940,"modificationDate":"2018-04-09"}, -{"geonameId":"2318921","name":"Wukari","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":92933,"modificationDate":"2016-01-30"}, -{"geonameId":"542374","name":"Krasnogorsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":92932,"modificationDate":"2012-01-17"}, -{"geonameId":"5392368","name":"San Marcos","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":92931,"modificationDate":"2017-03-09"}, -{"geonameId":"2792482","name":"Leuven","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":92892,"modificationDate":"2019-02-21"}, -{"geonameId":"504003","name":"Pushkin","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":92889,"modificationDate":"2019-02-26"}, -{"geonameId":"3546791","name":"Moa","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":92852,"modificationDate":"2014-08-14"}, -{"geonameId":"1803841","name":"Lianzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":92827,"modificationDate":"2014-02-08"}, -{"geonameId":"3177090","name":"Ferrara","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":92802,"modificationDate":"2019-10-31"}, -{"geonameId":"5330413","name":"Boyle Heights","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":92785,"modificationDate":"2018-04-18"}, -{"geonameId":"740483","name":"Rize","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":92772,"modificationDate":"2014-06-27"}, -{"geonameId":"2504622","name":"Beni Mered","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":92749,"modificationDate":"2012-01-19"}, -{"geonameId":"2338669","name":"Igbo-Ora","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":92719,"modificationDate":"2016-01-30"}, -{"geonameId":"2641157","name":"Nuneaton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":92698,"modificationDate":"2017-06-12"}, -{"geonameId":"2231506","name":"Foumban","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":92673,"modificationDate":"2014-06-04"}, -{"geonameId":"346030","name":"Zefta","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":92667,"modificationDate":"2018-03-26"}, -{"geonameId":"1267911","name":"Kapurthala Town","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":92667,"modificationDate":"2020-06-10"}, -{"geonameId":"1860765","name":"Kaizuka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":92632,"modificationDate":"2017-07-22"}, -{"geonameId":"8299617","name":"High Peak","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":92600,"modificationDate":"2012-06-01"}, -{"geonameId":"1633056","name":"Palimanan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":92600,"modificationDate":"2012-01-17"}, -{"geonameId":"3392887","name":"Patos","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":92575,"modificationDate":"2012-08-03"}, -{"geonameId":"4168782","name":"Plantation","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":92560,"modificationDate":"2017-03-09"}, -{"geonameId":"2451478","name":"Ségou","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":92552,"modificationDate":"2019-02-26"}, -{"geonameId":"1734798","name":"Semenyih","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":92491,"modificationDate":"2014-04-06"}, -{"geonameId":"664518","name":"Tulcea","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":92475,"modificationDate":"2019-09-05"}, -{"geonameId":"1857766","name":"Maizuru","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":92465,"modificationDate":"2017-07-22"}, -{"geonameId":"4942807","name":"Lynn","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":92457,"modificationDate":"2017-05-23"}, -{"geonameId":"3832694","name":"Villa María","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":92453,"modificationDate":"2016-01-30"}, -{"geonameId":"1150954","name":"Ratchaburi","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":92448,"modificationDate":"2012-01-16"}, -{"geonameId":"1632978","name":"Pamekasan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":92447,"modificationDate":"2016-01-07"}, -{"geonameId":"3670745","name":"Riohacha","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":92431,"modificationDate":"2018-05-18"}, -{"geonameId":"2745641","name":"Venlo","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":92403,"modificationDate":"2019-04-24"}, -{"geonameId":"99369","name":"Harthah","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":92395,"modificationDate":"2020-06-10"}, -{"geonameId":"2928751","name":"Esslingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":92390,"modificationDate":"2017-09-22"}, -{"geonameId":"7280528","name":"Errachidia","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":92374,"modificationDate":"2017-12-06"}, -{"geonameId":"2651513","name":"Darlington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":92363,"modificationDate":"2017-06-12"}, -{"geonameId":"1632823","name":"Pandeglang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":92316,"modificationDate":"2012-01-17"}, -{"geonameId":"4164143","name":"Miami Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":92312,"modificationDate":"2017-03-09"}, -{"geonameId":"1283467","name":"Dhantardhi","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":92294,"modificationDate":"2020-06-10"}, -{"geonameId":"1812621","name":"Dongcun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":92282,"modificationDate":"2012-01-18"}, -{"geonameId":"1272513","name":"Deesa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":92224,"modificationDate":"2020-06-10"}, -{"geonameId":"7260806","name":"Arden-Arcade","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":92186,"modificationDate":"2011-05-14"}, -{"geonameId":"1632334","name":"Pariaman","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":92183,"modificationDate":"2012-01-17"}, -{"geonameId":"1639215","name":"Kudus","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":92156,"modificationDate":"2016-01-07"}, -{"geonameId":"1277557","name":"Ballarpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":92146,"modificationDate":"2020-06-10"}, -{"geonameId":"1907307","name":"Kimitsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":92126,"modificationDate":"2017-07-22"}, -{"geonameId":"315498","name":"Ereğli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":92117,"modificationDate":"2016-12-15"}, -{"geonameId":"5408406","name":"Westminster","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":92114,"modificationDate":"2017-03-09"}, -{"geonameId":"1266366","name":"Kohima","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":92113,"modificationDate":"2020-06-10"}, -{"geonameId":"5579276","name":"Longmont","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":92088,"modificationDate":"2017-03-09"}, -{"geonameId":"1011031","name":"Delmas","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":92046,"modificationDate":"2012-07-12"}, -{"geonameId":"3685084","name":"Duitama","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":92040,"modificationDate":"2018-06-08"}, -{"geonameId":"309647","name":"Ağrı","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":92022,"modificationDate":"2017-01-25"}, -{"geonameId":"1813828","name":"Danjiangkou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":92008,"modificationDate":"2012-01-18"}, -{"geonameId":"3981984","name":"Tepatitlan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":91959,"modificationDate":"2020-06-10"}, -{"geonameId":"1276389","name":"Betūl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":91953,"modificationDate":"2015-08-07"}, -{"geonameId":"315530","name":"Arcis","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":91915,"modificationDate":"2020-06-10"}, -{"geonameId":"2657970","name":"Winterthur","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":91908,"modificationDate":"2019-09-05"}, -{"geonameId":"1267885","name":"Karaikudi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":91908,"modificationDate":"2020-06-10"}, -{"geonameId":"2514891","name":"Lorca","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":91906,"modificationDate":"2012-12-15"}, -{"geonameId":"571170","name":"Bugulina","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":91900,"modificationDate":"2020-06-10"}, -{"geonameId":"3167096","name":"Sassari","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":91895,"modificationDate":"2018-03-12"}, -{"geonameId":"157403","name":"Kilosa","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":91889,"modificationDate":"2016-07-26"}, -{"geonameId":"1647298","name":"Caringin","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":91845,"modificationDate":"2012-01-17"}, -{"geonameId":"5392952","name":"Santa Barbara","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":91842,"modificationDate":"2017-03-09"}, -{"geonameId":"1720034","name":"Calumpit","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":91815,"modificationDate":"2017-12-13"}, -{"geonameId":"1608527","name":"Nakhon Sawan","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":91802,"modificationDate":"2012-01-16"}, -{"geonameId":"1863627","name":"Ginowan","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":91800,"modificationDate":"2017-07-22"}, -{"geonameId":"705135","name":"Konotop","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":91798,"modificationDate":"2019-09-05"}, -{"geonameId":"1784310","name":"Zhongshu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":91750,"modificationDate":"2012-01-18"}, -{"geonameId":"1283562","name":"Butaul","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":91733,"modificationDate":"2020-06-10"}, -{"geonameId":"3446445","name":"Timóteo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":91722,"modificationDate":"2014-10-10"}, -{"geonameId":"2637343","name":"Southport","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":91703,"modificationDate":"2017-06-12"}, -{"geonameId":"1806960","name":"Huazhou","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":91701,"modificationDate":"2012-01-18"}, -{"geonameId":"124778","name":"Dezh Shapoor","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":91664,"modificationDate":"2020-06-10"}, -{"geonameId":"736083","name":"Kalamariá","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":91617,"modificationDate":"2015-05-31"}, -{"geonameId":"2850174","name":"Ratingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":91606,"modificationDate":"2015-09-05"}, -{"geonameId":"5570160","name":"Redding","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":91582,"modificationDate":"2017-03-09"}, -{"geonameId":"2972284","name":"Tourcoing","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":91574,"modificationDate":"2019-02-27"}, -{"geonameId":"3531576","name":"Cárdenas","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":91558,"modificationDate":"2018-11-03"}, -{"geonameId":"1000501","name":"Grahamstown","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":91548,"modificationDate":"2012-07-12"}, -{"geonameId":"1802476","name":"Longquan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":91534,"modificationDate":"2012-01-18"}, -{"geonameId":"1571067","name":"Phan Ranh","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":91520,"modificationDate":"2020-06-09"}, -{"geonameId":"1786855","name":"Yatou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":91517,"modificationDate":"2013-06-04"}, -{"geonameId":"2751792","name":"Leeuwarden","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":91424,"modificationDate":"2019-09-05"}, -{"geonameId":"2036075","name":"Lingyuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":91418,"modificationDate":"2006-01-17"}, -{"geonameId":"2873263","name":"Marl","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":91398,"modificationDate":"2017-07-25"}, -{"geonameId":"1277940","name":"Bagaha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":91383,"modificationDate":"2019-06-16"}, -{"geonameId":"4207400","name":"Macon","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":91351,"modificationDate":"2011-05-14"}, -{"geonameId":"2790869","name":"Mons","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":91277,"modificationDate":"2019-09-05"}, -{"geonameId":"705104","name":"Kostyantynivka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":91259,"modificationDate":"2018-06-07"}, -{"geonameId":"1277643","name":"Balāngīr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":91241,"modificationDate":"2014-10-14"}, -{"geonameId":"3665542","name":"Zipaquirá","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":91235,"modificationDate":"2018-07-04"}, -{"geonameId":"3456500","name":"Muriaé","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":91173,"modificationDate":"2012-08-03"}, -{"geonameId":"1811764","name":"Duyun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":91136,"modificationDate":"2018-12-06"}, -{"geonameId":"3467978","name":"Cambé","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":91080,"modificationDate":"2012-08-03"}, -{"geonameId":"1798821","name":"Pingdu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":91077,"modificationDate":"2012-01-18"}, -{"geonameId":"3405940","name":"Bayeux","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":91056,"modificationDate":"2012-08-03"}, -{"geonameId":"912764","name":"Kasama","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":91056,"modificationDate":"2012-01-17"}, -{"geonameId":"143921","name":"Aligoodarz","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":91041,"modificationDate":"2020-06-10"}, -{"geonameId":"303827","name":"Nigdeh","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":91039,"modificationDate":"2020-06-10"}, -{"geonameId":"2875107","name":"Lünen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":91009,"modificationDate":"2015-09-04"}, -{"geonameId":"1565022","name":"Thủ Dầu Một","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":91009,"modificationDate":"2014-06-04"}, -{"geonameId":"530088","name":"Yaroslavskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":91000,"modificationDate":"2014-02-06"}, -{"geonameId":"536398","name":"Lefortovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":91000,"modificationDate":"2013-04-02"}, -{"geonameId":"1853992","name":"Onomichi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":90936,"modificationDate":"2017-07-22"}, -{"geonameId":"1810309","name":"Gaoyou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":90911,"modificationDate":"2012-04-05"}, -{"geonameId":"741855","name":"Lule Burgas","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":90899,"modificationDate":"2020-06-10"}, -{"geonameId":"1307741","name":"Myitkyina","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":90894,"modificationDate":"2016-06-01"}, -{"geonameId":"1785777","name":"Yulinshi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":90870,"modificationDate":"2017-07-21"}, -{"geonameId":"1327659","name":"Chauk","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":90870,"modificationDate":"2016-06-01"}, -{"geonameId":"3470073","name":"Bento Gonçalves","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":90852,"modificationDate":"2017-06-07"}, -{"geonameId":"3467081","name":"Caraguatatuba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":90843,"modificationDate":"2012-03-10"}, -{"geonameId":"1308937","name":"Mogok","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":90843,"modificationDate":"2016-06-01"}, -{"geonameId":"1897122","name":"Namyangju","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":90798,"modificationDate":"2014-04-23"}, -{"geonameId":"78428","name":"‘Amrān","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":90792,"modificationDate":"2020-06-11"}, -{"geonameId":"5600685","name":"Meridian","countryName":"United States","timeZoneName":"America/Boise","timeZoneOffsetNameWithoutDst":"Mountain Time","population":90739,"modificationDate":"2017-03-09"}, -{"geonameId":"3159016","name":"Drammen","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":90722,"modificationDate":"2019-12-12"}, -{"geonameId":"5392263","name":"San Leandro","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":90712,"modificationDate":"2017-03-09"}, -{"geonameId":"1337249","name":"Kishorganj","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":90690,"modificationDate":"2016-11-09"}, -{"geonameId":"2992090","name":"Montreuil","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":90652,"modificationDate":"2018-03-09"}, -{"geonameId":"2343299","name":"Emure-Ekiti","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":90645,"modificationDate":"2016-01-30"}, -{"geonameId":"1808879","name":"Hanting","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":90637,"modificationDate":"2012-06-05"}, -{"geonameId":"1273403","name":"Datia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":90628,"modificationDate":"2015-08-07"}, -{"geonameId":"2774326","name":"Klagenfurt am Wörthersee","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":90610,"modificationDate":"2018-03-13"}, -{"geonameId":"1816269","name":"Baise City","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":90603,"modificationDate":"2013-03-25"}, -{"geonameId":"4469160","name":"Greenville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":90597,"modificationDate":"2017-05-23"}, -{"geonameId":"1792592","name":"Tongren","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":90593,"modificationDate":"2018-12-06"}, -{"geonameId":"347634","name":"Ţahţā","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":90591,"modificationDate":"2019-10-10"}, -{"geonameId":"737961","name":"Yaremdji","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":90580,"modificationDate":"2020-06-10"}, -{"geonameId":"2653228","name":"Chester","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":90524,"modificationDate":"2017-06-12"}, -{"geonameId":"537737","name":"Kuznetsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":90480,"modificationDate":"2019-09-05"}, -{"geonameId":"349717","name":"Samālūţ","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":90465,"modificationDate":"2020-03-09"}, -{"geonameId":"1789462","name":"Xihe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":90422,"modificationDate":"2012-01-18"}, -{"geonameId":"3460791","name":"Itanhaém","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":90385,"modificationDate":"2012-03-10"}, -{"geonameId":"1253472","name":"Valparai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":90353,"modificationDate":"2014-10-14"}, -{"geonameId":"5336269","name":"Chico","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":90316,"modificationDate":"2017-03-09"}, -{"geonameId":"1265891","name":"Kovilpatti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":90296,"modificationDate":"2014-10-14"}, -{"geonameId":"1253437","name":"Vaniyambadi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":90288,"modificationDate":"2014-10-14"}, -{"geonameId":"3124408","name":"Coslada","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":90280,"modificationDate":"2018-06-08"}, -{"geonameId":"1811829","name":"Duobao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":90257,"modificationDate":"2016-04-08"}, -{"geonameId":"548395","name":"Kirovo-Chepetsk","countryName":"Russia","timeZoneName":"Europe/Kirov","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":90252,"modificationDate":"2019-09-05"}, -{"geonameId":"1510350","name":"Berdsk","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":90250,"modificationDate":"2019-09-05"}, -{"geonameId":"2636940","name":"Stevenage","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":90232,"modificationDate":"2018-11-30"}, -{"geonameId":"335035","name":"Harar","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":90218,"modificationDate":"2019-09-05"}, -{"geonameId":"941966","name":"Warmbaths","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":90210,"modificationDate":"2012-07-12"}, -{"geonameId":"3429594","name":"Reconquista","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":90184,"modificationDate":"2018-03-27"}, -{"geonameId":"1276191","name":"Bhandāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":90183,"modificationDate":"2015-08-07"}, -{"geonameId":"2704620","name":"Huddinge","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":90182,"modificationDate":"2011-12-20"}, -{"geonameId":"1794140","name":"Sishui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":90175,"modificationDate":"2012-01-18"}, -{"geonameId":"5882873","name":"Ajax","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":90167,"modificationDate":"2011-12-30"}, -{"geonameId":"1737919","name":"Marudi","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":90100,"modificationDate":"2019-08-09"}, -{"geonameId":"4535740","name":"Edmond","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":90092,"modificationDate":"2017-03-09"}, -{"geonameId":"2962943","name":"Luimneach","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":90054,"modificationDate":"2019-02-26"}, -{"geonameId":"2634549","name":"Wembley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":90045,"modificationDate":"2017-12-06"}, -{"geonameId":"704202","name":"Krasnyy Luch","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":90005,"modificationDate":"2016-05-04"}, -{"geonameId":"5989117","name":"Kanata","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":90000,"modificationDate":"2019-08-07"}, -{"geonameId":"1810668","name":"Gantang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":90000,"modificationDate":"2019-11-07"}, -{"geonameId":"1258099","name":"Roha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":90000,"modificationDate":"2014-10-13"}, -{"geonameId":"10570","name":"Alvand","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":90000,"modificationDate":"2018-11-07"}, -{"geonameId":"5112540","name":"Chinatown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":90000,"modificationDate":"2019-11-15"}, -{"geonameId":"3570675","name":"Fort-de-France","countryName":"Martinique","timeZoneName":"America/Martinique","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":89995,"modificationDate":"2019-09-05"}, -{"geonameId":"3183089","name":"Ancona","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":89994,"modificationDate":"2018-03-12"}, -{"geonameId":"2337148","name":"Isieke","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":89990,"modificationDate":"2016-01-30"}, -{"geonameId":"933778","name":"Francistown","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":89979,"modificationDate":"2019-09-05"}, -{"geonameId":"1807695","name":"Huaidian","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":89978,"modificationDate":"2012-01-18"}, -{"geonameId":"1854093","name":"Ōmura","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":89918,"modificationDate":"2017-07-22"}, -{"geonameId":"5601933","name":"Nampa","countryName":"United States","timeZoneName":"America/Boise","timeZoneOffsetNameWithoutDst":"Mountain Time","population":89839,"modificationDate":"2017-03-09"}, -{"geonameId":"1262578","name":"Muktsar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":89833,"modificationDate":"2015-02-06"}, -{"geonameId":"1229989","name":"Point Pedro","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":89810,"modificationDate":"2018-12-29"}, -{"geonameId":"3035681","name":"Avignon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":89769,"modificationDate":"2019-09-05"}, -{"geonameId":"561887","name":"Gatchina","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":89761,"modificationDate":"2019-09-05"}, -{"geonameId":"2648182","name":"Grays","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":89755,"modificationDate":"2017-06-12"}, -{"geonameId":"1849519","name":"Tsuyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":89717,"modificationDate":"2017-07-22"}, -{"geonameId":"3449936","name":"Santana do Livramento","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":89694,"modificationDate":"2017-07-07"}, -{"geonameId":"3625207","name":"Yaritagua","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":89662,"modificationDate":"2018-08-08"}, -{"geonameId":"1814870","name":"Yiwu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":89629,"modificationDate":"2017-04-27"}, -{"geonameId":"1303406","name":"Nyaunglebin","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":89626,"modificationDate":"2018-12-05"}, -{"geonameId":"1797658","name":"Jinjiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":89623,"modificationDate":"2013-05-01"}, -{"geonameId":"203112","name":"Butare","countryName":"Rwanda","timeZoneName":"Africa/Kigali","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":89600,"modificationDate":"2017-10-31"}, -{"geonameId":"5781070","name":"Sandy Hills","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":89575,"modificationDate":"2010-09-05"}, -{"geonameId":"1170425","name":"Mianwali","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":89570,"modificationDate":"2019-12-06"}, -{"geonameId":"3183719","name":"Vlora","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":89546,"modificationDate":"2020-06-11"}, -{"geonameId":"1264735","name":"Luckeesarai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":89500,"modificationDate":"2014-10-14"}, -{"geonameId":"3472518","name":"Almirante Tamandaré","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":89499,"modificationDate":"2012-08-03"}, -{"geonameId":"1276901","name":"Bārmer","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":89487,"modificationDate":"2014-10-14"}, -{"geonameId":"1262453","name":"Muravnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":89482,"modificationDate":"2020-06-10"}, -{"geonameId":"163345","name":"Tartouss","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":89457,"modificationDate":"2012-01-17"}, -{"geonameId":"2037375","name":"Fujin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":89442,"modificationDate":"2012-01-18"}, -{"geonameId":"3619136","name":"Granada","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":89409,"modificationDate":"2019-09-05"}, -{"geonameId":"256429","name":"Níkaia","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":89380,"modificationDate":"2019-10-23"}, -{"geonameId":"1254432","name":"Tinsukia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":89373,"modificationDate":"2014-10-13"}, -{"geonameId":"286647","name":"Saham Town","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":89327,"modificationDate":"2020-06-10"}, -{"geonameId":"776103","name":"Białołeka","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":89324,"modificationDate":"2018-01-16"}, -{"geonameId":"7284894","name":"Marseille 13","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":89316,"modificationDate":"2018-08-19"}, -{"geonameId":"1807687","name":"Huaicheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":89294,"modificationDate":"2013-10-05"}, -{"geonameId":"1256739","name":"Shahdol","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":89289,"modificationDate":"2014-10-14"}, -{"geonameId":"1861084","name":"Izumo","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":89286,"modificationDate":"2017-07-22"}, -{"geonameId":"1841775","name":"Kwangyang","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":89281,"modificationDate":"2012-01-18"}, -{"geonameId":"3720824","name":"Miragoâne","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":89202,"modificationDate":"2019-03-25"}, -{"geonameId":"1263694","name":"Manjeri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":89201,"modificationDate":"2017-02-04"}, -{"geonameId":"1734815","name":"Port Dickson","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":89198,"modificationDate":"2014-08-06"}, -{"geonameId":"1844174","name":"Hongseong","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":89174,"modificationDate":"2017-10-04"}, -{"geonameId":"1264359","name":"Mahoba","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":89170,"modificationDate":"2020-06-10"}, -{"geonameId":"149703","name":"Sumbawanga","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":89161,"modificationDate":"2016-07-26"}, -{"geonameId":"1308415","name":"Mudon","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":89123,"modificationDate":"2016-06-01"}, -{"geonameId":"1802068","name":"Lucheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":89119,"modificationDate":"2013-09-06"}, -{"geonameId":"1808744","name":"Hede","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":89107,"modificationDate":"2014-04-06"}, -{"geonameId":"650224","name":"Kuopio","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":89104,"modificationDate":"2014-09-25"}, -{"geonameId":"3625515","name":"Valle de La Pascua","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":89080,"modificationDate":"2017-05-06"}, -{"geonameId":"1151254","name":"Phuket","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":89072,"modificationDate":"2017-06-29"}, -{"geonameId":"2647428","name":"Harrogate","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":89060,"modificationDate":"2017-06-12"}, -{"geonameId":"1836553","name":"Sokcho","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":89047,"modificationDate":"2014-11-05"}, -{"geonameId":"1650232","name":"Banjar","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":89040,"modificationDate":"2012-01-17"}, -{"geonameId":"6414184","name":"Bibir Hat","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":89030,"modificationDate":"2017-12-29"}, -{"geonameId":"541406","name":"Biryulëvo Zapadnoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":89000,"modificationDate":"2013-04-02"}, -{"geonameId":"303750","name":"Nusaybin","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":88977,"modificationDate":"2015-11-30"}, -{"geonameId":"1214658","name":"Lhokseumawe","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":88974,"modificationDate":"2017-07-05"}, -{"geonameId":"1646893","name":"Cicurug","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":88965,"modificationDate":"2012-01-17"}, -{"geonameId":"1804162","name":"Lengshuitan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":88935,"modificationDate":"2012-01-18"}, -{"geonameId":"2010985","name":"Kartasura","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":88927,"modificationDate":"2018-12-06"}, -{"geonameId":"1296736","name":"Shwebo","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":88914,"modificationDate":"2016-06-01"}, -{"geonameId":"302043","name":"Salihli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":88906,"modificationDate":"2013-08-06"}, -{"geonameId":"2510693","name":"Talavera de la Reina","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":88856,"modificationDate":"2012-10-21"}, -{"geonameId":"2647400","name":"Hartlepool","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":88855,"modificationDate":"2018-02-26"}, -{"geonameId":"3453420","name":"Planaltina","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":88853,"modificationDate":"2012-08-03"}, -{"geonameId":"747471","name":"Heraklea","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":88848,"modificationDate":"2020-06-10"}, -{"geonameId":"3682274","name":"Fusagasuga","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":88820,"modificationDate":"2020-06-11"}, -{"geonameId":"1701872","name":"Mangaldan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":88818,"modificationDate":"2017-12-13"}, -{"geonameId":"4945283","name":"Newton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":88817,"modificationDate":"2017-05-23"}, -{"geonameId":"4504476","name":"Toms River","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":88791,"modificationDate":"2017-05-23"}, -{"geonameId":"3401545","name":"Crato","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":88786,"modificationDate":"2017-08-02"}, -{"geonameId":"3427213","name":"General Uriburu","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":88781,"modificationDate":"2020-06-10"}, -{"geonameId":"4936159","name":"Fall River","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":88777,"modificationDate":"2017-05-23"}, -{"geonameId":"1185209","name":"Habiganj","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":88760,"modificationDate":"2020-05-28"}, -{"geonameId":"282926","name":"Makkabim","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":88749,"modificationDate":"2020-06-10"}, -{"geonameId":"3068582","name":"Pardubice","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":88741,"modificationDate":"2019-02-27"}, -{"geonameId":"2034221","name":"Wangqing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":88732,"modificationDate":"2012-01-18"}, -{"geonameId":"7284843","name":"Budapest II. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":88729,"modificationDate":"2019-09-23"}, -{"geonameId":"3839479","name":"Rafaela","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":88713,"modificationDate":"2016-01-30"}, -{"geonameId":"4255466","name":"Carmel","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":88713,"modificationDate":"2017-05-23"}, -{"geonameId":"1344069","name":"Contai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":88702,"modificationDate":"2014-10-14"}, -{"geonameId":"2911007","name":"Hanau am Main","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":88648,"modificationDate":"2020-02-22"}, -{"geonameId":"3445578","name":"Valinhos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":88630,"modificationDate":"2012-08-03"}, -{"geonameId":"3910027","name":"Montero","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":88616,"modificationDate":"2013-05-08"}, -{"geonameId":"1257402","name":"Sangrūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":88615,"modificationDate":"2015-06-07"}, -{"geonameId":"3943423","name":"Chosica","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":88606,"modificationDate":"2012-07-19"}, -{"geonameId":"1864985","name":"Ashiya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":88573,"modificationDate":"2017-07-22"}, -{"geonameId":"1181611","name":"Chaman","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":88568,"modificationDate":"2019-12-06"}, -{"geonameId":"2447938","name":"Alaghsas","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":88561,"modificationDate":"2012-01-18"}, -{"geonameId":"4453066","name":"Asheville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":88512,"modificationDate":"2017-05-23"}, -{"geonameId":"1861171","name":"Iwata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":88509,"modificationDate":"2017-07-22"}, -{"geonameId":"711390","name":"Brovary","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":88506,"modificationDate":"2019-09-05"}, -{"geonameId":"1858794","name":"Kōnosu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":88493,"modificationDate":"2017-04-16"}, -{"geonameId":"3175081","name":"La Spezia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":88491,"modificationDate":"2018-03-16"}, -{"geonameId":"4839822","name":"Norwalk","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":88485,"modificationDate":"2017-05-23"}, -{"geonameId":"4915734","name":"Waukegan","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":88475,"modificationDate":"2017-08-11"}, -{"geonameId":"4153146","name":"Deltona","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":88474,"modificationDate":"2017-03-09"}, -{"geonameId":"1175021","name":"Kandhkot","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":88468,"modificationDate":"2019-12-06"}, -{"geonameId":"5355828","name":"Hawthorne","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":88451,"modificationDate":"2017-04-08"}, -{"geonameId":"665024","name":"Târgovişte","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":88435,"modificationDate":"2020-05-14"}, -{"geonameId":"109953","name":"Al Bahah","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":88419,"modificationDate":"2019-02-10"}, -{"geonameId":"3388376","name":"São Lourenço da Mata","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":88416,"modificationDate":"2012-08-03"}, -{"geonameId":"3456147","name":"Nova Lima","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":88399,"modificationDate":"2012-08-03"}, -{"geonameId":"1283095","name":"Mahendranagar","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":88381,"modificationDate":"2019-10-19"}, -{"geonameId":"1639925","name":"Klangenan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":88378,"modificationDate":"2012-01-17"}, -{"geonameId":"1654379","name":"Pakse","countryName":"Laos","timeZoneName":"Asia/Vientiane","timeZoneOffsetNameWithoutDst":"Indochina Time","population":88332,"modificationDate":"2016-02-27"}, -{"geonameId":"3686279","name":"Ciénaga","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":88311,"modificationDate":"2018-08-08"}, -{"geonameId":"3468879","name":"Brusque","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":88284,"modificationDate":"2015-06-12"}, -{"geonameId":"2338876","name":"Ifo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":88272,"modificationDate":"2016-01-30"}, -{"geonameId":"3184081","name":"Shkodër","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":88245,"modificationDate":"2019-05-03"}, -{"geonameId":"1259440","name":"Pollachi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":88214,"modificationDate":"2014-10-14"}, -{"geonameId":"4111410","name":"Fort Smith","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":88194,"modificationDate":"2017-05-23"}, -{"geonameId":"1273265","name":"Deoband","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":88171,"modificationDate":"2015-04-08"}, -{"geonameId":"4788158","name":"Suffolk","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":88161,"modificationDate":"2017-03-09"}, -{"geonameId":"4734825","name":"Sugar Land","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":88156,"modificationDate":"2017-03-09"}, -{"geonameId":"3193935","name":"Osijek","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":88140,"modificationDate":"2012-11-21"}, -{"geonameId":"1856293","name":"Nabari","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":88128,"modificationDate":"2017-07-22"}, -{"geonameId":"5367440","name":"Livermore","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":88126,"modificationDate":"2017-03-09"}, -{"geonameId":"306112","name":"Kozan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":88115,"modificationDate":"2012-01-18"}, -{"geonameId":"1261470","name":"Neyattinkara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":88104,"modificationDate":"2020-06-10"}, -{"geonameId":"1255024","name":"Tāndā","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":88073,"modificationDate":"2015-08-07"}, -{"geonameId":"1177042","name":"Hasilpur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":88031,"modificationDate":"2019-12-06"}, -{"geonameId":"498525","name":"Sarov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":88000,"modificationDate":"2019-09-05"}, -{"geonameId":"2407656","name":"Koidu","countryName":"Sierra Leone","timeZoneName":"Africa/Freetown","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":88000,"modificationDate":"2015-02-06"}, -{"geonameId":"1730225","name":"Arayat","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":87987,"modificationDate":"2017-12-13"}, -{"geonameId":"5090046","name":"Nashua","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":87970,"modificationDate":"2017-05-23"}, -{"geonameId":"1785566","name":"Yingchuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":87961,"modificationDate":"2015-06-07"}, -{"geonameId":"119161","name":"Qorveh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":87953,"modificationDate":"2017-03-04"}, -{"geonameId":"3530757","name":"Cholula","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":87897,"modificationDate":"2018-11-03"}, -{"geonameId":"296562","name":"Yozgat","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":87881,"modificationDate":"2012-01-18"}, -{"geonameId":"172374","name":"Ath Thawrah","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":87880,"modificationDate":"2017-01-03"}, -{"geonameId":"5207728","name":"Reading","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":87879,"modificationDate":"2019-09-05"}, -{"geonameId":"2232283","name":"Ebolova","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":87875,"modificationDate":"2020-06-10"}, -{"geonameId":"6138517","name":"Saint John","countryName":"Canada","timeZoneName":"America/Moncton","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":87857,"modificationDate":"2019-12-02"}, -{"geonameId":"6104111","name":"Pickering","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":87838,"modificationDate":"2010-09-22"}, -{"geonameId":"1685218","name":"Surigao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":87832,"modificationDate":"2018-01-02"}, -{"geonameId":"161616","name":"Balkanabat","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":87822,"modificationDate":"2013-11-28"}, -{"geonameId":"466885","name":"Yeysk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":87814,"modificationDate":"2019-09-05"}, -{"geonameId":"749780","name":"Kale-Sultanie","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":87791,"modificationDate":"2020-06-10"}, -{"geonameId":"5907990","name":"Brantford","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":87759,"modificationDate":"2019-08-29"}, -{"geonameId":"3628053","name":"San Juan de los Morros","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":87739,"modificationDate":"2012-01-03"}, -{"geonameId":"1808977","name":"Hanchuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":87737,"modificationDate":"2012-01-18"}, -{"geonameId":"1636816","name":"Majalengka","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":87732,"modificationDate":"2016-01-07"}, -{"geonameId":"570427","name":"Buzuluk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":87714,"modificationDate":"2019-09-05"}, -{"geonameId":"2518207","name":"El Puerto de Santa María","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":87696,"modificationDate":"2012-12-15"}, -{"geonameId":"4461574","name":"Concord","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":87696,"modificationDate":"2017-03-09"}, -{"geonameId":"2406407","name":"Makeni","countryName":"Sierra Leone","timeZoneName":"Africa/Freetown","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":87679,"modificationDate":"2015-03-08"}, -{"geonameId":"2817724","name":"Velbert","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":87669,"modificationDate":"2018-07-26"}, -{"geonameId":"3470691","name":"Barra do Piraí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":87668,"modificationDate":"2013-04-28"}, -{"geonameId":"373141","name":"Kadugli","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":87666,"modificationDate":"2016-01-07"}, -{"geonameId":"1797535","name":"Qiongshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":87657,"modificationDate":"2013-10-29"}, -{"geonameId":"3841490","name":"Pergamino","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":87652,"modificationDate":"2015-04-22"}, -{"geonameId":"202217","name":"Gitarama","countryName":"Rwanda","timeZoneName":"Africa/Kigali","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":87613,"modificationDate":"2016-07-06"}, -{"geonameId":"2875392","name":"Ludwigsburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":87603,"modificationDate":"2019-09-05"}, -{"geonameId":"1790471","name":"Xiangxiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":87592,"modificationDate":"2012-01-18"}, -{"geonameId":"1812981","name":"Deqing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":87576,"modificationDate":"2020-01-08"}, -{"geonameId":"5359446","name":"Indio","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":87533,"modificationDate":"2017-03-09"}, -{"geonameId":"5487811","name":"Rio Rancho","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":87521,"modificationDate":"2011-05-14"}, -{"geonameId":"7839240","name":"Enchanted Hills","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":87521,"modificationDate":"2011-06-04"}, -{"geonameId":"1277084","name":"Bārān","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":87478,"modificationDate":"2014-10-14"}, -{"geonameId":"5781061","name":"Sandy","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":87461,"modificationDate":"2017-03-10"}, -{"geonameId":"302819","name":"Patnos","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":87451,"modificationDate":"2015-02-07"}, -{"geonameId":"5409059","name":"Whittier","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":87438,"modificationDate":"2017-03-09"}, -{"geonameId":"1783683","name":"Yanjiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":87400,"modificationDate":"2012-01-18"}, -{"geonameId":"5111412","name":"Canarsie","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":87366,"modificationDate":"2017-04-16"}, -{"geonameId":"1184370","name":"Arifwala","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":87360,"modificationDate":"2019-12-06"}, -{"geonameId":"2358946","name":"Koudougou","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":87347,"modificationDate":"2013-02-08"}, -{"geonameId":"3097257","name":"Jelenia Góra","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":87310,"modificationDate":"2010-09-09"}, -{"geonameId":"3906791","name":"Quillacollo","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":87309,"modificationDate":"2017-09-12"}, -{"geonameId":"262036","name":"Glyfáda","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":87305,"modificationDate":"2019-10-23"}, -{"geonameId":"727233","name":"Shumen","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":87283,"modificationDate":"2019-02-27"}, -{"geonameId":"2338630","name":"Igede-Ekiti","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":87282,"modificationDate":"2016-01-30"}, -{"geonameId":"5799841","name":"Kirkland","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":87281,"modificationDate":"2017-03-09"}, -{"geonameId":"2035746","name":"Mishan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":87257,"modificationDate":"2012-01-18"}, -{"geonameId":"2693678","name":"Lund","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":87244,"modificationDate":"2019-09-05"}, -{"geonameId":"3472638","name":"Alegrete","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":87236,"modificationDate":"2013-05-19"}, -{"geonameId":"2035601","name":"Nenjiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":87236,"modificationDate":"2019-07-14"}, -{"geonameId":"1730713","name":"Angono","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":87199,"modificationDate":"2017-12-13"}, -{"geonameId":"3468215","name":"Caieiras","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":87188,"modificationDate":"2012-09-27"}, -{"geonameId":"5372205","name":"Menifee","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":87174,"modificationDate":"2017-03-09"}, -{"geonameId":"2643734","name":"Londonderry County Borough","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":87153,"modificationDate":"2016-12-04"}, -{"geonameId":"1272997","name":"Dhamtari","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":87151,"modificationDate":"2014-10-14"}, -{"geonameId":"5376890","name":"Newport Beach","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":87127,"modificationDate":"2017-03-09"}, -{"geonameId":"1254385","name":"Tiruchengode","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":87123,"modificationDate":"2014-10-14"}, -{"geonameId":"3629965","name":"Porlamar","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":87120,"modificationDate":"2016-07-17"}, -{"geonameId":"5403191","name":"Tracy","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":87075,"modificationDate":"2017-03-09"}, -{"geonameId":"380129","name":"Ad Douiem","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":87068,"modificationDate":"2013-06-15"}, -{"geonameId":"5337561","name":"Citrus Heights","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":87056,"modificationDate":"2017-03-09"}, -{"geonameId":"2239862","name":"Malanje","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":87046,"modificationDate":"2018-03-18"}, -{"geonameId":"3634922","name":"La Victoria","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":87045,"modificationDate":"2018-08-08"}, -{"geonameId":"5713587","name":"Bend","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":87014,"modificationDate":"2017-03-09"}, -{"geonameId":"1274106","name":"Chīrāla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":87001,"modificationDate":"2015-09-06"}, -{"geonameId":"147288","name":"Saotly","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":87000,"modificationDate":"2020-06-10"}, -{"geonameId":"2457163","name":"Gao","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":87000,"modificationDate":"2017-02-13"}, -{"geonameId":"558146","name":"Gubkin","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":87000,"modificationDate":"2020-03-07"}, -{"geonameId":"2392897","name":"Lokossa","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":86971,"modificationDate":"2017-12-28"}, -{"geonameId":"2343985","name":"Effium","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":86945,"modificationDate":"2016-01-30"}, -{"geonameId":"1268988","name":"Jharia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":86938,"modificationDate":"2014-10-14"}, -{"geonameId":"8858085","name":"Hacienda Santa Fe","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":86935,"modificationDate":"2014-04-11"}, -{"geonameId":"3696378","name":"Huaraz","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":86934,"modificationDate":"2019-09-05"}, -{"geonameId":"1279094","name":"Akot","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":86917,"modificationDate":"2015-08-07"}, -{"geonameId":"1182829","name":"Mianke Mor","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":86900,"modificationDate":"2019-12-06"}, -{"geonameId":"1601579","name":"Ban Mai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":86899,"modificationDate":"2012-01-16"}, -{"geonameId":"981827","name":"Louis Trichardt","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":86854,"modificationDate":"2013-11-03"}, -{"geonameId":"4987990","name":"Canton","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":86825,"modificationDate":"2017-05-23"}, -{"geonameId":"1258803","name":"Kajpura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":86820,"modificationDate":"2020-06-10"}, -{"geonameId":"1264588","name":"Madgaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":86818,"modificationDate":"2014-10-14"}, -{"geonameId":"4563008","name":"Caguas","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":86804,"modificationDate":"2019-02-26"}, -{"geonameId":"4161785","name":"Lehigh Acres","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":86784,"modificationDate":"2011-05-14"}, -{"geonameId":"5119347","name":"Greenburgh","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":86764,"modificationDate":"2010-04-26"}, -{"geonameId":"1794825","name":"Shizilu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":86749,"modificationDate":"2012-01-18"}, -{"geonameId":"3036572","name":"Asnières-sur-Seine","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":86742,"modificationDate":"2016-02-18"}, -{"geonameId":"1250161","name":"Batticaloa","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":86742,"modificationDate":"2019-09-05"}, -{"geonameId":"2990970","name":"Nanterre","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":86719,"modificationDate":"2019-09-05"}, -{"geonameId":"3666640","name":"Tumaco","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":86713,"modificationDate":"2018-08-08"}, -{"geonameId":"569742","name":"Chaykovskiy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":86712,"modificationDate":"2016-12-02"}, -{"geonameId":"2110480","name":"Yotsukaidō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":86701,"modificationDate":"2017-07-22"}, -{"geonameId":"3532592","name":"Atlixco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":86690,"modificationDate":"2018-11-03"}, -{"geonameId":"201521","name":"Musanze","countryName":"Rwanda","timeZoneName":"Africa/Kigali","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":86685,"modificationDate":"2016-07-06"}, -{"geonameId":"1257198","name":"Sardārshahr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":86672,"modificationDate":"2014-10-14"}, -{"geonameId":"2795011","name":"Ixelles","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":86671,"modificationDate":"2020-05-25"}, -{"geonameId":"3406317","name":"Barra do Corda","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":86662,"modificationDate":"2017-06-07"}, -{"geonameId":"1263247","name":"Mayiladuthurai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":86660,"modificationDate":"2014-10-14"}, -{"geonameId":"358600","name":"Būsh","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":86608,"modificationDate":"2011-04-19"}, -{"geonameId":"1648451","name":"Bojonegoro","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":86568,"modificationDate":"2016-01-07"}, -{"geonameId":"1784929","name":"Zhaogezhuang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":86555,"modificationDate":"2015-01-07"}, -{"geonameId":"792578","name":"Bitola","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":86528,"modificationDate":"2019-02-26"}, -{"geonameId":"285815","name":"Al Farwānīyah","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":86525,"modificationDate":"2019-02-26"}, -{"geonameId":"3124569","name":"Cornellà de Llobregat","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":86519,"modificationDate":"2010-04-22"}, -{"geonameId":"292878","name":"Al Fujairah City","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":86512,"modificationDate":"2019-05-29"}, -{"geonameId":"1680007","name":"Victorias","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":86510,"modificationDate":"2017-12-27"}, -{"geonameId":"1863293","name":"Hamakita","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":86502,"modificationDate":"2017-04-09"}, -{"geonameId":"3650472","name":"Tulcán","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":86498,"modificationDate":"2019-09-05"}, -{"geonameId":"2339150","name":"Idanre","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":86468,"modificationDate":"2018-12-04"}, -{"geonameId":"3398352","name":"Igarassu","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":86457,"modificationDate":"2012-08-03"}, -{"geonameId":"3689798","name":"Apartadó","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":86438,"modificationDate":"2018-06-08"}, -{"geonameId":"5018739","name":"Bloomington","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":86435,"modificationDate":"2017-05-23"}, -{"geonameId":"4916118","name":"West Town","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":86429,"modificationDate":"2017-12-06"}, -{"geonameId":"1684497","name":"Tagbilaran City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":86411,"modificationDate":"2018-11-27"}, -{"geonameId":"1670310","name":"Puli","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":86406,"modificationDate":"2017-09-24"}, -{"geonameId":"4356050","name":"Germantown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":86395,"modificationDate":"2019-01-23"}, -{"geonameId":"3672328","name":"Piedecuesta","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":86387,"modificationDate":"2018-09-05"}, -{"geonameId":"2312888","name":"Mbanza-Ngungu","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":86356,"modificationDate":"2012-06-05"}, -{"geonameId":"1863482","name":"Gyōda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":86343,"modificationDate":"2017-07-22"}, -{"geonameId":"3118848","name":"Las Rozas de Madrid","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":86340,"modificationDate":"2014-03-02"}, -{"geonameId":"5096699","name":"Clifton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":86334,"modificationDate":"2017-05-23"}, -{"geonameId":"3058531","name":"Nitra","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":86329,"modificationDate":"2019-09-05"}, -{"geonameId":"3842670","name":"Olavarría","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":86320,"modificationDate":"2017-02-07"}, -{"geonameId":"1280281","name":"Qamdo","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":86280,"modificationDate":"2013-04-03"}, -{"geonameId":"1863183","name":"Hannō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":86262,"modificationDate":"2017-07-22"}, -{"geonameId":"1514402","name":"Bekobod","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":86259,"modificationDate":"2012-01-17"}, -{"geonameId":"712441","name":"Berdychiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":86250,"modificationDate":"2018-10-02"}, -{"geonameId":"2005237","name":"Kasihan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":86234,"modificationDate":"2018-12-06"}, -{"geonameId":"1268205","name":"Kāmthi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":86213,"modificationDate":"2015-08-07"}, -{"geonameId":"1859908","name":"Kashiwazaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":86183,"modificationDate":"2017-07-22"}, -{"geonameId":"2513076","name":"Orihuela","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":86164,"modificationDate":"2012-03-04"}, -{"geonameId":"1800088","name":"Nanfeng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":86129,"modificationDate":"2012-06-05"}, -{"geonameId":"2653883","name":"Cannock","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":86121,"modificationDate":"2017-06-12"}, -{"geonameId":"5024719","name":"Duluth","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":86110,"modificationDate":"2017-05-23"}, -{"geonameId":"4887158","name":"Champaign","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":86096,"modificationDate":"2017-05-23"}, -{"geonameId":"1813171","name":"Zhangjiajie","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":86083,"modificationDate":"2012-01-18"}, -{"geonameId":"140097","name":"Borazdjan","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":86059,"modificationDate":"2020-06-10"}, -{"geonameId":"7910079","name":"Sodo","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":86050,"modificationDate":"2018-11-14"}, -{"geonameId":"251833","name":"Volos","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":86048,"modificationDate":"2016-12-11"}, -{"geonameId":"2324767","name":"Potiskum","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":86002,"modificationDate":"2016-06-22"}, -{"geonameId":"535330","name":"Lianozovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":86000,"modificationDate":"2018-11-14"}, -{"geonameId":"579870","name":"Babushkin","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":86000,"modificationDate":"2013-04-02"}, -{"geonameId":"787595","name":"Novi Pazar","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":85996,"modificationDate":"2016-05-18"}, -{"geonameId":"3056508","name":"Žilina","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":85985,"modificationDate":"2019-09-05"}, -{"geonameId":"918702","name":"Chipata","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":85963,"modificationDate":"2015-06-03"}, -{"geonameId":"2986495","name":"Poitiers","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":85960,"modificationDate":"2019-09-05"}, -{"geonameId":"2334652","name":"Keffi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":85911,"modificationDate":"2016-01-30"}, -{"geonameId":"2014022","name":"Usole Sibirskoe","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":85900,"modificationDate":"2020-06-10"}, -{"geonameId":"3165456","name":"Torre del Greco","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":85897,"modificationDate":"2016-04-25"}, -{"geonameId":"700646","name":"Mukachevo","countryName":"Ukraine","timeZoneName":"Europe/Uzhgorod","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":85881,"modificationDate":"2020-05-07"}, -{"geonameId":"328689","name":"Shashamanni","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":85871,"modificationDate":"2020-06-11"}, -{"geonameId":"1260393","name":"Paradipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":85868,"modificationDate":"2020-06-10"}, -{"geonameId":"2331158","name":"Makoko","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":85840,"modificationDate":"2013-05-05"}, -{"geonameId":"2926271","name":"Flensburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":85838,"modificationDate":"2019-09-05"}, -{"geonameId":"2111258","name":"Ryūgasaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":85761,"modificationDate":"2017-07-22"}, -{"geonameId":"2036933","name":"Helong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":85756,"modificationDate":"2012-01-18"}, -{"geonameId":"4903360","name":"Near North Side","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":85711,"modificationDate":"2017-12-06"}, -{"geonameId":"3838859","name":"Puerto Gallegos","countryName":"Argentina","timeZoneName":"America/Argentina/Rio_Gallegos","timeZoneOffsetNameWithoutDst":"Argentina Time","population":85700,"modificationDate":"2020-06-10"}, -{"geonameId":"1260387","name":"Paramagudi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":85695,"modificationDate":"2016-06-12"}, -{"geonameId":"3982213","name":"Tecoman","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":85689,"modificationDate":"2020-06-10"}, -{"geonameId":"3872395","name":"San Antonio","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":85651,"modificationDate":"2018-02-06"}, -{"geonameId":"2647138","name":"Hemel Hempstead","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":85629,"modificationDate":"2015-05-06"}, -{"geonameId":"11238229","name":"Obruchevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":85616,"modificationDate":"2020-04-10"}, -{"geonameId":"5336537","name":"Chino","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":85595,"modificationDate":"2017-03-09"}, -{"geonameId":"2037075","name":"Hailin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":85578,"modificationDate":"2013-05-07"}, -{"geonameId":"5323060","name":"Alhambra","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":85551,"modificationDate":"2017-03-09"}, -{"geonameId":"1261012","name":"Osmanabad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":85521,"modificationDate":"2014-10-13"}, -{"geonameId":"8504964","name":"Svetlanovskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":85508,"modificationDate":"2013-04-02"}, -{"geonameId":"1800107","name":"Nanding","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":85495,"modificationDate":"2012-01-18"}, -{"geonameId":"1184249","name":"Attock City","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":85479,"modificationDate":"2019-12-06"}, -{"geonameId":"5779206","name":"Ogden","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":85444,"modificationDate":"2017-03-09"}, -{"geonameId":"693942","name":"Shostka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":85432,"modificationDate":"2014-11-05"}, -{"geonameId":"2969679","name":"Versailles","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":85416,"modificationDate":"2018-03-09"}, -{"geonameId":"1809263","name":"Guozhen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":85415,"modificationDate":"2012-01-18"}, -{"geonameId":"8057551","name":"Khalifah A City","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":85374,"modificationDate":"2019-08-26"}, -{"geonameId":"101554","name":"Darin Fort","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":85371,"modificationDate":"2020-06-10"}, -{"geonameId":"1278340","name":"Aruppukkottai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":85369,"modificationDate":"2017-08-02"}, -{"geonameId":"3523908","name":"Los Reyes Acaquilpan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":85359,"modificationDate":"2018-11-03"}, -{"geonameId":"356000","name":"Ḩawsh ‘Īsá","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":85352,"modificationDate":"2018-03-15"}, -{"geonameId":"3392734","name":"Paulo Afonso","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":85350,"modificationDate":"2012-08-03"}, -{"geonameId":"3460523","name":"Ituiutaba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":85345,"modificationDate":"2014-12-27"}, -{"geonameId":"88903","name":"Al Marj","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":85315,"modificationDate":"2018-04-05"}, -{"geonameId":"5386834","name":"Redwood City","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":85288,"modificationDate":"2017-03-09"}, -{"geonameId":"1812988","name":"Dengzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":85279,"modificationDate":"2017-08-10"}, -{"geonameId":"2217362","name":"Gharyan","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":85219,"modificationDate":"2013-05-11"}, -{"geonameId":"468250","name":"Yegorevsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":85200,"modificationDate":"2020-06-10"}, -{"geonameId":"3023141","name":"Courbevoie","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":85158,"modificationDate":"2016-02-18"}, -{"geonameId":"5786899","name":"Bellingham","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":85146,"modificationDate":"2017-03-09"}, -{"geonameId":"1797333","name":"Qufu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":85144,"modificationDate":"2012-01-18"}, -{"geonameId":"457954","name":"Liepāja","countryName":"Latvia","timeZoneName":"Europe/Riga","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":85132,"modificationDate":"2019-09-05"}, -{"geonameId":"2129870","name":"Iwamizawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":85107,"modificationDate":"2017-07-22"}, -{"geonameId":"4401242","name":"O'Fallon","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":85040,"modificationDate":"2017-05-23"}, -{"geonameId":"655194","name":"Jyväskylä","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":85026,"modificationDate":"2019-09-05"}, -{"geonameId":"3853354","name":"Junín","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":85007,"modificationDate":"2015-04-22"}, -{"geonameId":"3674470","name":"Montelíbano","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":85000,"modificationDate":"2016-01-28"}, -{"geonameId":"11428685","name":"Rukban","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":85000,"modificationDate":"2018-12-11"}, -{"geonameId":"1655199","name":"Thakhèk","countryName":"Laos","timeZoneName":"Asia/Vientiane","timeZoneOffsetNameWithoutDst":"Indochina Time","population":85000,"modificationDate":"2017-06-03"}, -{"geonameId":"3724696","name":"Gonaïves","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":84961,"modificationDate":"2019-03-25"}, -{"geonameId":"2540689","name":"Oued Zem","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":84910,"modificationDate":"2019-03-14"}, -{"geonameId":"6085772","name":"Nanaimo","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":84905,"modificationDate":"2019-02-26"}, -{"geonameId":"3463859","name":"Esteio","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":84902,"modificationDate":"2012-08-03"}, -{"geonameId":"1276829","name":"Barani","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":84888,"modificationDate":"2020-06-10"}, -{"geonameId":"4067994","name":"Hoover","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":84848,"modificationDate":"2017-03-09"}, -{"geonameId":"3022530","name":"Créteil","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":84833,"modificationDate":"2018-02-06"}, -{"geonameId":"6544881","name":"Amsterdam-Zuidoost","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":84811,"modificationDate":"2009-01-15"}, -{"geonameId":"256601","name":"Ílion","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":84793,"modificationDate":"2019-10-23"}, -{"geonameId":"1337245","name":"Madaripur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":84789,"modificationDate":"2020-04-01"}, -{"geonameId":"2920789","name":"Gesundbrunnen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":84789,"modificationDate":"2012-06-09"}, -{"geonameId":"3528756","name":"Ciudad Mante","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":84787,"modificationDate":"2018-11-03"}, -{"geonameId":"1283339","name":"Hetauda","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":84775,"modificationDate":"2019-10-19"}, -{"geonameId":"1280757","name":"Laojunmiao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":84769,"modificationDate":"2012-01-18"}, -{"geonameId":"2939811","name":"Cottbus","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":84754,"modificationDate":"2019-02-28"}, -{"geonameId":"3515011","name":"Tuxpan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":84750,"modificationDate":"2020-06-10"}, -{"geonameId":"1695804","name":"Panabo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":84749,"modificationDate":"2017-12-13"}, -{"geonameId":"2343252","name":"Epe","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":84711,"modificationDate":"2016-01-30"}, -{"geonameId":"3447998","name":"Sarandi","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":84697,"modificationDate":"2012-08-03"}, -{"geonameId":"2508737","name":"Aflou","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":84683,"modificationDate":"2012-01-19"}, -{"geonameId":"2342192","name":"Gamboru","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":84672,"modificationDate":"2016-06-22"}, -{"geonameId":"3815415","name":"Tlaxcala","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":84670,"modificationDate":"2016-09-09"}, -{"geonameId":"324698","name":"Akhisar","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":84659,"modificationDate":"2019-09-05"}, -{"geonameId":"4832353","name":"Danbury","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":84657,"modificationDate":"2017-05-23"}, -{"geonameId":"1626099","name":"Sumenep","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":84656,"modificationDate":"2020-05-07"}, -{"geonameId":"2230876","name":"Guider","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":84647,"modificationDate":"2014-01-08"}, -{"geonameId":"1240935","name":"Katunayaka","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":84643,"modificationDate":"2014-08-05"}, -{"geonameId":"1832384","name":"Eisen","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":84625,"modificationDate":"2018-07-03"}, -{"geonameId":"1275679","name":"Bijnor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":84593,"modificationDate":"2015-04-08"}, -{"geonameId":"1700868","name":"Mariveles","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":84567,"modificationDate":"2017-12-13"}, -{"geonameId":"2638867","name":"St Albans","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":84561,"modificationDate":"2019-09-05"}, -{"geonameId":"1668467","name":"Daxi","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":84549,"modificationDate":"2017-09-24"}, -{"geonameId":"4833505","name":"East Norwalk","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":84530,"modificationDate":"2017-05-23"}, -{"geonameId":"4688275","name":"Edinburg","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":84497,"modificationDate":"2017-03-09"}, -{"geonameId":"4174402","name":"Sunrise","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":84439,"modificationDate":"2014-10-07"}, -{"geonameId":"3460733","name":"Itaperuna","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":84435,"modificationDate":"2017-03-02"}, -{"geonameId":"692975","name":"Kadiyivka","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":84425,"modificationDate":"2018-05-24"}, -{"geonameId":"1007400","name":"Dundee","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":84413,"modificationDate":"2012-07-12"}, -{"geonameId":"2808720","name":"Wilhelmshaven","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":84393,"modificationDate":"2019-09-05"}, -{"geonameId":"1886762","name":"Zhoushan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":84380,"modificationDate":"2014-10-08"}, -{"geonameId":"1651555","name":"Ambarawa","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":84379,"modificationDate":"2012-01-17"}, -{"geonameId":"763534","name":"Nowy Sącz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":84376,"modificationDate":"2019-09-05"}, -{"geonameId":"2327827","name":"Ogaminana","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":84373,"modificationDate":"2016-01-30"}, -{"geonameId":"1278688","name":"Anakāpalle","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":84357,"modificationDate":"2014-10-10"}, -{"geonameId":"965241","name":"Piet Retief","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":84349,"modificationDate":"2012-07-12"}, -{"geonameId":"1813088","name":"Dazhong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":84323,"modificationDate":"2012-01-18"}, -{"geonameId":"4004885","name":"Heróica Zitácuaro","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":84307,"modificationDate":"2018-11-03"}, -{"geonameId":"2639557","name":"Redditch","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":84300,"modificationDate":"2019-03-25"}, -{"geonameId":"1606147","name":"Songkhla","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":84264,"modificationDate":"2015-06-04"}, -{"geonameId":"3902377","name":"Trinidad","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":84259,"modificationDate":"2014-06-02"}, -{"geonameId":"965401","name":"Phuthaditjhaba","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":84258,"modificationDate":"2012-07-12"}, -{"geonameId":"3129135","name":"Avilés","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":84242,"modificationDate":"2012-01-19"}, -{"geonameId":"749274","name":"Çerkezköy","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":84234,"modificationDate":"2013-03-02"}, -{"geonameId":"1805334","name":"Jinxiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":84231,"modificationDate":"2011-09-11"}, -{"geonameId":"2518494","name":"El Ejido","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":84227,"modificationDate":"2015-09-02"}, -{"geonameId":"5105496","name":"Trenton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":84225,"modificationDate":"2019-09-05"}, -{"geonameId":"1485724","name":"Yurga","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":84220,"modificationDate":"2018-08-28"}, -{"geonameId":"934570","name":"Curepipe","countryName":"Mauritius","timeZoneName":"Indian/Mauritius","timeZoneOffsetNameWithoutDst":"Mauritius Time","population":84200,"modificationDate":"2019-07-11"}, -{"geonameId":"5490263","name":"Santa Fe","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":84099,"modificationDate":"2019-09-05"}, -{"geonameId":"2548830","name":"Fkih Ben Salah","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":84072,"modificationDate":"2020-06-11"}, -{"geonameId":"4254679","name":"Bloomington","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":84067,"modificationDate":"2017-05-23"}, -{"geonameId":"2231504","name":"Foumbot","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":84065,"modificationDate":"2014-06-04"}, -{"geonameId":"535729","name":"Komendantsky aerodrom","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":84052,"modificationDate":"2013-03-30"}, -{"geonameId":"1185224","name":"Feni","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":84028,"modificationDate":"2020-05-28"}, -{"geonameId":"1833466","name":"Wanju","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":84009,"modificationDate":"2010-07-11"}, -{"geonameId":"1262109","name":"Najībābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":84006,"modificationDate":"2015-08-07"}, -{"geonameId":"1860728","name":"Kakegawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":84004,"modificationDate":"2017-07-22"}, -{"geonameId":"1724933","name":"Binonga","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":83980,"modificationDate":"2017-12-13"}, -{"geonameId":"1273687","name":"Dohad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":83966,"modificationDate":"2015-10-04"}, -{"geonameId":"1790392","name":"Xiannü","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":83936,"modificationDate":"2012-05-05"}, -{"geonameId":"3391360","name":"Santana","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":83927,"modificationDate":"2012-08-03"}, -{"geonameId":"4888015","name":"Cicero","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":83886,"modificationDate":"2017-05-23"}, -{"geonameId":"5356277","name":"Hemet","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":83861,"modificationDate":"2017-03-09"}, -{"geonameId":"1258686","name":"Rāmgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":83833,"modificationDate":"2017-08-02"}, -{"geonameId":"1863528","name":"Gotenba","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":83794,"modificationDate":"2017-07-22"}, -{"geonameId":"3994489","name":"Ocotlán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":83769,"modificationDate":"2018-11-03"}, -{"geonameId":"2497849","name":"El Khroub","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":83746,"modificationDate":"2012-01-19"}, -{"geonameId":"7615262","name":"Jardim Paulista","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":83667,"modificationDate":"2018-10-29"}, -{"geonameId":"2637329","name":"South Shields","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":83655,"modificationDate":"2011-03-03"}, -{"geonameId":"1019704","name":"Bethlehem","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":83654,"modificationDate":"2012-07-12"}, -{"geonameId":"2643736","name":"Derry","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":83652,"modificationDate":"2016-12-04"}, -{"geonameId":"352354","name":"Menuf","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":83651,"modificationDate":"2020-06-11"}, -{"geonameId":"2754064","name":"Hilversum","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":83640,"modificationDate":"2017-10-17"}, -{"geonameId":"2036081","name":"Lingdong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":83636,"modificationDate":"2012-01-18"}, -{"geonameId":"202905","name":"Gisenyi","countryName":"Rwanda","timeZoneName":"Africa/Kigali","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":83623,"modificationDate":"2010-08-19"}, -{"geonameId":"1799574","name":"Nanzhang Chengguanzhen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":83604,"modificationDate":"2012-01-18"}, -{"geonameId":"294778","name":"Herzliya","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":83600,"modificationDate":"2017-07-02"}, -{"geonameId":"1680116","name":"NIA Valencia","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":83591,"modificationDate":"2017-12-13"}, -{"geonameId":"3673662","name":"Ocaña","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":83511,"modificationDate":"2018-08-08"}, -{"geonameId":"2392308","name":"Ouidah","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":83503,"modificationDate":"2012-01-18"}, -{"geonameId":"5552450","name":"Ahwatukee Foothills","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":83464,"modificationDate":"2018-11-24"}, -{"geonameId":"2820860","name":"Tübingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":83416,"modificationDate":"2019-09-05"}, -{"geonameId":"1832830","name":"Yangp'yŏng","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":83367,"modificationDate":"2010-08-12"}, -{"geonameId":"1912205","name":"Ungsang","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":83360,"modificationDate":"2018-12-05"}, -{"geonameId":"1267394","name":"Kāvali","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":83352,"modificationDate":"2015-09-06"}, -{"geonameId":"6331909","name":"Johns Creek","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":83335,"modificationDate":"2017-03-09"}, -{"geonameId":"4000821","name":"La Piedad","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":83323,"modificationDate":"2018-11-03"}, -{"geonameId":"2110579","name":"Yachimata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":83322,"modificationDate":"2017-07-22"}, -{"geonameId":"4711725","name":"Mission","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":83298,"modificationDate":"2017-03-09"}, -{"geonameId":"2067119","name":"Mandurah","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":83294,"modificationDate":"2019-07-20"}, -{"geonameId":"3402000","name":"Codó","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":83288,"modificationDate":"2012-08-03"}, -{"geonameId":"5012639","name":"Troy","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":83280,"modificationDate":"2017-05-23"}, -{"geonameId":"1700917","name":"Marilao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":83276,"modificationDate":"2017-12-13"}, -{"geonameId":"5331575","name":"Buena Park","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":83270,"modificationDate":"2017-03-09"}, -{"geonameId":"1787837","name":"Xucheng","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":83267,"modificationDate":"2013-10-05"}, -{"geonameId":"2338497","name":"Ihiala","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":83265,"modificationDate":"2016-01-30"}, -{"geonameId":"602150","name":"Umeå","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":83249,"modificationDate":"2019-09-05"}, -{"geonameId":"2112319","name":"Katori-shi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":83181,"modificationDate":"2017-07-22"}, -{"geonameId":"1271910","name":"Fatehpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":83170,"modificationDate":"2014-10-14"}, -{"geonameId":"690688","name":"Uman","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":83142,"modificationDate":"2020-05-16"}, -{"geonameId":"1636125","name":"Margahayukencana","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":83119,"modificationDate":"2012-01-17"}, -{"geonameId":"1644605","name":"Galesong","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":83050,"modificationDate":"2012-01-17"}, -{"geonameId":"3121070","name":"Guadalajara","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":83039,"modificationDate":"2013-07-06"}, -{"geonameId":"8411054","name":"Madhyapur Thimi","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":83036,"modificationDate":"2019-10-19"}, -{"geonameId":"1808747","name":"Hecun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":83009,"modificationDate":"2012-01-18"}, -{"geonameId":"1690033","name":"San Fernando","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":83003,"modificationDate":"2017-12-13"}, -{"geonameId":"8125829","name":"Kamigyō-ku","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":83000,"modificationDate":"2017-04-09"}, -{"geonameId":"710554","name":"Chervonohrad","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":83000,"modificationDate":"2014-08-06"}, -{"geonameId":"1799348","name":"Ningyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":82994,"modificationDate":"2012-01-18"}, -{"geonameId":"1069129","name":"Antsiranana","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":82937,"modificationDate":"2018-09-07"}, -{"geonameId":"2785123","name":"Uccle","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":82929,"modificationDate":"2020-05-25"}, -{"geonameId":"1805379","name":"Jinshi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":82906,"modificationDate":"2012-01-18"}, -{"geonameId":"2634308","name":"Weston-super-Mare","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":82903,"modificationDate":"2011-03-03"}, -{"geonameId":"752015","name":"Amasya","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":82896,"modificationDate":"2017-01-30"}, -{"geonameId":"1852984","name":"Sanjō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":82893,"modificationDate":"2017-07-22"}, -{"geonameId":"4167538","name":"Palm Coast","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":82893,"modificationDate":"2017-03-09"}, -{"geonameId":"1786060","name":"Yuanping","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":82883,"modificationDate":"2012-01-18"}, -{"geonameId":"2871039","name":"Minden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":82879,"modificationDate":"2015-09-04"}, -{"geonameId":"3489460","name":"Montego Bay","countryName":"Jamaica","timeZoneName":"America/Jamaica","timeZoneOffsetNameWithoutDst":"Eastern Time","population":82867,"modificationDate":"2017-03-14"}, -{"geonameId":"789107","name":"Kraljevo","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":82846,"modificationDate":"2019-12-08"}, -{"geonameId":"4110486","name":"Fayetteville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":82830,"modificationDate":"2017-05-23"}, -{"geonameId":"4876523","name":"Sioux City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":82821,"modificationDate":"2017-05-23"}, -{"geonameId":"3901178","name":"Yacuiba","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":82803,"modificationDate":"2014-11-30"}, -{"geonameId":"114930","name":"Shīrvān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":82790,"modificationDate":"2015-07-03"}, -{"geonameId":"3075921","name":"Havířov","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":82768,"modificationDate":"2019-09-05"}, -{"geonameId":"1181163","name":"Chichawatni","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":82762,"modificationDate":"2019-12-06"}, -{"geonameId":"98622","name":"Shattrah el Muntifik","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":82732,"modificationDate":"2020-06-10"}, -{"geonameId":"1685755","name":"Sorsogon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":82730,"modificationDate":"2017-12-13"}, -{"geonameId":"2988358","name":"Pau","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":82697,"modificationDate":"2020-02-07"}, -{"geonameId":"2511716","name":"Roquetas de Mar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":82665,"modificationDate":"2015-09-03"}, -{"geonameId":"3114531","name":"Palencia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":82651,"modificationDate":"2019-09-05"}, -{"geonameId":"1785716","name":"Pizhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":82641,"modificationDate":"2012-01-18"}, -{"geonameId":"3130380","name":"Algorta","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":82624,"modificationDate":"2007-11-15"}, -{"geonameId":"2647632","name":"Halifax","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":82624,"modificationDate":"2010-10-16"}, -{"geonameId":"1815585","name":"Changqing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":82598,"modificationDate":"2012-01-18"}, -{"geonameId":"3471691","name":"Araxá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":82595,"modificationDate":"2017-09-21"}, -{"geonameId":"1882056","name":"Sinhyeon","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":82560,"modificationDate":"2012-01-19"}, -{"geonameId":"1789118","name":"Xindian","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":82555,"modificationDate":"2012-01-18"}, -{"geonameId":"3836992","name":"San Martín","countryName":"Argentina","timeZoneName":"America/Argentina/Mendoza","timeZoneOffsetNameWithoutDst":"Argentina Time","population":82549,"modificationDate":"2016-01-30"}, -{"geonameId":"1269247","name":"Jangipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":82548,"modificationDate":"2018-12-04"}, -{"geonameId":"3895138","name":"Chiguayante","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":82545,"modificationDate":"2013-01-11"}, -{"geonameId":"304081","name":"Mush","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":82536,"modificationDate":"2020-06-10"}, -{"geonameId":"1852964","name":"Sano","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":82535,"modificationDate":"2017-07-22"}, -{"geonameId":"1511494","name":"Anzhero-Sudzhensk","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":82526,"modificationDate":"2012-01-17"}, -{"geonameId":"2530048","name":"Taourirt","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":82518,"modificationDate":"2016-11-04"}, -{"geonameId":"1280037","name":"Shache","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":82509,"modificationDate":"2019-02-06"}, -{"geonameId":"1786676","name":"Yima","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":82509,"modificationDate":"2012-01-18"}, -{"geonameId":"360048","name":"Ashmūn","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":82507,"modificationDate":"2017-05-08"}, -{"geonameId":"5364514","name":"Lake Forest","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":82492,"modificationDate":"2017-03-09"}, -{"geonameId":"728330","name":"Pernik","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":82467,"modificationDate":"2019-09-05"}, -{"geonameId":"6318107","name":"Redenção","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":82464,"modificationDate":"2019-07-21"}, -{"geonameId":"1272892","name":"Dhār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":82438,"modificationDate":"2014-10-14"}, -{"geonameId":"5372253","name":"Merced","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":82436,"modificationDate":"2017-03-09"}, -{"geonameId":"3110834","name":"Sant Boi de Llobregat","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":82428,"modificationDate":"2010-07-27"}, -{"geonameId":"3112989","name":"Pozuelo de Alarcón","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":82428,"modificationDate":"2012-03-04"}, -{"geonameId":"161290","name":"Bagamoyo","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":82426,"modificationDate":"2016-07-26"}, -{"geonameId":"1732945","name":"Cukai","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":82425,"modificationDate":"2012-01-17"}, -{"geonameId":"2035002","name":"Shangzhi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":82419,"modificationDate":"2013-05-07"}, -{"geonameId":"1270417","name":"Hānsi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":82407,"modificationDate":"2015-06-07"}, -{"geonameId":"1800065","name":"Nangong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":82386,"modificationDate":"2012-01-18"}, -{"geonameId":"3598572","name":"Chimaltenango","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":82370,"modificationDate":"2012-12-05"}, -{"geonameId":"1801722","name":"Ryojun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":82345,"modificationDate":"2020-06-10"}, -{"geonameId":"1489246","name":"Troitsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":82338,"modificationDate":"2019-09-05"}, -{"geonameId":"3061186","name":"Banská Bystrica","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":82336,"modificationDate":"2019-09-05"}, -{"geonameId":"248370","name":"Medeba","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":82335,"modificationDate":"2020-06-10"}, -{"geonameId":"1860112","name":"Kanoya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":82335,"modificationDate":"2017-07-22"}, -{"geonameId":"12047417","name":"Reef Al Fujairah City","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":82310,"modificationDate":"2019-05-29"}, -{"geonameId":"303798","name":"Nizip","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":82308,"modificationDate":"2012-01-18"}, -{"geonameId":"307864","name":"Kilis","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":82301,"modificationDate":"2012-01-18"}, -{"geonameId":"3024266","name":"Colombes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":82300,"modificationDate":"2016-02-18"}, -{"geonameId":"2510409","name":"Toledo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":82291,"modificationDate":"2019-09-05"}, -{"geonameId":"1185183","name":"Laksam","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":82290,"modificationDate":"2020-06-10"}, -{"geonameId":"4707814","name":"Longview","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":82287,"modificationDate":"2017-03-09"}, -{"geonameId":"6544101","name":"Les Corts","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":82270,"modificationDate":"2017-05-26"}, -{"geonameId":"623317","name":"Polatsk","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":82258,"modificationDate":"2019-09-05"}, -{"geonameId":"7284826","name":"Budapest VIII. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":82222,"modificationDate":"2019-09-23"}, -{"geonameId":"1797264","name":"Quzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":82216,"modificationDate":"2012-01-18"}, -{"geonameId":"747155","name":"Fatsa","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":82160,"modificationDate":"2014-06-27"}, -{"geonameId":"2395915","name":"Abomey","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":82154,"modificationDate":"2019-02-27"}, -{"geonameId":"3626219","name":"Tinaquillo","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":82145,"modificationDate":"2018-08-08"}, -{"geonameId":"1850311","name":"Tochigi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":82133,"modificationDate":"2017-07-22"}, -{"geonameId":"580054","name":"Azov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":82133,"modificationDate":"2019-09-05"}, -{"geonameId":"4677008","name":"Bryan","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":82118,"modificationDate":"2017-03-09"}, -{"geonameId":"2337352","name":"Ipoti","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":82113,"modificationDate":"2018-12-04"}, -{"geonameId":"1850693","name":"Tanashichō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":82112,"modificationDate":"2017-11-10"}, -{"geonameId":"1857665","name":"Marugame","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":82090,"modificationDate":"2017-07-22"}, -{"geonameId":"1794947","name":"Shiwan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":82031,"modificationDate":"2012-06-05"}, -{"geonameId":"6087892","name":"Niagara Falls","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":82000,"modificationDate":"2009-06-07"}, -{"geonameId":"2656065","name":"Beckenham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":82000,"modificationDate":"2012-06-01"}, -{"geonameId":"5014681","name":"Westland","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":82000,"modificationDate":"2017-05-23"}, -{"geonameId":"1185207","name":"Ishurdi","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":81995,"modificationDate":"2020-05-28"}, -{"geonameId":"2473457","name":"Kasserine","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":81987,"modificationDate":"2018-08-26"}, -{"geonameId":"3178229","name":"Como","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":81975,"modificationDate":"2018-03-16"}, -{"geonameId":"2636276","name":"Tamworth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":81964,"modificationDate":"2017-06-12"}, -{"geonameId":"1607532","name":"Phra Nakhon Si Ayutthaya","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":81962,"modificationDate":"2012-01-16"}, -{"geonameId":"3408404","name":"Abreu e Lima","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":81959,"modificationDate":"2012-08-03"}, -{"geonameId":"3711668","name":"David","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":81957,"modificationDate":"2017-08-16"}, -{"geonameId":"3679277","name":"La Dorada","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":81950,"modificationDate":"2018-07-04"}, -{"geonameId":"1182815","name":"Bhakkar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":81950,"modificationDate":"2019-12-06"}, -{"geonameId":"12165736","name":"Breña","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":81909,"modificationDate":"2020-05-12"}, -{"geonameId":"3840300","name":"Presidencia Roque Sáenz Peña","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":81879,"modificationDate":"2016-10-30"}, -{"geonameId":"3460834","name":"Itajubá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":81870,"modificationDate":"2012-08-03"}, -{"geonameId":"103369","name":"Bisha","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":81828,"modificationDate":"2020-06-10"}, -{"geonameId":"1841810","name":"Gwangju","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":81780,"modificationDate":"2015-07-03"}, -{"geonameId":"2293268","name":"Agboville","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":81770,"modificationDate":"2016-05-18"}, -{"geonameId":"2817220","name":"Villingen-Schwenningen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":81770,"modificationDate":"2014-01-17"}, -{"geonameId":"551847","name":"Kaspiysk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":81752,"modificationDate":"2019-01-12"}, -{"geonameId":"3430988","name":"Luján","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":81749,"modificationDate":"2015-04-22"}, -{"geonameId":"3174530","name":"Lucca","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":81748,"modificationDate":"2016-04-25"}, -{"geonameId":"1793364","name":"Tangping","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":81729,"modificationDate":"2012-06-05"}, -{"geonameId":"108435","name":"Ar Rass","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":81728,"modificationDate":"2017-12-06"}, -{"geonameId":"5225507","name":"Warwick","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":81699,"modificationDate":"2017-05-23"}, -{"geonameId":"288789","name":"Barkah","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":81647,"modificationDate":"2020-06-10"}, -{"geonameId":"1621884","name":"Watampone","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":81629,"modificationDate":"2012-01-17"}, -{"geonameId":"3435810","name":"Campana","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":81612,"modificationDate":"2018-12-05"}, -{"geonameId":"5364855","name":"Lakewood","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":81611,"modificationDate":"2017-03-09"}, -{"geonameId":"117656","name":"Shapur","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":81606,"modificationDate":"2020-06-10"}, -{"geonameId":"3113209","name":"Pontevedra","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":81576,"modificationDate":"2012-12-08"}, -{"geonameId":"611847","name":"Sokhumi","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":81546,"modificationDate":"2014-03-15"}, -{"geonameId":"173811","name":"Hassetche","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":81539,"modificationDate":"2020-06-10"}, -{"geonameId":"1840886","name":"Mungyeong","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":81525,"modificationDate":"2010-07-09"}, -{"geonameId":"1268673","name":"Kadiri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":81498,"modificationDate":"2016-10-08"}, -{"geonameId":"3458696","name":"Lavras","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":81472,"modificationDate":"2012-08-03"}, -{"geonameId":"1272720","name":"Dhorail","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":81445,"modificationDate":"2020-06-10"}, -{"geonameId":"1174042","name":"Kharian","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":81435,"modificationDate":"2019-12-06"}, -{"geonameId":"1258291","name":"Rāyachoti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":81433,"modificationDate":"2016-10-08"}, -{"geonameId":"1785964","name":"Yudong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":81408,"modificationDate":"2012-01-18"}, -{"geonameId":"1525798","name":"Balqash","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":81364,"modificationDate":"2020-04-08"}, -{"geonameId":"4565119","name":"Guaynabo","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":81360,"modificationDate":"2015-08-03"}, -{"geonameId":"1848499","name":"Yashio","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":81345,"modificationDate":"2018-01-18"}, -{"geonameId":"4992523","name":"Farmington Hills","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":81330,"modificationDate":"2017-05-23"}, -{"geonameId":"1267090","name":"Kambay","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":81328,"modificationDate":"2020-06-10"}, -{"geonameId":"1188569","name":"Sarishābāri","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":81325,"modificationDate":"2016-11-17"}, -{"geonameId":"7310164","name":"San Tan Valley","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":81321,"modificationDate":"2011-05-15"}, -{"geonameId":"684657","name":"Bistriţa","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":81318,"modificationDate":"2016-02-07"}, -{"geonameId":"4588165","name":"Mount Pleasant","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":81317,"modificationDate":"2019-10-21"}, -{"geonameId":"3471291","name":"Avaré","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":81285,"modificationDate":"2012-08-03"}, -{"geonameId":"2885679","name":"Konstanz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":81275,"modificationDate":"2019-10-09"}, -{"geonameId":"1850559","name":"Tatebayashi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":81274,"modificationDate":"2017-07-22"}, -{"geonameId":"3095321","name":"Konin","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":81258,"modificationDate":"2019-09-05"}, -{"geonameId":"3463140","name":"Formosa","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":81232,"modificationDate":"2016-06-10"}, -{"geonameId":"2468353","name":"Gafsa","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":81232,"modificationDate":"2018-08-29"}, -{"geonameId":"668954","name":"Resicza","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":81228,"modificationDate":"2020-06-10"}, -{"geonameId":"3458662","name":"Leme","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":81209,"modificationDate":"2012-08-03"}, -{"geonameId":"6545310","name":"Mitte","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":81205,"modificationDate":"2017-05-10"}, -{"geonameId":"2332357","name":"Lalupon","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":81130,"modificationDate":"2019-08-07"}, -{"geonameId":"2806142","name":"Worms","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":81099,"modificationDate":"2019-09-05"}, -{"geonameId":"5221659","name":"Cranston","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":81073,"modificationDate":"2017-03-09"}, -{"geonameId":"1538634","name":"Ozersk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":81023,"modificationDate":"2014-04-16"}, -{"geonameId":"466990","name":"Yessentuki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":81015,"modificationDate":"2016-12-03"}, -{"geonameId":"2967849","name":"Vitry-sur-Seine","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":81001,"modificationDate":"2019-03-26"}, -{"geonameId":"4161580","name":"Largo","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":81000,"modificationDate":"2017-03-09"}, -{"geonameId":"318253","name":"Cizre","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":80992,"modificationDate":"2013-08-05"}, -{"geonameId":"1925936","name":"Naesŏ","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":80987,"modificationDate":"2006-01-17"}, -{"geonameId":"1261288","name":"Nirmal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":80982,"modificationDate":"2018-05-27"}, -{"geonameId":"934131","name":"Quatre Bornes","countryName":"Mauritius","timeZoneName":"Indian/Mauritius","timeZoneOffsetNameWithoutDst":"Mauritius Time","population":80961,"modificationDate":"2012-05-18"}, -{"geonameId":"1272045","name":"Emmiganūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":80933,"modificationDate":"2015-11-08"}, -{"geonameId":"923295","name":"Zomba","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":80932,"modificationDate":"2011-04-25"}, -{"geonameId":"1811440","name":"Feicheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":80929,"modificationDate":"2012-01-18"}, -{"geonameId":"2392601","name":"Natitingou","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":80892,"modificationDate":"2012-01-18"}, -{"geonameId":"3169561","name":"Ravenna","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":80868,"modificationDate":"2014-06-24"}, -{"geonameId":"1795941","name":"Shanting","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":80843,"modificationDate":"2006-01-17"}, -{"geonameId":"1269092","name":"Jeypore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":80837,"modificationDate":"2017-03-18"}, -{"geonameId":"2754394","name":"Hengelo","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":80809,"modificationDate":"2018-10-18"}, -{"geonameId":"1852607","name":"Shibata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":80793,"modificationDate":"2017-07-22"}, -{"geonameId":"1863693","name":"Gamagōri","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":80786,"modificationDate":"2017-07-22"}, -{"geonameId":"2482886","name":"Rouissat","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":80784,"modificationDate":"2012-01-19"}, -{"geonameId":"547523","name":"Klin","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":80778,"modificationDate":"2019-09-05"}, -{"geonameId":"294514","name":"Kfar Saba","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":80773,"modificationDate":"2017-07-02"}, -{"geonameId":"1861095","name":"Izumiōtsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":80772,"modificationDate":"2017-07-22"}, -{"geonameId":"3121007","name":"Getxo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":80770,"modificationDate":"2019-04-09"}, -{"geonameId":"7279734","name":"Kotkapura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":80741,"modificationDate":"2014-10-14"}, -{"geonameId":"2555467","name":"Berkane","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":80721,"modificationDate":"2016-11-02"}, -{"geonameId":"2110729","name":"Toride","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":80716,"modificationDate":"2017-07-22"}, -{"geonameId":"3174953","name":"Lecce","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":80695,"modificationDate":"2019-02-28"}, -{"geonameId":"4786714","name":"South Suffolk","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":80690,"modificationDate":"2006-01-17"}, -{"geonameId":"2235196","name":"Bafang","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":80688,"modificationDate":"2013-07-04"}, -{"geonameId":"5552301","name":"Avondale","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":80684,"modificationDate":"2017-03-09"}, -{"geonameId":"2367886","name":"Atakpamé","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":80683,"modificationDate":"2012-02-02"}, -{"geonameId":"3036145","name":"Aulnay-sous-Bois","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":80615,"modificationDate":"2016-02-18"}, -{"geonameId":"5404119","name":"Tustin","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":80583,"modificationDate":"2017-03-09"}, -{"geonameId":"2504099","name":"Berrouaghia","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":80573,"modificationDate":"2012-01-19"}, -{"geonameId":"321082","name":"Badlis","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":80568,"modificationDate":"2020-06-10"}, -{"geonameId":"713174","name":"Bakhmut","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":80500,"modificationDate":"2020-03-08"}, -{"geonameId":"12042052","name":"Bani Yas City","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":80498,"modificationDate":"2019-05-29"}, -{"geonameId":"3430443","name":"Necochea","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":80478,"modificationDate":"2016-01-27"}, -{"geonameId":"315795","name":"Elbistan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":80456,"modificationDate":"2012-01-18"}, -{"geonameId":"1253956","name":"Udhampur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":80447,"modificationDate":"2014-10-13"}, -{"geonameId":"5375480","name":"Mountain View","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":80435,"modificationDate":"2017-03-09"}, -{"geonameId":"5376095","name":"Napa","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":80434,"modificationDate":"2017-03-09"}, -{"geonameId":"1268601","name":"Kairāna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":80432,"modificationDate":"2015-08-07"}, -{"geonameId":"3165243","name":"Trento","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":80425,"modificationDate":"2019-09-05"}, -{"geonameId":"2439376","name":"Tahoua","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":80425,"modificationDate":"2012-01-18"}, -{"geonameId":"1857334","name":"Mihara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":80387,"modificationDate":"2017-07-22"}, -{"geonameId":"1784055","name":"Zhuanghe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":80384,"modificationDate":"2012-01-18"}, -{"geonameId":"1277661","name":"Burha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":80360,"modificationDate":"2020-06-10"}, -{"geonameId":"140889","name":"Bunab","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":80359,"modificationDate":"2020-06-10"}, -{"geonameId":"1792516","name":"Loushanguan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":80344,"modificationDate":"2015-02-06"}, -{"geonameId":"4951257","name":"Somerville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":80318,"modificationDate":"2017-05-23"}, -{"geonameId":"1816890","name":"Baoying","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":80292,"modificationDate":"2012-01-18"}, -{"geonameId":"3176059","name":"Giugliano in Campania","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":80269,"modificationDate":"2015-10-19"}, -{"geonameId":"1640585","name":"Kedungwaru","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":80257,"modificationDate":"2013-10-29"}, -{"geonameId":"2221030","name":"Yagoua","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":80235,"modificationDate":"2012-01-16"}, -{"geonameId":"4941720","name":"Lawrence","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":80231,"modificationDate":"2017-05-23"}, -{"geonameId":"2037823","name":"Dashiqiao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":80223,"modificationDate":"2012-01-18"}, -{"geonameId":"7284832","name":"Budapest XV. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":80218,"modificationDate":"2019-09-23"}, -{"geonameId":"2228079","name":"Mbalmayo","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":80206,"modificationDate":"2012-01-16"}, -{"geonameId":"2035511","name":"Panshi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":80200,"modificationDate":"2012-01-18"}, -{"geonameId":"1627459","name":"Serpong","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":80193,"modificationDate":"2018-07-04"}, -{"geonameId":"250258","name":"Salt","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":80189,"modificationDate":"2020-06-10"}, -{"geonameId":"3347019","name":"Namibe","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":80149,"modificationDate":"2018-01-29"}, -{"geonameId":"2878018","name":"Lichterfelde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":80149,"modificationDate":"2017-09-19"}, -{"geonameId":"3088972","name":"Piotrków Trybunalski","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":80128,"modificationDate":"2019-09-05"}, -{"geonameId":"4163971","name":"Melbourne","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":80127,"modificationDate":"2017-03-09"}, -{"geonameId":"725578","name":"Yambol","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":80116,"modificationDate":"2017-01-30"}, -{"geonameId":"2227402","name":"Meiganda","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":80100,"modificationDate":"2020-06-10"}, -{"geonameId":"1486910","name":"Vorkuta","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":80039,"modificationDate":"2019-09-05"}, -{"geonameId":"3803449","name":"El Cafetal","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":80029,"modificationDate":"2019-04-11"}, -{"geonameId":"2517367","name":"Gandia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":80020,"modificationDate":"2012-03-04"}, -{"geonameId":"2110629","name":"Ushiku","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":80020,"modificationDate":"2017-07-22"}, -{"geonameId":"1263622","name":"Mānsa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":80018,"modificationDate":"2015-02-06"}, -{"geonameId":"1279715","name":"Rikaze","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":80000,"modificationDate":"2014-05-29"}, -{"geonameId":"293807","name":"Ra'anana","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":80000,"modificationDate":"2017-07-02"}, -{"geonameId":"32909","name":"Shahre Jadide Andisheh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":80000,"modificationDate":"2012-08-22"}, -{"geonameId":"562820","name":"Fili","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":80000,"modificationDate":"2013-04-02"}, -{"geonameId":"8340760","name":"Cung Kiệm","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":80000,"modificationDate":"2017-04-04"}, -{"geonameId":"2320829","name":"Ughelli","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":79986,"modificationDate":"2016-01-30"}, -{"geonameId":"2935530","name":"Dorsten","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":79981,"modificationDate":"2015-09-04"}, -{"geonameId":"2638324","name":"Scunthorpe","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":79977,"modificationDate":"2017-06-12"}, -{"geonameId":"2636876","name":"Stockton-on-Tees","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":79957,"modificationDate":"2014-04-28"}, -{"geonameId":"5166177","name":"Parma","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":79937,"modificationDate":"2017-05-23"}, -{"geonameId":"5128549","name":"New Rochelle","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":79846,"modificationDate":"2017-05-23"}, -{"geonameId":"1278667","name":"Anantnag","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":79821,"modificationDate":"2015-10-01"}, -{"geonameId":"3664464","name":"Cruzeiro do Sul","countryName":"Brazil","timeZoneName":"America/Rio_Branco","timeZoneOffsetNameWithoutDst":"Acre Time","population":79819,"modificationDate":"2014-07-24"}, -{"geonameId":"4771075","name":"Lynchburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":79812,"modificationDate":"2017-03-09"}, -{"geonameId":"5740099","name":"Medford","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":79805,"modificationDate":"2017-03-09"}, -{"geonameId":"2470656","name":"La Goulette","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":79795,"modificationDate":"2019-09-05"}, -{"geonameId":"783814","name":"Zrenjanin","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":79773,"modificationDate":"2012-04-15"}, -{"geonameId":"4153071","name":"Deerfield Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":79768,"modificationDate":"2017-03-09"}, -{"geonameId":"3598655","name":"Chichicastenango","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":79759,"modificationDate":"2018-12-05"}, -{"geonameId":"1213855","name":"Sibolga","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":79714,"modificationDate":"2014-05-11"}, -{"geonameId":"730435","name":"Haskovo","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":79699,"modificationDate":"2019-09-05"}, -{"geonameId":"4013706","name":"Ciudad Lerdo","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":79669,"modificationDate":"2018-11-03"}, -{"geonameId":"1793533","name":"Taixing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":79655,"modificationDate":"2020-06-08"}, -{"geonameId":"1267887","name":"Kāraikāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":79653,"modificationDate":"2014-10-14"}, -{"geonameId":"1644178","name":"Genteng","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":79652,"modificationDate":"2007-11-09"}, -{"geonameId":"1708824","name":"Kidapawan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":79652,"modificationDate":"2017-12-13"}, -{"geonameId":"2031405","name":"Erdenet","countryName":"Mongolia","timeZoneName":"Asia/Ulaanbaatar","timeZoneOffsetNameWithoutDst":"Ulaanbaatar Time","population":79647,"modificationDate":"2019-09-05"}, -{"geonameId":"2759798","name":"Amstelveen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":79639,"modificationDate":"2017-10-17"}, -{"geonameId":"2347303","name":"Bende","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":79618,"modificationDate":"2016-01-30"}, -{"geonameId":"540761","name":"Kropotkin","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":79599,"modificationDate":"2019-09-05"}, -{"geonameId":"3460522","name":"Itumbiara","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":79582,"modificationDate":"2012-08-03"}, -{"geonameId":"2327223","name":"Oke Mesi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":79563,"modificationDate":"2013-05-17"}, -{"geonameId":"3457708","name":"Maricá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":79551,"modificationDate":"2012-03-10"}, -{"geonameId":"385038","name":"Ar Rifa","countryName":"Bahrain","timeZoneName":"Asia/Bahrain","timeZoneOffsetNameWithoutDst":"Arabian Time","population":79550,"modificationDate":"2020-06-11"}, -{"geonameId":"3044310","name":"Szombathely","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":79534,"modificationDate":"2019-09-05"}, -{"geonameId":"2335713","name":"Kafanchan","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":79522,"modificationDate":"2016-06-22"}, -{"geonameId":"3181355","name":"Busto Arsizio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":79519,"modificationDate":"2018-03-16"}, -{"geonameId":"5383777","name":"Pleasanton","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":79510,"modificationDate":"2017-03-09"}, -{"geonameId":"1697497","name":"Norzagaray","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":79508,"modificationDate":"2017-12-13"}, -{"geonameId":"1268977","name":"Jharsuguda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":79492,"modificationDate":"2019-03-21"}, -{"geonameId":"1793385","name":"Tangjiazhuang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":79489,"modificationDate":"2015-01-07"}, -{"geonameId":"1492517","name":"Shadrinsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":79479,"modificationDate":"2019-09-05"}, -{"geonameId":"8558534","name":"Willowdale","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":79440,"modificationDate":"2013-07-08"}, -{"geonameId":"2532945","name":"Sidi Slimane","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":79437,"modificationDate":"2016-11-02"}, -{"geonameId":"3595416","name":"Huehuetenango","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":79426,"modificationDate":"2017-03-04"}, -{"geonameId":"1275194","name":"Brajrajnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":79421,"modificationDate":"2020-06-10"}, -{"geonameId":"709611","name":"Drohobych","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":79406,"modificationDate":"2014-08-06"}, -{"geonameId":"3174741","name":"Lido di Ostia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":79400,"modificationDate":"2016-12-28"}, -{"geonameId":"3178957","name":"Cesena","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":79398,"modificationDate":"2018-03-16"}, -{"geonameId":"2875457","name":"Luedenscheid","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":79386,"modificationDate":"2020-06-10"}, -{"geonameId":"289011","name":"Rustaq","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":79383,"modificationDate":"2013-08-10"}, -{"geonameId":"140951","name":"Behbahān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":79327,"modificationDate":"2014-09-04"}, -{"geonameId":"2470173","name":"Zarzis","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":79316,"modificationDate":"2018-08-30"}, -{"geonameId":"698625","name":"Oleksandriya","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":79289,"modificationDate":"2020-05-15"}, -{"geonameId":"3110718","name":"Sant Cugat del Vallès","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":79253,"modificationDate":"2015-06-14"}, -{"geonameId":"1265938","name":"Kottagūdem","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":79247,"modificationDate":"2018-05-27"}, -{"geonameId":"1261641","name":"Nawabgang","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":79246,"modificationDate":"2020-06-10"}, -{"geonameId":"1644349","name":"Gedangan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":79230,"modificationDate":"2018-07-04"}, -{"geonameId":"1794794","name":"Shouguang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":79212,"modificationDate":"2012-01-18"}, -{"geonameId":"4026082","name":"Melchor Ocampo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":79200,"modificationDate":"2020-06-11"}, -{"geonameId":"1795579","name":"Yanta","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":79196,"modificationDate":"2014-07-08"}, -{"geonameId":"889453","name":"Kadoma","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":79174,"modificationDate":"2012-01-17"}, -{"geonameId":"4884442","name":"Belmont Cragin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":79159,"modificationDate":"2017-12-06"}, -{"geonameId":"233730","name":"Bwizibwera","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":79157,"modificationDate":"2016-06-22"}, -{"geonameId":"5019335","name":"Brooklyn Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":79149,"modificationDate":"2017-05-23"}, -{"geonameId":"2420562","name":"Gueckedou","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":79140,"modificationDate":"2012-06-19"}, -{"geonameId":"1797438","name":"Zhuangyuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":79106,"modificationDate":"2013-07-05"}, -{"geonameId":"2338242","name":"Ikom","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":79103,"modificationDate":"2016-01-30"}, -{"geonameId":"1278471","name":"Arakkonam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":79080,"modificationDate":"2014-10-14"}, -{"geonameId":"1790885","name":"Wuyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":79070,"modificationDate":"2012-01-18"}, -{"geonameId":"1713226","name":"Gapan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":79064,"modificationDate":"2017-12-13"}, -{"geonameId":"1859952","name":"Kashihara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":79058,"modificationDate":"2017-08-02"}, -{"geonameId":"1788402","name":"Xiongzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":79050,"modificationDate":"2012-01-18"}, -{"geonameId":"1630798","name":"Ponorogo","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":79026,"modificationDate":"2016-01-07"}, -{"geonameId":"2351740","name":"Agulu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":79021,"modificationDate":"2016-01-30"}, -{"geonameId":"1185116","name":"Netrakona","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":79016,"modificationDate":"2016-11-17"}, -{"geonameId":"3445847","name":"Ubatuba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":79007,"modificationDate":"2013-12-28"}, -{"geonameId":"5296266","name":"Goodyear","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":79003,"modificationDate":"2017-03-09"}, -{"geonameId":"1830194","name":"Paoy Paet","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":79000,"modificationDate":"2016-11-22"}, -{"geonameId":"666767","name":"Slatina","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":78988,"modificationDate":"2013-01-03"}, -{"geonameId":"2634910","name":"Wakefield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":78978,"modificationDate":"2010-10-15"}, -{"geonameId":"2525059","name":"Catanzaro","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":78970,"modificationDate":"2018-03-16"}, -{"geonameId":"1172035","name":"Layyah","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":78954,"modificationDate":"2016-02-01"}, -{"geonameId":"3944797","name":"Cerro de Pasco","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":78910,"modificationDate":"2012-11-08"}, -{"geonameId":"5799610","name":"Kennewick","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":78896,"modificationDate":"2017-03-09"}, -{"geonameId":"2873759","name":"Marburg an der Lahn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":78895,"modificationDate":"2015-09-05"}, -{"geonameId":"7284889","name":"Marseille 08","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":78837,"modificationDate":"2018-08-19"}, -{"geonameId":"2244991","name":"Tambacounda","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":78800,"modificationDate":"2012-06-18"}, -{"geonameId":"1221194","name":"Kulyab","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":78786,"modificationDate":"2020-06-10"}, -{"geonameId":"87205","name":"Darnah","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":78782,"modificationDate":"2017-02-10"}, -{"geonameId":"3805673","name":"San Fernando de Apure","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":78779,"modificationDate":"2017-05-06"}, -{"geonameId":"1788452","name":"Xinzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":78767,"modificationDate":"2012-01-18"}, -{"geonameId":"1794971","name":"Shitanjing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":78765,"modificationDate":"2012-01-18"}, -{"geonameId":"3061370","name":"Zlín","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":78759,"modificationDate":"2019-02-28"}, -{"geonameId":"1153669","name":"Chiang Rai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":78756,"modificationDate":"2012-01-16"}, -{"geonameId":"2799478","name":"Deurne","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":78747,"modificationDate":"2018-09-07"}, -{"geonameId":"352913","name":"Monfalut","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":78744,"modificationDate":"2020-06-11"}, -{"geonameId":"1298482","name":"Sagaing","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":78739,"modificationDate":"2016-06-01"}, -{"geonameId":"1266436","name":"Cooch Behar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":78737,"modificationDate":"2020-06-10"}, -{"geonameId":"2034340","name":"Tumen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":78719,"modificationDate":"2012-01-18"}, -{"geonameId":"3446098","name":"Três Lagoas","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":78712,"modificationDate":"2015-06-13"}, -{"geonameId":"3433658","name":"Gualeguaychú","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":78676,"modificationDate":"2016-01-30"}, -{"geonameId":"1272473","name":"Dod Ballāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":78676,"modificationDate":"2015-10-04"}, -{"geonameId":"6362987","name":"Ceuta","countryName":"Spain","timeZoneName":"Africa/Ceuta","timeZoneOffsetNameWithoutDst":"Central European Time","population":78674,"modificationDate":"2019-02-27"}, -{"geonameId":"946058","name":"Mthatha","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":78663,"modificationDate":"2015-04-24"}, -{"geonameId":"1024696","name":"Dondo","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":78648,"modificationDate":"2012-01-19"}, -{"geonameId":"4566385","name":"Mayagüez","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":78647,"modificationDate":"2016-10-25"}, -{"geonameId":"470546","name":"Vyborg","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":78633,"modificationDate":"2019-10-05"}, -{"geonameId":"5322737","name":"Alameda","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":78630,"modificationDate":"2020-01-14"}, -{"geonameId":"2521582","name":"Arona","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":78614,"modificationDate":"2015-09-03"}, -{"geonameId":"3448879","name":"São João del Rei","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":78592,"modificationDate":"2013-10-22"}, -{"geonameId":"1276335","name":"Bhadohi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":78568,"modificationDate":"2017-05-06"}, -{"geonameId":"3181528","name":"Brindisi","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":78548,"modificationDate":"2014-04-13"}, -{"geonameId":"2510279","name":"Torrent","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":78543,"modificationDate":"2012-03-04"}, -{"geonameId":"2653775","name":"Carlisle","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":78470,"modificationDate":"2017-06-12"}, -{"geonameId":"4175538","name":"Town 'n' Country","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":78442,"modificationDate":"2011-05-14"}, -{"geonameId":"5327422","name":"Bellflower","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":78441,"modificationDate":"2017-03-09"}, -{"geonameId":"3049646","name":"Kőbánya","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":78414,"modificationDate":"2019-09-23"}, -{"geonameId":"1267457","name":"Katwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":78408,"modificationDate":"2020-06-10"}, -{"geonameId":"2455518","name":"Kayes","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":78406,"modificationDate":"2019-09-05"}, -{"geonameId":"5392528","name":"San Pedro","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":78405,"modificationDate":"2018-04-18"}, -{"geonameId":"2033301","name":"Youhao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":78402,"modificationDate":"2013-05-07"}, -{"geonameId":"2864475","name":"Neumünster","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":78383,"modificationDate":"2017-01-14"}, -{"geonameId":"502018","name":"Reutov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":78370,"modificationDate":"2012-01-17"}, -{"geonameId":"1733440","name":"Putatan","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":78340,"modificationDate":"2010-06-16"}, -{"geonameId":"1860063","name":"Karatsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":78330,"modificationDate":"2017-07-22"}, -{"geonameId":"5336545","name":"Chino Hills","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":78309,"modificationDate":"2017-03-09"}, -{"geonameId":"1619434","name":"Bang Kruai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":78305,"modificationDate":"2012-01-16"}, -{"geonameId":"4885164","name":"Bloomington","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":78292,"modificationDate":"2017-05-23"}, -{"geonameId":"2813472","name":"Wedding","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":78290,"modificationDate":"2014-04-12"}, -{"geonameId":"2345096","name":"Daura","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":78277,"modificationDate":"2018-12-04"}, -{"geonameId":"99350","name":"Kut al Hai","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":78272,"modificationDate":"2020-06-10"}, -{"geonameId":"1798634","name":"Pingyi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":78254,"modificationDate":"2012-01-18"}, -{"geonameId":"7284841","name":"Budapest XVII. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":78250,"modificationDate":"2019-09-23"}, -{"geonameId":"3456998","name":"Mogi Mirim","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":78244,"modificationDate":"2012-08-03"}, -{"geonameId":"1861835","name":"Iizuka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":78206,"modificationDate":"2017-07-22"}, -{"geonameId":"1225142","name":"Valvedditturai","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":78205,"modificationDate":"2018-12-29"}, -{"geonameId":"1269291","name":"Jamūī","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":78181,"modificationDate":"2015-11-08"}, -{"geonameId":"1803374","name":"Linping","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":78180,"modificationDate":"2013-11-08"}, -{"geonameId":"8310138","name":"Ilioúpoli","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":78153,"modificationDate":"2019-10-23"}, -{"geonameId":"3692462","name":"San Juan","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":78153,"modificationDate":"2020-05-11"}, -{"geonameId":"266045","name":"Zahlé","countryName":"Lebanon","timeZoneName":"Asia/Beirut","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":78145,"modificationDate":"2019-09-05"}, -{"geonameId":"1716287","name":"Daet","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":78142,"modificationDate":"2017-12-13"}, -{"geonameId":"6332439","name":"Alafaya","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":78113,"modificationDate":"2011-05-14"}, -{"geonameId":"2294206","name":"Wa","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":78107,"modificationDate":"2019-12-08"}, -{"geonameId":"3408424","name":"Abaetetuba","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":78050,"modificationDate":"2012-08-03"}, -{"geonameId":"1270349","name":"Harihar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":78034,"modificationDate":"2014-10-14"}, -{"geonameId":"582846","name":"Alekseyevka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":78000,"modificationDate":"2013-04-02"}, -{"geonameId":"1263936","name":"Mancherāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":77998,"modificationDate":"2014-10-10"}, -{"geonameId":"2940231","name":"Castrop-Rauxel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":77924,"modificationDate":"2015-09-04"}, -{"geonameId":"2524245","name":"Marsala","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":77915,"modificationDate":"2015-09-08"}, -{"geonameId":"1854803","name":"Ōbu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":77864,"modificationDate":"2018-01-29"}, -{"geonameId":"4132093","name":"Springdale","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":77859,"modificationDate":"2017-05-23"}, -{"geonameId":"5377654","name":"North Hollywood","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":77848,"modificationDate":"2018-04-18"}, -{"geonameId":"1268707","name":"Kadayanallur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":77772,"modificationDate":"2014-10-14"}, -{"geonameId":"7284896","name":"Marseille 15","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":77770,"modificationDate":"2018-08-19"}, -{"geonameId":"1964032","name":"Ciranjang-hilir","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":77758,"modificationDate":"2012-01-20"}, -{"geonameId":"2036066","name":"Linkou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":77754,"modificationDate":"2013-05-07"}, -{"geonameId":"5268249","name":"Racine","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":77742,"modificationDate":"2017-05-23"}, -{"geonameId":"3680539","name":"Ipiales","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":77729,"modificationDate":"2019-09-05"}, -{"geonameId":"2747930","name":"Roosendaal","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":77725,"modificationDate":"2017-10-17"}, -{"geonameId":"1273626","name":"Daltonganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":77704,"modificationDate":"2015-10-04"}, -{"geonameId":"2413753","name":"Brikama","countryName":"Gambia","timeZoneName":"Africa/Banjul","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":77700,"modificationDate":"2011-02-02"}, -{"geonameId":"318137","name":"Hakkâri","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":77699,"modificationDate":"2019-02-01"}, -{"geonameId":"1734098","name":"Keningau","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":77650,"modificationDate":"2012-01-17"}, -{"geonameId":"2648773","name":"Gateshead","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":77649,"modificationDate":"2019-09-05"}, -{"geonameId":"1816373","name":"Bijie","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":77645,"modificationDate":"2018-12-06"}, -{"geonameId":"1807339","name":"Huangmei","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":77633,"modificationDate":"2012-01-18"}, -{"geonameId":"2328617","name":"Numan","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":77617,"modificationDate":"2016-01-30"}, -{"geonameId":"4921100","name":"Hammond","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":77614,"modificationDate":"2017-05-23"}, -{"geonameId":"1789176","name":"Feicheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":77606,"modificationDate":"2012-01-18"}, -{"geonameId":"3165201","name":"Treviso","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":77604,"modificationDate":"2018-07-12"}, -{"geonameId":"5373327","name":"Milpitas","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":77604,"modificationDate":"2017-03-09"}, -{"geonameId":"3449350","name":"São Bento do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":77597,"modificationDate":"2012-08-03"}, -{"geonameId":"3097872","name":"Inowrocław","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":77597,"modificationDate":"2019-09-05"}, -{"geonameId":"738349","name":"Ünye","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":77585,"modificationDate":"2015-04-27"}, -{"geonameId":"1898494","name":"Songling","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":77566,"modificationDate":"2012-01-19"}, -{"geonameId":"2947022","name":"Bogenhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":77542,"modificationDate":"2018-02-17"}, -{"geonameId":"1805267","name":"Jishui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":77540,"modificationDate":"2012-01-18"}, -{"geonameId":"2803448","name":"Aalst","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":77534,"modificationDate":"2020-06-01"}, -{"geonameId":"3092931","name":"Lubin","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":77532,"modificationDate":"2019-09-05"}, -{"geonameId":"2791537","name":"Mechelen","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":77530,"modificationDate":"2019-09-05"}, -{"geonameId":"114584","name":"Shooshtar","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":77507,"modificationDate":"2020-06-10"}, -{"geonameId":"2644411","name":"Lisburn","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":77506,"modificationDate":"2016-12-04"}, -{"geonameId":"743952","name":"Kars","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":77486,"modificationDate":"2019-09-05"}, -{"geonameId":"1167622","name":"Kambar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":77481,"modificationDate":"2019-12-24"}, -{"geonameId":"3436134","name":"Barracas","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":77474,"modificationDate":"2017-12-06"}, -{"geonameId":"1803364","name":"Linqu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":77472,"modificationDate":"2012-01-18"}, -{"geonameId":"1271949","name":"Farīdkot","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":77450,"modificationDate":"2015-05-06"}, -{"geonameId":"1907300","name":"Wako","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":77435,"modificationDate":"2017-07-26"}, -{"geonameId":"127403","name":"Khomeyn","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":77425,"modificationDate":"2018-11-06"}, -{"geonameId":"2034761","name":"Shulan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":77420,"modificationDate":"2012-01-18"}, -{"geonameId":"1730413","name":"Apalit","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":77418,"modificationDate":"2017-12-13"}, -{"geonameId":"3460584","name":"Itaúna","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":77400,"modificationDate":"2012-08-03"}, -{"geonameId":"1277525","name":"Balrāmpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":77396,"modificationDate":"2015-08-07"}, -{"geonameId":"6138610","name":"Saint-Laurent","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":77391,"modificationDate":"2016-06-22"}, -{"geonameId":"2198148","name":"Suva","countryName":"Fiji","timeZoneName":"Pacific/Fiji","timeZoneOffsetNameWithoutDst":"Fiji Summer Time","population":77366,"modificationDate":"2019-09-05"}, -{"geonameId":"1863018","name":"Hatsukaichi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":77341,"modificationDate":"2017-07-22"}, -{"geonameId":"3996387","name":"Matehuala","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":77328,"modificationDate":"2018-11-03"}, -{"geonameId":"2937959","name":"Dessau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":77315,"modificationDate":"2015-09-04"}, -{"geonameId":"678015","name":"Focșani","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":77313,"modificationDate":"2018-04-29"}, -{"geonameId":"2519513","name":"Chiclana de la Frontera","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":77293,"modificationDate":"2019-03-25"}, -{"geonameId":"1787031","name":"Yanzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":77276,"modificationDate":"2012-01-18"}, -{"geonameId":"1277085","name":"Bāramūla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":77276,"modificationDate":"2014-10-13"}, -{"geonameId":"4019260","name":"Agua Prieta","countryName":"Mexico","timeZoneName":"America/Hermosillo","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":77254,"modificationDate":"2016-12-10"}, -{"geonameId":"3171173","name":"Pesaro","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":77241,"modificationDate":"2018-03-16"}, -{"geonameId":"3526323","name":"Kanazin","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":77240,"modificationDate":"2020-06-10"}, -{"geonameId":"3530103","name":"Cozumel","countryName":"Mexico","timeZoneName":"America/Cancun","timeZoneOffsetNameWithoutDst":"Eastern Time","population":77236,"modificationDate":"2018-11-03"}, -{"geonameId":"1644932","name":"Ende","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":77205,"modificationDate":"2012-01-17"}, -{"geonameId":"3628503","name":"San Carlos","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":77192,"modificationDate":"2016-01-07"}, -{"geonameId":"1692565","name":"Pulilan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":77186,"modificationDate":"2017-12-13"}, -{"geonameId":"759412","name":"Siedlce","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":77185,"modificationDate":"2019-09-05"}, -{"geonameId":"1805833","name":"Jiexiu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":77178,"modificationDate":"2012-01-18"}, -{"geonameId":"2491323","name":"Ksar el Boukhari","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":77166,"modificationDate":"2012-01-19"}, -{"geonameId":"3492985","name":"Santa Cruz de Barahona","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":77160,"modificationDate":"2016-06-05"}, -{"geonameId":"4920607","name":"Gary","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":77156,"modificationDate":"2019-09-05"}, -{"geonameId":"3877918","name":"Ovalle","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":77138,"modificationDate":"2018-02-06"}, -{"geonameId":"1693136","name":"Polangui","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":77122,"modificationDate":"2017-12-13"}, -{"geonameId":"5211303","name":"Scranton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":77118,"modificationDate":"2019-09-05"}, -{"geonameId":"3448519","name":"São Mateus","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":77117,"modificationDate":"2013-12-31"}, -{"geonameId":"3532881","name":"Amozoc de Mota","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":77106,"modificationDate":"2013-07-31"}, -{"geonameId":"2422457","name":"Coyah","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":77103,"modificationDate":"2015-03-06"}, -{"geonameId":"471656","name":"Voskresensk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":77086,"modificationDate":"2012-02-28"}, -{"geonameId":"260204","name":"Keratsíni","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":77077,"modificationDate":"2019-10-23"}, -{"geonameId":"5325866","name":"Baldwin Park","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":77071,"modificationDate":"2017-03-09"}, -{"geonameId":"1272689","name":"Dhuliān","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":77070,"modificationDate":"2016-06-23"}, -{"geonameId":"2036653","name":"Hunchun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":77028,"modificationDate":"2012-01-18"}, -{"geonameId":"957487","name":"Sasolburg","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":77016,"modificationDate":"2012-07-12"}, -{"geonameId":"2335614","name":"Kagoro","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":77008,"modificationDate":"2016-06-22"}, -{"geonameId":"3170647","name":"Pisa","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":77007,"modificationDate":"2018-03-16"}, -{"geonameId":"5785965","name":"Auburn","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":77006,"modificationDate":"2017-03-09"}, -{"geonameId":"688533","name":"Yalta","countryName":"Ukraine","timeZoneName":"Europe/Simferopol","timeZoneOffsetNameWithoutDst":"Moscow Time","population":77003,"modificationDate":"2016-05-18"}, -{"geonameId":"5921356","name":"Chilliwack","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":77000,"modificationDate":"2019-02-26"}, -{"geonameId":"1792359","name":"Huangshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":77000,"modificationDate":"2013-04-02"}, -{"geonameId":"1263275","name":"Mawāna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":76973,"modificationDate":"2015-09-06"}, -{"geonameId":"1849561","name":"Tsurusaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":76968,"modificationDate":"2017-04-09"}, -{"geonameId":"11054704","name":"Józsefváros","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":76957,"modificationDate":"2017-12-06"}, -{"geonameId":"2920236","name":"Gladbeck","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":76940,"modificationDate":"2019-09-05"}, -{"geonameId":"1519691","name":"Sarkand","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":76919,"modificationDate":"2020-04-08"}, -{"geonameId":"1267648","name":"Karur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":76915,"modificationDate":"2014-10-14"}, -{"geonameId":"7284891","name":"Marseille 09","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":76868,"modificationDate":"2018-08-19"}, -{"geonameId":"3164699","name":"Varese","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":76851,"modificationDate":"2015-09-03"}, -{"geonameId":"358048","name":"Damietta","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":76839,"modificationDate":"2012-01-19"}, -{"geonameId":"3543299","name":"Puerto Padre","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":76838,"modificationDate":"2016-02-07"}, -{"geonameId":"3714637","name":"Arraiján","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":76815,"modificationDate":"2017-01-05"}, -{"geonameId":"3006787","name":"La Rochelle","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":76810,"modificationDate":"2019-11-06"}, -{"geonameId":"1265605","name":"Kundla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":76809,"modificationDate":"2018-07-04"}, -{"geonameId":"4257494","name":"Fishers","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":76794,"modificationDate":"2017-05-23"}, -{"geonameId":"4407010","name":"Saint Joseph","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":76780,"modificationDate":"2017-07-10"}, -{"geonameId":"640999","name":"Pori","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":76772,"modificationDate":"2019-09-05"}, -{"geonameId":"3628423","name":"San Felipe","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":76766,"modificationDate":"2012-01-03"}, -{"geonameId":"1170013","name":"Moro","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":76765,"modificationDate":"2019-12-06"}, -{"geonameId":"975436","name":"Mmabatho","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":76754,"modificationDate":"2018-01-14"}, -{"geonameId":"2748413","name":"Purmerend","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":76745,"modificationDate":"2019-02-27"}, -{"geonameId":"1803948","name":"Liangxiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":76744,"modificationDate":"2012-09-06"}, -{"geonameId":"3027105","name":"Champigny-sur-Marne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":76726,"modificationDate":"2016-02-18"}, -{"geonameId":"1263664","name":"Manmād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":76722,"modificationDate":"2015-09-06"}, -{"geonameId":"1268011","name":"Kannauj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":76714,"modificationDate":"2015-08-07"}, -{"geonameId":"2960316","name":"Luxembourg","countryName":"Luxembourg","timeZoneName":"Europe/Luxembourg","timeZoneOffsetNameWithoutDst":"Central European Time","population":76684,"modificationDate":"2019-09-05"}, -{"geonameId":"2793508","name":"La Louvière","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":76668,"modificationDate":"2008-06-15"}, -{"geonameId":"935214","name":"Saint-Pierre","countryName":"Reunion","timeZoneName":"Indian/Reunion","timeZoneOffsetNameWithoutDst":"Réunion Time","population":76655,"modificationDate":"2016-01-19"}, -{"geonameId":"787237","name":"Pančevo","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":76654,"modificationDate":"2020-01-28"}, -{"geonameId":"1813658","name":"Fenghua","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":76653,"modificationDate":"2012-06-05"}, -{"geonameId":"3712076","name":"Aspinwall","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":76643,"modificationDate":"2020-06-11"}, -{"geonameId":"2982235","name":"Rueil-Malmaison","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":76616,"modificationDate":"2016-02-18"}, -{"geonameId":"1264138","name":"Malaut","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":76616,"modificationDate":"2018-12-04"}, -{"geonameId":"3625341","name":"Villa de Cura","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":76614,"modificationDate":"2018-08-08"}, -{"geonameId":"1712531","name":"Guiguinto","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":76613,"modificationDate":"2017-12-13"}, -{"geonameId":"2955471","name":"Arnsberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":76612,"modificationDate":"2019-09-05"}, -{"geonameId":"3520064","name":"Salina Cruz","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":76596,"modificationDate":"2018-11-03"}, -{"geonameId":"1262200","name":"Nagīna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":76593,"modificationDate":"2015-08-07"}, -{"geonameId":"3117533","name":"Manresa","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":76558,"modificationDate":"2019-02-27"}, -{"geonameId":"3460064","name":"Jataí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":76547,"modificationDate":"2015-05-23"}, -{"geonameId":"3448902","name":"São João da Boa Vista","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":76540,"modificationDate":"2012-08-03"}, -{"geonameId":"4718721","name":"Pharr","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":76538,"modificationDate":"2017-03-09"}, -{"geonameId":"3166598","name":"Sesto San Giovanni","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":76509,"modificationDate":"2018-03-16"}, -{"geonameId":"3458425","name":"Lorena","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":76506,"modificationDate":"2012-08-03"}, -{"geonameId":"2648970","name":"Fylde","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":76500,"modificationDate":"2018-07-03"}, -{"geonameId":"1278023","name":"Badagara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":76493,"modificationDate":"2016-05-04"}, -{"geonameId":"229278","name":"Mbale","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":76493,"modificationDate":"2016-06-22"}, -{"geonameId":"2847645","name":"Rheine","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":76491,"modificationDate":"2015-09-04"}, -{"geonameId":"1269578","name":"Jagdalpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":76465,"modificationDate":"2015-09-06"}, -{"geonameId":"3389652","name":"Santa Cruz do Capibaribe","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":76450,"modificationDate":"2012-08-03"}, -{"geonameId":"5404915","name":"Upland","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":76443,"modificationDate":"2019-12-15"}, -{"geonameId":"1809532","name":"Guigang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":76430,"modificationDate":"2012-01-18"}, -{"geonameId":"2749234","name":"Oss","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":76430,"modificationDate":"2017-10-17"}, -{"geonameId":"2038854","name":"Yuktae-dong","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":76427,"modificationDate":"2012-01-19"}, -{"geonameId":"12157025","name":"Ciudad Satelite","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":76410,"modificationDate":"2020-05-07"}, -{"geonameId":"3037456","name":"Antibes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":76393,"modificationDate":"2019-08-07"}, -{"geonameId":"1787437","name":"Yangliuqing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":76387,"modificationDate":"2012-11-08"}, -{"geonameId":"5349705","name":"Folsom","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":76375,"modificationDate":"2017-03-09"}, -{"geonameId":"3448257","name":"São Sebastião","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":76367,"modificationDate":"2012-03-10"}, -{"geonameId":"3182884","name":"Arezzo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":76346,"modificationDate":"2018-03-12"}, -{"geonameId":"1268775","name":"Jhumri Telaiya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":76341,"modificationDate":"2020-06-16"}, -{"geonameId":"7284839","name":"Budapest XXI. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":76339,"modificationDate":"2019-09-23"}, -{"geonameId":"3385935","name":"Tucuruí","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":76337,"modificationDate":"2014-08-17"}, -{"geonameId":"4672731","name":"Baytown","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":76335,"modificationDate":"2017-03-09"}, -{"geonameId":"2112899","name":"Furukawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":76312,"modificationDate":"2018-02-23"}, -{"geonameId":"3464304","name":"Embu Guaçu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":76310,"modificationDate":"2010-02-26"}, -{"geonameId":"3175058","name":"Latina","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":76305,"modificationDate":"2018-03-12"}, -{"geonameId":"886763","name":"Masvingo","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":76290,"modificationDate":"2010-08-03"}, -{"geonameId":"526480","name":"Mineralnye Vody","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":76280,"modificationDate":"2019-10-03"}, -{"geonameId":"3660418","name":"Babahoyo","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":76279,"modificationDate":"2017-02-07"}, -{"geonameId":"788886","name":"Kumanovo","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":76275,"modificationDate":"2019-09-05"}, -{"geonameId":"304382","name":"Midyat","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":76268,"modificationDate":"2017-08-03"}, -{"geonameId":"2092740","name":"Lae","countryName":"Papua New Guinea","timeZoneName":"Pacific/Port_Moresby","timeZoneOffsetNameWithoutDst":"Papua New Guinea Time","population":76255,"modificationDate":"2019-07-10"}, -{"geonameId":"1235846","name":"Matara","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":76254,"modificationDate":"2018-12-29"}, -{"geonameId":"122915","name":"Nahāvand","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":76250,"modificationDate":"2016-08-02"}, -{"geonameId":"1623180","name":"Tuban","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":76242,"modificationDate":"2012-01-17"}, -{"geonameId":"6119518","name":"Repentigny","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":76237,"modificationDate":"2019-02-26"}, -{"geonameId":"1606790","name":"Sakon Nakhon","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":76237,"modificationDate":"2012-01-16"}, -{"geonameId":"1170486","name":"Mian Channun","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":76226,"modificationDate":"2019-12-06"}, -{"geonameId":"2640677","name":"Paisley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":76220,"modificationDate":"2019-09-05"}, -{"geonameId":"934985","name":"Mbabane","countryName":"Eswatini","timeZoneName":"Africa/Mbabane","timeZoneOffsetNameWithoutDst":"South Africa Time","population":76218,"modificationDate":"2019-09-05"}, -{"geonameId":"1277723","name":"Baj Baj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":76159,"modificationDate":"2014-10-14"}, -{"geonameId":"1797793","name":"Qingquan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":76154,"modificationDate":"2012-01-18"}, -{"geonameId":"2817311","name":"Viersen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":76153,"modificationDate":"2015-09-05"}, -{"geonameId":"2026643","name":"Birobidzhan","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":76146,"modificationDate":"2019-09-05"}, -{"geonameId":"5392593","name":"San Ramon","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":76134,"modificationDate":"2017-03-09"}, -{"geonameId":"4501018","name":"Camden","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":76119,"modificationDate":"2017-05-23"}, -{"geonameId":"2655009","name":"Bracknell","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":76103,"modificationDate":"2011-03-03"}, -{"geonameId":"1266179","name":"Konnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":76082,"modificationDate":"2014-10-14"}, -{"geonameId":"4330236","name":"Lake Charles","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":76070,"modificationDate":"2017-03-09"}, -{"geonameId":"3448063","name":"Sapiranga","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":76051,"modificationDate":"2012-08-03"}, -{"geonameId":"4997787","name":"Kalamazoo","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":76041,"modificationDate":"2017-05-23"}, -{"geonameId":"5955895","name":"Fort McMurray","countryName":"Canada","timeZoneName":"America/Edmonton","timeZoneOffsetNameWithoutDst":"Mountain Time","population":76000,"modificationDate":"2011-10-08"}, -{"geonameId":"3046619","name":"Parádsasvár","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":76000,"modificationDate":"2009-03-01"}, -{"geonameId":"472732","name":"Nagornyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":76000,"modificationDate":"2016-04-01"}, -{"geonameId":"2185018","name":"Palmerston North","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":75996,"modificationDate":"2019-02-28"}, -{"geonameId":"1258338","name":"Ratnagiri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":75986,"modificationDate":"2014-10-14"}, -{"geonameId":"1640765","name":"Kebomas","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":75982,"modificationDate":"2007-11-09"}, -{"geonameId":"728378","name":"Pazardzhik","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":75977,"modificationDate":"2007-02-18"}, -{"geonameId":"2391893","name":"Savé","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":75970,"modificationDate":"2013-05-18"}, -{"geonameId":"334609","name":"Hosa’ina","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":75963,"modificationDate":"2017-09-01"}, -{"geonameId":"4883555","name":"Arlington Heights","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":75926,"modificationDate":"2017-05-23"}, -{"geonameId":"3110040","name":"San Sebastián de los Reyes","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":75912,"modificationDate":"2015-06-14"}, -{"geonameId":"5041926","name":"Plymouth","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":75907,"modificationDate":"2017-05-23"}, -{"geonameId":"1133453","name":"Maymana","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":75900,"modificationDate":"2018-02-17"}, -{"geonameId":"2938323","name":"Delmenhorst","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":75893,"modificationDate":"2019-09-05"}, -{"geonameId":"1803266","name":"Lintong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":75882,"modificationDate":"2012-01-18"}, -{"geonameId":"3655131","name":"La Libertad","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":75881,"modificationDate":"2013-01-11"}, -{"geonameId":"1270072","name":"Hingoli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":75878,"modificationDate":"2015-08-07"}, -{"geonameId":"6101645","name":"Peterborough","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":75877,"modificationDate":"2016-07-02"}, -{"geonameId":"3613528","name":"Ciudad Choluteca","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":75872,"modificationDate":"2012-01-16"}, -{"geonameId":"2491911","name":"Khemis Miliana","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":75865,"modificationDate":"2019-09-01"}, -{"geonameId":"1641184","name":"Karangsembung","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":75856,"modificationDate":"2012-01-17"}, -{"geonameId":"294946","name":"Hadera","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":75854,"modificationDate":"2017-07-02"}, -{"geonameId":"1794479","name":"Laixi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":75849,"modificationDate":"2012-01-18"}, -{"geonameId":"553399","name":"Kamensk-Shakhtinskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":75814,"modificationDate":"2020-03-12"}, -{"geonameId":"1219762","name":"Bayramaly","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":75797,"modificationDate":"2016-04-04"}, -{"geonameId":"2641674","name":"Newcastle under Lyme","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":75794,"modificationDate":"2016-12-19"}, -{"geonameId":"3455161","name":"Pará de Minas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":75786,"modificationDate":"2012-08-03"}, -{"geonameId":"1852472","name":"Shimada","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":75781,"modificationDate":"2017-07-22"}, -{"geonameId":"1510469","name":"Belovo","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":75764,"modificationDate":"2019-09-05"}, -{"geonameId":"1850872","name":"Takefu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":75753,"modificationDate":"2017-04-09"}, -{"geonameId":"1624668","name":"Tarub","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":75739,"modificationDate":"2018-12-04"}, -{"geonameId":"5014130","name":"Waterford","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":75737,"modificationDate":"2017-05-23"}, -{"geonameId":"311665","name":"Iğdır","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":75721,"modificationDate":"2013-05-16"}, -{"geonameId":"1840982","name":"Muan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":75718,"modificationDate":"2013-08-04"}, -{"geonameId":"1528249","name":"Jalal-Abad","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":75700,"modificationDate":"2019-09-05"}, -{"geonameId":"1163054","name":"Turbat","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":75694,"modificationDate":"2019-12-06"}, -{"geonameId":"1275388","name":"Bodināyakkanūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":75680,"modificationDate":"2014-10-14"}, -{"geonameId":"1792087","name":"Yinzhu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":75656,"modificationDate":"2014-02-08"}, -{"geonameId":"1267195","name":"Khadki","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":75654,"modificationDate":"2014-10-13"}, -{"geonameId":"6690602","name":"Battersea","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":75651,"modificationDate":"2012-05-01"}, -{"geonameId":"569591","name":"Chekhov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":75643,"modificationDate":"2019-09-05"}, -{"geonameId":"3204222","name":"Bihać","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":75641,"modificationDate":"2016-06-05"}, -{"geonameId":"97417","name":"Chamchamal","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":75634,"modificationDate":"2020-06-10"}, -{"geonameId":"1250164","name":"Battaramulla South","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":75633,"modificationDate":"2018-12-16"}, -{"geonameId":"1649824","name":"Batu","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":75631,"modificationDate":"2012-01-17"}, -{"geonameId":"1272701","name":"Dhrāngadhra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":75578,"modificationDate":"2014-10-13"}, -{"geonameId":"2652002","name":"Crewe","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":75556,"modificationDate":"2017-06-12"}, -{"geonameId":"3089033","name":"Piła","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":75532,"modificationDate":"2020-04-25"}, -{"geonameId":"303831","name":"Nevshehr","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":75527,"modificationDate":"2020-06-10"}, -{"geonameId":"4891382","name":"Evanston","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":75527,"modificationDate":"2019-09-05"}, -{"geonameId":"3518407","name":"San Martin Texmelucan de Labastida","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":75518,"modificationDate":"2018-11-03"}, -{"geonameId":"2653305","name":"Chatham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":75509,"modificationDate":"2010-08-03"}, -{"geonameId":"699942","name":"Nizhyn","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":75499,"modificationDate":"2019-09-05"}, -{"geonameId":"715126","name":"Szolnok","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":75474,"modificationDate":"2019-09-05"}, -{"geonameId":"2328090","name":"Ode","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":75463,"modificationDate":"2012-01-18"}, -{"geonameId":"5370164","name":"Manteca","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":75448,"modificationDate":"2017-03-09"}, -{"geonameId":"2747596","name":"Schiedam","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":75438,"modificationDate":"2019-02-27"}, -{"geonameId":"2848756","name":"Reinickendorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":75414,"modificationDate":"2014-04-12"}, -{"geonameId":"1165638","name":"Shahdad Kot","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":75411,"modificationDate":"2019-12-06"}, -{"geonameId":"2978179","name":"Saint-Maur","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":75402,"modificationDate":"2020-06-10"}, -{"geonameId":"3467717","name":"Campo Mourão","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":75401,"modificationDate":"2017-02-12"}, -{"geonameId":"4160711","name":"Kendall","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":75371,"modificationDate":"2011-05-14"}, -{"geonameId":"1738294","name":"Ulu Tiram","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":75350,"modificationDate":"2010-08-09"}, -{"geonameId":"2038118","name":"Chaoyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":75347,"modificationDate":"2012-01-18"}, -{"geonameId":"2505915","name":"Azzaba","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":75317,"modificationDate":"2019-08-04"}, -{"geonameId":"300808","name":"Silifke","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":75315,"modificationDate":"2012-01-18"}, -{"geonameId":"3091232","name":"Mysłowice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":75281,"modificationDate":"2019-09-05"}, -{"geonameId":"5015618","name":"Wyoming","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":75275,"modificationDate":"2017-05-23"}, -{"geonameId":"788975","name":"Kruševac","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":75256,"modificationDate":"2019-09-05"}, -{"geonameId":"1844191","name":"Hongch’ŏn","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":75251,"modificationDate":"2012-01-18"}, -{"geonameId":"1831167","name":"Kampong Chhnang","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":75244,"modificationDate":"2017-02-11"}, -{"geonameId":"1788869","name":"Shangmei","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":75233,"modificationDate":"2012-01-18"}, -{"geonameId":"1260667","name":"Pāloncha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":75224,"modificationDate":"2014-10-12"}, -{"geonameId":"2338640","name":"Igbo-Ukwu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":75224,"modificationDate":"2016-01-30"}, -{"geonameId":"5579368","name":"Loveland","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":75182,"modificationDate":"2017-03-09"}, -{"geonameId":"5112375","name":"Cheektowaga","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":75178,"modificationDate":"2017-05-23"}, -{"geonameId":"2646504","name":"Hove","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":75174,"modificationDate":"2017-06-05"}, -{"geonameId":"2037334","name":"Fuyu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":75147,"modificationDate":"2013-03-05"}, -{"geonameId":"5123443","name":"Kings Bridge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":75132,"modificationDate":"2017-04-16"}, -{"geonameId":"191220","name":"Kitale","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":75123,"modificationDate":"2013-06-28"}, -{"geonameId":"3437547","name":"Pedro Juan Caballero","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":75109,"modificationDate":"2018-04-09"}, -{"geonameId":"3671116","name":"Quibdó","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":75104,"modificationDate":"2015-08-30"}, -{"geonameId":"2365560","name":"Kpalimé","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":75084,"modificationDate":"2013-08-17"}, -{"geonameId":"3861056","name":"Cipolletti","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":75078,"modificationDate":"2015-12-09"}, -{"geonameId":"1854371","name":"Okegawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":75062,"modificationDate":"2017-07-22"}, -{"geonameId":"2951825","name":"Bayreuth","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":75061,"modificationDate":"2019-09-05"}, -{"geonameId":"2463447","name":"Dakhla","countryName":"Western Sahara","timeZoneName":"Africa/El_Aaiun","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":75000,"modificationDate":"2016-07-14"}, -{"geonameId":"1584661","name":"Củ Chi","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":75000,"modificationDate":"2014-09-30"}, -{"geonameId":"2746932","name":"Spijkenisse","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":74988,"modificationDate":"2017-10-17"}, -{"geonameId":"3438735","name":"Encarnación","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":74983,"modificationDate":"2018-04-09"}, -{"geonameId":"5382146","name":"Perris","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":74971,"modificationDate":"2017-03-09"}, -{"geonameId":"2707953","name":"Haninge","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":74968,"modificationDate":"2011-10-30"}, -{"geonameId":"2472479","name":"Ben Arous","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":74932,"modificationDate":"2019-04-11"}, -{"geonameId":"250336","name":"Ramtha","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":74901,"modificationDate":"2020-06-10"}, -{"geonameId":"5180225","name":"Bethlehem","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":74892,"modificationDate":"2019-02-27"}, -{"geonameId":"143748","name":"Alvand","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":74889,"modificationDate":"2017-08-01"}, -{"geonameId":"2712414","name":"Gävle","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":74884,"modificationDate":"2019-09-05"}, -{"geonameId":"1270791","name":"Gūdūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":74851,"modificationDate":"2017-01-04"}, -{"geonameId":"2906809","name":"Hellersdorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":74847,"modificationDate":"2014-04-12"}, -{"geonameId":"4179320","name":"Albany","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":74843,"modificationDate":"2017-03-09"}, -{"geonameId":"3526357","name":"Juchitan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":74825,"modificationDate":"2020-06-10"}, -{"geonameId":"1806840","name":"Huilong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":74818,"modificationDate":"2012-01-18"}, -{"geonameId":"333287","name":"Keren","countryName":"Eritrea","timeZoneName":"Africa/Asmara","timeZoneOffsetNameWithoutDst":"East Africa Time","population":74800,"modificationDate":"2019-03-12"}, -{"geonameId":"300797","name":"Silopi","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":74798,"modificationDate":"2014-10-01"}, -{"geonameId":"1816751","name":"Beidao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":74767,"modificationDate":"2012-01-18"}, -{"geonameId":"2533191","name":"Sidi Qacem","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":74755,"modificationDate":"2016-11-04"}, -{"geonameId":"2821029","name":"Troisdorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":74749,"modificationDate":"2015-09-04"}, -{"geonameId":"2656719","name":"Aylesbury","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":74748,"modificationDate":"2019-09-05"}, -{"geonameId":"1182787","name":"Bhalwal","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":74744,"modificationDate":"2019-12-06"}, -{"geonameId":"1278553","name":"Ankleshwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":74742,"modificationDate":"2014-10-13"}, -{"geonameId":"2650405","name":"East Kilbride","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":74740,"modificationDate":"2017-06-12"}, -{"geonameId":"2754447","name":"Helmond","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":74740,"modificationDate":"2017-10-17"}, -{"geonameId":"1787601","name":"Yanggu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":74725,"modificationDate":"2019-05-08"}, -{"geonameId":"1254534","name":"Tīkamgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":74724,"modificationDate":"2016-02-11"}, -{"geonameId":"1625958","name":"Sungailiat","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":74719,"modificationDate":"2014-04-06"}, -{"geonameId":"1857276","name":"Miki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":74701,"modificationDate":"2017-07-22"}, -{"geonameId":"3468436","name":"Cachoeira do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":74694,"modificationDate":"2012-08-03"}, -{"geonameId":"4910713","name":"Schaumburg","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":74693,"modificationDate":"2017-05-23"}, -{"geonameId":"6903078","name":"Changnyeong","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":74668,"modificationDate":"2010-07-26"}, -{"geonameId":"3854985","name":"Galvez","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":74650,"modificationDate":"2020-06-10"}, -{"geonameId":"1179760","name":"Dipalpur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":74640,"modificationDate":"2019-12-06"}, -{"geonameId":"1052944","name":"Antonio Ennes","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":74624,"modificationDate":"2020-06-11"}, -{"geonameId":"89055","name":"Zawiat al-Baida","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":74594,"modificationDate":"2020-06-10"}, -{"geonameId":"1511330","name":"Asbest","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":74583,"modificationDate":"2019-09-05"}, -{"geonameId":"4467732","name":"Gastonia","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":74543,"modificationDate":"2017-05-23"}, -{"geonameId":"5110446","name":"Brownsville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":74497,"modificationDate":"2017-04-16"}, -{"geonameId":"5404555","name":"Union City","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":74494,"modificationDate":"2017-03-09"}, -{"geonameId":"321031","name":"Bismil","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":74493,"modificationDate":"2015-11-08"}, -{"geonameId":"2349529","name":"Aramoko-Ekiti","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":74491,"modificationDate":"2016-01-30"}, -{"geonameId":"1795919","name":"Shancheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":74459,"modificationDate":"2012-01-18"}, -{"geonameId":"3029162","name":"Calais","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":74433,"modificationDate":"2019-09-05"}, -{"geonameId":"2920512","name":"Giessen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":74411,"modificationDate":"2020-06-10"}, -{"geonameId":"1799897","name":"Nanma","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":74406,"modificationDate":"2014-10-01"}, -{"geonameId":"1255616","name":"Srivilliputhur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":74370,"modificationDate":"2014-10-14"}, -{"geonameId":"4885265","name":"Bolingbrook","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":74306,"modificationDate":"2017-05-23"}, -{"geonameId":"2031964","name":"Darhan","countryName":"Mongolia","timeZoneName":"Asia/Ulaanbaatar","timeZoneOffsetNameWithoutDst":"Ulaanbaatar Time","population":74300,"modificationDate":"2012-01-17"}, -{"geonameId":"6087701","name":"Newmarket","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":74295,"modificationDate":"2011-12-30"}, -{"geonameId":"64013","name":"Bosaso","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":74287,"modificationDate":"2015-04-24"}, -{"geonameId":"1255947","name":"Sivakasi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":74282,"modificationDate":"2014-10-14"}, -{"geonameId":"3123493","name":"Ferrol","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":74273,"modificationDate":"2020-01-17"}, -{"geonameId":"3983058","name":"Silao","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":74242,"modificationDate":"2018-11-03"}, -{"geonameId":"4862034","name":"Iowa City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":74220,"modificationDate":"2017-05-23"}, -{"geonameId":"2159220","name":"Mackay","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":74219,"modificationDate":"2019-07-21"}, -{"geonameId":"1259680","name":"Pilkhua","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":74212,"modificationDate":"2015-05-06"}, -{"geonameId":"1835895","name":"Seosan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":74208,"modificationDate":"2016-06-18"}, -{"geonameId":"260172","name":"Khalándrion","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":74192,"modificationDate":"2019-10-23"}, -{"geonameId":"2509769","name":"Vélez-Málaga","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":74190,"modificationDate":"2020-02-10"}, -{"geonameId":"245785","name":"Abéché","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":74188,"modificationDate":"2019-09-05"}, -{"geonameId":"1793889","name":"Suixi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":74172,"modificationDate":"2012-01-18"}, -{"geonameId":"5777107","name":"Layton","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":74143,"modificationDate":"2017-03-09"}, -{"geonameId":"2033675","name":"Xinmin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":74139,"modificationDate":"2012-01-18"}, -{"geonameId":"4711801","name":"Missouri City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":74139,"modificationDate":"2017-03-09"}, -{"geonameId":"5244080","name":"Appleton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":74139,"modificationDate":"2018-07-08"}, -{"geonameId":"2338810","name":"Igbara-Odo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":74121,"modificationDate":"2016-01-30"}, -{"geonameId":"1278862","name":"Ambejogai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":74114,"modificationDate":"2020-06-10"}, -{"geonameId":"2248698","name":"Mbaké","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":74100,"modificationDate":"2007-11-01"}, -{"geonameId":"5009586","name":"Shelby","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":74099,"modificationDate":"2017-05-23"}, -{"geonameId":"8858086","name":"Fuentes del Valle","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":74087,"modificationDate":"2014-04-11"}, -{"geonameId":"3032833","name":"Béziers","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":74081,"modificationDate":"2019-02-27"}, -{"geonameId":"11838435","name":"La Haute-Saint-Charles","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":74070,"modificationDate":"2018-03-26"}, -{"geonameId":"3836620","name":"San Ramón de la Nueva Orán","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":74059,"modificationDate":"2016-01-30"}, -{"geonameId":"1809610","name":"Gucheng Chengguanzhen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":74038,"modificationDate":"2012-01-18"}, -{"geonameId":"1790379","name":"Xianshuigu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":74028,"modificationDate":"2012-11-08"}, -{"geonameId":"952747","name":"Standerton","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":74021,"modificationDate":"2012-07-12"}, -{"geonameId":"3906466","name":"Riberalta","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":74014,"modificationDate":"2016-12-21"}, -{"geonameId":"2519402","name":"Ciudad Real","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":74014,"modificationDate":"2019-09-05"}, -{"geonameId":"4155995","name":"Fort Myers","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":74013,"modificationDate":"2017-10-30"}, -{"geonameId":"1861528","name":"Inuyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":73995,"modificationDate":"2017-07-27"}, -{"geonameId":"1276574","name":"Bela","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":73992,"modificationDate":"2015-09-06"}, -{"geonameId":"762863","name":"Ostrowiec Świętokrzyski","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":73989,"modificationDate":"2015-04-30"}, -{"geonameId":"4148677","name":"Boynton Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":73966,"modificationDate":"2017-03-09"}, -{"geonameId":"3449521","name":"Santo Antônio de Jesus","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":73957,"modificationDate":"2012-08-03"}, -{"geonameId":"2947421","name":"Bocholt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":73943,"modificationDate":"2015-09-04"}, -{"geonameId":"1275391","name":"Bodhan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":73938,"modificationDate":"2014-10-10"}, -{"geonameId":"1785655","name":"Yunyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":73922,"modificationDate":"2012-01-18"}, -{"geonameId":"4116834","name":"Jonesboro","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":73907,"modificationDate":"2017-05-23"}, -{"geonameId":"2544333","name":"Khenifra","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":73906,"modificationDate":"2016-11-02"}, -{"geonameId":"1045114","name":"Inhambane","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":73884,"modificationDate":"2012-01-19"}, -{"geonameId":"2794055","name":"Kortrijk","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":73879,"modificationDate":"2019-09-05"}, -{"geonameId":"2524653","name":"Gela","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":73854,"modificationDate":"2018-03-16"}, -{"geonameId":"1259083","name":"Rabkavi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":73835,"modificationDate":"2018-12-04"}, -{"geonameId":"3170621","name":"Pistoia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":73832,"modificationDate":"2019-03-01"}, -{"geonameId":"3861416","name":"Chimbas","countryName":"Argentina","timeZoneName":"America/Argentina/San_Juan","timeZoneOffsetNameWithoutDst":"Argentina Time","population":73829,"modificationDate":"2015-04-22"}, -{"geonameId":"4911951","name":"South Lawndale","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":73826,"modificationDate":"2017-12-06"}, -{"geonameId":"786735","name":"Prilep","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":73814,"modificationDate":"2014-03-08"}, -{"geonameId":"2325161","name":"Ozubulu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":73812,"modificationDate":"2016-01-30"}, -{"geonameId":"2745467","name":"Vlaardingen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":73798,"modificationDate":"2017-10-17"}, -{"geonameId":"2513882","name":"Mijas","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":73787,"modificationDate":"2012-03-04"}, -{"geonameId":"2546917","name":"Ifrane","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":73782,"modificationDate":"2018-05-18"}, -{"geonameId":"2288115","name":"Grand-Bassam","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":73772,"modificationDate":"2016-12-03"}, -{"geonameId":"2350886","name":"Aku","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":73742,"modificationDate":"2016-01-30"}, -{"geonameId":"1788406","name":"Guixi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":73732,"modificationDate":"2012-01-18"}, -{"geonameId":"354365","name":"Kafr ez Zaiyat","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":73725,"modificationDate":"2020-06-11"}, -{"geonameId":"1267819","name":"Karauli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":73717,"modificationDate":"2014-10-14"}, -{"geonameId":"1804442","name":"Lanxi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":73706,"modificationDate":"2012-08-04"}, -{"geonameId":"4900358","name":"Logan Square","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":73702,"modificationDate":"2017-12-06"}, -{"geonameId":"11184442","name":"Savarkundla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":73695,"modificationDate":"2017-12-06"}, -{"geonameId":"2937936","name":"Detmold","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":73680,"modificationDate":"2015-09-04"}, -{"geonameId":"289317","name":"Al Buraymī","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":73670,"modificationDate":"2017-04-24"}, -{"geonameId":"1733782","name":"Labuan","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":73653,"modificationDate":"2019-04-10"}, -{"geonameId":"2037252","name":"Genhe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":73631,"modificationDate":"2012-01-18"}, -{"geonameId":"1643776","name":"Gresik","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":73629,"modificationDate":"2016-01-07"}, -{"geonameId":"2325249","name":"Oyan","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":73622,"modificationDate":"2018-12-04"}, -{"geonameId":"1256755","name":"Hardoi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":73606,"modificationDate":"2020-06-10"}, -{"geonameId":"6118158","name":"Red Deer","countryName":"Canada","timeZoneName":"America/Edmonton","timeZoneOffsetNameWithoutDst":"Mountain Time","population":73593,"modificationDate":"2008-04-11"}, -{"geonameId":"1627357","name":"Sewon","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":73585,"modificationDate":"2018-12-04"}, -{"geonameId":"1801983","name":"Luocheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":73581,"modificationDate":"2012-01-18"}, -{"geonameId":"1184055","name":"Badin","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":73569,"modificationDate":"2019-12-06"}, -{"geonameId":"5768233","name":"Rapid City","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":73569,"modificationDate":"2017-05-23"}, -{"geonameId":"214614","name":"Kamina","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":73557,"modificationDate":"2016-11-22"}, -{"geonameId":"1274714","name":"Bijnor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":73555,"modificationDate":"2020-06-10"}, -{"geonameId":"24851","name":"Nūrābād","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":73528,"modificationDate":"2014-09-04"}, -{"geonameId":"122698","name":"Naqadeh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":73528,"modificationDate":"2014-09-04"}, -{"geonameId":"2336237","name":"Jega","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":73495,"modificationDate":"2018-05-09"}, -{"geonameId":"4229476","name":"Warner Robins","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":73490,"modificationDate":"2017-03-09"}, -{"geonameId":"1271067","name":"Gokak","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":73478,"modificationDate":"2014-10-14"}, -{"geonameId":"2513947","name":"Melilla","countryName":"Spain","timeZoneName":"Africa/Ceuta","timeZoneOffsetNameWithoutDst":"Central European Time","population":73460,"modificationDate":"2019-02-26"}, -{"geonameId":"5007402","name":"Rochester Hills","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":73424,"modificationDate":"2017-05-23"}, -{"geonameId":"6138625","name":"Saint-Léonard","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":73423,"modificationDate":"2019-02-26"}, -{"geonameId":"6692280","name":"Canary Wharf","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":73390,"modificationDate":"2019-10-01"}, -{"geonameId":"1256329","name":"Sikandrabad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":73379,"modificationDate":"2020-06-10"}, -{"geonameId":"2349276","name":"Asaba","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":73374,"modificationDate":"2016-01-30"}, -{"geonameId":"1858445","name":"Kukichūō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":73373,"modificationDate":"2017-08-02"}, -{"geonameId":"12157030","name":"Chilca","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":73371,"modificationDate":"2020-05-07"}, -{"geonameId":"3690465","name":"Aguachica","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":73360,"modificationDate":"2019-12-08"}, -{"geonameId":"2327494","name":"Ohafia-Ifigh","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":73355,"modificationDate":"2018-12-04"}, -{"geonameId":"153176","name":"Mpanda","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":73338,"modificationDate":"2019-12-08"}, -{"geonameId":"1804979","name":"Juegang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":73317,"modificationDate":"2012-08-04"}, -{"geonameId":"1253113","name":"Virudunagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":73273,"modificationDate":"2016-06-30"}, -{"geonameId":"3511233","name":"Bonao","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":73269,"modificationDate":"2016-06-05"}, -{"geonameId":"1047660","name":"Cuamba","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":73268,"modificationDate":"2012-01-19"}, -{"geonameId":"321580","name":"Belek","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":73260,"modificationDate":"2014-07-15"}, -{"geonameId":"4236895","name":"Decatur","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":73254,"modificationDate":"2017-05-23"}, -{"geonameId":"3441243","name":"Paysandú","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":73249,"modificationDate":"2019-09-05"}, -{"geonameId":"299582","name":"Tatvan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":73222,"modificationDate":"2015-08-07"}, -{"geonameId":"3855065","name":"General Roca","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":73212,"modificationDate":"2015-04-22"}, -{"geonameId":"1709003","name":"Kawit","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":73210,"modificationDate":"2017-12-13"}, -{"geonameId":"510291","name":"Peterhof","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":73199,"modificationDate":"2019-09-05"}, -{"geonameId":"1732741","name":"Taman Senai","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":73176,"modificationDate":"2012-01-17"}, -{"geonameId":"5010636","name":"Southfield","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":73156,"modificationDate":"2017-05-23"}, -{"geonameId":"2638978","name":"Rugby","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":73150,"modificationDate":"2017-06-12"}, -{"geonameId":"1852736","name":"Satsumasendai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":73132,"modificationDate":"2017-07-22"}, -{"geonameId":"2478216","name":"Tamanrasset","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":73128,"modificationDate":"2018-08-08"}, -{"geonameId":"3086024","name":"Siemianowice Śląskie","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":73121,"modificationDate":"2010-10-17"}, -{"geonameId":"2112823","name":"Hanamaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":73115,"modificationDate":"2017-07-22"}, -{"geonameId":"310855","name":"Kolik","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":73105,"modificationDate":"2020-06-10"}, -{"geonameId":"618806","name":"Zhlobin","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":73089,"modificationDate":"2012-02-02"}, -{"geonameId":"256575","name":"Néa Smýrni","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":73076,"modificationDate":"2019-10-23"}, -{"geonameId":"1185206","name":"Jaypur Hat","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":73068,"modificationDate":"2020-06-10"}, -{"geonameId":"3649017","name":"Araure","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":73054,"modificationDate":"2018-08-08"}, -{"geonameId":"1273369","name":"Dausa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":73034,"modificationDate":"2014-10-14"}, -{"geonameId":"1642726","name":"Jatibarang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":73010,"modificationDate":"2012-01-17"}, -{"geonameId":"610824","name":"Zugdidi","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":73006,"modificationDate":"2015-06-04"}, -{"geonameId":"7290013","name":"Shixing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":72996,"modificationDate":"2010-05-07"}, -{"geonameId":"1842859","name":"Koch'ang","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":72996,"modificationDate":"2010-08-14"}, -{"geonameId":"585103","name":"Serebrovskiy","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":72989,"modificationDate":"2020-06-10"}, -{"geonameId":"3111294","name":"Rubí","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":72987,"modificationDate":"2012-03-04"}, -{"geonameId":"1574507","name":"Wangchieh","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":72960,"modificationDate":"2020-06-09"}, -{"geonameId":"1812597","name":"Dongdu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":72957,"modificationDate":"2012-01-18"}, -{"geonameId":"1728523","name":"Balanga","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":72954,"modificationDate":"2017-12-13"}, -{"geonameId":"3493081","name":"San Juan de la Maguana","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":72950,"modificationDate":"2016-06-05"}, -{"geonameId":"785082","name":"Tetovo","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":72944,"modificationDate":"2019-09-05"}, -{"geonameId":"1253468","name":"Valsād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":72929,"modificationDate":"2016-06-06"}, -{"geonameId":"3089684","name":"Ostrów Wielkopolski","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":72898,"modificationDate":"2020-06-21"}, -{"geonameId":"5546220","name":"Saint George","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":72897,"modificationDate":"2011-05-14"}, -{"geonameId":"1168412","name":"Pano Aqil","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":72881,"modificationDate":"2019-12-06"}, -{"geonameId":"3455051","name":"Paranavaí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":72848,"modificationDate":"2017-07-24"}, -{"geonameId":"3179866","name":"Caserta","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":72844,"modificationDate":"2015-08-28"}, -{"geonameId":"567311","name":"Dachnoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":72822,"modificationDate":"2015-08-17"}, -{"geonameId":"1278827","name":"Ambikāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":72821,"modificationDate":"2018-07-13"}, -{"geonameId":"1609395","name":"Krathum Baen","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":72819,"modificationDate":"2012-01-16"}, -{"geonameId":"4839292","name":"New Britain","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":72808,"modificationDate":"2017-05-23"}, -{"geonameId":"1812427","name":"Dongkan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":72789,"modificationDate":"2012-01-18"}, -{"geonameId":"1498693","name":"Minusinsk","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":72781,"modificationDate":"2019-09-05"}, -{"geonameId":"3459796","name":"João Monlevade","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":72762,"modificationDate":"2012-08-03"}, -{"geonameId":"3156529","name":"Fredrikstad","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":72760,"modificationDate":"2019-12-12"}, -{"geonameId":"2638671","name":"Salford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":72750,"modificationDate":"2019-09-05"}, -{"geonameId":"1279945","name":"Jiuquan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":72732,"modificationDate":"2014-02-08"}, -{"geonameId":"2759887","name":"Almelo","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":72725,"modificationDate":"2017-10-17"}, -{"geonameId":"12157128","name":"Selva Alegre","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":72696,"modificationDate":"2020-05-09"}, -{"geonameId":"1172904","name":"Kotri","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":72672,"modificationDate":"2019-12-06"}, -{"geonameId":"1807553","name":"Dingcheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":72663,"modificationDate":"2015-06-07"}, -{"geonameId":"1163952","name":"Tando Muhammad Khan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":72659,"modificationDate":"2019-12-06"}, -{"geonameId":"1803782","name":"Lichuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":72653,"modificationDate":"2012-01-18"}, -{"geonameId":"561627","name":"Georgiyevsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":72649,"modificationDate":"2012-01-17"}, -{"geonameId":"468082","name":"Yelabuga","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":72643,"modificationDate":"2016-11-25"}, -{"geonameId":"4623560","name":"Franklin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":72639,"modificationDate":"2017-03-09"}, -{"geonameId":"523426","name":"Naro-Fominsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":72632,"modificationDate":"2019-09-05"}, -{"geonameId":"2235029","name":"Bali","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":72606,"modificationDate":"2014-06-04"}, -{"geonameId":"2036226","name":"Lanxi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":72528,"modificationDate":"2013-04-03"}, -{"geonameId":"1800430","name":"Miyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":72485,"modificationDate":"2012-01-18"}, -{"geonameId":"3457509","name":"Matão","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":72468,"modificationDate":"2012-08-03"}, -{"geonameId":"2829109","name":"Steglitz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":72464,"modificationDate":"2013-03-06"}, -{"geonameId":"2037391","name":"Beichengqu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":72444,"modificationDate":"2017-07-21"}, -{"geonameId":"1842616","name":"Gongju","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":72435,"modificationDate":"2014-04-23"}, -{"geonameId":"1177073","name":"Harunabad","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":72432,"modificationDate":"2019-12-06"}, -{"geonameId":"3406910","name":"Bacabal","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":72372,"modificationDate":"2012-08-03"}, -{"geonameId":"1711146","name":"Ilagan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":72363,"modificationDate":"2017-12-13"}, -{"geonameId":"3833062","name":"Venado Tuerto","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":72340,"modificationDate":"2016-01-30"}, -{"geonameId":"3468562","name":"Caçapava","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":72340,"modificationDate":"2012-08-03"}, -{"geonameId":"2377457","name":"Nouadhibou","countryName":"Mauritania","timeZoneName":"Africa/Nouakchott","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":72337,"modificationDate":"2016-10-22"}, -{"geonameId":"1260730","name":"Pālghar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":72335,"modificationDate":"2018-05-28"}, -{"geonameId":"265243","name":"Maroúsi","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":72333,"modificationDate":"2019-10-23"}, -{"geonameId":"1788462","name":"Xinzhi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":72303,"modificationDate":"2012-01-18"}, -{"geonameId":"8504959","name":"Finlyandskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":72292,"modificationDate":"2013-04-02"}, -{"geonameId":"5404024","name":"Turlock","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":72292,"modificationDate":"2017-03-09"}, -{"geonameId":"1272873","name":"Dharapuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":72291,"modificationDate":"2014-10-14"}, -{"geonameId":"2507877","name":"Mac Mahon","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":72280,"modificationDate":"2020-06-11"}, -{"geonameId":"1037125","name":"Montepuez","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":72279,"modificationDate":"2012-01-19"}, -{"geonameId":"4735966","name":"Temple","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":72277,"modificationDate":"2017-03-09"}, -{"geonameId":"1802788","name":"Licheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":72276,"modificationDate":"2012-09-06"}, -{"geonameId":"4005270","name":"Guanajuato","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":72237,"modificationDate":"2018-11-03"}, -{"geonameId":"785238","name":"Suva Reka","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":72229,"modificationDate":"2015-02-22"}, -{"geonameId":"4916079","name":"West Ridge","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":72211,"modificationDate":"2017-12-06"}, -{"geonameId":"2622447","name":"Esbjerg","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":72205,"modificationDate":"2017-10-18"}, -{"geonameId":"410096","name":"Ash Shafā","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":72190,"modificationDate":"2019-10-10"}, -{"geonameId":"5324363","name":"Apple Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":72174,"modificationDate":"2017-03-09"}, -{"geonameId":"1691150","name":"Sagay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":72153,"modificationDate":"2017-12-13"}, -{"geonameId":"6141190","name":"Sarnia","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":72125,"modificationDate":"2019-09-05"}, -{"geonameId":"1842754","name":"Kyosai","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":72124,"modificationDate":"2012-01-18"}, -{"geonameId":"2229411","name":"Limbe","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":72106,"modificationDate":"2016-10-08"}, -{"geonameId":"2501404","name":"Cheria","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":72095,"modificationDate":"2012-01-19"}, -{"geonameId":"1639094","name":"Kuningan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":72085,"modificationDate":"2016-01-07"}, -{"geonameId":"3471393","name":"Arujá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":72077,"modificationDate":"2013-08-17"}, -{"geonameId":"286987","name":"Nazwah","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":72076,"modificationDate":"2020-06-10"}, -{"geonameId":"1920772","name":"Zhoucheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":72070,"modificationDate":"2006-01-17"}, -{"geonameId":"1718722","name":"Capas","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":72070,"modificationDate":"2017-12-13"}, -{"geonameId":"3465090","name":"Cruzeiro","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":72022,"modificationDate":"2014-12-25"}, -{"geonameId":"3438995","name":"Mariano Roque Alonso","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":72008,"modificationDate":"2018-04-09"}, -{"geonameId":"146400","name":"Larnaca","countryName":"Cyprus","timeZoneName":"Asia/Nicosia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":72000,"modificationDate":"2017-07-03"}, -{"geonameId":"2639842","name":"Purley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":72000,"modificationDate":"2012-06-01"}, -{"geonameId":"5369367","name":"Lynwood","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":71989,"modificationDate":"2017-03-09"}, -{"geonameId":"5278052","name":"Waukesha","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":71970,"modificationDate":"2017-05-23"}, -{"geonameId":"3454763","name":"Patrocínio","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":71963,"modificationDate":"2012-08-03"}, -{"geonameId":"2755420","name":"Gouda","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":71952,"modificationDate":"2020-03-12"}, -{"geonameId":"4145381","name":"Wilmington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":71948,"modificationDate":"2019-09-19"}, -{"geonameId":"3446065","name":"Três Rios","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":71944,"modificationDate":"2012-12-15"}, -{"geonameId":"1832828","name":"Yangsan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":71936,"modificationDate":"2016-03-10"}, -{"geonameId":"1016698","name":"Bothaville","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":71934,"modificationDate":"2012-07-12"}, -{"geonameId":"1816176","name":"Caidian","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":71891,"modificationDate":"2016-04-08"}, -{"geonameId":"5149222","name":"Canton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":71885,"modificationDate":"2018-11-28"}, -{"geonameId":"2647793","name":"Guildford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":71873,"modificationDate":"2010-08-03"}, -{"geonameId":"2352250","name":"Afikpo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":71866,"modificationDate":"2016-01-30"}, -{"geonameId":"3470264","name":"Bebedouro","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":71862,"modificationDate":"2013-04-28"}, -{"geonameId":"4428667","name":"Gulfport","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":71856,"modificationDate":"2017-03-09"}, -{"geonameId":"515083","name":"Sunzha","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":71841,"modificationDate":"2016-12-02"}, -{"geonameId":"3599735","name":"Amatitlán","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":71836,"modificationDate":"2017-01-15"}, -{"geonameId":"3176477","name":"Fuorigrotta","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":71808,"modificationDate":"2019-07-22"}, -{"geonameId":"1274129","name":"Chintāmani","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":71798,"modificationDate":"2016-10-08"}, -{"geonameId":"1271947","name":"Bharatpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":71783,"modificationDate":"2020-06-10"}, -{"geonameId":"707308","name":"Izmail","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":71780,"modificationDate":"2020-03-11"}, -{"geonameId":"296173","name":"Dize","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":71729,"modificationDate":"2020-06-10"}, -{"geonameId":"2503847","name":"Birkhadem","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":71722,"modificationDate":"2019-05-10"}, -{"geonameId":"2637891","name":"Shrewsbury","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":71715,"modificationDate":"2017-06-12"}, -{"geonameId":"2744118","name":"Zaandam","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":71708,"modificationDate":"2019-04-17"}, -{"geonameId":"2720501","name":"Borås","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":71700,"modificationDate":"2019-09-05"}, -{"geonameId":"694382","name":"Zapadno-Gruppskiy","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":71700,"modificationDate":"2020-06-10"}, -{"geonameId":"2501541","name":"Chelghoum el Aïd","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":71660,"modificationDate":"2018-03-17"}, -{"geonameId":"1848439","name":"Yawata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":71656,"modificationDate":"2017-07-22"}, -{"geonameId":"2349558","name":"Apomu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":71656,"modificationDate":"2016-01-30"}, -{"geonameId":"2033602","name":"Xiuyan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":71614,"modificationDate":"2012-01-18"}, -{"geonameId":"6138495","name":"Saint-Jean-sur-Richelieu","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":71613,"modificationDate":"2016-06-22"}, -{"geonameId":"170892","name":"Deraya","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":71596,"modificationDate":"2020-06-10"}, -{"geonameId":"3586814","name":"Delgado","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":71594,"modificationDate":"2020-01-08"}, -{"geonameId":"5223869","name":"Pawtucket","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":71591,"modificationDate":"2017-09-05"}, -{"geonameId":"1259154","name":"Pusad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":71588,"modificationDate":"2015-08-07"}, -{"geonameId":"1733438","name":"Donggongon","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":71585,"modificationDate":"2010-06-16"}, -{"geonameId":"1264555","name":"Madhubani","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":71582,"modificationDate":"2014-10-14"}, -{"geonameId":"1508054","name":"Chernogorsk","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":71582,"modificationDate":"2016-11-29"}, -{"geonameId":"4161625","name":"Lauderhill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":71579,"modificationDate":"2017-03-09"}, -{"geonameId":"1861290","name":"Itō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":71578,"modificationDate":"2017-07-22"}, -{"geonameId":"8224580","name":"Peckham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":71552,"modificationDate":"2017-12-13"}, -{"geonameId":"4593142","name":"Rock Hill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":71548,"modificationDate":"2017-08-04"}, -{"geonameId":"2473493","name":"Monastir","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":71546,"modificationDate":"2019-09-05"}, -{"geonameId":"3449310","name":"São Cristóvão","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":71539,"modificationDate":"2012-08-03"}, -{"geonameId":"1137168","name":"Khanabad","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":71531,"modificationDate":"2020-06-09"}, -{"geonameId":"3639747","name":"Güigüe","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":71530,"modificationDate":"2018-08-08"}, -{"geonameId":"1626498","name":"Sragen","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":71522,"modificationDate":"2016-01-07"}, -{"geonameId":"1256039","name":"Sirsilla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":71499,"modificationDate":"2018-05-28"}, -{"geonameId":"113491","name":"Siakhdekhan","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":71499,"modificationDate":"2020-06-10"}, -{"geonameId":"2517595","name":"Fuengirola","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":71482,"modificationDate":"2013-10-23"}, -{"geonameId":"1685880","name":"Solana","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":71475,"modificationDate":"2017-12-13"}, -{"geonameId":"2342628","name":"Fiditi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":71461,"modificationDate":"2018-12-04"}, -{"geonameId":"4369596","name":"Silver Spring","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":71452,"modificationDate":"2019-01-25"}, -{"geonameId":"2656284","name":"Barnsley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":71447,"modificationDate":"2019-09-05"}, -{"geonameId":"2862026","name":"Norderstedt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":71439,"modificationDate":"2015-09-04"}, -{"geonameId":"3665657","name":"Yumbo","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":71436,"modificationDate":"2018-09-05"}, -{"geonameId":"1803842","name":"Lianzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":71423,"modificationDate":"2013-10-05"}, -{"geonameId":"3472603","name":"Alfenas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":71406,"modificationDate":"2012-08-03"}, -{"geonameId":"8410807","name":"Triyuga","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":71405,"modificationDate":"2019-10-19"}, -{"geonameId":"7279741","name":"Vapi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":71395,"modificationDate":"2014-10-13"}, -{"geonameId":"749748","name":"Khanjarah","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":71379,"modificationDate":"2012-01-18"}, -{"geonameId":"304797","name":"Mardin","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":71373,"modificationDate":"2012-12-19"}, -{"geonameId":"945945","name":"Upington","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":71373,"modificationDate":"2012-07-12"}, -{"geonameId":"1488253","name":"Zelenogorsk","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":71354,"modificationDate":"2019-09-05"}, -{"geonameId":"4450687","name":"West Gulfport","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":71329,"modificationDate":"2006-01-17"}, -{"geonameId":"966166","name":"Parys","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":71319,"modificationDate":"2012-07-12"}, -{"geonameId":"733191","name":"Blagoevgrad","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":71306,"modificationDate":"2019-09-05"}, -{"geonameId":"263986","name":"Agios Dimitrios","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":71294,"modificationDate":"2019-10-23"}, -{"geonameId":"1859586","name":"Kazo","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":71291,"modificationDate":"2017-07-22"}, -{"geonameId":"738025","name":"Yalova","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":71289,"modificationDate":"2011-02-21"}, -{"geonameId":"3020686","name":"Dunkerque","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":71287,"modificationDate":"2020-05-12"}, -{"geonameId":"2038139","name":"Changtu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":71284,"modificationDate":"2012-01-18"}, -{"geonameId":"1848087","name":"Yukuhashi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":71277,"modificationDate":"2017-07-22"}, -{"geonameId":"1723066","name":"Bulacan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":71274,"modificationDate":"2019-09-27"}, -{"geonameId":"2875115","name":"Luneberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":71260,"modificationDate":"2020-06-10"}, -{"geonameId":"3186952","name":"Zadar","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":71258,"modificationDate":"2019-11-18"}, -{"geonameId":"362004","name":"Abū Tīj","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":71257,"modificationDate":"2019-12-04"}, -{"geonameId":"3980187","name":"El Pueblito","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":71254,"modificationDate":"2018-11-03"}, -{"geonameId":"4691585","name":"Flower Mound","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":71253,"modificationDate":"2017-03-09"}, -{"geonameId":"621074","name":"Svyetlahorsk","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":71250,"modificationDate":"2014-06-27"}, -{"geonameId":"3084840","name":"Stargard","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":71224,"modificationDate":"2019-09-05"}, -{"geonameId":"3461444","name":"Ijuí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":71202,"modificationDate":"2017-06-17"}, -{"geonameId":"1818016","name":"Anlu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":71198,"modificationDate":"2012-01-18"}, -{"geonameId":"4005219","name":"Guasave","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":71196,"modificationDate":"2018-11-03"}, -{"geonameId":"1684553","name":"Tagaytay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":71181,"modificationDate":"2017-12-13"}, -{"geonameId":"2033403","name":"Yilan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":71180,"modificationDate":"2013-05-07"}, -{"geonameId":"5688025","name":"Bismarck","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":71167,"modificationDate":"2019-09-05"}, -{"geonameId":"286245","name":"Sur","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":71152,"modificationDate":"2016-01-23"}, -{"geonameId":"3986984","name":"San Francisco del Rincón","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":71139,"modificationDate":"2018-11-03"}, -{"geonameId":"4751839","name":"Centreville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":71135,"modificationDate":"2011-05-14"}, -{"geonameId":"2529649","name":"Taroudant","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":71133,"modificationDate":"2016-11-02"}, -{"geonameId":"559029","name":"Grazhdanka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":71128,"modificationDate":"2013-03-29"}, -{"geonameId":"4922462","name":"Lafayette","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":71111,"modificationDate":"2017-05-23"}, -{"geonameId":"3178671","name":"Cinisello Balsamo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":71109,"modificationDate":"2018-03-16"}, -{"geonameId":"1185092","name":"Thakus Gaon","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":71096,"modificationDate":"2020-06-10"}, -{"geonameId":"5102443","name":"Passaic","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":71085,"modificationDate":"2017-05-23"}, -{"geonameId":"431748","name":"Muyinga","countryName":"Burundi","timeZoneName":"Africa/Bujumbura","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":71076,"modificationDate":"2012-01-19"}, -{"geonameId":"1809486","name":"Guiping","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":71066,"modificationDate":"2013-10-05"}, -{"geonameId":"746958","name":"Gemlik","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":71063,"modificationDate":"2013-05-08"}, -{"geonameId":"1808872","name":"Hanyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":71053,"modificationDate":"2020-06-10"}, -{"geonameId":"1850396","name":"Tenri","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":71052,"modificationDate":"2017-07-22"}, -{"geonameId":"4170156","name":"Riverview","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":71050,"modificationDate":"2011-05-14"}, -{"geonameId":"1268259","name":"Kāmāreddi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":71042,"modificationDate":"2018-05-28"}, -{"geonameId":"5386754","name":"Redlands","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":71035,"modificationDate":"2017-03-09"}, -{"geonameId":"2521088","name":"Benidorm","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":71034,"modificationDate":"2012-03-04"}, -{"geonameId":"2325733","name":"Orita Eruwa","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":71027,"modificationDate":"2018-12-04"}, -{"geonameId":"8358544","name":"Zográfos","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":71026,"modificationDate":"2019-10-23"}, -{"geonameId":"5666639","name":"Missoula","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":71022,"modificationDate":"2017-03-09"}, -{"geonameId":"5385941","name":"Rancho Cordova","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":71017,"modificationDate":"2017-03-09"}, -{"geonameId":"2940213","name":"Celle","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":71010,"modificationDate":"2019-09-05"}, -{"geonameId":"1275346","name":"Bolpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":70998,"modificationDate":"2014-10-14"}, -{"geonameId":"1258546","name":"Rānāghāt","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":70984,"modificationDate":"2014-10-14"}, -{"geonameId":"2643490","name":"Lowestoft","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":70945,"modificationDate":"2019-05-06"}, -{"geonameId":"2044050","name":"Kogon","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":70923,"modificationDate":"2020-06-11"}, -{"geonameId":"3036386","name":"Aubervilliers","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":70914,"modificationDate":"2016-02-18"}, -{"geonameId":"2870310","name":"Moabit","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":70911,"modificationDate":"2012-06-09"}, -{"geonameId":"3407882","name":"Altamira","countryName":"Brazil","timeZoneName":"America/Santarem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":70888,"modificationDate":"2012-08-03"}, -{"geonameId":"1271891","name":"Fāzilka","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":70887,"modificationDate":"2014-10-16"}, -{"geonameId":"2036283","name":"Kuandian","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":70867,"modificationDate":"2012-01-18"}, -{"geonameId":"2173323","name":"Bundaberg","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":70826,"modificationDate":"2013-06-25"}, -{"geonameId":"2732544","name":"Vila Nova de Gaia","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":70811,"modificationDate":"2018-02-14"}, -{"geonameId":"2301217","name":"Ejura","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":70807,"modificationDate":"2019-12-06"}, -{"geonameId":"2648272","name":"Gosport","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":70793,"modificationDate":"2011-02-14"}, -{"geonameId":"123941","name":"Mīnāb","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":70790,"modificationDate":"2014-09-04"}, -{"geonameId":"1798548","name":"Poyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":70787,"modificationDate":"2012-02-02"}, -{"geonameId":"1786357","name":"Yongfeng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":70783,"modificationDate":"2019-11-07"}, -{"geonameId":"1693239","name":"Plaridel","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":70781,"modificationDate":"2017-12-13"}, -{"geonameId":"1502603","name":"Kopeysk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":70780,"modificationDate":"2012-12-05"}, -{"geonameId":"2343822","name":"Eha Amufu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":70779,"modificationDate":"2016-01-30"}, -{"geonameId":"2676176","name":"Södertälje","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":70777,"modificationDate":"2019-09-05"}, -{"geonameId":"2037240","name":"Gongchangling","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":70761,"modificationDate":"2012-01-18"}, -{"geonameId":"3455168","name":"Paracatu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":70753,"modificationDate":"2012-08-03"}, -{"geonameId":"1276378","name":"Beypore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":70751,"modificationDate":"2014-10-13"}, -{"geonameId":"601084","name":"Alytus","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":70747,"modificationDate":"2020-05-10"}, -{"geonameId":"2751738","name":"Lelystad","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":70741,"modificationDate":"2017-10-17"}, -{"geonameId":"1805757","name":"Jimo","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":70733,"modificationDate":"2012-01-18"}, -{"geonameId":"2331005","name":"Malumfashi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":70709,"modificationDate":"2016-06-22"}, -{"geonameId":"3402721","name":"Carpina","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":70689,"modificationDate":"2012-08-03"}, -{"geonameId":"2964180","name":"Gaillimh","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":70686,"modificationDate":"2019-11-13"}, -{"geonameId":"2549263","name":"Essaouira","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":70634,"modificationDate":"2020-01-24"}, -{"geonameId":"160961","name":"Bukoba","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":70628,"modificationDate":"2019-09-05"}, -{"geonameId":"1070661","name":"Antanifotsy","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":70626,"modificationDate":"2018-09-28"}, -{"geonameId":"6053154","name":"Lethbridge","countryName":"Canada","timeZoneName":"America/Edmonton","timeZoneOffsetNameWithoutDst":"Mountain Time","population":70617,"modificationDate":"2008-04-11"}, -{"geonameId":"3374462","name":"Mindelo","countryName":"Cabo Verde","timeZoneName":"Atlantic/Cape_Verde","timeZoneOffsetNameWithoutDst":"Cape Verde Time","population":70611,"modificationDate":"2013-06-06"}, -{"geonameId":"1273724","name":"Dādri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":70609,"modificationDate":"2015-05-06"}, -{"geonameId":"203104","name":"Byumba","countryName":"Rwanda","timeZoneName":"Africa/Kigali","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":70593,"modificationDate":"2016-07-06"}, -{"geonameId":"8436165","name":"Kurortnyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":70589,"modificationDate":"2013-10-13"}, -{"geonameId":"7422816","name":"Dazaifu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":70587,"modificationDate":"2017-07-22"}, -{"geonameId":"2936871","name":"Dinslaken","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":70573,"modificationDate":"2015-09-04"}, -{"geonameId":"2658822","name":"Sankt Gallen","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":70572,"modificationDate":"2015-07-29"}, -{"geonameId":"699445","name":"Novomoskovsk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":70550,"modificationDate":"2020-05-24"}, -{"geonameId":"4714131","name":"New Braunfels","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":70543,"modificationDate":"2017-03-09"}, -{"geonameId":"3089578","name":"Pabianice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":70542,"modificationDate":"2014-05-11"}, -{"geonameId":"3044082","name":"Tatabánya","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":70541,"modificationDate":"2015-06-17"}, -{"geonameId":"1700980","name":"Mariano","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":70516,"modificationDate":"2017-12-13"}, -{"geonameId":"1278152","name":"Auraiya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":70508,"modificationDate":"2015-08-07"}, -{"geonameId":"6534232","name":"Lamezia Terme","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":70501,"modificationDate":"2015-08-21"}, -{"geonameId":"472278","name":"Wolsk","countryName":"Russia","timeZoneName":"Europe/Saratov","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":70500,"modificationDate":"2020-06-10"}, -{"geonameId":"2296969","name":"Nungua","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":70483,"modificationDate":"2019-12-05"}, -{"geonameId":"4501198","name":"Cherry Hill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":70475,"modificationDate":"2017-05-23"}, -{"geonameId":"2038541","name":"Baiquan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":70472,"modificationDate":"2013-04-03"}, -{"geonameId":"577881","name":"Beloretsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":70468,"modificationDate":"2019-09-05"}, -{"geonameId":"3563504","name":"Contramaestre","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":70438,"modificationDate":"2016-02-07"}, -{"geonameId":"1168226","name":"Pattoki","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":70436,"modificationDate":"2019-12-06"}, -{"geonameId":"555980","name":"Ishimbay","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":70421,"modificationDate":"2012-01-17"}, -{"geonameId":"743882","name":"Kastamonu","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":70402,"modificationDate":"2013-05-09"}, -{"geonameId":"1633308","name":"Pagar Alam","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":70386,"modificationDate":"2016-06-12"}, -{"geonameId":"3398331","name":"Iguatu","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":70380,"modificationDate":"2012-08-03"}, -{"geonameId":"1806218","name":"Jiangyan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":70375,"modificationDate":"2012-01-18"}, -{"geonameId":"2034918","name":"Shiguai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":70357,"modificationDate":"2012-01-18"}, -{"geonameId":"1857844","name":"Maeharu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":70339,"modificationDate":"2020-06-11"}, -{"geonameId":"5294810","name":"Flagstaff","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":70320,"modificationDate":"2017-03-09"}, -{"geonameId":"2295021","name":"Sunyani","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":70299,"modificationDate":"2019-12-08"}, -{"geonameId":"1715804","name":"Danao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":70270,"modificationDate":"2017-12-13"}, -{"geonameId":"3099112","name":"Gniezno","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":70269,"modificationDate":"2019-09-05"}, -{"geonameId":"2759875","name":"Alphen aan den Rijn","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":70251,"modificationDate":"2017-10-17"}, -{"geonameId":"310892","name":"Kadirli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":70248,"modificationDate":"2019-02-01"}, -{"geonameId":"3433715","name":"Goya","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":70245,"modificationDate":"2018-11-30"}, -{"geonameId":"1585660","name":"Cho Dok","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":70239,"modificationDate":"2013-05-07"}, -{"geonameId":"148565","name":"Şirvan","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":70220,"modificationDate":"2018-03-08"}, -{"geonameId":"956907","name":"Schweizer-Reneke","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":70214,"modificationDate":"2012-07-12"}, -{"geonameId":"584243","name":"Adler","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":70200,"modificationDate":"2018-08-21"}, -{"geonameId":"1810846","name":"Fuyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":70183,"modificationDate":"2012-01-18"}, -{"geonameId":"1789799","name":"Haining","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":70171,"modificationDate":"2018-12-06"}, -{"geonameId":"1528121","name":"Karakol","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":70171,"modificationDate":"2019-09-05"}, -{"geonameId":"316411","name":"Bayezid","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":70171,"modificationDate":"2020-06-10"}, -{"geonameId":"2522165","name":"Alcalá de Guadaira","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":70155,"modificationDate":"2012-01-19"}, -{"geonameId":"569955","name":"Chapayevsk","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":70147,"modificationDate":"2019-09-05"}, -{"geonameId":"1277183","name":"Bāpatla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":70117,"modificationDate":"2015-09-06"}, -{"geonameId":"1294041","name":"Taungdwingyi","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":70094,"modificationDate":"2016-06-01"}, -{"geonameId":"7997918","name":"Inaruwa","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":70093,"modificationDate":"2019-10-18"}, -{"geonameId":"211734","name":"Lisala","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":70087,"modificationDate":"2012-05-31"}, -{"geonameId":"4924006","name":"Muncie","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":70087,"modificationDate":"2017-05-23"}, -{"geonameId":"1259994","name":"Payyanur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":70069,"modificationDate":"2020-06-10"}, -{"geonameId":"2952984","name":"Bamberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":70047,"modificationDate":"2019-09-05"}, -{"geonameId":"99169","name":"Khāliş","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":70046,"modificationDate":"2016-06-22"}, -{"geonameId":"3028808","name":"Cannes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":70011,"modificationDate":"2019-09-05"}, -{"geonameId":"2528659","name":"Tiflet","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":70010,"modificationDate":"2016-11-02"}, -{"geonameId":"3073699","name":"Kladno","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":70003,"modificationDate":"2019-09-05"}, -{"geonameId":"322673","name":"Ayvalık","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":70002,"modificationDate":"2019-01-10"}, -{"geonameId":"6065686","name":"Maple Ridge","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":70000,"modificationDate":"2019-02-26"}, -{"geonameId":"2637490","name":"Southall","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":70000,"modificationDate":"2012-06-01"}, -{"geonameId":"1521368","name":"Baikonur","countryName":"Kazakhstan","timeZoneName":"Asia/Qyzylorda","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":70000,"modificationDate":"2019-12-23"}, -{"geonameId":"6618486","name":"Dainava (Kaunas)","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":70000,"modificationDate":"2014-09-23"}, -{"geonameId":"1167507","name":"Chenab Nagar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":70000,"modificationDate":"2019-12-06"}, -{"geonameId":"3099654","name":"Fordon","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":70000,"modificationDate":"2010-10-28"}, -{"geonameId":"5373497","name":"Mira Mesa","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":70000,"modificationDate":"2018-04-18"}, -{"geonameId":"5410438","name":"Woodland Hills","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":70000,"modificationDate":"2018-04-18"}, -{"geonameId":"12166275","name":"Quận Đức Thành","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":70000,"modificationDate":"2020-05-30"}, -{"geonameId":"2300379","name":"Ho","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":69998,"modificationDate":"2019-12-06"}, -{"geonameId":"935582","name":"Le Tampon","countryName":"Reunion","timeZoneName":"Indian/Reunion","timeZoneOffsetNameWithoutDst":"Réunion Time","population":69986,"modificationDate":"2019-02-26"}, -{"geonameId":"4178003","name":"Weston","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":69959,"modificationDate":"2017-03-09"}, -{"geonameId":"265533","name":"Aigáleo","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":69946,"modificationDate":"2019-10-23"}, -{"geonameId":"1800764","name":"Mengcheng Chengguanzhen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":69916,"modificationDate":"2012-01-18"}, -{"geonameId":"2034228","name":"Wangkui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":69915,"modificationDate":"2013-04-03"}, -{"geonameId":"145034","name":"Abhar","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":69889,"modificationDate":"2017-08-01"}, -{"geonameId":"3557347","name":"Güira de Melena","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":69879,"modificationDate":"2015-12-06"}, -{"geonameId":"1255121","name":"Talipparamba","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":69878,"modificationDate":"2015-11-08"}, -{"geonameId":"1635342","name":"Mertoyudan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":69871,"modificationDate":"2012-01-17"}, -{"geonameId":"3444864","name":"Votuporanga","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":69863,"modificationDate":"2012-08-03"}, -{"geonameId":"3563559","name":"Consolación del Sur","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":69857,"modificationDate":"2015-12-06"}, -{"geonameId":"1254444","name":"Tindivanam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":69839,"modificationDate":"2014-10-14"}, -{"geonameId":"1732846","name":"Segamat","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":69816,"modificationDate":"2012-01-17"}, -{"geonameId":"3985344","name":"San Miguel de Allende","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":69811,"modificationDate":"2013-07-31"}, -{"geonameId":"2994393","name":"Merignae","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":69791,"modificationDate":"2020-06-10"}, -{"geonameId":"3986172","name":"San José del Cabo","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":69788,"modificationDate":"2018-11-03"}, -{"geonameId":"3057124","name":"Trnava","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":69785,"modificationDate":"2019-09-05"}, -{"geonameId":"1648266","name":"Bondowoso","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":69783,"modificationDate":"2007-11-09"}, -{"geonameId":"1175446","name":"Kahror Pakka","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":69743,"modificationDate":"2019-12-06"}, -{"geonameId":"2481246","name":"Sidi Aïssa","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":69740,"modificationDate":"2018-03-17"}, -{"geonameId":"3588258","name":"Totonicapán","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":69734,"modificationDate":"2012-12-05"}, -{"geonameId":"136987","name":"Dehdasht","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":69726,"modificationDate":"2014-09-04"}, -{"geonameId":"2334756","name":"Kaura Namoda","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":69725,"modificationDate":"2016-06-22"}, -{"geonameId":"2294727","name":"Techiman","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":69720,"modificationDate":"2020-01-08"}, -{"geonameId":"3442057","name":"Las Piedras","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":69682,"modificationDate":"2019-02-26"}, -{"geonameId":"2290582","name":"Dabou","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":69661,"modificationDate":"2014-01-21"}, -{"geonameId":"139223","name":"Chālūs","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":69638,"modificationDate":"2014-09-04"}, -{"geonameId":"343663","name":"Arba Minch","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":69622,"modificationDate":"2016-11-21"}, -{"geonameId":"3393106","name":"Paragominas","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":69613,"modificationDate":"2012-08-03"}, -{"geonameId":"1160571","name":"Kavash","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":69603,"modificationDate":"2020-06-10"}, -{"geonameId":"1563281","name":"Toy Hoa","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":69596,"modificationDate":"2020-06-09"}, -{"geonameId":"5909629","name":"Brossard","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":69575,"modificationDate":"2019-03-18"}, -{"geonameId":"1850708","name":"Tanabe","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":69563,"modificationDate":"2017-07-22"}, -{"geonameId":"1256475","name":"Shirpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":69540,"modificationDate":"2015-10-04"}, -{"geonameId":"3883167","name":"Linares","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":69535,"modificationDate":"2018-02-06"}, -{"geonameId":"4355585","name":"Frederick","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":69479,"modificationDate":"2017-03-09"}, -{"geonameId":"3980180","name":"Frontera","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":69462,"modificationDate":"2018-11-03"}, -{"geonameId":"3832791","name":"Villa Carlos Paz","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":69451,"modificationDate":"2016-01-30"}, -{"geonameId":"3458494","name":"Lins","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":69451,"modificationDate":"2012-03-10"}, -{"geonameId":"5806298","name":"Pasco","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":69451,"modificationDate":"2017-03-09"}, -{"geonameId":"1295395","name":"Syriam","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":69448,"modificationDate":"2016-06-01"}, -{"geonameId":"5383465","name":"Pittsburg","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":69424,"modificationDate":"2017-03-09"}, -{"geonameId":"70979","name":"Sian","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":69404,"modificationDate":"2020-06-10"}, -{"geonameId":"3460441","name":"Jaboticabal","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":69394,"modificationDate":"2012-08-03"}, -{"geonameId":"1177682","name":"Gujar Khan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":69374,"modificationDate":"2019-12-06"}, -{"geonameId":"2698691","name":"Kungsholmen","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":69363,"modificationDate":"2016-10-14"}, -{"geonameId":"1172993","name":"Kot Malik Barkhurdar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":69359,"modificationDate":"2019-12-06"}, -{"geonameId":"355449","name":"Isnā","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":69335,"modificationDate":"2017-10-17"}, -{"geonameId":"1180983","name":"Chuchar-kana Mandi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":69321,"modificationDate":"2019-12-06"}, -{"geonameId":"5133858","name":"Ridgewood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":69317,"modificationDate":"2017-12-06"}, -{"geonameId":"4905211","name":"Palatine","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":69308,"modificationDate":"2017-05-23"}, -{"geonameId":"1771304","name":"Kampong Baharu Balakong","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":69302,"modificationDate":"2013-03-02"}, -{"geonameId":"2491050","name":"Larbaâ","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":69298,"modificationDate":"2019-03-24"}, -{"geonameId":"1276752","name":"Bāsoda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":69278,"modificationDate":"2014-10-14"}, -{"geonameId":"2235194","name":"Bafia","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":69270,"modificationDate":"2012-01-16"}, -{"geonameId":"3689718","name":"Arauca","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":69264,"modificationDate":"2016-01-28"}, -{"geonameId":"1846912","name":"Anseong","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":69255,"modificationDate":"2015-01-18"}, -{"geonameId":"1805884","name":"Jiehu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":69245,"modificationDate":"2012-01-18"}, -{"geonameId":"663118","name":"Vaslui","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":69225,"modificationDate":"2016-02-07"}, -{"geonameId":"2796491","name":"Hasselt","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":69222,"modificationDate":"2019-09-05"}, -{"geonameId":"757718","name":"Suwałki","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":69222,"modificationDate":"2019-09-05"}, -{"geonameId":"2637142","name":"Stafford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":69217,"modificationDate":"2017-06-12"}, -{"geonameId":"4715292","name":"North Richland Hills","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":69204,"modificationDate":"2017-03-09"}, -{"geonameId":"1863451","name":"Ōmihachiman","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":69189,"modificationDate":"2017-07-22"}, -{"geonameId":"5105634","name":"Union City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":69156,"modificationDate":"2020-04-18"}, -{"geonameId":"4160983","name":"Kissimmee","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":69152,"modificationDate":"2017-03-09"}, -{"geonameId":"2036069","name":"Linjiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":69149,"modificationDate":"2012-01-18"}, -{"geonameId":"675918","name":"Hunedoara","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":69136,"modificationDate":"2016-02-07"}, -{"geonameId":"3706567","name":"Las Cumbres","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":69102,"modificationDate":"2015-07-03"}, -{"geonameId":"10295350","name":"San Carlo All'Arena","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":69094,"modificationDate":"2019-07-22"}, -{"geonameId":"677106","name":"Giurgiu","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":69067,"modificationDate":"2019-02-28"}, -{"geonameId":"1163272","name":"Toba Tek Singh","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":69064,"modificationDate":"2019-12-06"}, -{"geonameId":"1793230","name":"Tantou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":69050,"modificationDate":"2013-07-05"}, -{"geonameId":"1268820","name":"Jorhāt","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":69033,"modificationDate":"2017-03-17"}, -{"geonameId":"2789786","name":"Ostend","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":69011,"modificationDate":"2014-10-30"}, -{"geonameId":"1634131","name":"Nganjuk","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":69011,"modificationDate":"2016-01-07"}, -{"geonameId":"2786578","name":"Sint-Niklaas","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":69010,"modificationDate":"2013-03-05"}, -{"geonameId":"2033934","name":"Xiaoshi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":68994,"modificationDate":"2012-01-18"}, -{"geonameId":"1217474","name":"Denov","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":68994,"modificationDate":"2016-09-08"}, -{"geonameId":"1704067","name":"Magalang","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":68988,"modificationDate":"2017-12-13"}, -{"geonameId":"1328121","name":"Bogale","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":68938,"modificationDate":"2016-06-01"}, -{"geonameId":"3557378","name":"Güines","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":68935,"modificationDate":"2015-12-06"}, -{"geonameId":"2639022","name":"Royal Tunbridge Wells","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":68910,"modificationDate":"2017-06-12"}, -{"geonameId":"5406990","name":"Walnut Creek","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":68910,"modificationDate":"2017-03-09"}, -{"geonameId":"1853081","name":"Saku","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":68885,"modificationDate":"2017-07-22"}, -{"geonameId":"1862912","name":"Hekinan","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":68872,"modificationDate":"2017-07-22"}, -{"geonameId":"2753638","name":"Hoorn","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":68852,"modificationDate":"2017-10-17"}, -{"geonameId":"1706609","name":"Libon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":68846,"modificationDate":"2017-12-13"}, -{"geonameId":"2221053","name":"Wum","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":68836,"modificationDate":"2012-01-16"}, -{"geonameId":"3698105","name":"Chulucanas","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":68835,"modificationDate":"2012-07-19"}, -{"geonameId":"2487452","name":"Mila","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":68831,"modificationDate":"2018-08-08"}, -{"geonameId":"480089","name":"Tuymazy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":68829,"modificationDate":"2012-01-17"}, -{"geonameId":"1256207","name":"Sindhnūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":68793,"modificationDate":"2014-10-14"}, -{"geonameId":"2110959","name":"Sukagawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":68790,"modificationDate":"2017-07-22"}, -{"geonameId":"2343270","name":"Enugu-Ukwu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":68785,"modificationDate":"2016-01-30"}, -{"geonameId":"1002851","name":"Ga-Rankuwa","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":68767,"modificationDate":"2012-01-18"}, -{"geonameId":"362973","name":"Abnūb","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":68749,"modificationDate":"2019-12-04"}, -{"geonameId":"3113236","name":"Ponferrada","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":68736,"modificationDate":"2012-12-08"}, -{"geonameId":"1864009","name":"Fukuchiyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":68735,"modificationDate":"2017-07-22"}, -{"geonameId":"1805505","name":"Jinjiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":68720,"modificationDate":"2013-10-05"}, -{"geonameId":"5989045","name":"Kamloops","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":68714,"modificationDate":"2019-02-26"}, -{"geonameId":"2503878","name":"Bir el Ater","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":68703,"modificationDate":"2019-08-04"}, -{"geonameId":"2339156","name":"Idah","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":68703,"modificationDate":"2016-01-30"}, -{"geonameId":"3445133","name":"Viçosa","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":68680,"modificationDate":"2012-08-03"}, -{"geonameId":"1276988","name":"Bargarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":68670,"modificationDate":"2015-09-06"}, -{"geonameId":"532675","name":"Lys’va","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":68660,"modificationDate":"2016-12-02"}, -{"geonameId":"988698","name":"Knysna","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":68659,"modificationDate":"2016-03-09"}, -{"geonameId":"3448221","name":"São Sebastião do Paraíso","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":68654,"modificationDate":"2013-10-21"}, -{"geonameId":"2479247","name":"Sougueur","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":68654,"modificationDate":"2012-01-19"}, -{"geonameId":"5127835","name":"Mount Vernon","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":68628,"modificationDate":"2017-05-23"}, -{"geonameId":"1252908","name":"Wāshīm","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":68622,"modificationDate":"2015-08-07"}, -{"geonameId":"1253095","name":"Visnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":68619,"modificationDate":"2014-10-13"}, -{"geonameId":"2036959","name":"Heishan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":68603,"modificationDate":"2012-01-18"}, -{"geonameId":"4682991","name":"Conroe","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":68602,"modificationDate":"2017-03-09"}, -{"geonameId":"572525","name":"Borisoglebsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":68597,"modificationDate":"2019-09-05"}, -{"geonameId":"1856569","name":"Moriyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":68584,"modificationDate":"2017-07-22"}, -{"geonameId":"2328185","name":"Obonoma","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":68584,"modificationDate":"2016-01-30"}, -{"geonameId":"4059102","name":"Dothan","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":68567,"modificationDate":"2017-03-09"}, -{"geonameId":"490172","name":"Sosnovyy Bor","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":68563,"modificationDate":"2016-12-17"}, -{"geonameId":"709161","name":"Feodosiya","countryName":"Ukraine","timeZoneName":"Europe/Simferopol","timeZoneOffsetNameWithoutDst":"Moscow Time","population":68562,"modificationDate":"2019-10-28"}, -{"geonameId":"7302847","name":"Palwancha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":68561,"modificationDate":"2014-10-12"}, -{"geonameId":"2955272","name":"Aschaffenburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":68551,"modificationDate":"2020-02-28"}, -{"geonameId":"3670502","name":"Sabanalarga","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":68535,"modificationDate":"2018-07-04"}, -{"geonameId":"3099213","name":"Głogów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":68530,"modificationDate":"2018-11-09"}, -{"geonameId":"1267227","name":"Keshod","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":68518,"modificationDate":"2014-10-13"}, -{"geonameId":"1793419","name":"Binhe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":68514,"modificationDate":"2015-06-07"}, -{"geonameId":"3686561","name":"Chinchiná","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":68512,"modificationDate":"2018-07-04"}, -{"geonameId":"7284833","name":"Budapest XVI. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":68484,"modificationDate":"2019-09-23"}, -{"geonameId":"1849592","name":"Tsuruga","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":68482,"modificationDate":"2017-07-22"}, -{"geonameId":"5377985","name":"Northridge","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":68469,"modificationDate":"2018-04-18"}, -{"geonameId":"3985710","name":"Cabo San Lucas","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":68463,"modificationDate":"2018-11-03"}, -{"geonameId":"4880889","name":"Waterloo","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":68460,"modificationDate":"2017-05-23"}, -{"geonameId":"1683340","name":"Tanauan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":68456,"modificationDate":"2017-12-13"}, -{"geonameId":"1268015","name":"Kānnangād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":68450,"modificationDate":"2014-10-13"}, -{"geonameId":"1798946","name":"Pengcheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":68442,"modificationDate":"2012-01-18"}, -{"geonameId":"2508102","name":"Aïn Fakroun","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":68433,"modificationDate":"2012-01-19"}, -{"geonameId":"3107112","name":"Rivas-Vaciamadrid","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":68405,"modificationDate":"2016-02-19"}, -{"geonameId":"360526","name":"Cusae","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":68394,"modificationDate":"2020-06-11"}, -{"geonameId":"5036493","name":"Maple Grove","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":68385,"modificationDate":"2017-05-23"}, -{"geonameId":"361029","name":"Al Jammālīyah","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":68381,"modificationDate":"2017-05-08"}, -{"geonameId":"1795166","name":"Shima","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":68375,"modificationDate":"2014-01-10"}, -{"geonameId":"1275481","name":"Bīsalpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":68355,"modificationDate":"2015-10-04"}, -{"geonameId":"1800519","name":"Mingguang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":68351,"modificationDate":"2012-01-18"}, -{"geonameId":"1799384","name":"Ninghai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":68330,"modificationDate":"2012-01-18"}, -{"geonameId":"4937230","name":"Framingham","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":68318,"modificationDate":"2017-05-23"}, -{"geonameId":"3929631","name":"San Isidro","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":68309,"modificationDate":"2020-05-06"}, -{"geonameId":"601594","name":"Krassnowodsk","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":68292,"modificationDate":"2020-06-10"}, -{"geonameId":"1169278","name":"Narowal","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":68291,"modificationDate":"2019-12-06"}, -{"geonameId":"1254953","name":"Tanuku","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":68290,"modificationDate":"2015-09-06"}, -{"geonameId":"285811","name":"Fahaheel","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":68290,"modificationDate":"2020-06-10"}, -{"geonameId":"3361934","name":"Saldanha","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":68284,"modificationDate":"2017-01-27"}, -{"geonameId":"704422","name":"Pokrovsk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":68263,"modificationDate":"2020-03-08"}, -{"geonameId":"565614","name":"Dolgoprudnyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":68259,"modificationDate":"2016-12-20"}, -{"geonameId":"2075432","name":"Bunbury","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":68248,"modificationDate":"2019-07-20"}, -{"geonameId":"2475612","name":"Tolga","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":68246,"modificationDate":"2012-01-19"}, -{"geonameId":"211647","name":"Lodja","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":68244,"modificationDate":"2016-11-22"}, -{"geonameId":"300399","name":"Söke","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":68230,"modificationDate":"2011-09-21"}, -{"geonameId":"1278178","name":"Attili","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":68196,"modificationDate":"2014-10-10"}, -{"geonameId":"5386785","name":"Redondo Beach","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":68166,"modificationDate":"2017-03-09"}, -{"geonameId":"1857470","name":"Matsutō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":68159,"modificationDate":"2017-04-09"}, -{"geonameId":"125897","name":"Langarood","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":68148,"modificationDate":"2020-06-10"}, -{"geonameId":"1277527","name":"Bālotra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":68120,"modificationDate":"2014-10-14"}, -{"geonameId":"3531862","name":"Jimenez","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":68111,"modificationDate":"2020-06-10"}, -{"geonameId":"3117667","name":"Majadahonda","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":68110,"modificationDate":"2015-06-08"}, -{"geonameId":"1529363","name":"Kuqa","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":68105,"modificationDate":"2019-07-10"}, -{"geonameId":"4317639","name":"Bossier City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":68094,"modificationDate":"2017-03-09"}, -{"geonameId":"2497060","name":"Es Senia","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":68084,"modificationDate":"2019-03-08"}, -{"geonameId":"2866135","name":"Neubrandenburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":68082,"modificationDate":"2015-09-05"}, -{"geonameId":"1717911","name":"Catbalogan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":68081,"modificationDate":"2017-12-13"}, -{"geonameId":"3568312","name":"Artemisa","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":68073,"modificationDate":"2018-04-25"}, -{"geonameId":"3980605","name":"Valle de Santiago","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":68058,"modificationDate":"2018-11-03"}, -{"geonameId":"3406545","name":"Balsas","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":68056,"modificationDate":"2015-10-27"}, -{"geonameId":"7279595","name":"Pithampur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":68051,"modificationDate":"2014-10-14"}, -{"geonameId":"774558","name":"Chełm","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":68043,"modificationDate":"2019-09-05"}, -{"geonameId":"691374","name":"Chystyakove","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":68037,"modificationDate":"2018-07-04"}, -{"geonameId":"2503874","name":"Bir el Djir","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":68032,"modificationDate":"2012-01-19"}, -{"geonameId":"1262463","name":"Munnar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":68000,"modificationDate":"2017-06-06"}, -{"geonameId":"565197","name":"Dorogomilovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":68000,"modificationDate":"2013-04-02"}, -{"geonameId":"692105","name":"Dovzhansk","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":68000,"modificationDate":"2020-04-08"}, -{"geonameId":"3589452","name":"Santa Catarina Pinula","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":67994,"modificationDate":"2019-06-05"}, -{"geonameId":"3531865","name":"Cadereyta","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":67994,"modificationDate":"2015-06-22"}, -{"geonameId":"1274821","name":"Chamrajnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":67992,"modificationDate":"2019-02-03"}, -{"geonameId":"3031005","name":"Bourges","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":67987,"modificationDate":"2019-09-05"}, -{"geonameId":"1260040","name":"Pattukkottai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":67982,"modificationDate":"2014-10-14"}, -{"geonameId":"5410902","name":"Yorba Linda","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":67973,"modificationDate":"2017-03-09"}, -{"geonameId":"751949","name":"Ardeşen","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":67965,"modificationDate":"2014-06-27"}, -{"geonameId":"2038198","name":"Chaihe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":67963,"modificationDate":"2013-05-08"}, -{"geonameId":"571306","name":"Svyatoy Krest","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":67962,"modificationDate":"2020-06-10"}, -{"geonameId":"1800521","name":"Minggang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":67945,"modificationDate":"2018-12-06"}, -{"geonameId":"1793286","name":"Tangzhai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":67936,"modificationDate":"2012-01-18"}, -{"geonameId":"3460598","name":"Itatiba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":67934,"modificationDate":"2012-03-10"}, -{"geonameId":"1021086","name":"Barberton","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":67927,"modificationDate":"2012-07-12"}, -{"geonameId":"1720402","name":"Calbayog City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":67921,"modificationDate":"2018-01-10"}, -{"geonameId":"2026895","name":"Belogorsk","countryName":"Russia","timeZoneName":"Asia/Yakutsk","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":67911,"modificationDate":"2019-09-05"}, -{"geonameId":"3070291","name":"Most","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":67905,"modificationDate":"2018-09-08"}, -{"geonameId":"146054","name":"Stróvolos","countryName":"Cyprus","timeZoneName":"Asia/Nicosia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":67904,"modificationDate":"2020-03-29"}, -{"geonameId":"2520425","name":"Campiña","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":67904,"modificationDate":"2016-06-22"}, -{"geonameId":"3435264","name":"Concepción del Uruguay","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":67895,"modificationDate":"2018-12-05"}, -{"geonameId":"3518387","name":"San Mateo Atenco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":67890,"modificationDate":"2018-11-03"}, -{"geonameId":"197745","name":"Garissa","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":67861,"modificationDate":"2013-05-06"}, -{"geonameId":"5053358","name":"Woodbury","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":67855,"modificationDate":"2017-05-23"}, -{"geonameId":"12157037","name":"San Fernando","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":67844,"modificationDate":"2020-05-07"}, -{"geonameId":"3183178","name":"Altamura","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":67821,"modificationDate":"2018-03-16"}, -{"geonameId":"2037658","name":"Dongfeng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":67820,"modificationDate":"2012-01-18"}, -{"geonameId":"668732","name":"Roman","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":67819,"modificationDate":"2015-11-27"}, -{"geonameId":"684802","name":"Bârlad","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":67818,"modificationDate":"2015-11-27"}, -{"geonameId":"679452","name":"Deva","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":67802,"modificationDate":"2019-04-14"}, -{"geonameId":"1503772","name":"Khanty-Mansiysk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":67800,"modificationDate":"2019-09-05"}, -{"geonameId":"358269","name":"Deirut","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":67788,"modificationDate":"2020-06-11"}, -{"geonameId":"1850742","name":"Tamano","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":67786,"modificationDate":"2017-08-02"}, -{"geonameId":"3874119","name":"Quillota","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":67779,"modificationDate":"2018-02-06"}, -{"geonameId":"5251436","name":"Eau Claire","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":67778,"modificationDate":"2017-05-23"}, -{"geonameId":"2650096","name":"Ellesmere Port","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":67768,"modificationDate":"2011-03-03"}, -{"geonameId":"1606418","name":"Saraburi","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":67763,"modificationDate":"2017-12-19"}, -{"geonameId":"1505453","name":"Ishim","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":67762,"modificationDate":"2019-09-05"}, -{"geonameId":"2033128","name":"Zhenlai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":67760,"modificationDate":"2012-01-18"}, -{"geonameId":"2745673","name":"Velsen-Zuid","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":67758,"modificationDate":"2017-10-17"}, -{"geonameId":"4372599","name":"Waldorf","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":67752,"modificationDate":"2011-05-14"}, -{"geonameId":"3050616","name":"Kaposszentjakab","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":67746,"modificationDate":"2020-06-10"}, -{"geonameId":"2785341","name":"Tournai","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":67721,"modificationDate":"2013-03-05"}, -{"geonameId":"5117575","name":"Forest Hills","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":67714,"modificationDate":"2017-04-16"}, -{"geonameId":"360923","name":"Kharga","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":67700,"modificationDate":"2020-06-11"}, -{"geonameId":"138025","name":"Dāmghān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":67694,"modificationDate":"2014-09-04"}, -{"geonameId":"2034691","name":"Songjianghe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":67672,"modificationDate":"2012-01-18"}, -{"geonameId":"2756429","name":"Ede","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":67670,"modificationDate":"2019-04-24"}, -{"geonameId":"5341704","name":"Davis","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":67666,"modificationDate":"2019-09-19"}, -{"geonameId":"1685577","name":"Subic","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":67664,"modificationDate":"2019-08-28"}, -{"geonameId":"1849539","name":"Tsushima","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":67658,"modificationDate":"2017-07-22"}, -{"geonameId":"1191368","name":"Pālang","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":67652,"modificationDate":"2016-11-09"}, -{"geonameId":"4356188","name":"Glen Burnie","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":67639,"modificationDate":"2011-05-14"}, -{"geonameId":"2208791","name":"Yafran","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":67638,"modificationDate":"2013-08-13"}, -{"geonameId":"12070064","name":"Arenella","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":67634,"modificationDate":"2019-07-22"}, -{"geonameId":"2351979","name":"Agbor","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":67610,"modificationDate":"2016-01-30"}, -{"geonameId":"5333180","name":"Camarillo","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":67608,"modificationDate":"2017-03-09"}, -{"geonameId":"1269507","name":"Jaisalmer","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":67604,"modificationDate":"2019-09-05"}, -{"geonameId":"347236","name":"Toukh","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":67599,"modificationDate":"2019-01-10"}, -{"geonameId":"1801850","name":"Luorong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":67593,"modificationDate":"2012-01-18"}, -{"geonameId":"4739157","name":"Victoria","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":67574,"modificationDate":"2017-03-09"}, -{"geonameId":"1724767","name":"Bislig","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":67567,"modificationDate":"2017-12-13"}, -{"geonameId":"693457","name":"Smila","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":67534,"modificationDate":"2020-05-16"}, -{"geonameId":"6534228","name":"Guidonia Montecelio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":67516,"modificationDate":"2012-09-20"}, -{"geonameId":"2236967","name":"Soio","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":67491,"modificationDate":"2018-01-15"}, -{"geonameId":"360754","name":"Al Manzalah","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":67486,"modificationDate":"2018-03-15"}, -{"geonameId":"1278446","name":"Arāria","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":67474,"modificationDate":"2019-05-09"}, -{"geonameId":"4355843","name":"Gaithersburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":67456,"modificationDate":"2018-11-29"}, -{"geonameId":"1164987","name":"Shorkot","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":67439,"modificationDate":"2019-12-16"}, -{"geonameId":"1791464","name":"Wenling","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":67433,"modificationDate":"2016-06-19"}, -{"geonameId":"3574810","name":"Chaguanas","countryName":"Trinidad and Tobago","timeZoneName":"America/Port_of_Spain","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":67433,"modificationDate":"2017-10-04"}, -{"geonameId":"3389609","name":"Santa Inês","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":67424,"modificationDate":"2012-08-03"}, -{"geonameId":"2342883","name":"Ezza-Ohu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":67414,"modificationDate":"2018-12-04"}, -{"geonameId":"3979673","name":"Ixtapa-Zihuatanejo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":67408,"modificationDate":"2018-11-03"}, -{"geonameId":"8299614","name":"Rossendale","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":67400,"modificationDate":"2012-06-01"}, -{"geonameId":"1797120","name":"Fuqing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":67397,"modificationDate":"2020-03-07"}, -{"geonameId":"1270375","name":"Harda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":67387,"modificationDate":"2020-06-10"}, -{"geonameId":"1855757","name":"Nakatsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":67372,"modificationDate":"2017-07-28"}, -{"geonameId":"1816026","name":"Caohe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":67370,"modificationDate":"2012-01-18"}, -{"geonameId":"2715953","name":"Eskilstuna","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":67359,"modificationDate":"2019-09-05"}, -{"geonameId":"4473083","name":"Jacksonville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":67357,"modificationDate":"2017-05-23"}, -{"geonameId":"2289983","name":"Dimbokro","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":67349,"modificationDate":"2014-01-10"}, -{"geonameId":"1710519","name":"City of Isabela","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":67336,"modificationDate":"2017-12-13"}, -{"geonameId":"1257436","name":"Sangamner","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":67309,"modificationDate":"2014-10-13"}, -{"geonameId":"1218239","name":"Tejen","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":67294,"modificationDate":"2012-01-17"}, -{"geonameId":"3539093","name":"San Luis","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":67293,"modificationDate":"2016-02-07"}, -{"geonameId":"228853","name":"Mukono","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":67290,"modificationDate":"2018-03-17"}, -{"geonameId":"2035453","name":"Pingzhuang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":67273,"modificationDate":"2012-01-18"}, -{"geonameId":"5397765","name":"South San Francisco","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":67271,"modificationDate":"2017-03-09"}, -{"geonameId":"232066","name":"Kasese","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":67269,"modificationDate":"2016-06-22"}, -{"geonameId":"1165635","name":"Shahdadpur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":67249,"modificationDate":"2019-12-06"}, -{"geonameId":"3445993","name":"Tubarão","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":67245,"modificationDate":"2012-08-03"}, -{"geonameId":"540103","name":"Kstovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":67242,"modificationDate":"2019-09-05"}, -{"geonameId":"2876865","name":"Lippstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":67219,"modificationDate":"2016-07-05"}, -{"geonameId":"1269217","name":"Jaorā","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":67203,"modificationDate":"2014-10-14"}, -{"geonameId":"756867","name":"Tomaszów Mazowiecki","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":67197,"modificationDate":"2010-10-10"}, -{"geonameId":"1852003","name":"Shiojiri","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":67159,"modificationDate":"2017-07-22"}, -{"geonameId":"2249222","name":"Louga","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":67154,"modificationDate":"2013-08-06"}, -{"geonameId":"303700","name":"Ödemiş","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":67153,"modificationDate":"2015-04-21"}, -{"geonameId":"1811305","name":"Fengkou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":67139,"modificationDate":"2013-04-03"}, -{"geonameId":"256614","name":"Néa Ionía","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":67134,"modificationDate":"2019-10-23"}, -{"geonameId":"2159045","name":"Maitland","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":67132,"modificationDate":"2019-07-20"}, -{"geonameId":"2384770","name":"Mbaïki","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":67132,"modificationDate":"2016-06-22"}, -{"geonameId":"295432","name":"Bet Shemesh","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":67100,"modificationDate":"2017-07-02"}, -{"geonameId":"4329753","name":"Kenner","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":67091,"modificationDate":"2017-03-09"}, -{"geonameId":"1635660","name":"Melati","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":67090,"modificationDate":"2012-10-19"}, -{"geonameId":"3517517","name":"Santa Cruz Xoxocotlán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":67086,"modificationDate":"2018-11-03"}, -{"geonameId":"2959927","name":"Aalen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":67085,"modificationDate":"2014-05-09"}, -{"geonameId":"5122477","name":"Jackson Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":67067,"modificationDate":"2017-04-16"}, -{"geonameId":"1864549","name":"Chiryū","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":67062,"modificationDate":"2017-07-22"}, -{"geonameId":"2977921","name":"Saint-Nazaire","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":67054,"modificationDate":"2019-04-10"}, -{"geonameId":"761168","name":"Przemyśl","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":67013,"modificationDate":"2015-04-09"}, -{"geonameId":"6091314","name":"Notre-Dame-de-Grâce","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":67000,"modificationDate":"2019-02-26"}, -{"geonameId":"1275117","name":"Buldāna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":66991,"modificationDate":"2014-10-13"}, -{"geonameId":"590031","name":"Narva","countryName":"Estonia","timeZoneName":"Europe/Tallinn","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":66980,"modificationDate":"2019-09-05"}, -{"geonameId":"4367175","name":"Rockville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":66980,"modificationDate":"2019-01-27"}, -{"geonameId":"2036033","name":"Liuhe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":66975,"modificationDate":"2020-06-10"}, -{"geonameId":"4632595","name":"Jackson","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":66975,"modificationDate":"2017-03-09"}, -{"geonameId":"1648759","name":"Bima","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":66970,"modificationDate":"2019-01-30"}, -{"geonameId":"4899911","name":"Lincoln Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":66959,"modificationDate":"2017-12-06"}, -{"geonameId":"1263103","name":"Mettupalayam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":66944,"modificationDate":"2014-10-14"}, -{"geonameId":"5411015","name":"Yuba City","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":66941,"modificationDate":"2017-03-09"}, -{"geonameId":"2675397","name":"Solna","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":66909,"modificationDate":"2014-09-09"}, -{"geonameId":"1278573","name":"Anjār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":66888,"modificationDate":"2014-10-13"}, -{"geonameId":"582750","name":"Aleksin","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":66885,"modificationDate":"2019-09-05"}, -{"geonameId":"4975802","name":"Portland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":66881,"modificationDate":"2019-09-05"}, -{"geonameId":"5380748","name":"Palo Alto","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":66853,"modificationDate":"2019-09-05"}, -{"geonameId":"1789427","name":"Wacheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":66848,"modificationDate":"2015-06-07"}, -{"geonameId":"2539134","name":"Ouled Teima","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":66832,"modificationDate":"2020-06-11"}, -{"geonameId":"1079048","name":"Ambovombe","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":66818,"modificationDate":"2018-09-07"}, -{"geonameId":"2863840","name":"Neuwied","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":66805,"modificationDate":"2017-08-02"}, -{"geonameId":"5288661","name":"Casas Adobes","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":66795,"modificationDate":"2011-05-14"}, -{"geonameId":"3512128","name":"Bajos de Haina","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":66784,"modificationDate":"2016-06-05"}, -{"geonameId":"5802570","name":"Marysville","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":66773,"modificationDate":"2017-03-09"}, -{"geonameId":"2820087","name":"Unna","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":66734,"modificationDate":"2015-09-04"}, -{"geonameId":"1248749","name":"Dambulla","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":66716,"modificationDate":"2019-09-05"}, -{"geonameId":"1150007","name":"Trang","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":66713,"modificationDate":"2015-03-04"}, -{"geonameId":"3512067","name":"Baní","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":66709,"modificationDate":"2016-06-08"}, -{"geonameId":"102318","name":"Saihat","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":66702,"modificationDate":"2020-06-10"}, -{"geonameId":"8504950","name":"Parnas","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":66693,"modificationDate":"2013-03-29"}, -{"geonameId":"824003","name":"Bakikhanov","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":66686,"modificationDate":"2020-06-11"}, -{"geonameId":"1714766","name":"Dinalupihan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":66670,"modificationDate":"2017-12-13"}, -{"geonameId":"7302806","name":"Bellampalli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":66660,"modificationDate":"2014-10-10"}, -{"geonameId":"2507646","name":"Akbou","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":66654,"modificationDate":"2012-01-19"}, -{"geonameId":"5781770","name":"South Jordan","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":66648,"modificationDate":"2017-08-23"}, -{"geonameId":"1274641","name":"Channapatna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":66647,"modificationDate":"2016-09-08"}, -{"geonameId":"1850892","name":"Takayama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":66636,"modificationDate":"2017-07-22"}, -{"geonameId":"1258366","name":"Ratangarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":66625,"modificationDate":"2014-10-14"}, -{"geonameId":"2034599","name":"Tailai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":66623,"modificationDate":"2013-04-03"}, -{"geonameId":"2523665","name":"Quartu Sant'Elena","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":66620,"modificationDate":"2018-03-16"}, -{"geonameId":"2473499","name":"La Mohammedia","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":66593,"modificationDate":"2016-09-08"}, -{"geonameId":"294421","name":"Lod","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":66589,"modificationDate":"2017-08-29"}, -{"geonameId":"1815184","name":"Chengyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":66588,"modificationDate":"2012-01-18"}, -{"geonameId":"2035182","name":"Sanchazi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":66576,"modificationDate":"2012-01-18"}, -{"geonameId":"1236854","name":"Maharagama","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":66576,"modificationDate":"2018-12-30"}, -{"geonameId":"914959","name":"Kalulushi","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":66575,"modificationDate":"2012-06-20"}, -{"geonameId":"134518","name":"Fīrūzābād","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":66558,"modificationDate":"2014-09-04"}, -{"geonameId":"5265838","name":"Oshkosh","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":66555,"modificationDate":"2018-10-06"}, -{"geonameId":"3991043","name":"Ramos Arizpe","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":66554,"modificationDate":"2018-11-03"}, -{"geonameId":"1653316","name":"Savannakhet","countryName":"Laos","timeZoneName":"Asia/Vientiane","timeZoneOffsetNameWithoutDst":"Indochina Time","population":66553,"modificationDate":"2019-04-10"}, -{"geonameId":"2305677","name":"Aflao","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":66546,"modificationDate":"2019-12-06"}, -{"geonameId":"1165744","name":"Shabqadar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":66541,"modificationDate":"2019-12-06"}, -{"geonameId":"4124112","name":"North Little Rock","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":66504,"modificationDate":"2017-05-23"}, -{"geonameId":"1804451","name":"Lianyuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":66501,"modificationDate":"2012-01-18"}, -{"geonameId":"4159050","name":"Homestead","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":66498,"modificationDate":"2017-03-09"}, -{"geonameId":"758445","name":"Stalowa Wola","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":66495,"modificationDate":"2010-10-14"}, -{"geonameId":"1170951","name":"Mansehra","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":66486,"modificationDate":"2019-12-06"}, -{"geonameId":"1626312","name":"Sokaraja","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":66482,"modificationDate":"2012-01-17"}, -{"geonameId":"5108193","name":"Bayside","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":66455,"modificationDate":"2017-04-16"}, -{"geonameId":"6180961","name":"White Rock","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":66450,"modificationDate":"2020-05-30"}, -{"geonameId":"1797417","name":"Wuxi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":66442,"modificationDate":"2014-02-08"}, -{"geonameId":"3106054","name":"Vicálvaro","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":66439,"modificationDate":"2017-05-26"}, -{"geonameId":"2649258","name":"Folkestone","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":66429,"modificationDate":"2018-07-03"}, -{"geonameId":"1265863","name":"Krishnagiri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":66419,"modificationDate":"2014-10-14"}, -{"geonameId":"2853292","name":"Plauen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":66412,"modificationDate":"2015-09-05"}, -{"geonameId":"707099","name":"Kalush","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":66406,"modificationDate":"2020-05-09"}, -{"geonameId":"704617","name":"Kovel","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":66400,"modificationDate":"2017-12-10"}, -{"geonameId":"1258128","name":"Rikhikesh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":66390,"modificationDate":"2020-06-10"}, -{"geonameId":"539147","name":"Kungur","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":66389,"modificationDate":"2019-09-05"}, -{"geonameId":"1270845","name":"Goyerkāta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":66358,"modificationDate":"2014-10-14"}, -{"geonameId":"547475","name":"Klintsy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":66336,"modificationDate":"2019-09-05"}, -{"geonameId":"2110774","name":"Tōgane","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":66332,"modificationDate":"2017-07-22"}, -{"geonameId":"2019309","name":"Neryungri","countryName":"Russia","timeZoneName":"Asia/Yakutsk","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":66320,"modificationDate":"2016-11-24"}, -{"geonameId":"2036685","name":"Huinan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":66315,"modificationDate":"2012-01-18"}, -{"geonameId":"6141439","name":"Sault Ste. Marie","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":66313,"modificationDate":"2019-08-08"}, -{"geonameId":"5095445","name":"Bayonne","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":66311,"modificationDate":"2017-05-23"}, -{"geonameId":"6690877","name":"Brixton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":66300,"modificationDate":"2010-05-25"}, -{"geonameId":"3104342","name":"Zamora","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":66293,"modificationDate":"2012-12-22"}, -{"geonameId":"2646517","name":"Hounslow","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":66292,"modificationDate":"2019-10-01"}, -{"geonameId":"1853338","name":"Sabae","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":66291,"modificationDate":"2017-07-22"}, -{"geonameId":"2504072","name":"Besbes","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":66287,"modificationDate":"2012-01-19"}, -{"geonameId":"5024825","name":"Eagan","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":66286,"modificationDate":"2017-05-23"}, -{"geonameId":"536162","name":"Leninogorsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":66263,"modificationDate":"2019-09-05"}, -{"geonameId":"2759145","name":"Bergen op Zoom","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":66256,"modificationDate":"2017-10-17"}, -{"geonameId":"4153132","name":"Delray Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":66255,"modificationDate":"2017-03-09"}, -{"geonameId":"1274928","name":"Chāībāsa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":66252,"modificationDate":"2017-09-05"}, -{"geonameId":"2271977","name":"Algueirão","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":66250,"modificationDate":"2018-02-07"}, -{"geonameId":"2266977","name":"Loures","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":66231,"modificationDate":"2018-04-30"}, -{"geonameId":"461698","name":"Sosnovka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":66227,"modificationDate":"2013-03-29"}, -{"geonameId":"3717588","name":"Saint-Marc","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":66226,"modificationDate":"2018-12-06"}, -{"geonameId":"2042645","name":"Rajin","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":66224,"modificationDate":"2019-09-05"}, -{"geonameId":"725993","name":"Veliko Tŭrnovo","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":66217,"modificationDate":"2007-07-01"}, -{"geonameId":"1801797","name":"Luoyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":66188,"modificationDate":"2012-02-28"}, -{"geonameId":"7302829","name":"Mandamarri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":66176,"modificationDate":"2014-10-10"}, -{"geonameId":"731549","name":"Gabrovo","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":66175,"modificationDate":"2019-09-05"}, -{"geonameId":"12157038","name":"Jesus Maria","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":66171,"modificationDate":"2020-05-07"}, -{"geonameId":"2038482","name":"Bamiantong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":66170,"modificationDate":"2013-05-08"}, -{"geonameId":"320392","name":"Burdur","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":66158,"modificationDate":"2012-01-16"}, -{"geonameId":"2036713","name":"Huanren","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":66147,"modificationDate":"2012-01-18"}, -{"geonameId":"1797543","name":"Qionghu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":66145,"modificationDate":"2013-06-04"}, -{"geonameId":"172082","name":"I‘zāz","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":66138,"modificationDate":"2016-12-22"}, -{"geonameId":"2708365","name":"Halmstad","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":66124,"modificationDate":"2019-09-05"}, -{"geonameId":"2005057","name":"Gamping Lor","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":66110,"modificationDate":"2018-12-06"}, -{"geonameId":"2036753","name":"Huanan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":66087,"modificationDate":"2014-04-06"}, -{"geonameId":"1260671","name":"Palani","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":66085,"modificationDate":"2014-10-14"}, -{"geonameId":"686578","name":"Alba Iulia","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":66085,"modificationDate":"2020-06-10"}, -{"geonameId":"558082","name":"Gukovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":66079,"modificationDate":"2014-08-05"}, -{"geonameId":"2511619","name":"Sagunto","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":66070,"modificationDate":"2018-09-14"}, -{"geonameId":"3546434","name":"Morón","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":66060,"modificationDate":"2016-01-07"}, -{"geonameId":"1628884","name":"Sampit","countryName":"Indonesia","timeZoneName":"Asia/Pontianak","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":66053,"modificationDate":"2013-12-15"}, -{"geonameId":"1261772","name":"Nārnaul","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":66049,"modificationDate":"2014-10-13"}, -{"geonameId":"1787331","name":"Zhangjiagang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":66039,"modificationDate":"2006-01-17"}, -{"geonameId":"753866","name":"Zamość","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":66034,"modificationDate":"2019-09-05"}, -{"geonameId":"1790100","name":"Xiaolingwei","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":66031,"modificationDate":"2012-05-05"}, -{"geonameId":"4633419","name":"Johnson City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":66027,"modificationDate":"2017-03-09"}, -{"geonameId":"2243271","name":"Cabinda","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":66020,"modificationDate":"2012-01-17"}, -{"geonameId":"1272847","name":"Dharmapuri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":66017,"modificationDate":"2014-10-14"}, -{"geonameId":"1271934","name":"Fatahabad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":66013,"modificationDate":"2020-06-10"}, -{"geonameId":"1720561","name":"Calapan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":66008,"modificationDate":"2017-12-13"}, -{"geonameId":"1816753","name":"Beidaihehaibin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":66000,"modificationDate":"2012-01-18"}, -{"geonameId":"4755158","name":"Dale City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":65969,"modificationDate":"2011-05-14"}, -{"geonameId":"300796","name":"Silvan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":65956,"modificationDate":"2019-11-18"}, -{"geonameId":"1164970","name":"Shujaabad","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":65952,"modificationDate":"2019-12-09"}, -{"geonameId":"1500607","name":"Lesosibirsk","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":65945,"modificationDate":"2019-09-05"}, -{"geonameId":"4679867","name":"Cedar Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":65945,"modificationDate":"2017-03-09"}, -{"geonameId":"300371","name":"Soma","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":65934,"modificationDate":"2013-08-06"}, -{"geonameId":"169304","name":"Jablah","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":65915,"modificationDate":"2013-05-07"}, -{"geonameId":"12156822","name":"Waterfront Communities-The Island","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":65913,"modificationDate":"2020-05-02"}, -{"geonameId":"1855410","name":"Niizu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":65910,"modificationDate":"2020-06-11"}, -{"geonameId":"1638775","name":"Lahat","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":65906,"modificationDate":"2016-06-12"}, -{"geonameId":"1850707","name":"Tanabe","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":65903,"modificationDate":"2017-04-09"}, -{"geonameId":"6241325","name":"Rotorua","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":65901,"modificationDate":"2017-09-15"}, -{"geonameId":"3105184","name":"Vilanova i la Geltrú","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":65890,"modificationDate":"2010-04-22"}, -{"geonameId":"1800675","name":"Mengyin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":65889,"modificationDate":"2012-01-18"}, -{"geonameId":"5130572","name":"Parkchester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":65876,"modificationDate":"2017-04-16"}, -{"geonameId":"982899","name":"Lichtenburg","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":65863,"modificationDate":"2012-07-12"}, -{"geonameId":"4671524","name":"Atascocita","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":65844,"modificationDate":"2011-05-14"}, -{"geonameId":"5044407","name":"Saint Cloud","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":65842,"modificationDate":"2017-05-23"}, -{"geonameId":"4354265","name":"Ellicott City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":65834,"modificationDate":"2011-05-14"}, -{"geonameId":"1790601","name":"Xiangcheng Chengguanzhen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":65833,"modificationDate":"2015-06-07"}, -{"geonameId":"1260771","name":"Palāsa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":65833,"modificationDate":"2014-10-10"}, -{"geonameId":"1860748","name":"Kashima-shi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":65814,"modificationDate":"2019-07-11"}, -{"geonameId":"5364329","name":"Laguna Niguel","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":65806,"modificationDate":"2017-03-09"}, -{"geonameId":"2511306","name":"Sunlucar de Barrameda","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":65805,"modificationDate":"2020-06-11"}, -{"geonameId":"1276783","name":"Basavakalyān","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":65805,"modificationDate":"2014-10-14"}, -{"geonameId":"4406831","name":"Saint Charles","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":65794,"modificationDate":"2017-05-23"}, -{"geonameId":"4696233","name":"Harlingen","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":65774,"modificationDate":"2017-03-09"}, -{"geonameId":"1494573","name":"Polevskoy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":65770,"modificationDate":"2012-01-17"}, -{"geonameId":"3454818","name":"Pato Branco","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":65754,"modificationDate":"2012-08-03"}, -{"geonameId":"3171366","name":"Pavia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":65734,"modificationDate":"2018-03-16"}, -{"geonameId":"3179661","name":"Castellammare di Stabia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":65730,"modificationDate":"2015-06-03"}, -{"geonameId":"2111836","name":"Mooka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":65717,"modificationDate":"2017-07-22"}, -{"geonameId":"2633485","name":"Wrexham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":65692,"modificationDate":"2017-06-12"}, -{"geonameId":"1274430","name":"Chingleput","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":65689,"modificationDate":"2019-03-04"}, -{"geonameId":"2037820","name":"Dashitou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":65683,"modificationDate":"2012-01-18"}, -{"geonameId":"1689832","name":"San Ildefonso","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":65669,"modificationDate":"2017-12-13"}, -{"geonameId":"1688954","name":"San Miguel","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":65661,"modificationDate":"2017-12-13"}, -{"geonameId":"2473540","name":"Al Marsá","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":65640,"modificationDate":"2018-08-30"}, -{"geonameId":"3096372","name":"Kędzierzyn-Koźle","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":65636,"modificationDate":"2015-10-15"}, -{"geonameId":"1810920","name":"Qingyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":65622,"modificationDate":"2012-12-05"}, -{"geonameId":"1817858","name":"Babu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":65603,"modificationDate":"2012-01-18"}, -{"geonameId":"1299237","name":"Pyapon","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":65601,"modificationDate":"2016-06-01"}, -{"geonameId":"1273992","name":"Chopda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":65598,"modificationDate":"2015-09-06"}, -{"geonameId":"3454690","name":"Paulínia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":65595,"modificationDate":"2012-03-10"}, -{"geonameId":"1728772","name":"Bais","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":65594,"modificationDate":"2017-12-13"}, -{"geonameId":"2517816","name":"Estepona","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":65592,"modificationDate":"2016-06-18"}, -{"geonameId":"1260607","name":"Panaji","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":65586,"modificationDate":"2014-10-14"}, -{"geonameId":"261779","name":"Yannina","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":65574,"modificationDate":"2020-06-10"}, -{"geonameId":"3687952","name":"Caldas","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":65565,"modificationDate":"2018-06-08"}, -{"geonameId":"6113365","name":"Prince George","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":65558,"modificationDate":"2019-02-26"}, -{"geonameId":"2033423","name":"Yebaishou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":65536,"modificationDate":"2012-01-18"}, -{"geonameId":"1807645","name":"Huaiyuan Chengguanzhen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":65530,"modificationDate":"2012-01-18"}, -{"geonameId":"5391791","name":"San Clemente","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":65526,"modificationDate":"2017-03-09"}, -{"geonameId":"4792867","name":"West Lynchburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":65517,"modificationDate":"2006-01-17"}, -{"geonameId":"1254744","name":"Thenkasi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":65496,"modificationDate":"2014-10-14"}, -{"geonameId":"3876685","name":"Peñaflor","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":65495,"modificationDate":"2018-04-09"}, -{"geonameId":"5101170","name":"Middletown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":65490,"modificationDate":"2020-04-19"}, -{"geonameId":"290269","name":"Dar Chulaib","countryName":"Bahrain","timeZoneName":"Asia/Bahrain","timeZoneOffsetNameWithoutDst":"Arabian Time","population":65466,"modificationDate":"2020-06-10"}, -{"geonameId":"65785","name":"Afgooye","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":65461,"modificationDate":"2012-01-16"}, -{"geonameId":"2510281","name":"Torremolinos","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":65448,"modificationDate":"2012-03-04"}, -{"geonameId":"1606386","name":"Sattahip","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":65444,"modificationDate":"2012-01-16"}, -{"geonameId":"4937232","name":"Framingham Center","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":65413,"modificationDate":"2017-05-23"}, -{"geonameId":"1813892","name":"Xincheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":65411,"modificationDate":"2015-06-07"}, -{"geonameId":"1852502","name":"Shiki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":65411,"modificationDate":"2017-07-22"}, -{"geonameId":"3459035","name":"Lajeado","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":65407,"modificationDate":"2012-08-03"}, -{"geonameId":"3024297","name":"Colmar","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":65405,"modificationDate":"2019-09-05"}, -{"geonameId":"622794","name":"Rechytsa","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":65400,"modificationDate":"2012-02-02"}, -{"geonameId":"2110793","name":"Tendō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":65393,"modificationDate":"2017-07-22"}, -{"geonameId":"2635650","name":"Torquay","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":65388,"modificationDate":"2017-05-23"}, -{"geonameId":"2234865","name":"Bangangté","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":65385,"modificationDate":"2013-07-04"}, -{"geonameId":"2663536","name":"Växjö","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":65383,"modificationDate":"2019-09-05"}, -{"geonameId":"1816406","name":"Bianzhuang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":65381,"modificationDate":"2012-01-18"}, -{"geonameId":"1252822","name":"Yādgīr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":65376,"modificationDate":"2015-08-07"}, -{"geonameId":"229380","name":"Masaka","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":65373,"modificationDate":"2016-06-22"}, -{"geonameId":"527717","name":"Meleuz","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":65362,"modificationDate":"2019-09-05"}, -{"geonameId":"3515044","name":"Tultepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":65338,"modificationDate":"2013-07-31"}, -{"geonameId":"539283","name":"Kumertau","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":65321,"modificationDate":"2019-09-05"}, -{"geonameId":"1271670","name":"Gangārāmpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":65316,"modificationDate":"2014-10-14"}, -{"geonameId":"1258740","name":"Ramanathapuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":65314,"modificationDate":"2014-10-14"}, -{"geonameId":"2905560","name":"Herten","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":65306,"modificationDate":"2015-09-04"}, -{"geonameId":"1269564","name":"Jagraon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":65305,"modificationDate":"2015-05-06"}, -{"geonameId":"5136454","name":"Schenectady","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":65305,"modificationDate":"2017-05-23"}, -{"geonameId":"1735077","name":"Perai","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":65301,"modificationDate":"2018-04-11"}, -{"geonameId":"2034226","name":"Hepingjie","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":65298,"modificationDate":"2012-01-18"}, -{"geonameId":"1176997","name":"Haveli Lakha","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":65289,"modificationDate":"2019-12-09"}, -{"geonameId":"3988392","name":"Rosarito","countryName":"Mexico","timeZoneName":"America/Tijuana","timeZoneOffsetNameWithoutDst":"Pacific Time","population":65278,"modificationDate":"2018-11-03"}, -{"geonameId":"3465108","name":"Cruz Alta","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":65275,"modificationDate":"2017-07-22"}, -{"geonameId":"1683877","name":"Talisay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":65265,"modificationDate":"2017-12-13"}, -{"geonameId":"1623080","name":"Tulungagung","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":65262,"modificationDate":"2012-01-17"}, -{"geonameId":"2758012","name":"Capelle aan den IJssel","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":65255,"modificationDate":"2019-02-27"}, -{"geonameId":"1863495","name":"Gushikawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":65251,"modificationDate":"2018-02-23"}, -{"geonameId":"1279003","name":"Alīpur Duār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":65232,"modificationDate":"2018-05-27"}, -{"geonameId":"722437","name":"Nagymajor","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":65206,"modificationDate":"2020-06-10"}, -{"geonameId":"1172318","name":"Lala Musa","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":65197,"modificationDate":"2019-12-06"}, -{"geonameId":"492094","name":"Slavyansk-na-Kubani","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":65196,"modificationDate":"2018-08-21"}, -{"geonameId":"1806097","name":"Ningde","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":65170,"modificationDate":"2017-05-24"}, -{"geonameId":"8285535","name":"Villa de Vallecas","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":65162,"modificationDate":"2017-05-26"}, -{"geonameId":"1907123","name":"Hasuda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":65161,"modificationDate":"2017-07-22"}, -{"geonameId":"1811260","name":"Fengrun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":65150,"modificationDate":"2012-01-18"}, -{"geonameId":"2537545","name":"Sefrou","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":65150,"modificationDate":"2016-11-02"}, -{"geonameId":"1185181","name":"Lalmonirhat","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":65127,"modificationDate":"2017-09-21"}, -{"geonameId":"3407407","name":"Aquiraz","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":65116,"modificationDate":"2016-11-27"}, -{"geonameId":"1266162","name":"Kopargaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":65116,"modificationDate":"2014-10-13"}, -{"geonameId":"5415035","name":"Broomfield","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":65065,"modificationDate":"2017-03-09"}, -{"geonameId":"4846834","name":"Ames","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":65060,"modificationDate":"2017-05-23"}, -{"geonameId":"5130561","name":"Park Slope","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":65047,"modificationDate":"2017-12-06"}, -{"geonameId":"4279247","name":"Shawnee","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":65046,"modificationDate":"2017-05-23"}, -{"geonameId":"3628966","name":"La Villa del Rosario","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":65011,"modificationDate":"2018-08-08"}, -{"geonameId":"1804645","name":"Kunyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":65009,"modificationDate":"2012-01-18"}, -{"geonameId":"1121381","name":"Bāzār-e Yakāwlang","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":65000,"modificationDate":"2020-01-02"}, -{"geonameId":"1429434","name":"Bazarak","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":65000,"modificationDate":"2020-06-11"}, -{"geonameId":"345149","name":"Ādīgrat","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":65000,"modificationDate":"2017-10-08"}, -{"geonameId":"1220747","name":"Bokhtar","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":65000,"modificationDate":"2020-04-08"}, -{"geonameId":"704901","name":"Korosten’","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":65000,"modificationDate":"2014-10-01"}, -{"geonameId":"3437918","name":"Itauguá","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":64997,"modificationDate":"2019-03-28"}, -{"geonameId":"4106458","name":"Conway","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":64980,"modificationDate":"2017-05-23"}, -{"geonameId":"1514192","name":"Chust","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":64966,"modificationDate":"2017-07-04"}, -{"geonameId":"1791779","name":"Wanning","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":64954,"modificationDate":"2017-07-21"}, -{"geonameId":"3665913","name":"Villa del Rosario","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":64951,"modificationDate":"2018-08-08"}, -{"geonameId":"5097441","name":"East Orange","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":64949,"modificationDate":"2017-05-23"}, -{"geonameId":"725712","name":"Vratsa","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":64941,"modificationDate":"2016-02-07"}, -{"geonameId":"3397893","name":"Itacoatiara","countryName":"Brazil","timeZoneName":"America/Manaus","timeZoneOffsetNameWithoutDst":"Amazon Time","population":64937,"modificationDate":"2012-08-03"}, -{"geonameId":"1136575","name":"Khulm","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":64933,"modificationDate":"2018-02-17"}, -{"geonameId":"2526488","name":"Youssoufia","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":64910,"modificationDate":"2016-11-02"}, -{"geonameId":"697593","name":"Pervomaysk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":64909,"modificationDate":"2020-04-23"}, -{"geonameId":"1275321","name":"Bongaigaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":64902,"modificationDate":"2014-10-13"}, -{"geonameId":"2906121","name":"Herford","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":64879,"modificationDate":"2015-09-05"}, -{"geonameId":"1803560","name":"Lincheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":64874,"modificationDate":"2012-01-18"}, -{"geonameId":"3435010","name":"Don Torcuato","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":64867,"modificationDate":"2019-08-07"}, -{"geonameId":"4906500","name":"Portage Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":64841,"modificationDate":"2017-12-06"}, -{"geonameId":"2643186","name":"Maidenhead","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":64831,"modificationDate":"2017-06-12"}, -{"geonameId":"4911600","name":"Skokie","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":64821,"modificationDate":"2017-05-23"}, -{"geonameId":"1264071","name":"Malkāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":64812,"modificationDate":"2015-08-07"}, -{"geonameId":"1567069","name":"Tan Am","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":64801,"modificationDate":"2020-06-09"}, -{"geonameId":"294098","name":"Nazareth","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":64800,"modificationDate":"2019-07-10"}, -{"geonameId":"2645418","name":"Kingswood","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":64793,"modificationDate":"2016-06-22"}, -{"geonameId":"3461724","name":"Gurupi","countryName":"Brazil","timeZoneName":"America/Araguaina","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":64789,"modificationDate":"2012-08-03"}, -{"geonameId":"3173775","name":"Massa","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":64783,"modificationDate":"2015-08-27"}, -{"geonameId":"2917540","name":"Grevenbroich","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":64779,"modificationDate":"2015-09-05"}, -{"geonameId":"833262","name":"Čair","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":64773,"modificationDate":"2019-10-05"}, -{"geonameId":"3982266","name":"Tecate","countryName":"Mexico","timeZoneName":"America/Tijuana","timeZoneOffsetNameWithoutDst":"Pacific Time","population":64764,"modificationDate":"2018-11-03"}, -{"geonameId":"3397967","name":"Itaituba","countryName":"Brazil","timeZoneName":"America/Santarem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":64756,"modificationDate":"2013-07-22"}, -{"geonameId":"147429","name":"Nakhchivan","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":64754,"modificationDate":"2018-07-21"}, -{"geonameId":"4152872","name":"Daytona Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":64736,"modificationDate":"2017-03-09"}, -{"geonameId":"1267853","name":"Kāranja","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":64734,"modificationDate":"2015-08-07"}, -{"geonameId":"1266849","name":"Khatauli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":64731,"modificationDate":"2015-09-06"}, -{"geonameId":"2812482","name":"Weimar","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":64727,"modificationDate":"2019-09-05"}, -{"geonameId":"1278297","name":"Ashoknagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":64722,"modificationDate":"2015-08-07"}, -{"geonameId":"1925943","name":"Hwawŏn","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":64718,"modificationDate":"2006-01-17"}, -{"geonameId":"2035196","name":"Salaqi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":64704,"modificationDate":"2012-01-18"}, -{"geonameId":"325103","name":"Ahlat","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":64695,"modificationDate":"2015-08-07"}, -{"geonameId":"7259621","name":"West Bloomfield Township","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":64690,"modificationDate":"2017-05-23"}, -{"geonameId":"4174738","name":"Tamarac","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":64681,"modificationDate":"2017-03-09"}, -{"geonameId":"1255955","name":"Siuri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":64659,"modificationDate":"2014-10-14"}, -{"geonameId":"1185236","name":"Raypur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":64652,"modificationDate":"2020-06-10"}, -{"geonameId":"1262319","name":"Nābha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":64640,"modificationDate":"2015-08-07"}, -{"geonameId":"2498543","name":"El Bayadh","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":64632,"modificationDate":"2018-08-08"}, -{"geonameId":"3440781","name":"Rivera","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":64631,"modificationDate":"2012-02-17"}, -{"geonameId":"5177568","name":"Youngstown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":64628,"modificationDate":"2017-05-23"}, -{"geonameId":"2636177","name":"Taunton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":64621,"modificationDate":"2017-06-12"}, -{"geonameId":"1684016","name":"Talavera","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":64610,"modificationDate":"2017-12-13"}, -{"geonameId":"3645981","name":"Chacao","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":64609,"modificationDate":"2019-04-10"}, -{"geonameId":"3449696","name":"Santo Ângelo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":64606,"modificationDate":"2013-05-01"}, -{"geonameId":"5367565","name":"Lodi","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":64596,"modificationDate":"2017-03-09"}, -{"geonameId":"2515812","name":"La Línea de la Concepción","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":64595,"modificationDate":"2010-04-22"}, -{"geonameId":"1787901","name":"Xunchang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":64580,"modificationDate":"2012-01-18"}, -{"geonameId":"4580543","name":"Greenville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":64579,"modificationDate":"2017-03-09"}, -{"geonameId":"3686675","name":"Chía","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":64569,"modificationDate":"2018-07-04"}, -{"geonameId":"1239047","name":"Kotikawatta","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":64565,"modificationDate":"2018-12-17"}, -{"geonameId":"2469140","name":"Msaken","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":64563,"modificationDate":"2018-08-05"}, -{"geonameId":"1256377","name":"Siddipet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":64562,"modificationDate":"2018-05-28"}, -{"geonameId":"3840092","name":"Puerto Madryn","countryName":"Argentina","timeZoneName":"America/Argentina/Catamarca","timeZoneOffsetNameWithoutDst":"Argentina Time","population":64555,"modificationDate":"2016-01-30"}, -{"geonameId":"1171502","name":"Mailsi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":64545,"modificationDate":"2019-12-06"}, -{"geonameId":"2128787","name":"Ōdate","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":64543,"modificationDate":"2017-07-22"}, -{"geonameId":"1634718","name":"Muncar","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":64537,"modificationDate":"2007-11-09"}, -{"geonameId":"350203","name":"Rosetta","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":64481,"modificationDate":"2019-04-01"}, -{"geonameId":"1815656","name":"Changli","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":64476,"modificationDate":"2012-01-18"}, -{"geonameId":"2480368","name":"Sidi Khaled","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":64476,"modificationDate":"2019-11-24"}, -{"geonameId":"1276023","name":"Bhawānipatna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":64468,"modificationDate":"2015-09-06"}, -{"geonameId":"1266666","name":"Khopoli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":64460,"modificationDate":"2014-10-13"}, -{"geonameId":"1267635","name":"Karwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":64457,"modificationDate":"2014-10-14"}, -{"geonameId":"324490","name":"Akşehir","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":64446,"modificationDate":"2019-11-29"}, -{"geonameId":"3988258","name":"Sahuayo de Morelos","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":64431,"modificationDate":"2018-11-03"}, -{"geonameId":"3393008","name":"Parintins","countryName":"Brazil","timeZoneName":"America/Manaus","timeZoneOffsetNameWithoutDst":"Amazon Time","population":64428,"modificationDate":"2012-08-03"}, -{"geonameId":"1820906","name":"Bandar Seri Begawan","countryName":"Brunei","timeZoneName":"Asia/Brunei","timeZoneOffsetNameWithoutDst":"Brunei Darussalam Time","population":64409,"modificationDate":"2019-09-05"}, -{"geonameId":"1804874","name":"Kaihua","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":64404,"modificationDate":"2013-04-01"}, -{"geonameId":"1716995","name":"Concepcion","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":64402,"modificationDate":"2017-12-13"}, -{"geonameId":"6941099","name":"Nepalgunj","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":64400,"modificationDate":"2019-10-19"}, -{"geonameId":"1785698","name":"Yunmeng Chengguanzhen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":64390,"modificationDate":"2012-01-18"}, -{"geonameId":"483029","name":"Tikhoretsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":64387,"modificationDate":"2019-09-05"}, -{"geonameId":"2634686","name":"Waterlooville","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":64350,"modificationDate":"2010-08-03"}, -{"geonameId":"1861699","name":"Imaichi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":64323,"modificationDate":"2018-03-07"}, -{"geonameId":"501215","name":"Rossoshi","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":64323,"modificationDate":"2020-06-10"}, -{"geonameId":"1165388","name":"Shakargarh","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":64304,"modificationDate":"2019-12-09"}, -{"geonameId":"1178456","name":"Ghotki","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":64295,"modificationDate":"2019-12-06"}, -{"geonameId":"2961284","name":"Tallaght","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":64282,"modificationDate":"2016-10-01"}, -{"geonameId":"4709013","name":"Mansfield","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":64274,"modificationDate":"2017-03-09"}, -{"geonameId":"1123004","name":"Taloqan","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":64256,"modificationDate":"2018-02-17"}, -{"geonameId":"1873172","name":"Ongjin","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":64247,"modificationDate":"2012-01-19"}, -{"geonameId":"480716","name":"Tuapse","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":64234,"modificationDate":"2019-09-05"}, -{"geonameId":"2891524","name":"Kerpen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":64226,"modificationDate":"2015-09-04"}, -{"geonameId":"2467246","name":"Skanes","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":64222,"modificationDate":"2019-09-16"}, -{"geonameId":"5393052","name":"Santa Cruz","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":64220,"modificationDate":"2017-03-09"}, -{"geonameId":"5382496","name":"Pico Rivera","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":64218,"modificationDate":"2017-03-09"}, -{"geonameId":"5369568","name":"Madera","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":64208,"modificationDate":"2017-03-09"}, -{"geonameId":"997151","name":"Heidelberg","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":64199,"modificationDate":"2012-07-12"}, -{"geonameId":"1267360","name":"Kayangulam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":64183,"modificationDate":"2020-06-10"}, -{"geonameId":"2035325","name":"Qinggang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":64182,"modificationDate":"2013-04-03"}, -{"geonameId":"8199378","name":"Modiin Ilit","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":64179,"modificationDate":"2017-07-04"}, -{"geonameId":"2320920","name":"Uga","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":64179,"modificationDate":"2016-01-30"}, -{"geonameId":"3183299","name":"Alessandria","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":64178,"modificationDate":"2018-03-16"}, -{"geonameId":"5257754","name":"Janesville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":64123,"modificationDate":"2017-05-23"}, -{"geonameId":"4881346","name":"West Des Moines","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":64113,"modificationDate":"2017-05-23"}, -{"geonameId":"3436728","name":"Villa Elisa","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":64099,"modificationDate":"2019-03-29"}, -{"geonameId":"583350","name":"Aleksandrov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":64088,"modificationDate":"2019-09-05"}, -{"geonameId":"1855580","name":"Narutochō-mitsuishi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":64082,"modificationDate":"2017-07-29"}, -{"geonameId":"12157129","name":"Santiago","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":64075,"modificationDate":"2020-05-09"}, -{"geonameId":"1164896","name":"Sibi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":64069,"modificationDate":"2019-12-06"}, -{"geonameId":"2513759","name":"Molina de Segura","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":64065,"modificationDate":"2018-06-08"}, -{"geonameId":"7302830","name":"Chinnachowk","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":64053,"modificationDate":"2014-10-10"}, -{"geonameId":"1275462","name":"Bishnupur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":64041,"modificationDate":"2014-10-14"}, -{"geonameId":"121925","name":"Nūrābād","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":64041,"modificationDate":"2014-09-04"}, -{"geonameId":"2512862","name":"Paterna","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":64023,"modificationDate":"2019-01-08"}, -{"geonameId":"256075","name":"Palaió Fáliro","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":64021,"modificationDate":"2019-10-23"}, -{"geonameId":"907111","name":"Mazabuka","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":64006,"modificationDate":"2012-01-17"}, -{"geonameId":"506043","name":"Kotlovka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":64000,"modificationDate":"2013-04-02"}, -{"geonameId":"706466","name":"Khartsyzsk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":64000,"modificationDate":"2020-06-10"}, -{"geonameId":"1693077","name":"Polomolok","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":63987,"modificationDate":"2017-12-15"}, -{"geonameId":"1263504","name":"Mārkāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":63982,"modificationDate":"2016-12-03"}, -{"geonameId":"1276757","name":"Basmat","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":63972,"modificationDate":"2014-10-13"}, -{"geonameId":"3464891","name":"Curvelo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":63954,"modificationDate":"2012-08-03"}, -{"geonameId":"2643266","name":"Macclesfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":63954,"modificationDate":"2017-06-12"}, -{"geonameId":"1277814","name":"Baheri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":63953,"modificationDate":"2015-10-04"}, -{"geonameId":"5374322","name":"Montebello","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":63921,"modificationDate":"2017-03-09"}, -{"geonameId":"1265579","name":"Kunnamkulam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":63903,"modificationDate":"2017-02-04"}, -{"geonameId":"1623096","name":"Tulangan Utara","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":63889,"modificationDate":"2012-01-17"}, -{"geonameId":"3460974","name":"Itabaiana","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":63888,"modificationDate":"2012-08-03"}, -{"geonameId":"2655262","name":"Bognor Regis","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":63885,"modificationDate":"2018-07-03"}, -{"geonameId":"202326","name":"Cyangugu","countryName":"Rwanda","timeZoneName":"Africa/Kigali","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":63883,"modificationDate":"2020-05-06"}, -{"geonameId":"3563843","name":"Colón","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":63882,"modificationDate":"2016-01-07"}, -{"geonameId":"1259056","name":"Rāghogarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":63873,"modificationDate":"2015-08-07"}, -{"geonameId":"3628550","name":"San Antonio de Los Altos","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":63873,"modificationDate":"2018-08-08"}, -{"geonameId":"1736278","name":"Kangar","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":63869,"modificationDate":"2012-01-28"}, -{"geonameId":"2971053","name":"Valence","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":63864,"modificationDate":"2019-06-05"}, -{"geonameId":"359576","name":"Usiim","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":63862,"modificationDate":"2020-06-11"}, -{"geonameId":"2641520","name":"Newtownabbey","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":63860,"modificationDate":"2016-12-04"}, -{"geonameId":"293768","name":"Ramla","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":63860,"modificationDate":"2017-07-05"}, -{"geonameId":"2524907","name":"Cosenza","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":63852,"modificationDate":"2020-01-22"}, -{"geonameId":"2984701","name":"Quimper","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":63849,"modificationDate":"2020-06-10"}, -{"geonameId":"1563241","name":"Thành Phố Uông Bí","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":63829,"modificationDate":"2013-08-04"}, -{"geonameId":"3149318","name":"Kristiansand","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":63814,"modificationDate":"2020-06-09"}, -{"geonameId":"361329","name":"Al Fashn","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":63793,"modificationDate":"2020-04-08"}, -{"geonameId":"1176241","name":"Jampur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":63791,"modificationDate":"2019-12-09"}, -{"geonameId":"1586151","name":"Phong Thanh","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":63770,"modificationDate":"2020-06-09"}, -{"geonameId":"1732742","name":"Kulai","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":63762,"modificationDate":"2012-01-28"}, -{"geonameId":"2923822","name":"Fulda","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":63760,"modificationDate":"2019-09-05"}, -{"geonameId":"1787646","name":"Yangcun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":63756,"modificationDate":"2012-01-18"}, -{"geonameId":"1784553","name":"Zhicheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":63753,"modificationDate":"2017-10-04"}, -{"geonameId":"4005297","name":"Guamúchil","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":63743,"modificationDate":"2018-11-03"}, -{"geonameId":"3468570","name":"Caçador","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":63726,"modificationDate":"2013-05-16"}, -{"geonameId":"1270965","name":"Gopālganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":63725,"modificationDate":"2014-10-14"}, -{"geonameId":"766027","name":"Łomża","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":63723,"modificationDate":"2019-09-05"}, -{"geonameId":"4693342","name":"Georgetown","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":63716,"modificationDate":"2017-03-09"}, -{"geonameId":"172503","name":"Safira","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":63708,"modificationDate":"2020-06-10"}, -{"geonameId":"1153081","name":"Kanchanaburi","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":63699,"modificationDate":"2015-03-04"}, -{"geonameId":"1048364","name":"Chokwé","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":63695,"modificationDate":"2017-04-25"}, -{"geonameId":"4179574","name":"Alpharetta","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":63693,"modificationDate":"2017-03-09"}, -{"geonameId":"3455671","name":"Ouro Preto","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":63678,"modificationDate":"2012-08-03"}, -{"geonameId":"3073789","name":"Karviná","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":63677,"modificationDate":"2019-01-25"}, -{"geonameId":"3468100","name":"Caldas Novas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":63675,"modificationDate":"2014-10-22"}, -{"geonameId":"2645753","name":"Kettering","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":63675,"modificationDate":"2017-06-12"}, -{"geonameId":"2797670","name":"Genk","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":63666,"modificationDate":"2018-04-04"}, -{"geonameId":"1852347","name":"Shimodate","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":63666,"modificationDate":"2018-02-23"}, -{"geonameId":"2043484","name":"Kilju","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":63652,"modificationDate":"2012-01-19"}, -{"geonameId":"5161262","name":"Lorain","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":63647,"modificationDate":"2017-05-23"}, -{"geonameId":"1254046","name":"Tura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":63645,"modificationDate":"2014-10-13"}, -{"geonameId":"2511150","name":"Santa Lucía","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":63637,"modificationDate":"2015-06-14"}, -{"geonameId":"1817701","name":"Baihecun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":63629,"modificationDate":"2020-06-10"}, -{"geonameId":"3461013","name":"Irecê","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":63626,"modificationDate":"2017-06-26"}, -{"geonameId":"4285268","name":"Bowling Green","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":63616,"modificationDate":"2017-03-09"}, -{"geonameId":"1608232","name":"Nong Khai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":63609,"modificationDate":"2012-01-16"}, -{"geonameId":"5117388","name":"Flatlands","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":63601,"modificationDate":"2017-04-16"}, -{"geonameId":"4353765","name":"Dundalk","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":63597,"modificationDate":"2011-05-14"}, -{"geonameId":"1849904","name":"Tosu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":63595,"modificationDate":"2017-07-22"}, -{"geonameId":"2935825","name":"Dormagen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":63582,"modificationDate":"2015-09-05"}, -{"geonameId":"464625","name":"Zarechnyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":63579,"modificationDate":"2012-01-17"}, -{"geonameId":"3188434","name":"Užice","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":63577,"modificationDate":"2019-09-05"}, -{"geonameId":"2654394","name":"Buckley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":63576,"modificationDate":"2017-06-12"}, -{"geonameId":"1818004","name":"Mabai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":63569,"modificationDate":"2012-01-18"}, -{"geonameId":"3093524","name":"Leszno","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":63565,"modificationDate":"2019-09-05"}, -{"geonameId":"2950438","name":"Bergheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":63558,"modificationDate":"2015-09-04"}, -{"geonameId":"3466696","name":"Catalão","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":63544,"modificationDate":"2017-09-23"}, -{"geonameId":"1606588","name":"Samut Sakhon","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":63498,"modificationDate":"2012-01-16"}, -{"geonameId":"5025219","name":"Eden Prairie","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":63496,"modificationDate":"2017-05-23"}, -{"geonameId":"3105935","name":"Viladecans","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":63489,"modificationDate":"2010-04-22"}, -{"geonameId":"1736302","name":"Jitra","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":63489,"modificationDate":"2012-01-17"}, -{"geonameId":"5101879","name":"North Bergen","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":63484,"modificationDate":"2017-05-23"}, -{"geonameId":"291580","name":"Zayed City","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":63482,"modificationDate":"2019-10-24"}, -{"geonameId":"3446138","name":"Três Corações","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":63457,"modificationDate":"2012-08-03"}, -{"geonameId":"8310183","name":"Korydallós","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":63445,"modificationDate":"2019-10-23"}, -{"geonameId":"2647984","name":"Great Yarmouth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":63434,"modificationDate":"2019-09-05"}, -{"geonameId":"195272","name":"Kakamega","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":63426,"modificationDate":"2013-05-06"}, -{"geonameId":"2507943","name":"Aïn Sefra","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":63420,"modificationDate":"2012-01-19"}, -{"geonameId":"3123329","name":"El Prat de Llobregat","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":63418,"modificationDate":"2017-09-22"}, -{"geonameId":"1258797","name":"Rājsamand","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":63414,"modificationDate":"2014-10-14"}, -{"geonameId":"1799908","name":"Nanlong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":63405,"modificationDate":"2012-01-18"}, -{"geonameId":"3390288","name":"Rio Largo","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":63387,"modificationDate":"2012-08-03"}, -{"geonameId":"7261268","name":"Florence-Graham","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":63387,"modificationDate":"2011-05-14"}, -{"geonameId":"4954380","name":"Waltham","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":63378,"modificationDate":"2017-05-23"}, -{"geonameId":"7284840","name":"Budapest XX. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":63371,"modificationDate":"2019-09-23"}, -{"geonameId":"1283621","name":"Siddharthanagar","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":63367,"modificationDate":"2019-10-17"}, -{"geonameId":"1864099","name":"Fujioka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":63358,"modificationDate":"2017-07-22"}, -{"geonameId":"2922586","name":"Garbsen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":63355,"modificationDate":"2014-07-09"}, -{"geonameId":"1735459","name":"Teluk Intan","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":63353,"modificationDate":"2017-05-24"}, -{"geonameId":"827329","name":"Pavlovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":63338,"modificationDate":"2019-09-05"}, -{"geonameId":"5821086","name":"Cheyenne","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":63335,"modificationDate":"2019-09-05"}, -{"geonameId":"2496232","name":"Frenda","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":63319,"modificationDate":"2012-01-19"}, -{"geonameId":"137956","name":"Yek","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":63319,"modificationDate":"2020-06-10"}, -{"geonameId":"356806","name":"Fuwwah","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":63310,"modificationDate":"2015-09-06"}, -{"geonameId":"1789693","name":"Xiazhuang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":63285,"modificationDate":"2012-01-18"}, -{"geonameId":"4845411","name":"West Hartford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":63268,"modificationDate":"2017-05-23"}, -{"geonameId":"1792585","name":"Fuding","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":63250,"modificationDate":"2014-02-08"}, -{"geonameId":"933305","name":"Molepolole","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":63248,"modificationDate":"2012-01-18"}, -{"geonameId":"1255004","name":"Tāndūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":63239,"modificationDate":"2014-10-10"}, -{"geonameId":"662334","name":"Zilah","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":63232,"modificationDate":"2020-06-10"}, -{"geonameId":"3445597","name":"Valença","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":63231,"modificationDate":"2014-04-19"}, -{"geonameId":"3924679","name":"Vilhena","countryName":"Brazil","timeZoneName":"America/Porto_Velho","timeZoneOffsetNameWithoutDst":"Amazon Time","population":63231,"modificationDate":"2012-08-03"}, -{"geonameId":"305359","name":"Kuşadası","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":63177,"modificationDate":"2019-01-09"}, -{"geonameId":"10630431","name":"Kalamassery","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":63176,"modificationDate":"2015-09-04"}, -{"geonameId":"3080004","name":"Żory","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":63174,"modificationDate":"2019-09-05"}, -{"geonameId":"1643981","name":"Godean","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":63164,"modificationDate":"2012-01-17"}, -{"geonameId":"4128894","name":"Rogers","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":63159,"modificationDate":"2017-05-23"}, -{"geonameId":"2503147","name":"Bougara","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":63155,"modificationDate":"2012-01-19"}, -{"geonameId":"1255361","name":"Sūratgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":63153,"modificationDate":"2014-10-14"}, -{"geonameId":"1263659","name":"Mannargudi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":63148,"modificationDate":"2014-10-14"}, -{"geonameId":"6071618","name":"Medicine Hat","countryName":"Canada","timeZoneName":"America/Edmonton","timeZoneOffsetNameWithoutDst":"Mountain Time","population":63138,"modificationDate":"2016-04-02"}, -{"geonameId":"3524348","name":"Linares","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":63104,"modificationDate":"2018-11-03"}, -{"geonameId":"3880107","name":"Melipilla","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":63100,"modificationDate":"2018-02-06"}, -{"geonameId":"579514","name":"Novaya Balakhna","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":63083,"modificationDate":"2019-05-08"}, -{"geonameId":"3622247","name":"Limón","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":63081,"modificationDate":"2016-09-07"}, -{"geonameId":"3578959","name":"Les Abymes","countryName":"Guadeloupe","timeZoneName":"America/Guadeloupe","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":63058,"modificationDate":"2019-02-26"}, -{"geonameId":"1527199","name":"Tokmok","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":63047,"modificationDate":"2015-05-26"}, -{"geonameId":"1816256","name":"Botou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":63045,"modificationDate":"2016-02-06"}, -{"geonameId":"1863945","name":"Fukuroi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":63045,"modificationDate":"2017-07-22"}, -{"geonameId":"1255714","name":"Sopur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":63035,"modificationDate":"2015-09-06"}, -{"geonameId":"3140321","name":"Sandnes","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":63032,"modificationDate":"2019-12-12"}, -{"geonameId":"4150066","name":"Carol City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":63031,"modificationDate":"2006-11-15"}, -{"geonameId":"3454061","name":"Peruíbe","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":63030,"modificationDate":"2012-08-03"}, -{"geonameId":"1896953","name":"Pubal","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":63026,"modificationDate":"2018-12-05"}, -{"geonameId":"2494610","name":"Hamma Bouziane","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":63012,"modificationDate":"2018-03-17"}, -{"geonameId":"3558771","name":"Florida","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":63007,"modificationDate":"2016-01-07"}, -{"geonameId":"585170","name":"Sheki","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":63000,"modificationDate":"2014-06-27"}, -{"geonameId":"2659836","name":"Lugano","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":63000,"modificationDate":"2019-09-05"}, -{"geonameId":"695274","name":"Rubizhne","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":62993,"modificationDate":"2013-11-23"}, -{"geonameId":"2038446","name":"Baoqing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":62991,"modificationDate":"2014-06-27"}, -{"geonameId":"2328790","name":"Nkwerre","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":62973,"modificationDate":"2016-01-30"}, -{"geonameId":"2112656","name":"Ichinoseki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":62970,"modificationDate":"2017-07-22"}, -{"geonameId":"233508","name":"Entebbe","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":62969,"modificationDate":"2017-06-06"}, -{"geonameId":"3633444","name":"Machiques","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":62968,"modificationDate":"2014-08-04"}, -{"geonameId":"1853066","name":"Sakurai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":62964,"modificationDate":"2017-07-22"}, -{"geonameId":"3460723","name":"Itapeva","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":62957,"modificationDate":"2012-08-03"}, -{"geonameId":"5346646","name":"Encinitas","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":62930,"modificationDate":"2017-03-09"}, -{"geonameId":"2348892","name":"Auchi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":62907,"modificationDate":"2016-01-30"}, -{"geonameId":"3103709","name":"Bełchatów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":62896,"modificationDate":"2010-10-15"}, -{"geonameId":"1000543","name":"Graaff-Reinet","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":62896,"modificationDate":"2012-07-12"}, -{"geonameId":"1166265","name":"Sambrial","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":62874,"modificationDate":"2019-12-06"}, -{"geonameId":"2638960","name":"Runcorn","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":62872,"modificationDate":"2017-06-12"}, -{"geonameId":"300352","name":"Sorgun","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":62862,"modificationDate":"2012-01-18"}, -{"geonameId":"1278454","name":"Arni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":62858,"modificationDate":"2017-02-04"}, -{"geonameId":"1698030","name":"Nasugbu","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":62857,"modificationDate":"2017-12-13"}, -{"geonameId":"1274987","name":"Kannur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":62836,"modificationDate":"2018-04-28"}, -{"geonameId":"5116093","name":"East Village","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":62832,"modificationDate":"2017-12-06"}, -{"geonameId":"696108","name":"Pryluky","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":62823,"modificationDate":"2014-11-05"}, -{"geonameId":"356989","name":"Fakus","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":62821,"modificationDate":"2020-06-11"}, -{"geonameId":"1528182","name":"Kara-Balta","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":62796,"modificationDate":"2015-05-25"}, -{"geonameId":"2656955","name":"Ashford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":62787,"modificationDate":"2014-08-29"}, -{"geonameId":"3183455","name":"Afragola","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":62775,"modificationDate":"2015-08-25"}, -{"geonameId":"4939085","name":"Haverhill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":62765,"modificationDate":"2017-05-23"}, -{"geonameId":"118367","name":"Shahriar","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":62753,"modificationDate":"2020-06-10"}, -{"geonameId":"3106868","name":"Valdemoro","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":62750,"modificationDate":"2018-06-08"}, -{"geonameId":"290594","name":"Umm Al Quwain City","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":62747,"modificationDate":"2019-10-24"}, -{"geonameId":"557775","name":"Gus-Khrustalnyi","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":62746,"modificationDate":"2020-06-10"}, -{"geonameId":"4160610","name":"Jupiter","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":62707,"modificationDate":"2017-03-09"}, -{"geonameId":"570479","name":"Buynaksk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":62689,"modificationDate":"2019-04-10"}, -{"geonameId":"756092","name":"Wawer","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":62656,"modificationDate":"2018-01-16"}, -{"geonameId":"1733697","name":"Semporna","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":62641,"modificationDate":"2012-12-17"}, -{"geonameId":"1217180","name":"Kogon Shahri","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":62620,"modificationDate":"2020-02-07"}, -{"geonameId":"3466698","name":"Cataguases","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":62618,"modificationDate":"2012-08-03"}, -{"geonameId":"748870","name":"Çubuk","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":62602,"modificationDate":"2012-01-18"}, -{"geonameId":"1502061","name":"Krasnotur’insk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":62600,"modificationDate":"2012-01-17"}, -{"geonameId":"4852832","name":"Council Bluffs","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":62597,"modificationDate":"2017-05-23"}, -{"geonameId":"2470384","name":"Houmt El Souk","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":62583,"modificationDate":"2018-08-06"}, -{"geonameId":"578120","name":"Belebey","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":62582,"modificationDate":"2019-09-05"}, -{"geonameId":"2464701","name":"Tataouine","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":62577,"modificationDate":"2018-08-30"}, -{"geonameId":"4177703","name":"Wellington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":62560,"modificationDate":"2017-03-09"}, -{"geonameId":"3345283","name":"Tonypandy","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":62545,"modificationDate":"2017-06-12"}, -{"geonameId":"2036338","name":"Kaitong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":62537,"modificationDate":"2019-10-27"}, -{"geonameId":"5052361","name":"West Coon Rapids","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":62528,"modificationDate":"2017-05-23"}, -{"geonameId":"1272694","name":"Dhuburi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":62525,"modificationDate":"2014-10-13"}, -{"geonameId":"1259263","name":"Puliyangudi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":62494,"modificationDate":"2014-10-14"}, -{"geonameId":"3020839","name":"Drancy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":62488,"modificationDate":"2019-03-26"}, -{"geonameId":"1798733","name":"Pingnan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":62483,"modificationDate":"2013-10-05"}, -{"geonameId":"1840179","name":"Kosong","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":62446,"modificationDate":"2010-07-28"}, -{"geonameId":"4166232","name":"North Miami","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":62435,"modificationDate":"2017-03-09"}, -{"geonameId":"360928","name":"Khanka","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":62434,"modificationDate":"2020-06-11"}, -{"geonameId":"149879","name":"Singida","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":62432,"modificationDate":"2016-07-26"}, -{"geonameId":"2990189","name":"Noisy-le-Grand","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":62420,"modificationDate":"2016-02-18"}, -{"geonameId":"1256593","name":"Sheopur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":62416,"modificationDate":"2015-05-06"}, -{"geonameId":"1004109","name":"Fochville","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":62416,"modificationDate":"2012-01-18"}, -{"geonameId":"1258207","name":"Renukoot","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":62413,"modificationDate":"2020-06-10"}, -{"geonameId":"3053281","name":"Érd","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":62408,"modificationDate":"2015-06-17"}, -{"geonameId":"4513575","name":"Hamilton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":62407,"modificationDate":"2017-05-23"}, -{"geonameId":"1281368","name":"Dêqên","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":62400,"modificationDate":"2011-02-22"}, -{"geonameId":"6543862","name":"Villeneuve-d'Ascq","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":62400,"modificationDate":"2016-02-18"}, -{"geonameId":"3981791","name":"Tesistán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":62397,"modificationDate":"2018-11-03"}, -{"geonameId":"1813016","name":"Songyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":62375,"modificationDate":"2015-06-07"}, -{"geonameId":"1624877","name":"Tanjung Pandan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":62374,"modificationDate":"2013-09-01"}, -{"geonameId":"2033147","name":"Zhaozhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":62373,"modificationDate":"2012-01-18"}, -{"geonameId":"2130054","name":"Kitahiroshima","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":62370,"modificationDate":"2017-07-22"}, -{"geonameId":"2567529","name":"Grao de Murviedro","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":62368,"modificationDate":"2016-12-20"}, -{"geonameId":"1785980","name":"Yucheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":62365,"modificationDate":"2012-01-18"}, -{"geonameId":"2303125","name":"Berekum","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":62364,"modificationDate":"2019-12-08"}, -{"geonameId":"4166274","name":"North Port","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":62345,"modificationDate":"2017-03-09"}, -{"geonameId":"922806","name":"Kipushi","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":62332,"modificationDate":"2016-11-29"}, -{"geonameId":"3006414","name":"La Seyne-sur-Mer","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":62330,"modificationDate":"2019-08-07"}, -{"geonameId":"616743","name":"Druzhkivka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":62315,"modificationDate":"2017-08-28"}, -{"geonameId":"5403783","name":"Tulare","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":62315,"modificationDate":"2017-03-09"}, -{"geonameId":"702760","name":"Lozova","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":62311,"modificationDate":"2016-02-07"}, -{"geonameId":"1907148","name":"Fussa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":62296,"modificationDate":"2017-07-22"}, -{"geonameId":"3670730","name":"Rionegro","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":62291,"modificationDate":"2018-06-08"}, -{"geonameId":"2082727","name":"Abepura","countryName":"Indonesia","timeZoneName":"Asia/Jayapura","timeZoneOffsetNameWithoutDst":"Eastern Indonesia Time","population":62248,"modificationDate":"2013-05-07"}, -{"geonameId":"499717","name":"Rzhev","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":62246,"modificationDate":"2019-09-05"}, -{"geonameId":"5022025","name":"Coon Rapids","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":62240,"modificationDate":"2017-05-23"}, -{"geonameId":"2759633","name":"Assen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":62237,"modificationDate":"2019-09-05"}, -{"geonameId":"1272780","name":"Dhenkānāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":62230,"modificationDate":"2014-10-14"}, -{"geonameId":"621741","name":"Slutsk","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":62228,"modificationDate":"2019-09-05"}, -{"geonameId":"1185920","name":"Tongipara","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":62210,"modificationDate":"2020-06-10"}, -{"geonameId":"567990","name":"Chistopol’","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":62200,"modificationDate":"2016-11-25"}, -{"geonameId":"2483746","name":"Reguiba","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":62185,"modificationDate":"2012-01-19"}, -{"geonameId":"2998975","name":"Levallois-Perret","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":62178,"modificationDate":"2016-02-18"}, -{"geonameId":"1650298","name":"Bangkalan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":62178,"modificationDate":"2016-01-07"}, -{"geonameId":"3939285","name":"Huaral","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":62174,"modificationDate":"2012-07-19"}, -{"geonameId":"3687964","name":"Calarca","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":62170,"modificationDate":"2020-06-11"}, -{"geonameId":"1681766","name":"Tinongan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":62146,"modificationDate":"2018-12-12"}, -{"geonameId":"831165","name":"Zarechnyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":62139,"modificationDate":"2012-01-19"}, -{"geonameId":"5778352","name":"Millcreek","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":62139,"modificationDate":"2011-05-14"}, -{"geonameId":"2034791","name":"Shuangyang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":62137,"modificationDate":"2012-01-18"}, -{"geonameId":"2035593","name":"Nianzishan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":62131,"modificationDate":"2012-01-18"}, -{"geonameId":"5363922","name":"La Habra","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":62131,"modificationDate":"2017-03-09"}, -{"geonameId":"3628142","name":"El Tigrito","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":62128,"modificationDate":"2020-06-10"}, -{"geonameId":"5018651","name":"Blaine","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":62124,"modificationDate":"2017-05-23"}, -{"geonameId":"1273745","name":"Dabwāli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":62113,"modificationDate":"2015-05-06"}, -{"geonameId":"1785710","name":"Jinghong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":62105,"modificationDate":"2012-01-18"}, -{"geonameId":"1256388","name":"Sibsagor Naga Bhumi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":62104,"modificationDate":"2020-06-10"}, -{"geonameId":"1861641","name":"Ina","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":62104,"modificationDate":"2017-07-22"}, -{"geonameId":"3589289","name":"Santa Lucía Cotzumalguapa","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":62097,"modificationDate":"2019-01-09"}, -{"geonameId":"1856243","name":"Nagahama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":62089,"modificationDate":"2017-07-22"}, -{"geonameId":"3125897","name":"Castelldefels","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":62080,"modificationDate":"2013-03-23"}, -{"geonameId":"483019","name":"Tikhvin","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":62075,"modificationDate":"2019-09-05"}, -{"geonameId":"3541440","name":"Sagua la Grande","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":62073,"modificationDate":"2016-01-07"}, -{"geonameId":"4830796","name":"Auburn","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":62059,"modificationDate":"2017-03-09"}, -{"geonameId":"1699572","name":"Minglanilla","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":62058,"modificationDate":"2017-12-13"}, -{"geonameId":"3448011","name":"Saquarema","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":62056,"modificationDate":"2012-08-03"}, -{"geonameId":"1798632","name":"Pingyin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":62050,"modificationDate":"2012-01-18"}, -{"geonameId":"352733","name":"Mersa Matruh","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":62042,"modificationDate":"2014-05-28"}, -{"geonameId":"1835447","name":"Boryeong","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":62039,"modificationDate":"2019-08-08"}, -{"geonameId":"3445942","name":"Tupã","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":62035,"modificationDate":"2012-08-03"}, -{"geonameId":"1166164","name":"Sanghar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":62033,"modificationDate":"2019-12-06"}, -{"geonameId":"3042929","name":"Veszprém","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":62023,"modificationDate":"2019-10-08"}, -{"geonameId":"2038283","name":"Binzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":62017,"modificationDate":"2013-05-08"}, -{"geonameId":"2289049","name":"Serkessedougou","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":62008,"modificationDate":"2020-06-10"}, -{"geonameId":"1797715","name":"Qingshuping","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":62000,"modificationDate":"2019-11-07"}, -{"geonameId":"3053176","name":"Erzsébetváros","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":62000,"modificationDate":"2019-09-23"}, -{"geonameId":"785756","name":"Smederevo","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":62000,"modificationDate":"2019-09-05"}, -{"geonameId":"501231","name":"Rossosh’","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":62000,"modificationDate":"2017-09-04"}, -{"geonameId":"2473747","name":"El Hamma","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":62000,"modificationDate":"2018-11-23"}, -{"geonameId":"5364499","name":"Lake Elsinore","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":61981,"modificationDate":"2017-03-09"}, -{"geonameId":"1784647","name":"Zhaobaoshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61979,"modificationDate":"2012-01-18"}, -{"geonameId":"2036619","name":"Hushitai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61979,"modificationDate":"2018-10-05"}, -{"geonameId":"121110","name":"Piranshahr","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":61973,"modificationDate":"2013-10-22"}, -{"geonameId":"510225","name":"Petrodvorets","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":61973,"modificationDate":"2016-10-24"}, -{"geonameId":"227812","name":"Njeru","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":61952,"modificationDate":"2016-12-03"}, -{"geonameId":"537281","name":"Labinsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":61945,"modificationDate":"2019-09-05"}, -{"geonameId":"3463432","name":"Fernandópolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":61931,"modificationDate":"2012-08-03"}, -{"geonameId":"2530241","name":"Tan-Tan","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":61924,"modificationDate":"2019-09-05"}, -{"geonameId":"7284895","name":"Marseille 14","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":61920,"modificationDate":"2018-08-19"}, -{"geonameId":"1806651","name":"Huoqiu Chengguanzhen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61904,"modificationDate":"2012-01-18"}, -{"geonameId":"1898359","name":"Mudu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61902,"modificationDate":"2012-06-06"}, -{"geonameId":"3042638","name":"Zalaegerszeg","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":61898,"modificationDate":"2015-06-17"}, -{"geonameId":"2293342","name":"Adzopé","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":61884,"modificationDate":"2016-12-03"}, -{"geonameId":"1800101","name":"Nandu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61881,"modificationDate":"2012-01-18"}, -{"geonameId":"3932145","name":"Pisco","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":61869,"modificationDate":"2013-11-03"}, -{"geonameId":"1862198","name":"Honjō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":61868,"modificationDate":"2017-07-22"}, -{"geonameId":"1147242","name":"Kala Sarkari","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":61863,"modificationDate":"2020-06-09"}, -{"geonameId":"1813206","name":"Daye","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61847,"modificationDate":"2012-01-18"}, -{"geonameId":"2367568","name":"Bassar","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":61845,"modificationDate":"2014-09-03"}, -{"geonameId":"3496331","name":"Moca","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":61834,"modificationDate":"2016-06-05"}, -{"geonameId":"1505429","name":"Iskitim","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":61827,"modificationDate":"2019-09-05"}, -{"geonameId":"2389086","name":"Berbérati","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":61815,"modificationDate":"2017-04-17"}, -{"geonameId":"3447854","name":"Senador Canedo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":61800,"modificationDate":"2012-08-03"}, -{"geonameId":"459279","name":"Jelgava","countryName":"Latvia","timeZoneName":"Europe/Riga","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":61791,"modificationDate":"2019-02-26"}, -{"geonameId":"502011","name":"Revda","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":61785,"modificationDate":"2019-09-05"}, -{"geonameId":"534595","name":"Lobnya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":61772,"modificationDate":"2012-01-17"}, -{"geonameId":"1786587","name":"Yingshang Chengguanzhen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61771,"modificationDate":"2012-01-18"}, -{"geonameId":"3519907","name":"Tuxtla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":61769,"modificationDate":"2020-06-10"}, -{"geonameId":"5334336","name":"Carmichael","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":61762,"modificationDate":"2011-05-14"}, -{"geonameId":"1831173","name":"Kampong Cham","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":61750,"modificationDate":"2015-07-13"}, -{"geonameId":"2638419","name":"Scarborough","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":61749,"modificationDate":"2017-06-12"}, -{"geonameId":"1264154","name":"Malappuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":61743,"modificationDate":"2017-02-04"}, -{"geonameId":"893697","name":"Chinhoyi","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":61739,"modificationDate":"2018-10-04"}, -{"geonameId":"360542","name":"Al Qurayn","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":61730,"modificationDate":"2018-04-06"}, -{"geonameId":"1258352","name":"Rāth","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":61728,"modificationDate":"2015-08-07"}, -{"geonameId":"2151437","name":"Rockhampton","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":61724,"modificationDate":"2019-05-22"}, -{"geonameId":"12047416","name":"Al Shamkhah City","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":61710,"modificationDate":"2019-05-29"}, -{"geonameId":"2469473","name":"Medenine","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":61705,"modificationDate":"2018-08-30"}, -{"geonameId":"1196292","name":"Lakshmīpur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":61703,"modificationDate":"2016-11-09"}, -{"geonameId":"9610008","name":"Eiguliai","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":61700,"modificationDate":"2014-09-26"}, -{"geonameId":"2190224","name":"Hastings","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":61696,"modificationDate":"2014-01-06"}, -{"geonameId":"1798480","name":"Pumiao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61690,"modificationDate":"2013-10-05"}, -{"geonameId":"1269328","name":"Jamkhandi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":61690,"modificationDate":"2014-10-14"}, -{"geonameId":"2810678","name":"Wesel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":61685,"modificationDate":"2015-09-04"}, -{"geonameId":"470444","name":"Vyksa","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":61664,"modificationDate":"2019-09-05"}, -{"geonameId":"4012721","name":"Cortazar","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":61658,"modificationDate":"2018-11-03"}, -{"geonameId":"252664","name":"Tríkala","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":61653,"modificationDate":"2015-04-29"}, -{"geonameId":"128905","name":"Kāmyārān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":61642,"modificationDate":"2014-09-04"}, -{"geonameId":"3027422","name":"Chambéry","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":61640,"modificationDate":"2019-09-05"}, -{"geonameId":"1788522","name":"Hancheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61633,"modificationDate":"2015-06-07"}, -{"geonameId":"7284835","name":"Budapest XIX. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":61610,"modificationDate":"2019-09-23"}, -{"geonameId":"3460699","name":"Itapira","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":61607,"modificationDate":"2012-08-03"}, -{"geonameId":"1256047","name":"Sirsi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":61607,"modificationDate":"2015-09-06"}, -{"geonameId":"565955","name":"Dmitrov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":61607,"modificationDate":"2019-09-05"}, -{"geonameId":"713259","name":"Antratsyt","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":61600,"modificationDate":"2014-07-08"}, -{"geonameId":"1849414","name":"Ueno-ebisumachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":61598,"modificationDate":"2017-04-09"}, -{"geonameId":"493160","name":"Sibay","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":61590,"modificationDate":"2012-01-17"}, -{"geonameId":"2036055","name":"Lishu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61584,"modificationDate":"2012-01-18"}, -{"geonameId":"2038665","name":"Oroqen Zizhiqi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61582,"modificationDate":"2014-06-27"}, -{"geonameId":"5011908","name":"Taylor","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":61568,"modificationDate":"2017-05-23"}, -{"geonameId":"2522098","name":"Alcoy","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":61552,"modificationDate":"2012-03-04"}, -{"geonameId":"3382160","name":"Cayenne","countryName":"French Guiana","timeZoneName":"America/Cayenne","timeZoneOffsetNameWithoutDst":"French Guiana Time","population":61550,"modificationDate":"2019-09-05"}, -{"geonameId":"1176800","name":"Hujra Shah Muqim","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":61546,"modificationDate":"2019-12-06"}, -{"geonameId":"1790413","name":"Xianju","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61532,"modificationDate":"2012-10-06"}, -{"geonameId":"781988","name":"Pogradec","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":61530,"modificationDate":"2019-05-01"}, -{"geonameId":"1702934","name":"Malaybalay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":61524,"modificationDate":"2017-12-13"}, -{"geonameId":"967106","name":"Oudtshoorn","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":61507,"modificationDate":"2016-03-09"}, -{"geonameId":"1253080","name":"Vriddhāchalam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":61498,"modificationDate":"2017-07-04"}, -{"geonameId":"2701680","name":"Karlstad","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":61492,"modificationDate":"2019-09-05"}, -{"geonameId":"2750325","name":"Nieuwegein","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":61489,"modificationDate":"2017-10-17"}, -{"geonameId":"1862373","name":"Hita","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":61481,"modificationDate":"2017-07-22"}, -{"geonameId":"5019767","name":"Burnsville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":61481,"modificationDate":"2017-05-23"}, -{"geonameId":"1806248","name":"Jianguang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61469,"modificationDate":"2012-01-18"}, -{"geonameId":"5374406","name":"Monterey Park","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":61468,"modificationDate":"2017-03-09"}, -{"geonameId":"2633954","name":"Widnes","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":61464,"modificationDate":"2017-06-12"}, -{"geonameId":"3582677","name":"Belize City","countryName":"Belize","timeZoneName":"America/Belize","timeZoneOffsetNameWithoutDst":"Central Time","population":61461,"modificationDate":"2013-09-27"}, -{"geonameId":"3049795","name":"Kispest","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":61453,"modificationDate":"2017-12-06"}, -{"geonameId":"3012649","name":"Issy-les-Moulineaux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":61447,"modificationDate":"2016-02-18"}, -{"geonameId":"2037611","name":"Dongning","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61440,"modificationDate":"2012-01-18"}, -{"geonameId":"1793899","name":"Suicheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61430,"modificationDate":"2012-01-18"}, -{"geonameId":"692372","name":"Stryi","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":61404,"modificationDate":"2014-03-15"}, -{"geonameId":"2891621","name":"Kempten (Allgäu)","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":61399,"modificationDate":"2016-09-30"}, -{"geonameId":"1850207","name":"Toki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":61394,"modificationDate":"2017-07-22"}, -{"geonameId":"5334928","name":"Castro Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":61388,"modificationDate":"2011-05-14"}, -{"geonameId":"2523650","name":"Ragusa","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":61380,"modificationDate":"2018-03-16"}, -{"geonameId":"8858087","name":"San Salvador Tizatlalli","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":61367,"modificationDate":"2014-04-11"}, -{"geonameId":"2657540","name":"Aldershot","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":61339,"modificationDate":"2011-03-03"}, -{"geonameId":"2835482","name":"Schwäbisch Gmünd","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":61338,"modificationDate":"2013-02-16"}, -{"geonameId":"2515045","name":"Linares","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":61338,"modificationDate":"2012-03-04"}, -{"geonameId":"1253150","name":"Vinukonda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":61326,"modificationDate":"2016-01-07"}, -{"geonameId":"5099724","name":"Irvington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":61323,"modificationDate":"2017-05-23"}, -{"geonameId":"2831948","name":"Sindelfingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":61311,"modificationDate":"2012-06-05"}, -{"geonameId":"251948","name":"Výronas","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":61308,"modificationDate":"2019-10-23"}, -{"geonameId":"2990611","name":"Neuilly-sur-Seine","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":61300,"modificationDate":"2016-02-18"}, -{"geonameId":"1805563","name":"Tianchang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61292,"modificationDate":"2012-01-18"}, -{"geonameId":"2111859","name":"Mizusawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":61281,"modificationDate":"2017-04-09"}, -{"geonameId":"2745774","name":"Veenendaal","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":61271,"modificationDate":"2017-10-17"}, -{"geonameId":"705392","name":"Kolomyya","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":61269,"modificationDate":"2020-05-09"}, -{"geonameId":"3182714","name":"Asti","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":61254,"modificationDate":"2018-03-16"}, -{"geonameId":"3398691","name":"Gravatá","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":61249,"modificationDate":"2012-08-03"}, -{"geonameId":"3707961","name":"La Chorrera","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":61232,"modificationDate":"2016-12-06"}, -{"geonameId":"2112077","name":"Kuroiso","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":61230,"modificationDate":"2018-03-07"}, -{"geonameId":"5388319","name":"Rocklin","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":61213,"modificationDate":"2017-03-09"}, -{"geonameId":"1626758","name":"Slawi","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":61206,"modificationDate":"2016-01-07"}, -{"geonameId":"59611","name":"Gaalkacyo","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":61200,"modificationDate":"2012-01-16"}, -{"geonameId":"581357","name":"Apatity","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":61186,"modificationDate":"2019-09-05"}, -{"geonameId":"362277","name":"Abu-Qirqas","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":61182,"modificationDate":"2020-06-11"}, -{"geonameId":"1805798","name":"Jijiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61161,"modificationDate":"2012-11-08"}, -{"geonameId":"2475860","name":"Tissemsilt","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":61155,"modificationDate":"2020-05-22"}, -{"geonameId":"3445596","name":"Valença","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":61144,"modificationDate":"2012-08-03"}, -{"geonameId":"360773","name":"Al Manshāh","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":61134,"modificationDate":"2018-03-15"}, -{"geonameId":"5142056","name":"Utica","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":61100,"modificationDate":"2019-09-05"}, -{"geonameId":"2357043","name":"Ouahigouya","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":61096,"modificationDate":"2010-08-10"}, -{"geonameId":"2033866","name":"Xifeng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61087,"modificationDate":"2012-01-18"}, -{"geonameId":"1813451","name":"Datong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61085,"modificationDate":"2012-01-18"}, -{"geonameId":"4942939","name":"Malden","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":61068,"modificationDate":"2017-05-23"}, -{"geonameId":"5376200","name":"National City","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":61060,"modificationDate":"2017-03-09"}, -{"geonameId":"1497173","name":"Novoaltaysk","countryName":"Russia","timeZoneName":"Asia/Barnaul","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":61050,"modificationDate":"2012-01-17"}, -{"geonameId":"1631851","name":"Pecangaan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":61046,"modificationDate":"2012-01-17"}, -{"geonameId":"2654187","name":"Bury","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":61044,"modificationDate":"2010-10-16"}, -{"geonameId":"3188402","name":"Valjevo","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":61035,"modificationDate":"2012-04-15"}, -{"geonameId":"3665688","name":"Yopal","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":61029,"modificationDate":"2016-10-23"}, -{"geonameId":"1786759","name":"Yicheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":61027,"modificationDate":"2012-01-18"}, -{"geonameId":"2015833","name":"Svobodnyy","countryName":"Russia","timeZoneName":"Asia/Yakutsk","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":61017,"modificationDate":"2016-12-03"}, -{"geonameId":"618800","name":"Horad Zhodzina","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":61007,"modificationDate":"2019-10-09"}, -{"geonameId":"2656333","name":"Barking","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":61000,"modificationDate":"2012-06-01"}, -{"geonameId":"499161","name":"Torgovyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":61000,"modificationDate":"2020-06-10"}, -{"geonameId":"2719111","name":"Bromma","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":61000,"modificationDate":"2010-06-22"}, -{"geonameId":"486968","name":"Stupino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":60999,"modificationDate":"2019-09-05"}, -{"geonameId":"3185670","name":"Fier-Çifçi","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":60995,"modificationDate":"2007-05-30"}, -{"geonameId":"764849","name":"Mielec","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":60993,"modificationDate":"2010-09-12"}, -{"geonameId":"8436473","name":"Financial District","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":60976,"modificationDate":"2017-12-06"}, -{"geonameId":"1846095","name":"Chinch'ŏn","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":60964,"modificationDate":"2010-08-12"}, -{"geonameId":"2290964","name":"Buafle","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":60962,"modificationDate":"2020-06-10"}, -{"geonameId":"1254420","name":"Tiptūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60957,"modificationDate":"2014-10-14"}, -{"geonameId":"1257800","name":"Sahaswān","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60953,"modificationDate":"2015-08-07"}, -{"geonameId":"3120304","name":"Irun","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":60951,"modificationDate":"2012-11-19"}, -{"geonameId":"2743977","name":"Zeist","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":60949,"modificationDate":"2017-10-17"}, -{"geonameId":"1251081","name":"Anuradhapura","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":60943,"modificationDate":"2019-09-05"}, -{"geonameId":"3083440","name":"Tarnowskie Góry","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":60938,"modificationDate":"2010-09-20"}, -{"geonameId":"3162657","name":"Asker","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":60926,"modificationDate":"2019-12-12"}, -{"geonameId":"3175786","name":"Grosseto","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":60922,"modificationDate":"2018-03-16"}, -{"geonameId":"307657","name":"Kırıkhan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":60916,"modificationDate":"2019-03-26"}, -{"geonameId":"1787144","name":"Yanliang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":60891,"modificationDate":"2012-01-18"}, -{"geonameId":"1719274","name":"Candelaria","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":60881,"modificationDate":"2017-12-13"}, -{"geonameId":"2034615","name":"Tahe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":60874,"modificationDate":"2012-01-18"}, -{"geonameId":"109131","name":"Al Mithnab","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":60870,"modificationDate":"2012-10-09"}, -{"geonameId":"5754005","name":"Springfield","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":60870,"modificationDate":"2017-03-09"}, -{"geonameId":"1266154","name":"Koppal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60868,"modificationDate":"2014-10-14"}, -{"geonameId":"4348599","name":"Bethesda","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":60858,"modificationDate":"2018-10-02"}, -{"geonameId":"149027","name":"Uyovu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":60849,"modificationDate":"2016-07-26"}, -{"geonameId":"6089125","name":"Norfolk County","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":60847,"modificationDate":"2010-09-22"}, -{"geonameId":"1256087","name":"Sirhind","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60847,"modificationDate":"2015-09-06"}, -{"geonameId":"1273751","name":"Dabra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60836,"modificationDate":"2015-08-07"}, -{"geonameId":"2037494","name":"Erdaojiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":60831,"modificationDate":"2012-01-18"}, -{"geonameId":"1268246","name":"Cumbum","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60828,"modificationDate":"2014-10-14"}, -{"geonameId":"4265737","name":"Terre Haute","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":60825,"modificationDate":"2017-05-23"}, -{"geonameId":"3834601","name":"Tartagal","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":60819,"modificationDate":"2016-01-30"}, -{"geonameId":"4504621","name":"Vineland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":60818,"modificationDate":"2017-05-23"}, -{"geonameId":"4177834","name":"West Hollywood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":60806,"modificationDate":"2017-12-06"}, -{"geonameId":"504935","name":"Prokhladnyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":60800,"modificationDate":"2016-12-02"}, -{"geonameId":"1792916","name":"Tianpeng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":60797,"modificationDate":"2012-01-18"}, -{"geonameId":"2971549","name":"Troyes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":60785,"modificationDate":"2018-02-06"}, -{"geonameId":"1640185","name":"Kertosono","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":60782,"modificationDate":"2007-11-09"}, -{"geonameId":"1175560","name":"Kabirwala","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":60782,"modificationDate":"2019-12-06"}, -{"geonameId":"1788206","name":"Xixiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":60745,"modificationDate":"2012-01-18"}, -{"geonameId":"3190586","name":"Slavonski Brod","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":60742,"modificationDate":"2015-07-07"}, -{"geonameId":"2786824","name":"Seraing","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":60737,"modificationDate":"2011-03-14"}, -{"geonameId":"493231","name":"Shuya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":60705,"modificationDate":"2012-01-17"}, -{"geonameId":"495394","name":"Shehekino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":60700,"modificationDate":"2020-06-10"}, -{"geonameId":"1617111","name":"Ban Lam Luk Ka","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":60700,"modificationDate":"2008-07-11"}, -{"geonameId":"4726491","name":"San Marcos","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":60684,"modificationDate":"2017-03-09"}, -{"geonameId":"667303","name":"Sfântu Gheorghe","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":60677,"modificationDate":"2018-12-07"}, -{"geonameId":"5110077","name":"Brentwood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":60664,"modificationDate":"2017-05-23"}, -{"geonameId":"3121145","name":"Granollers","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":60658,"modificationDate":"2010-04-22"}, -{"geonameId":"572665","name":"Bor","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":60647,"modificationDate":"2019-09-05"}, -{"geonameId":"1278466","name":"Arāmbāgh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60639,"modificationDate":"2014-10-14"}, -{"geonameId":"1270099","name":"Himatnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60634,"modificationDate":"2018-07-13"}, -{"geonameId":"5034059","name":"Lakeville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":60633,"modificationDate":"2017-05-23"}, -{"geonameId":"2035707","name":"Mujiayingzi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":60627,"modificationDate":"2006-01-17"}, -{"geonameId":"5278420","name":"West Allis","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":60620,"modificationDate":"2017-05-23"}, -{"geonameId":"2296564","name":"Akim Oda","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":60604,"modificationDate":"2019-12-06"}, -{"geonameId":"564719","name":"Dubna","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":60604,"modificationDate":"2019-09-05"}, -{"geonameId":"5808079","name":"Redmond","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":60598,"modificationDate":"2017-03-09"}, -{"geonameId":"2331939","name":"Lokoja","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":60579,"modificationDate":"2016-01-30"}, -{"geonameId":"5333913","name":"Canoga Park","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":60578,"modificationDate":"2018-04-18"}, -{"geonameId":"5341145","name":"Cupertino","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":60572,"modificationDate":"2017-03-09"}, -{"geonameId":"1680505","name":"Ualog","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":60548,"modificationDate":"2017-12-13"}, -{"geonameId":"1816924","name":"Langzhong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":60542,"modificationDate":"2012-01-18"}, -{"geonameId":"4013712","name":"Ciudad Hidalgo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":60542,"modificationDate":"2018-11-03"}, -{"geonameId":"5782476","name":"Taylorsville","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":60514,"modificationDate":"2017-03-09"}, -{"geonameId":"1851125","name":"Takaishi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":60511,"modificationDate":"2017-07-22"}, -{"geonameId":"1848188","name":"Yoshikawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":60510,"modificationDate":"2017-07-22"}, -{"geonameId":"2653584","name":"Castleford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":60509,"modificationDate":"2017-06-12"}, -{"geonameId":"1265331","name":"Lādnūn","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60490,"modificationDate":"2014-10-14"}, -{"geonameId":"2881485","name":"Landshut","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":60488,"modificationDate":"2019-09-05"}, -{"geonameId":"5282835","name":"Bristol","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":60452,"modificationDate":"2017-05-23"}, -{"geonameId":"4542975","name":"Moore","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":60451,"modificationDate":"2017-03-09"}, -{"geonameId":"5351549","name":"Gardena","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":60447,"modificationDate":"2017-03-09"}, -{"geonameId":"1802550","name":"Longgang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":60444,"modificationDate":"2014-05-29"}, -{"geonameId":"5382232","name":"Petaluma","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":60438,"modificationDate":"2017-03-09"}, -{"geonameId":"314967","name":"Fethiye","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":60437,"modificationDate":"2017-05-09"}, -{"geonameId":"2647074","name":"Hereford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":60415,"modificationDate":"2017-06-12"}, -{"geonameId":"3453639","name":"Pirassununga","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":60413,"modificationDate":"2012-08-03"}, -{"geonameId":"7302628","name":"Adelaide Hills","countryName":"Australia","timeZoneName":"Australia/Adelaide","timeZoneOffsetNameWithoutDst":"Australian Central Time","population":60394,"modificationDate":"2013-06-25"}, -{"geonameId":"2656396","name":"Bangor","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":60385,"modificationDate":"2016-12-04"}, -{"geonameId":"5423573","name":"Grand Junction","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":60358,"modificationDate":"2017-03-09"}, -{"geonameId":"1261309","name":"Nimpani","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60351,"modificationDate":"2020-06-10"}, -{"geonameId":"3084093","name":"Świdnica","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":60351,"modificationDate":"2018-07-06"}, -{"geonameId":"1813851","name":"Gushu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":60335,"modificationDate":"2014-11-10"}, -{"geonameId":"2362909","name":"Banfora","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":60288,"modificationDate":"2012-01-18"}, -{"geonameId":"5820705","name":"Casper","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":60285,"modificationDate":"2017-12-25"}, -{"geonameId":"2513477","name":"Motril","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":60279,"modificationDate":"2012-03-04"}, -{"geonameId":"1275230","name":"Borsad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60271,"modificationDate":"2014-10-13"}, -{"geonameId":"3370352","name":"Atlantis","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":60266,"modificationDate":"2012-07-12"}, -{"geonameId":"3068927","name":"Opava","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":60252,"modificationDate":"2019-09-05"}, -{"geonameId":"4724194","name":"Rowlett","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":60236,"modificationDate":"2017-03-09"}, -{"geonameId":"1266124","name":"Koratla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60231,"modificationDate":"2014-10-10"}, -{"geonameId":"1266509","name":"Kīratpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60223,"modificationDate":"2015-04-08"}, -{"geonameId":"1791347","name":"Wucheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":60212,"modificationDate":"2012-01-18"}, -{"geonameId":"1785572","name":"Yuxia","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":60206,"modificationDate":"2012-01-18"}, -{"geonameId":"3534915","name":"Trinidad","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":60206,"modificationDate":"2019-09-05"}, -{"geonameId":"3445764","name":"Unaí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":60202,"modificationDate":"2012-08-03"}, -{"geonameId":"1797038","name":"Runing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":60202,"modificationDate":"2015-06-07"}, -{"geonameId":"1253079","name":"Vrindāvan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60195,"modificationDate":"2015-08-07"}, -{"geonameId":"1650064","name":"Barabai","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":60192,"modificationDate":"2007-11-09"}, -{"geonameId":"2581754","name":"Douane","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":60192,"modificationDate":"2018-08-05"}, -{"geonameId":"350422","name":"Kousa","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":60181,"modificationDate":"2019-09-05"}, -{"geonameId":"1225018","name":"Vavuniya","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":60176,"modificationDate":"2018-12-17"}, -{"geonameId":"1801455","name":"Zhijiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":60169,"modificationDate":"2014-10-06"}, -{"geonameId":"2844988","name":"Rosenheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":60167,"modificationDate":"2019-09-05"}, -{"geonameId":"2636616","name":"Stroud","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":60155,"modificationDate":"2018-07-03"}, -{"geonameId":"1270171","name":"Hāveri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60155,"modificationDate":"2014-10-14"}, -{"geonameId":"1793089","name":"Taozhuang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":60137,"modificationDate":"2012-01-18"}, -{"geonameId":"2643044","name":"Margate","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":60134,"modificationDate":"2013-07-11"}, -{"geonameId":"3083426","name":"Tczew","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":60133,"modificationDate":"2014-06-27"}, -{"geonameId":"2885656","name":"Köpenick","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":60128,"modificationDate":"2012-08-28"}, -{"geonameId":"400769","name":"Laascaanood","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":60100,"modificationDate":"2012-01-19"}, -{"geonameId":"5363990","name":"La Mesa","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":60089,"modificationDate":"2017-03-09"}, -{"geonameId":"4168459","name":"Pine Hills","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":60076,"modificationDate":"2011-05-14"}, -{"geonameId":"3523513","name":"Martínez de la Torre","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":60074,"modificationDate":"2018-11-03"}, -{"geonameId":"3466988","name":"Caratinga","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":60066,"modificationDate":"2012-08-03"}, -{"geonameId":"285787","name":"Kuwait City","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":60064,"modificationDate":"2017-06-22"}, -{"geonameId":"11523810","name":"Melbourne City Centre","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":60057,"modificationDate":"2019-07-20"}, -{"geonameId":"1847968","name":"Zushi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":60055,"modificationDate":"2017-07-22"}, -{"geonameId":"512023","name":"Pavlovskiy Posad","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":60051,"modificationDate":"2019-02-15"}, -{"geonameId":"1859094","name":"Koga","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":60045,"modificationDate":"2017-07-22"}, -{"geonameId":"1255396","name":"Supaul","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60020,"modificationDate":"2017-10-04"}, -{"geonameId":"2236568","name":"Uíge","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":60008,"modificationDate":"2017-05-07"}, -{"geonameId":"3815453","name":"Villa Vicente Guerrero","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":60001,"modificationDate":"2018-11-03"}, -{"geonameId":"3184518","name":"Patos","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":60000,"modificationDate":"2017-12-13"}, -{"geonameId":"3433522","name":"Hurlingham","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":60000,"modificationDate":"2019-08-07"}, -{"geonameId":"1783920","name":"Zhujiajiao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":60000,"modificationDate":"2016-02-10"}, -{"geonameId":"1790848","name":"Wuzhen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":60000,"modificationDate":"2018-01-29"}, -{"geonameId":"3121663","name":"Gamonal","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":60000,"modificationDate":"2019-02-01"}, -{"geonameId":"6618856","name":"Santutxu","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":60000,"modificationDate":"2011-09-11"}, -{"geonameId":"2653265","name":"Chelsea","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":60000,"modificationDate":"2020-03-06"}, -{"geonameId":"1271175","name":"Gīrīdīh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60000,"modificationDate":"2017-10-04"}, -{"geonameId":"1277322","name":"Bangaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":60000,"modificationDate":"2014-10-14"}, -{"geonameId":"2377539","name":"Néma","countryName":"Mauritania","timeZoneName":"Africa/Nouakchott","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":60000,"modificationDate":"2016-01-07"}, -{"geonameId":"7280718","name":"Colonia Nativitas","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":60000,"modificationDate":"2015-06-22"}, -{"geonameId":"10792382","name":"Putra Heights","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":60000,"modificationDate":"2018-04-11"}, -{"geonameId":"485630","name":"Sviblovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":60000,"modificationDate":"2013-04-02"}, -{"geonameId":"514284","name":"Ostankinskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":60000,"modificationDate":"2013-04-02"}, -{"geonameId":"5108815","name":"Bensonhurst","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":60000,"modificationDate":"2010-03-30"}, -{"geonameId":"5113481","name":"Coney Island","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":60000,"modificationDate":"2010-08-12"}, -{"geonameId":"5386039","name":"Rancho Penasquitos","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":60000,"modificationDate":"2018-04-18"}, -{"geonameId":"11838960","name":"Valley Glen","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":60000,"modificationDate":"2019-05-09"}, -{"geonameId":"1512339","name":"Yangiyŭl","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":60000,"modificationDate":"2010-03-07"}, -{"geonameId":"2488722","name":"Meftah","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":59990,"modificationDate":"2012-01-19"}, -{"geonameId":"4838524","name":"Meriden","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":59988,"modificationDate":"2017-05-23"}, -{"geonameId":"1258290","name":"Rāyadrug","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":59968,"modificationDate":"2015-11-08"}, -{"geonameId":"1683319","name":"Tanay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":59950,"modificationDate":"2017-12-13"}, -{"geonameId":"2643567","name":"Loughborough","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":59932,"modificationDate":"2017-06-12"}, -{"geonameId":"1697376","name":"Obando","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":59929,"modificationDate":"2017-12-13"}, -{"geonameId":"4004887","name":"Heroica Caborca","countryName":"Mexico","timeZoneName":"America/Hermosillo","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":59922,"modificationDate":"2018-11-03"}, -{"geonameId":"339708","name":"Monkorer","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":59920,"modificationDate":"2020-06-11"}, -{"geonameId":"2281606","name":"Sinfra","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":59919,"modificationDate":"2013-08-05"}, -{"geonameId":"5006166","name":"Pontiac","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":59917,"modificationDate":"2017-05-23"}, -{"geonameId":"1735022","name":"Temerluh","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":59916,"modificationDate":"2012-01-17"}, -{"geonameId":"1843841","name":"Hwasun","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":59914,"modificationDate":"2016-07-05"}, -{"geonameId":"2634552","name":"Welwyn Garden City","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":59910,"modificationDate":"2017-06-12"}, -{"geonameId":"1806327","name":"Jiangkou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":59902,"modificationDate":"2013-07-05"}, -{"geonameId":"2649672","name":"Farnborough","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":59902,"modificationDate":"2010-08-03"}, -{"geonameId":"952734","name":"KwaDukuza","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":59899,"modificationDate":"2019-09-24"}, -{"geonameId":"90026","name":"Tozkhurmato","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":59886,"modificationDate":"2018-05-08"}, -{"geonameId":"1285899","name":"Yamethin","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":59867,"modificationDate":"2016-06-01"}, -{"geonameId":"4169156","name":"Port Orange","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":59866,"modificationDate":"2017-03-09"}, -{"geonameId":"2485582","name":"Oued Rhiou","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":59864,"modificationDate":"2019-03-13"}, -{"geonameId":"1648084","name":"Boyolali","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":59851,"modificationDate":"2016-01-07"}, -{"geonameId":"4835654","name":"Hamden","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":59847,"modificationDate":"2017-05-23"}, -{"geonameId":"3037423","name":"Antony","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":59845,"modificationDate":"2019-04-10"}, -{"geonameId":"1261181","name":"North Lakhimpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":59841,"modificationDate":"2014-10-13"}, -{"geonameId":"1804609","name":"Laibin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":59835,"modificationDate":"2012-01-18"}, -{"geonameId":"1799832","name":"Pucheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":59832,"modificationDate":"2019-07-10"}, -{"geonameId":"5800420","name":"Lakewood","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":59829,"modificationDate":"2017-03-09"}, -{"geonameId":"2945358","name":"Brandenburg an der Havel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":59826,"modificationDate":"2015-09-04"}, -{"geonameId":"1728584","name":"Balagtas","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":59826,"modificationDate":"2017-12-13"}, -{"geonameId":"353802","name":"Ombos","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":59787,"modificationDate":"2020-06-11"}, -{"geonameId":"4156091","name":"Fountainebleau","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":59764,"modificationDate":"2011-05-14"}, -{"geonameId":"3089125","name":"Piekary Śląskie","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":59757,"modificationDate":"2019-09-05"}, -{"geonameId":"1254274","name":"Tohāna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":59749,"modificationDate":"2015-02-06"}, -{"geonameId":"2503181","name":"Boufarik","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":59742,"modificationDate":"2012-01-19"}, -{"geonameId":"2842884","name":"Rüsselsheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":59730,"modificationDate":"2019-09-05"}, -{"geonameId":"3460730","name":"Itapetinga","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":59721,"modificationDate":"2012-08-03"}, -{"geonameId":"5010978","name":"Saint Clair Shores","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":59715,"modificationDate":"2017-05-23"}, -{"geonameId":"264194","name":"Agía Paraskeví","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":59704,"modificationDate":"2019-10-23"}, -{"geonameId":"1217007","name":"Koson","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":59681,"modificationDate":"2010-08-09"}, -{"geonameId":"4525353","name":"Springfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":59680,"modificationDate":"2017-05-23"}, -{"geonameId":"135298","name":"Esfarāyen","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":59678,"modificationDate":"2014-09-04"}, -{"geonameId":"3457025","name":"Mococa","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":59654,"modificationDate":"2012-08-03"}, -{"geonameId":"2287298","name":"Katiola","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":59641,"modificationDate":"2016-12-18"}, -{"geonameId":"5655240","name":"Great Falls","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":59638,"modificationDate":"2017-03-09"}, -{"geonameId":"2343641","name":"Ekpoma","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":59618,"modificationDate":"2016-01-30"}, -{"geonameId":"142872","name":"Asadābād","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":59617,"modificationDate":"2018-06-27"}, -{"geonameId":"3449340","name":"São Borja","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":59613,"modificationDate":"2019-12-31"}, -{"geonameId":"1856068","name":"Nago","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":59587,"modificationDate":"2017-07-22"}, -{"geonameId":"3540680","name":"San Cristobal","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":59579,"modificationDate":"2014-07-18"}, -{"geonameId":"2757220","name":"Den Helder","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":59569,"modificationDate":"2017-10-17"}, -{"geonameId":"4460162","name":"Chapel Hill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":59568,"modificationDate":"2019-02-28"}, -{"geonameId":"2885657","name":"Berlin Köpenick","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":59561,"modificationDate":"2012-06-08"}, -{"geonameId":"3177838","name":"Cremona","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":59561,"modificationDate":"2018-03-16"}, -{"geonameId":"3173287","name":"Molfetta","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":59557,"modificationDate":"2018-03-16"}, -{"geonameId":"3533005","name":"Altamira","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":59536,"modificationDate":"2018-11-03"}, -{"geonameId":"2111049","name":"Shiogama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":59526,"modificationDate":"2017-07-22"}, -{"geonameId":"1626921","name":"Sengkang","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":59523,"modificationDate":"2012-01-17"}, -{"geonameId":"1271644","name":"Gangoh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":59519,"modificationDate":"2015-04-08"}, -{"geonameId":"281141","name":"Dayr al Balaḩ","countryName":"Palestinian Territory","timeZoneName":"Asia/Gaza","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":59504,"modificationDate":"2020-01-08"}, -{"geonameId":"784759","name":"Ferizaj","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":59504,"modificationDate":"2015-02-22"}, -{"geonameId":"5942845","name":"Drummondville","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":59489,"modificationDate":"2016-04-12"}, -{"geonameId":"3583102","name":"Sonsonate","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":59468,"modificationDate":"2012-01-14"}, -{"geonameId":"1791428","name":"Wenshang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":59455,"modificationDate":"2012-01-18"}, -{"geonameId":"2639447","name":"Rhondda","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":59450,"modificationDate":"2011-03-03"}, -{"geonameId":"1587976","name":"Bến Tre","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":59442,"modificationDate":"2014-09-04"}, -{"geonameId":"1265911","name":"Kottayam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":59437,"modificationDate":"2014-10-13"}, -{"geonameId":"2691459","name":"Mölndal","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":59430,"modificationDate":"2012-05-18"}, -{"geonameId":"5358736","name":"Huntington Park","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":59430,"modificationDate":"2017-03-09"}, -{"geonameId":"3466978","name":"Carazinho","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":59417,"modificationDate":"2012-08-03"}, -{"geonameId":"3076127","name":"Friedek","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":59416,"modificationDate":"2020-06-11"}, -{"geonameId":"3006767","name":"La Roche-sur-Yon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":59410,"modificationDate":"2018-02-06"}, -{"geonameId":"1263797","name":"Mangalagiri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":59391,"modificationDate":"2015-09-06"}, -{"geonameId":"1216982","name":"Kattakurgan","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":59382,"modificationDate":"2020-06-10"}, -{"geonameId":"2881085","name":"Langenfeld","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":59378,"modificationDate":"2018-07-25"}, -{"geonameId":"2033149","name":"Zhaoyuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":59370,"modificationDate":"2012-01-18"}, -{"geonameId":"2035758","name":"Mingshui","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":59369,"modificationDate":"2013-04-03"}, -{"geonameId":"262135","name":"Galátsi","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":59345,"modificationDate":"2019-10-23"}, -{"geonameId":"5197079","name":"Lancaster","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":59339,"modificationDate":"2019-02-27"}, -{"geonameId":"1812990","name":"Huazhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":59338,"modificationDate":"2015-06-07"}, -{"geonameId":"1261852","name":"Narasapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":59306,"modificationDate":"2015-09-06"}, -{"geonameId":"4151455","name":"Coconut Creek","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":59302,"modificationDate":"2017-03-09"}, -{"geonameId":"3872255","name":"San Felipe","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":59294,"modificationDate":"2018-02-06"}, -{"geonameId":"648900","name":"Lappeenranta","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":59276,"modificationDate":"2019-09-05"}, -{"geonameId":"707688","name":"Chornomors’k","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":59261,"modificationDate":"2020-04-11"}, -{"geonameId":"4023117","name":"Dolores Hidalgo Cuna de la Independencia Nacional","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":59240,"modificationDate":"2016-02-22"}, -{"geonameId":"2037311","name":"Gannan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":59239,"modificationDate":"2013-03-05"}, -{"geonameId":"2857798","name":"Offenburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":59238,"modificationDate":"2014-01-16"}, -{"geonameId":"3345440","name":"Craigavon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":59236,"modificationDate":"2016-12-04"}, -{"geonameId":"1638562","name":"Lamongan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":59224,"modificationDate":"2007-11-09"}, -{"geonameId":"2186280","name":"Nelson","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":59200,"modificationDate":"2019-09-05"}, -{"geonameId":"1808106","name":"Hongjiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":59199,"modificationDate":"2012-01-18"}, -{"geonameId":"1257431","name":"Sangāreddi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":59199,"modificationDate":"2018-05-28"}, -{"geonameId":"493702","name":"Mikhaylovsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":59198,"modificationDate":"2016-12-03"}, -{"geonameId":"3670419","name":"Sahagún","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":59188,"modificationDate":"2018-07-04"}, -{"geonameId":"1806167","name":"Zhicheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":59187,"modificationDate":"2020-06-10"}, -{"geonameId":"5596475","name":"Idaho Falls","countryName":"United States","timeZoneName":"America/Boise","timeZoneOffsetNameWithoutDst":"Mountain Time","population":59184,"modificationDate":"2017-12-24"}, -{"geonameId":"543704","name":"Kotlas","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":59180,"modificationDate":"2019-09-05"}, -{"geonameId":"3682292","name":"Fundación","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":59175,"modificationDate":"2018-08-08"}, -{"geonameId":"1266416","name":"Kodār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":59170,"modificationDate":"2014-10-10"}, -{"geonameId":"1049861","name":"Chibuto","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":59165,"modificationDate":"2012-01-19"}, -{"geonameId":"5392567","name":"San Rafael","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":59162,"modificationDate":"2017-03-09"}, -{"geonameId":"2037370","name":"Fuli","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":59160,"modificationDate":"2012-01-18"}, -{"geonameId":"3512208","name":"Azua","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":59139,"modificationDate":"2016-06-05"}, -{"geonameId":"12157056","name":"Wanchaq","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":59134,"modificationDate":"2020-05-07"}, -{"geonameId":"2521570","name":"Arrecife","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":59127,"modificationDate":"2012-03-04"}, -{"geonameId":"260133","name":"Chalkída","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":59125,"modificationDate":"2016-12-15"}, -{"geonameId":"601417","name":"Oltinko‘l","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":59122,"modificationDate":"2016-10-07"}, -{"geonameId":"1253888","name":"Ullal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":59116,"modificationDate":"2016-06-10"}, -{"geonameId":"1702096","name":"Manaoag","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":59115,"modificationDate":"2017-12-13"}, -{"geonameId":"1809003","name":"Haizhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":59098,"modificationDate":"2012-01-18"}, -{"geonameId":"4924198","name":"Noblesville","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":59093,"modificationDate":"2017-05-23"}, -{"geonameId":"3641099","name":"El Vigía","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":59092,"modificationDate":"2018-08-08"}, -{"geonameId":"3192224","name":"Pula","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":59078,"modificationDate":"2016-05-08"}, -{"geonameId":"1786720","name":"Yigou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":59073,"modificationDate":"2012-01-18"}, -{"geonameId":"3835793","name":"Santo Tomé","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":59072,"modificationDate":"2016-01-30"}, -{"geonameId":"4207783","name":"Marietta","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":59067,"modificationDate":"2017-03-09"}, -{"geonameId":"3837675","name":"San Francisco","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":59062,"modificationDate":"2016-01-30"}, -{"geonameId":"1487281","name":"Verkhnyaya Pyshma","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":59061,"modificationDate":"2019-09-05"}, -{"geonameId":"172408","name":"As-Suwayda","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":59052,"modificationDate":"2019-05-21"}, -{"geonameId":"4834157","name":"Fairfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":59052,"modificationDate":"2017-05-23"}, -{"geonameId":"1490256","name":"Talnakh","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":59051,"modificationDate":"2012-01-17"}, -{"geonameId":"2036241","name":"Langtoucun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":59046,"modificationDate":"2018-04-06"}, -{"geonameId":"4303436","name":"Owensboro","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":59042,"modificationDate":"2017-12-29"}, -{"geonameId":"8096217","name":"Eastvale","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":59039,"modificationDate":"2017-03-09"}, -{"geonameId":"973709","name":"Mossel Bay","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":59031,"modificationDate":"2016-03-09"}, -{"geonameId":"5007804","name":"Royal Oak","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":59008,"modificationDate":"2017-05-23"}, -{"geonameId":"215527","name":"Kabinda","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":59004,"modificationDate":"2013-06-09"}, -{"geonameId":"1567148","name":"Tanky","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":59000,"modificationDate":"2020-06-09"}, -{"geonameId":"1263752","name":"Māngrol","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":58989,"modificationDate":"2014-10-13"}, -{"geonameId":"1271049","name":"Gola","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":58986,"modificationDate":"2020-06-10"}, -{"geonameId":"111421","name":"Zarand","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":58983,"modificationDate":"2014-09-04"}, -{"geonameId":"255377","name":"Petroúpolis","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":58979,"modificationDate":"2019-10-23"}, -{"geonameId":"2826287","name":"Stralsund","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":58976,"modificationDate":"2019-09-05"}, -{"geonameId":"1926020","name":"Uwajima","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":58971,"modificationDate":"2017-07-22"}, -{"geonameId":"1262958","name":"Modāsa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":58970,"modificationDate":"2018-05-28"}, -{"geonameId":"5330642","name":"Brentwood","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":58968,"modificationDate":"2017-03-09"}, -{"geonameId":"3449822","name":"Santa Rosa","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":58957,"modificationDate":"2012-08-03"}, -{"geonameId":"1159362","name":"Turbat-i-Shaikh Jam","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":58928,"modificationDate":"2020-06-10"}, -{"geonameId":"3629614","name":"Puerto Cardon","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":58926,"modificationDate":"2020-06-10"}, -{"geonameId":"1789945","name":"Xiaoweizhai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":58913,"modificationDate":"2006-01-17"}, -{"geonameId":"1650670","name":"Baki","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":58909,"modificationDate":"2018-12-04"}, -{"geonameId":"527012","name":"Mikhaylovka","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":58898,"modificationDate":"2019-09-05"}, -{"geonameId":"490996","name":"Solnechnogorsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":58891,"modificationDate":"2018-05-26"}, -{"geonameId":"2111325","name":"Ōtawara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":58888,"modificationDate":"2017-07-22"}, -{"geonameId":"2762372","name":"Villach","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":58882,"modificationDate":"2019-09-05"}, -{"geonameId":"3446652","name":"Telêmaco Borba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":58880,"modificationDate":"2017-07-12"}, -{"geonameId":"3461973","name":"Guanambi","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":58877,"modificationDate":"2012-08-03"}, -{"geonameId":"2479609","name":"Sig","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":58877,"modificationDate":"2012-01-19"}, -{"geonameId":"2826595","name":"Stolberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":58874,"modificationDate":"2018-05-31"}, -{"geonameId":"2035754","name":"Mingyue","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":58872,"modificationDate":"2012-01-18"}, -{"geonameId":"1727400","name":"Bañga","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":58855,"modificationDate":"2017-12-13"}, -{"geonameId":"2521139","name":"Benalmádena","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":58854,"modificationDate":"2017-05-09"}, -{"geonameId":"1254710","name":"Tezpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":58851,"modificationDate":"2014-10-13"}, -{"geonameId":"143860","name":"Shahrīār","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":58849,"modificationDate":"2015-12-05"}, -{"geonameId":"143073","name":"Ardekan","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":58834,"modificationDate":"2020-06-10"}, -{"geonameId":"1926054","name":"Saijō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":58823,"modificationDate":"2017-07-22"}, -{"geonameId":"2249782","name":"Kolda","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":58809,"modificationDate":"2016-12-03"}, -{"geonameId":"4854529","name":"Dubuque","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":58799,"modificationDate":"2018-01-13"}, -{"geonameId":"2634873","name":"Wallasey","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":58794,"modificationDate":"2011-03-03"}, -{"geonameId":"1153090","name":"Kamphaeng Phet","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":58787,"modificationDate":"2012-01-16"}, -{"geonameId":"3613321","name":"Comayagua","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":58784,"modificationDate":"2013-10-05"}, -{"geonameId":"1254589","name":"Thiruvarur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":58777,"modificationDate":"2014-10-14"}, -{"geonameId":"1793774","name":"Suozhen","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":58766,"modificationDate":"2012-01-18"}, -{"geonameId":"3109402","name":"Cerdanyola del Vallès","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":58747,"modificationDate":"2010-04-22"}, -{"geonameId":"2259383","name":"Kayes","countryName":"Republic of the Congo","timeZoneName":"Africa/Brazzaville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":58737,"modificationDate":"2013-04-13"}, -{"geonameId":"7284893","name":"Marseille 12","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":58734,"modificationDate":"2018-08-19"}, -{"geonameId":"4931482","name":"Brookline","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":58732,"modificationDate":"2017-05-23"}, -{"geonameId":"5004062","name":"Novi","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":58723,"modificationDate":"2017-05-23"}, -{"geonameId":"2644319","name":"Littlehampton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":58714,"modificationDate":"2018-07-03"}, -{"geonameId":"1278173","name":"Attur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":58702,"modificationDate":"2014-10-14"}, -{"geonameId":"2027468","name":"Semenovka","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":58700,"modificationDate":"2020-06-10"}, -{"geonameId":"3515696","name":"Teziutlan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":58699,"modificationDate":"2018-11-03"}, -{"geonameId":"1863173","name":"Hanyū","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":58686,"modificationDate":"2017-07-22"}, -{"geonameId":"2540810","name":"Ouezzane","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":58684,"modificationDate":"2016-11-29"}, -{"geonameId":"2522876","name":"Trapani","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":58681,"modificationDate":"2017-07-10"}, -{"geonameId":"4889772","name":"Des Plaines","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":58677,"modificationDate":"2017-05-23"}, -{"geonameId":"1769612","name":"Kampong Dungun","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":58674,"modificationDate":"2013-10-29"}, -{"geonameId":"2911271","name":"Hameln","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":58666,"modificationDate":"2019-09-05"}, -{"geonameId":"3180423","name":"Carrara","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":58666,"modificationDate":"2018-03-16"}, -{"geonameId":"3675975","name":"Los Patios","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":58661,"modificationDate":"2018-08-08"}, -{"geonameId":"1650119","name":"Bantul","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":58653,"modificationDate":"2016-01-07"}, -{"geonameId":"1274256","name":"Chidambaram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":58650,"modificationDate":"2017-09-05"}, -{"geonameId":"2418362","name":"Labé","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":58649,"modificationDate":"2013-07-07"}, -{"geonameId":"2619771","name":"Horsens","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":58646,"modificationDate":"2019-02-18"}, -{"geonameId":"4904937","name":"Orland Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":58619,"modificationDate":"2017-05-23"}, -{"geonameId":"1254868","name":"Tarn Tāran","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":58585,"modificationDate":"2015-09-06"}, -{"geonameId":"4604183","name":"Bartlett","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":58579,"modificationDate":"2017-03-09"}, -{"geonameId":"790701","name":"Glogovac","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":58579,"modificationDate":"2015-02-22"}, -{"geonameId":"1253944","name":"Udumalaippettai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":58571,"modificationDate":"2014-10-14"}, -{"geonameId":"5410430","name":"Woodland","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":58567,"modificationDate":"2017-03-09"}, -{"geonameId":"1264793","name":"Lonavla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":58562,"modificationDate":"2014-10-13"}, -{"geonameId":"6087844","name":"New Westminster","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":58549,"modificationDate":"2019-02-26"}, -{"geonameId":"2036519","name":"Jidong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":58520,"modificationDate":"2012-01-18"}, -{"geonameId":"1864637","name":"Chichibu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":58507,"modificationDate":"2017-07-22"}, -{"geonameId":"5777224","name":"Lehi","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":58486,"modificationDate":"2017-03-09"}, -{"geonameId":"1811114","name":"Fenyi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":58478,"modificationDate":"2012-01-18"}, -{"geonameId":"2491335","name":"Ksar Chellala","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":58478,"modificationDate":"2012-01-19"}, -{"geonameId":"2805059","name":"Zehlendorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":58469,"modificationDate":"2019-06-17"}, -{"geonameId":"3087584","name":"Racibórz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":58464,"modificationDate":"2019-09-05"}, -{"geonameId":"1859990","name":"Kasaoka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":58461,"modificationDate":"2017-07-22"}, -{"geonameId":"5144336","name":"White Plains","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":58459,"modificationDate":"2017-05-23"}, -{"geonameId":"477494","name":"Uzlovaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":58458,"modificationDate":"2012-01-17"}, -{"geonameId":"2664740","name":"Vasastan","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":58458,"modificationDate":"2016-10-14"}, -{"geonameId":"3179806","name":"Casoria","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":58456,"modificationDate":"2018-03-16"}, -{"geonameId":"2871983","name":"Menden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":58451,"modificationDate":"2015-09-05"}, -{"geonameId":"1621655","name":"Weleri","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":58448,"modificationDate":"2012-01-17"}, -{"geonameId":"1814919","name":"Chonglong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":58441,"modificationDate":"2012-01-18"}, -{"geonameId":"2033739","name":"Xinglongshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":58432,"modificationDate":"2012-01-18"}, -{"geonameId":"3836772","name":"San Pedro de Jujuy","countryName":"Argentina","timeZoneName":"America/Argentina/Jujuy","timeZoneOffsetNameWithoutDst":"Argentina Time","population":58430,"modificationDate":"2020-04-05"}, -{"geonameId":"1003953","name":"Fort Beaufort","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":58419,"modificationDate":"2012-07-12"}, -{"geonameId":"5324477","name":"Arcadia","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":58408,"modificationDate":"2017-03-09"}, -{"geonameId":"4781530","name":"Reston","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":58404,"modificationDate":"2011-05-14"}, -{"geonameId":"2924585","name":"Friedrichshafen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":58403,"modificationDate":"2019-09-05"}, -{"geonameId":"1256750","name":"Shāhāda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":58402,"modificationDate":"2018-07-04"}, -{"geonameId":"2654755","name":"Bridgend","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":58380,"modificationDate":"2017-06-12"}, -{"geonameId":"1611407","name":"Chaiyaphum","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":58350,"modificationDate":"2012-01-16"}, -{"geonameId":"1792692","name":"Tongchuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":58346,"modificationDate":"2012-01-18"}, -{"geonameId":"1261613","name":"Nawalgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":58346,"modificationDate":"2014-10-14"}, -{"geonameId":"1605215","name":"Uttaradit","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":58313,"modificationDate":"2018-08-08"}, -{"geonameId":"2291136","name":"Bondoukou","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":58297,"modificationDate":"2012-02-28"}, -{"geonameId":"1798082","name":"Hongqiao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":58287,"modificationDate":"2012-01-18"}, -{"geonameId":"734330","name":"Serra","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":58287,"modificationDate":"2020-06-10"}, -{"geonameId":"356945","name":"Fāraskūr","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":58284,"modificationDate":"2012-01-19"}, -{"geonameId":"3167022","name":"Savona","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":58283,"modificationDate":"2018-03-16"}, -{"geonameId":"1261553","name":"Nedumangād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":58278,"modificationDate":"2014-10-13"}, -{"geonameId":"3057140","name":"Trenčín","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":58278,"modificationDate":"2019-06-09"}, -{"geonameId":"3471848","name":"Aracruz","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":58271,"modificationDate":"2012-08-03"}, -{"geonameId":"782756","name":"Korytsa","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":58259,"modificationDate":"2020-06-11"}, -{"geonameId":"3670218","name":"San Andrés","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":58257,"modificationDate":"2018-08-08"}, -{"geonameId":"3103719","name":"Będzin","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":58236,"modificationDate":"2010-10-27"}, -{"geonameId":"11549784","name":"la Nova Esquerra de l'Eixample","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":58224,"modificationDate":"2017-05-24"}, -{"geonameId":"743166","name":"Lozengrad","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":58223,"modificationDate":"2020-06-10"}, -{"geonameId":"4166673","name":"Ocala","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":58218,"modificationDate":"2017-03-09"}, -{"geonameId":"863675","name":"Kisela Voda","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":58216,"modificationDate":"2019-10-05"}, -{"geonameId":"3194494","name":"Nikšić","countryName":"Montenegro","timeZoneName":"Europe/Podgorica","timeZoneOffsetNameWithoutDst":"Central European Time","population":58212,"modificationDate":"2018-04-26"}, -{"geonameId":"1812754","name":"Dingtao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":58206,"modificationDate":"2014-06-05"}, -{"geonameId":"1630935","name":"Polewali","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":58190,"modificationDate":"2013-06-04"}, -{"geonameId":"3353383","name":"Rundu","countryName":"Namibia","timeZoneName":"Africa/Windhoek","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":58172,"modificationDate":"2014-03-06"}, -{"geonameId":"3634184","name":"Los Dos Caminos","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":58168,"modificationDate":"2012-01-15"}, -{"geonameId":"11979238","name":"Central City","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":58161,"modificationDate":"2018-11-24"}, -{"geonameId":"359212","name":"Banī Mazār","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":58153,"modificationDate":"2020-04-08"}, -{"geonameId":"1320944","name":"Kanbe","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":58146,"modificationDate":"2016-06-01"}, -{"geonameId":"285726","name":"Rumaithiya","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":58135,"modificationDate":"2020-06-10"}, -{"geonameId":"2669772","name":"Täby","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":58123,"modificationDate":"2011-12-20"}, -{"geonameId":"4504225","name":"South Vineland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":58122,"modificationDate":"2017-05-23"}, -{"geonameId":"2997577","name":"Lorient","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":58112,"modificationDate":"2019-09-05"}, -{"geonameId":"4172086","name":"Sanford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":58111,"modificationDate":"2017-03-09"}, -{"geonameId":"1804892","name":"Juye","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":58107,"modificationDate":"2016-09-09"}, -{"geonameId":"3665199","name":"Ariquemes","countryName":"Brazil","timeZoneName":"America/Porto_Velho","timeZoneOffsetNameWithoutDst":"Amazon Time","population":58096,"modificationDate":"2017-09-18"}, -{"geonameId":"1261369","name":"Nīmbāhera","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":58085,"modificationDate":"2014-10-14"}, -{"geonameId":"1239593","name":"Kolonnawa","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":58076,"modificationDate":"2018-12-16"}, -{"geonameId":"1268680","name":"Kadi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":58066,"modificationDate":"2014-10-13"}, -{"geonameId":"2739693","name":"Felgueiras","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":58065,"modificationDate":"2018-05-17"}, -{"geonameId":"1840379","name":"Nangen","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":58057,"modificationDate":"2012-01-18"}, -{"geonameId":"1808981","name":"Hancheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":58049,"modificationDate":"2012-01-18"}, -{"geonameId":"2919054","name":"Göppingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":58040,"modificationDate":"2014-01-15"}, -{"geonameId":"3080251","name":"Zgierz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":58036,"modificationDate":"2019-09-05"}, -{"geonameId":"3687025","name":"Caucasia","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":58034,"modificationDate":"2018-06-08"}, -{"geonameId":"1581326","name":"Hai dzung","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":58030,"modificationDate":"2020-06-09"}, -{"geonameId":"3833367","name":"Ushuaia","countryName":"Argentina","timeZoneName":"America/Argentina/Ushuaia","timeZoneOffsetNameWithoutDst":"Argentina Time","population":58028,"modificationDate":"2019-09-05"}, -{"geonameId":"4349159","name":"Bowie","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":58025,"modificationDate":"2017-03-09"}, -{"geonameId":"1859093","name":"Koga","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":58004,"modificationDate":"2017-07-22"}, -{"geonameId":"1734576","name":"Simpang Empat","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":58004,"modificationDate":"2012-01-17"}, -{"geonameId":"6111706","name":"Port Coquitlam","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":58000,"modificationDate":"2019-04-15"}, -{"geonameId":"1930074","name":"Santangpu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":58000,"modificationDate":"2019-11-07"}, -{"geonameId":"472234","name":"Volzhsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":58000,"modificationDate":"2016-11-23"}, -{"geonameId":"4922388","name":"Kokomo","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":57995,"modificationDate":"2017-05-23"}, -{"geonameId":"2976043","name":"Sarcelles","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":57979,"modificationDate":"2019-04-10"}, -{"geonameId":"1642684","name":"Jatiwangi","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":57973,"modificationDate":"2012-01-17"}, -{"geonameId":"4019827","name":"Acámbaro","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":57972,"modificationDate":"2018-11-03"}, -{"geonameId":"3164376","name":"Vigevano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":57970,"modificationDate":"2014-04-13"}, -{"geonameId":"1319573","name":"Kawthoung","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":57949,"modificationDate":"2018-08-30"}, -{"geonameId":"2987805","name":"Pessac","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":57944,"modificationDate":"2020-01-08"}, -{"geonameId":"1861677","name":"Imarimachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":57940,"modificationDate":"2020-06-11"}, -{"geonameId":"3668454","name":"Santa Rosa de Cabal","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":57928,"modificationDate":"2018-09-05"}, -{"geonameId":"2479966","name":"Sidi Moussa","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":57928,"modificationDate":"2012-01-19"}, -{"geonameId":"1256104","name":"Sīra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57928,"modificationDate":"2014-10-14"}, -{"geonameId":"1650815","name":"Baekrajan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":57920,"modificationDate":"2012-01-17"}, -{"geonameId":"5106160","name":"Wayne","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":57915,"modificationDate":"2017-05-23"}, -{"geonameId":"3365083","name":"Kraaifontein","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":57911,"modificationDate":"2013-08-18"}, -{"geonameId":"2754861","name":"Hardenberg","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":57909,"modificationDate":"2017-10-17"}, -{"geonameId":"3012621","name":"Ivry-sur-Seine","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":57897,"modificationDate":"2019-03-26"}, -{"geonameId":"1329239","name":"Myaydo","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":57897,"modificationDate":"2016-06-01"}, -{"geonameId":"1858972","name":"Kokubu-matsuki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":57896,"modificationDate":"2017-04-09"}, -{"geonameId":"785058","name":"Veles","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":57873,"modificationDate":"2014-04-06"}, -{"geonameId":"1685117","name":"Tabaco","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":57860,"modificationDate":"2017-12-13"}, -{"geonameId":"1274243","name":"Chik Ballāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57831,"modificationDate":"2015-10-04"}, -{"geonameId":"3827811","name":"Belen","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":57824,"modificationDate":"2020-05-08"}, -{"geonameId":"3170921","name":"Pianura","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":57821,"modificationDate":"2019-07-22"}, -{"geonameId":"1277022","name":"Bardoti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57810,"modificationDate":"2020-06-10"}, -{"geonameId":"6695754","name":"Kogalym","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":57800,"modificationDate":"2019-09-05"}, -{"geonameId":"699035","name":"Novovolynskiy","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":57800,"modificationDate":"2020-06-10"}, -{"geonameId":"1268990","name":"Jhārgrām","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57796,"modificationDate":"2018-05-27"}, -{"geonameId":"3019265","name":"Évreux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":57795,"modificationDate":"2016-02-18"}, -{"geonameId":"1626899","name":"Singosari","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":57793,"modificationDate":"2012-01-17"}, -{"geonameId":"2655198","name":"Bootle","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":57791,"modificationDate":"2013-07-11"}, -{"geonameId":"339734","name":"Debre Birhan","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":57787,"modificationDate":"2013-07-06"}, -{"geonameId":"5393429","name":"Santee","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":57787,"modificationDate":"2017-03-09"}, -{"geonameId":"1817952","name":"Anxiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":57769,"modificationDate":"2012-01-18"}, -{"geonameId":"1609032","name":"Lop Buri","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":57761,"modificationDate":"2012-01-16"}, -{"geonameId":"2918987","name":"Görlitz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":57751,"modificationDate":"2019-09-05"}, -{"geonameId":"747764","name":"Duzdje","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":57739,"modificationDate":"2020-06-10"}, -{"geonameId":"5344157","name":"Dublin","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":57721,"modificationDate":"2017-03-09"}, -{"geonameId":"6155033","name":"St. Albert","countryName":"Canada","timeZoneName":"America/Edmonton","timeZoneOffsetNameWithoutDst":"Mountain Time","population":57719,"modificationDate":"2010-09-22"}, -{"geonameId":"2634202","name":"Weymouth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":57691,"modificationDate":"2017-06-12"}, -{"geonameId":"98629","name":"Ummal Barur","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":57661,"modificationDate":"2020-06-10"}, -{"geonameId":"3463605","name":"Farroupilha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":57650,"modificationDate":"2012-08-03"}, -{"geonameId":"131962","name":"Harsīn","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":57647,"modificationDate":"2014-09-04"}, -{"geonameId":"3462996","name":"Francisco Beltrão","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":57618,"modificationDate":"2017-05-07"}, -{"geonameId":"2670781","name":"Sundsvall","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":57606,"modificationDate":"2019-09-05"}, -{"geonameId":"3643031","name":"El Hatillo","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":57591,"modificationDate":"2019-04-10"}, -{"geonameId":"3174921","name":"Legnano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":57589,"modificationDate":"2020-02-15"}, -{"geonameId":"2970072","name":"Vénissieux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":57584,"modificationDate":"2019-06-05"}, -{"geonameId":"3027883","name":"Cergy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":57576,"modificationDate":"2018-02-06"}, -{"geonameId":"1257551","name":"Samāstipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57575,"modificationDate":"2015-11-08"}, -{"geonameId":"174448","name":"Al-bu-Kamal","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":57572,"modificationDate":"2020-06-10"}, -{"geonameId":"1155139","name":"Ban Pong","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":57559,"modificationDate":"2012-07-04"}, -{"geonameId":"540251","name":"Krymsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":57555,"modificationDate":"2019-09-05"}, -{"geonameId":"1807308","name":"Huangpi","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":57554,"modificationDate":"2012-01-18"}, -{"geonameId":"2034995","name":"Shanhecun","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":57550,"modificationDate":"2017-06-06"}, -{"geonameId":"2776488","name":"Hernals","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":57546,"modificationDate":"2018-07-29"}, -{"geonameId":"2548489","name":"Guercif","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":57544,"modificationDate":"2016-11-02"}, -{"geonameId":"776175","name":"Biała Podlaska","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":57541,"modificationDate":"2019-09-05"}, -{"geonameId":"1270947","name":"Gobichettipalayam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57527,"modificationDate":"2014-10-14"}, -{"geonameId":"2033449","name":"Yantongshan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":57515,"modificationDate":"2012-01-18"}, -{"geonameId":"3392167","name":"Picos","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":57495,"modificationDate":"2013-11-23"}, -{"geonameId":"99344","name":"Tuwairji","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":57490,"modificationDate":"2020-06-10"}, -{"geonameId":"1270251","name":"Hasanpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57481,"modificationDate":"2015-08-07"}, -{"geonameId":"1851606","name":"Sōja","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":57469,"modificationDate":"2017-07-22"}, -{"geonameId":"3024597","name":"Clichy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":57467,"modificationDate":"2016-02-18"}, -{"geonameId":"1809483","name":"Guiren","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":57446,"modificationDate":"2012-01-18"}, -{"geonameId":"1185166","name":"Moulvi Bazar Municipality","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":57441,"modificationDate":"2020-06-10"}, -{"geonameId":"4167545","name":"Palm Harbor","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":57439,"modificationDate":"2011-05-14"}, -{"geonameId":"1687534","name":"Santo Tomas","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":57438,"modificationDate":"2020-02-25"}, -{"geonameId":"723846","name":"Poprad","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":57431,"modificationDate":"2019-06-09"}, -{"geonameId":"1522751","name":"Kentau","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":57408,"modificationDate":"2016-02-06"}, -{"geonameId":"1563926","name":"Tra Vin","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":57408,"modificationDate":"2020-06-09"}, -{"geonameId":"4943629","name":"Medford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":57403,"modificationDate":"2017-05-23"}, -{"geonameId":"2025527","name":"Cheremkhovo","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":57395,"modificationDate":"2016-12-17"}, -{"geonameId":"2649692","name":"Fareham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":57390,"modificationDate":"2011-03-03"}, -{"geonameId":"2642189","name":"Morley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":57385,"modificationDate":"2011-07-31"}, -{"geonameId":"3458645","name":"Lençóis Paulista","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":57375,"modificationDate":"2012-08-03"}, -{"geonameId":"2653232","name":"Cheshunt","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":57374,"modificationDate":"2015-07-14"}, -{"geonameId":"1269551","name":"Jahāngīrābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57363,"modificationDate":"2015-09-06"}, -{"geonameId":"1256569","name":"Sherkot","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57361,"modificationDate":"2015-06-07"}, -{"geonameId":"2507901","name":"Ain Temushent","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":57354,"modificationDate":"2020-06-11"}, -{"geonameId":"1267439","name":"Kātrās","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57349,"modificationDate":"2014-10-14"}, -{"geonameId":"1309289","name":"Minbu","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":57342,"modificationDate":"2018-04-06"}, -{"geonameId":"1260792","name":"Palacole","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57341,"modificationDate":"2020-06-10"}, -{"geonameId":"1784253","name":"Zhongxing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":57338,"modificationDate":"2012-01-18"}, -{"geonameId":"96205","name":"Ḩalabjah","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":57333,"modificationDate":"2016-06-22"}, -{"geonameId":"919544","name":"Chililabombwe","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":57328,"modificationDate":"2012-01-17"}, -{"geonameId":"2036237","name":"Langxiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":57318,"modificationDate":"2013-05-07"}, -{"geonameId":"1180942","name":"Chunian","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":57312,"modificationDate":"2019-12-06"}, -{"geonameId":"3698658","name":"Catacaos","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":57304,"modificationDate":"2012-07-19"}, -{"geonameId":"2129909","name":"Ishikari","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":57301,"modificationDate":"2017-07-22"}, -{"geonameId":"58933","name":"Garoowe","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":57300,"modificationDate":"2019-09-05"}, -{"geonameId":"1252960","name":"Wani","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57288,"modificationDate":"2015-08-07"}, -{"geonameId":"1262092","name":"Naxalbari","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57283,"modificationDate":"2020-06-10"}, -{"geonameId":"4542765","name":"Midwest City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":57249,"modificationDate":"2017-03-09"}, -{"geonameId":"2540850","name":"Ouarzazat","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":57245,"modificationDate":"2018-04-25"}, -{"geonameId":"9958118","name":"Center City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":57239,"modificationDate":"2017-12-06"}, -{"geonameId":"4163407","name":"Margate","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":57234,"modificationDate":"2017-03-09"}, -{"geonameId":"2472774","name":"Bedja","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":57233,"modificationDate":"2020-06-10"}, -{"geonameId":"1254335","name":"Tiruvalla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57223,"modificationDate":"2014-10-13"}, -{"geonameId":"3436725","name":"Villa Hayes","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":57217,"modificationDate":"2018-04-09"}, -{"geonameId":"3045190","name":"Sopron","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":57210,"modificationDate":"2019-02-10"}, -{"geonameId":"3839982","name":"Punta Alta","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":57209,"modificationDate":"2016-01-30"}, -{"geonameId":"321426","name":"Bergama","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":57200,"modificationDate":"2012-12-12"}, -{"geonameId":"1861280","name":"Itoman","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":57184,"modificationDate":"2017-07-22"}, -{"geonameId":"1259408","name":"Ponnūru","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57170,"modificationDate":"2014-10-10"}, -{"geonameId":"3405006","name":"Bragança","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":57163,"modificationDate":"2012-08-03"}, -{"geonameId":"3407216","name":"Arcoverde","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":57163,"modificationDate":"2012-08-03"}, -{"geonameId":"1214965","name":"Kabanjahe","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":57159,"modificationDate":"2016-01-07"}, -{"geonameId":"5397841","name":"South Whittier","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":57156,"modificationDate":"2015-08-06"}, -{"geonameId":"1811200","name":"Fengxian","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":57153,"modificationDate":"2012-01-18"}, -{"geonameId":"4913723","name":"Tinley Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":57143,"modificationDate":"2017-05-23"}, -{"geonameId":"323828","name":"Anamur","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":57128,"modificationDate":"2012-01-18"}, -{"geonameId":"2034651","name":"Suileng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":57124,"modificationDate":"2013-04-03"}, -{"geonameId":"4718711","name":"Pflugerville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":57122,"modificationDate":"2017-03-09"}, -{"geonameId":"250582","name":"Mafraq","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":57118,"modificationDate":"2014-05-28"}, -{"geonameId":"1790451","name":"Wenxing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":57117,"modificationDate":"2020-02-18"}, -{"geonameId":"1863082","name":"Hashimoto","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":57115,"modificationDate":"2017-07-22"}, -{"geonameId":"2855598","name":"Pankow","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":57113,"modificationDate":"2014-04-12"}, -{"geonameId":"1272525","name":"Diphu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57097,"modificationDate":"2014-10-13"}, -{"geonameId":"1255983","name":"Sītāmarhi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57095,"modificationDate":"2016-06-11"}, -{"geonameId":"463082","name":"Zhigulevsk","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":57094,"modificationDate":"2012-01-17"}, -{"geonameId":"1853190","name":"Sakaidechō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":57090,"modificationDate":"2017-07-27"}, -{"geonameId":"886990","name":"Marondera","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":57082,"modificationDate":"2010-08-03"}, -{"geonameId":"1274315","name":"Chhibrāmau","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57071,"modificationDate":"2015-08-07"}, -{"geonameId":"2659811","name":"Luzern","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":57066,"modificationDate":"2019-09-05"}, -{"geonameId":"2645724","name":"Kidderminster","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":57059,"modificationDate":"2017-06-12"}, -{"geonameId":"932614","name":"Mafeteng","countryName":"Lesotho","timeZoneName":"Africa/Maseru","timeZoneOffsetNameWithoutDst":"South Africa Time","population":57059,"modificationDate":"2012-01-18"}, -{"geonameId":"1216187","name":"Shahrisabz","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":57051,"modificationDate":"2012-01-17"}, -{"geonameId":"1254481","name":"Tilhar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":57043,"modificationDate":"2015-08-07"}, -{"geonameId":"5101717","name":"New Brunswick","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":57035,"modificationDate":"2017-05-23"}, -{"geonameId":"3855075","name":"General Pico","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":57029,"modificationDate":"2016-01-30"}, -{"geonameId":"632978","name":"Vaasa","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":57014,"modificationDate":"2019-09-05"}, -{"geonameId":"5059429","name":"Grand Forks","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":57011,"modificationDate":"2017-05-23"}, -{"geonameId":"2756136","name":"Emmen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":57010,"modificationDate":"2020-04-12"}, -{"geonameId":"1607512","name":"Phra Phutthabat","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":57008,"modificationDate":"2012-01-16"}, -{"geonameId":"1166146","name":"Sangla Hill","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":57002,"modificationDate":"2014-10-08"}, -{"geonameId":"3435356","name":"Colegiales","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":57000,"modificationDate":"2017-05-08"}, -{"geonameId":"491250","name":"Sokol’niki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":57000,"modificationDate":"2013-04-02"}, -{"geonameId":"491280","name":"Sokol","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":57000,"modificationDate":"2013-04-02"}, -{"geonameId":"302355","name":"Reyhaniye","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":56995,"modificationDate":"2020-06-10"}, -{"geonameId":"2038529","name":"Baishishan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":56992,"modificationDate":"2012-01-18"}, -{"geonameId":"145449","name":"Ābādeh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":56988,"modificationDate":"2018-10-18"}, -{"geonameId":"5350207","name":"Fountain Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":56987,"modificationDate":"2017-03-09"}, -{"geonameId":"1244397","name":"Hendala","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":56978,"modificationDate":"2018-12-16"}, -{"geonameId":"1177107","name":"Haripur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":56977,"modificationDate":"2019-12-06"}, -{"geonameId":"501283","name":"Roslawl","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":56971,"modificationDate":"2020-06-10"}, -{"geonameId":"352344","name":"Minyat an Naşr","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":56951,"modificationDate":"2013-07-06"}, -{"geonameId":"5394409","name":"North Hills","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":56946,"modificationDate":"2018-04-18"}, -{"geonameId":"1799383","name":"Ninghai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":56937,"modificationDate":"2012-12-05"}, -{"geonameId":"1269784","name":"Ilkal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56937,"modificationDate":"2014-10-14"}, -{"geonameId":"4004198","name":"Jacona de Plancarte","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":56934,"modificationDate":"2018-11-03"}, -{"geonameId":"281145","name":"Bayt Lāhyā","countryName":"Palestinian Territory","timeZoneName":"Asia/Gaza","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":56919,"modificationDate":"2017-09-05"}, -{"geonameId":"1630366","name":"Purbalingga","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":56903,"modificationDate":"2016-01-07"}, -{"geonameId":"5342992","name":"Diamond Bar","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":56897,"modificationDate":"2017-03-09"}, -{"geonameId":"230893","name":"Kitgum","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":56891,"modificationDate":"2018-03-17"}, -{"geonameId":"349156","name":"Shibīn al Qanāṭir","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":56872,"modificationDate":"2018-03-15"}, -{"geonameId":"1278026","name":"Barabil","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56870,"modificationDate":"2020-06-10"}, -{"geonameId":"2909230","name":"Hattingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":56866,"modificationDate":"2016-07-05"}, -{"geonameId":"3882434","name":"Los Andes","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":56859,"modificationDate":"2012-05-03"}, -{"geonameId":"3129136","name":"Ávila","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":56855,"modificationDate":"2014-06-24"}, -{"geonameId":"3803651","name":"La Dolorita","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":56846,"modificationDate":"2011-10-13"}, -{"geonameId":"1709632","name":"Kalibo (poblacion)","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":56845,"modificationDate":"2017-12-13"}, -{"geonameId":"2303287","name":"Bawku","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":56830,"modificationDate":"2019-12-05"}, -{"geonameId":"333795","name":"Jijiga","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":56821,"modificationDate":"2014-08-20"}, -{"geonameId":"1855066","name":"Nōgata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":56821,"modificationDate":"2017-07-22"}, -{"geonameId":"11549820","name":"Barri de Sant Andreu","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":56818,"modificationDate":"2017-05-24"}, -{"geonameId":"1805515","name":"Jinji","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":56816,"modificationDate":"2012-01-18"}, -{"geonameId":"2652381","name":"Corby","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":56810,"modificationDate":"2019-01-10"}, -{"geonameId":"7284892","name":"Marseille 11","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":56792,"modificationDate":"2018-08-19"}, -{"geonameId":"4952629","name":"Taunton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":56789,"modificationDate":"2017-05-23"}, -{"geonameId":"2186313","name":"Napier","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":56787,"modificationDate":"2017-05-24"}, -{"geonameId":"4904365","name":"Oak Lawn","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":56781,"modificationDate":"2017-05-23"}, -{"geonameId":"5105608","name":"Union","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":56771,"modificationDate":"2017-05-23"}, -{"geonameId":"3445630","name":"Vacaria","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":56765,"modificationDate":"2012-08-03"}, -{"geonameId":"4846960","name":"Ankeny","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":56764,"modificationDate":"2017-05-23"}, -{"geonameId":"3991347","name":"Puerto Peñasco","countryName":"Mexico","timeZoneName":"America/Hermosillo","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":56756,"modificationDate":"2018-11-03"}, -{"geonameId":"284375","name":"Battir","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":56746,"modificationDate":"2020-04-23"}, -{"geonameId":"125188","name":"Malārd","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":56745,"modificationDate":"2014-09-04"}, -{"geonameId":"1816028","name":"Weining","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":56744,"modificationDate":"2012-01-18"}, -{"geonameId":"1263101","name":"Mettur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56743,"modificationDate":"2014-10-14"}, -{"geonameId":"4933002","name":"Chicopee","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":56741,"modificationDate":"2017-05-23"}, -{"geonameId":"1513271","name":"Asaka","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":56736,"modificationDate":"2015-12-05"}, -{"geonameId":"2483936","name":"Tocqueville","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":56726,"modificationDate":"2020-06-11"}, -{"geonameId":"1265828","name":"Kuchāman","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56725,"modificationDate":"2014-10-14"}, -{"geonameId":"2491134","name":"Lakhdaria","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":56719,"modificationDate":"2020-06-04"}, -{"geonameId":"2525448","name":"Caltanissetta","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":56715,"modificationDate":"2018-03-16"}, -{"geonameId":"1632358","name":"Pare","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":56699,"modificationDate":"2018-04-24"}, -{"geonameId":"2651500","name":"Dartford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":56694,"modificationDate":"2015-07-19"}, -{"geonameId":"3468158","name":"Cajamar","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":56682,"modificationDate":"2012-03-10"}, -{"geonameId":"2653558","name":"Castlereagh","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":56679,"modificationDate":"2018-12-25"}, -{"geonameId":"2823538","name":"Tempelhof","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":56669,"modificationDate":"2012-06-09"}, -{"geonameId":"3109256","name":"Segovia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":56660,"modificationDate":"2019-09-05"}, -{"geonameId":"721239","name":"Eger","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":56647,"modificationDate":"2019-09-05"}, -{"geonameId":"2651286","name":"Dewsbury","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":56640,"modificationDate":"2015-02-07"}, -{"geonameId":"1813775","name":"Daokou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":56637,"modificationDate":"2015-06-07"}, -{"geonameId":"1839873","name":"Okcheon","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":56634,"modificationDate":"2013-03-03"}, -{"geonameId":"1786867","name":"Yashan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":56629,"modificationDate":"2006-01-17"}, -{"geonameId":"3591062","name":"Puerto Barrios","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":56605,"modificationDate":"2012-12-05"}, -{"geonameId":"1260448","name":"Panruti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56586,"modificationDate":"2014-10-14"}, -{"geonameId":"2783476","name":"Woluwe-Saint-Lambert","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":56584,"modificationDate":"2020-05-25"}, -{"geonameId":"3628489","name":"San Carlos del Zulia","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":56582,"modificationDate":"2018-08-08"}, -{"geonameId":"1706188","name":"Lingayen","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":56580,"modificationDate":"2017-12-13"}, -{"geonameId":"3460174","name":"Janaúba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":56572,"modificationDate":"2012-08-03"}, -{"geonameId":"572154","name":"Borovichi","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":56571,"modificationDate":"2019-09-05"}, -{"geonameId":"2644204","name":"Livingston","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":56570,"modificationDate":"2017-06-15"}, -{"geonameId":"1864557","name":"Chino","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":56567,"modificationDate":"2017-07-22"}, -{"geonameId":"2111831","name":"Moriya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":56566,"modificationDate":"2017-07-22"}, -{"geonameId":"2904795","name":"Hilden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":56565,"modificationDate":"2018-07-25"}, -{"geonameId":"1253783","name":"Una","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56545,"modificationDate":"2014-10-13"}, -{"geonameId":"7284823","name":"Budapest XII. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":56544,"modificationDate":"2019-09-23"}, -{"geonameId":"3430340","name":"Yerbal Viejo","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":56528,"modificationDate":"2020-06-10"}, -{"geonameId":"2386012","name":"Kaga Bandoro","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":56520,"modificationDate":"2016-06-22"}, -{"geonameId":"4897543","name":"Irving Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":56520,"modificationDate":"2017-12-06"}, -{"geonameId":"316284","name":"Dörtyol","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":56513,"modificationDate":"2019-01-13"}, -{"geonameId":"7302844","name":"Ponnur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56504,"modificationDate":"2014-10-10"}, -{"geonameId":"1266267","name":"Collegal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56497,"modificationDate":"2020-06-10"}, -{"geonameId":"3445014","name":"Vinhedo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":56492,"modificationDate":"2012-03-10"}, -{"geonameId":"2035635","name":"Nantai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":56478,"modificationDate":"2012-01-18"}, -{"geonameId":"1650600","name":"Balaipungut","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":56452,"modificationDate":"2013-09-05"}, -{"geonameId":"1256620","name":"Shegaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56449,"modificationDate":"2014-10-13"}, -{"geonameId":"1672228","name":"Magong","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":56435,"modificationDate":"2018-07-12"}, -{"geonameId":"3170027","name":"Potenza","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":56433,"modificationDate":"2014-04-13"}, -{"geonameId":"1815667","name":"Changleng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":56429,"modificationDate":"2012-01-18"}, -{"geonameId":"8504946","name":"Chernaya Rechka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":56429,"modificationDate":"2013-03-29"}, -{"geonameId":"3463174","name":"Formiga","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":56404,"modificationDate":"2012-08-03"}, -{"geonameId":"226234","name":"Soroti","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":56400,"modificationDate":"2016-06-22"}, -{"geonameId":"2513917","name":"Mérida","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":56395,"modificationDate":"2019-03-29"}, -{"geonameId":"2468579","name":"Nabeul","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":56387,"modificationDate":"2018-08-30"}, -{"geonameId":"3574116","name":"Mon Repos","countryName":"Trinidad and Tobago","timeZoneName":"America/Port_of_Spain","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":56380,"modificationDate":"2018-12-05"}, -{"geonameId":"1806591","name":"Hutang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":56370,"modificationDate":"2012-10-06"}, -{"geonameId":"1130490","name":"Pul-i-Khumri","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":56369,"modificationDate":"2020-06-09"}, -{"geonameId":"4884597","name":"Berwyn","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":56368,"modificationDate":"2017-05-23"}, -{"geonameId":"1169372","name":"Nankana Sahib","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":56366,"modificationDate":"2019-12-06"}, -{"geonameId":"1253736","name":"Upleta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56354,"modificationDate":"2014-10-13"}, -{"geonameId":"1253918","name":"Ujhāni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56309,"modificationDate":"2015-10-04"}, -{"geonameId":"4274994","name":"Manhattan","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":56308,"modificationDate":"2017-05-23"}, -{"geonameId":"360615","name":"Delta Barrage Station","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":56302,"modificationDate":"2020-06-11"}, -{"geonameId":"2108502","name":"Honiara","countryName":"Solomon Islands","timeZoneName":"Pacific/Guadalcanal","timeZoneOffsetNameWithoutDst":"Solomon Islands Time","population":56298,"modificationDate":"2019-10-28"}, -{"geonameId":"3185672","name":"Fier","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":56297,"modificationDate":"2012-01-19"}, -{"geonameId":"2636769","name":"Stourbridge","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":56284,"modificationDate":"2011-03-03"}, -{"geonameId":"1348747","name":"Bankra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56273,"modificationDate":"2014-10-14"}, -{"geonameId":"1636507","name":"Mendaha","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":56268,"modificationDate":"2014-04-06"}, -{"geonameId":"2798139","name":"Forest","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":56254,"modificationDate":"2020-05-25"}, -{"geonameId":"1273766","name":"Dabhoi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56253,"modificationDate":"2014-10-13"}, -{"geonameId":"1626754","name":"Sleman","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":56215,"modificationDate":"2016-01-07"}, -{"geonameId":"1810553","name":"Gaogou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":56214,"modificationDate":"2012-06-05"}, -{"geonameId":"3682573","name":"Espinal","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":56213,"modificationDate":"2018-09-05"}, -{"geonameId":"3526992","name":"Huauchinango","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":56206,"modificationDate":"2018-11-03"}, -{"geonameId":"2300372","name":"Hohoe","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":56202,"modificationDate":"2019-12-06"}, -{"geonameId":"784227","name":"Vranje","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":56199,"modificationDate":"2012-04-17"}, -{"geonameId":"548442","name":"Kirishi","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":56190,"modificationDate":"2019-09-05"}, -{"geonameId":"746666","name":"Gölcük","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":56189,"modificationDate":"2018-05-14"}, -{"geonameId":"2037913","name":"Linghai","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":56176,"modificationDate":"2012-01-18"}, -{"geonameId":"3666577","name":"Turbaco","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":56171,"modificationDate":"2018-07-04"}, -{"geonameId":"3694112","name":"Paita","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":56151,"modificationDate":"2012-07-19"}, -{"geonameId":"4160705","name":"Kendale Lakes","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":56148,"modificationDate":"2011-05-14"}, -{"geonameId":"4223379","name":"Smyrna","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":56146,"modificationDate":"2017-03-09"}, -{"geonameId":"4990512","name":"Dearborn Heights","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":56145,"modificationDate":"2017-05-23"}, -{"geonameId":"1276948","name":"Bāri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56136,"modificationDate":"2014-10-14"}, -{"geonameId":"400666","name":"Ródos","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":56128,"modificationDate":"2017-07-14"}, -{"geonameId":"1261086","name":"Obra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56110,"modificationDate":"2015-08-07"}, -{"geonameId":"2841648","name":"Sankt Augustin","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":56094,"modificationDate":"2015-09-04"}, -{"geonameId":"1271079","name":"Gohāna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56093,"modificationDate":"2015-01-07"}, -{"geonameId":"5384471","name":"Porterville","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":56058,"modificationDate":"2017-03-09"}, -{"geonameId":"5102713","name":"Piscataway","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":56044,"modificationDate":"2017-05-23"}, -{"geonameId":"1632861","name":"Pandak","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":56043,"modificationDate":"2018-12-04"}, -{"geonameId":"4153471","name":"Doral","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":56035,"modificationDate":"2017-03-09"}, -{"geonameId":"1789897","name":"Zijinglu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":56033,"modificationDate":"2015-06-07"}, -{"geonameId":"4628735","name":"Hendersonville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":56018,"modificationDate":"2017-03-09"}, -{"geonameId":"2787889","name":"Roeselare","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":56016,"modificationDate":"2008-07-26"}, -{"geonameId":"1832617","name":"Eisen","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":56006,"modificationDate":"2012-01-18"}, -{"geonameId":"1269154","name":"Jatani","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":56003,"modificationDate":"2014-10-14"}, -{"geonameId":"11609988","name":"Joymontop","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":56000,"modificationDate":"2017-07-14"}, -{"geonameId":"194160","name":"Kapenguria","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":56000,"modificationDate":"2017-11-07"}, -{"geonameId":"1082243","name":"Ambilobe","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":56000,"modificationDate":"2018-09-07"}, -{"geonameId":"563379","name":"Ezhva","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":56000,"modificationDate":"2012-01-17"}, -{"geonameId":"1262039","name":"Nāmakkal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":55997,"modificationDate":"2014-10-14"}, -{"geonameId":"3466174","name":"Cianorte","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":55994,"modificationDate":"2019-12-05"}, -{"geonameId":"1576633","name":"Lạng Sơn","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":55981,"modificationDate":"2019-01-09"}, -{"geonameId":"1797575","name":"Qinnan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":55975,"modificationDate":"2006-01-17"}, -{"geonameId":"200067","name":"Bungoma","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":55962,"modificationDate":"2013-06-27"}, -{"geonameId":"1271819","name":"Gadwāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":55952,"modificationDate":"2018-05-27"}, -{"geonameId":"534838","name":"Liski","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":55939,"modificationDate":"2019-09-05"}, -{"geonameId":"6332422","name":"Morningside Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":55929,"modificationDate":"2017-12-06"}, -{"geonameId":"699553","name":"Novohrad-Volynskyi","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":55925,"modificationDate":"2017-12-18"}, -{"geonameId":"3621911","name":"San Francisco","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":55923,"modificationDate":"2018-12-05"}, -{"geonameId":"2221504","name":"Tiko","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":55914,"modificationDate":"2014-10-06"}, -{"geonameId":"1260707","name":"Pālitāna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":55913,"modificationDate":"2014-10-13"}, -{"geonameId":"1261227","name":"Nokha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":55911,"modificationDate":"2014-10-14"}, -{"geonameId":"1265310","name":"Lāharpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":55911,"modificationDate":"2015-09-06"}, -{"geonameId":"1732891","name":"Kuala Selangor","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":55887,"modificationDate":"2012-01-17"}, -{"geonameId":"1718306","name":"Carmona","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":55887,"modificationDate":"2017-12-13"}, -{"geonameId":"320879","name":"Bolvadin","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":55870,"modificationDate":"2012-04-05"}, -{"geonameId":"3124132","name":"Cuenca","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":55866,"modificationDate":"2019-09-05"}, -{"geonameId":"1261739","name":"Narwanal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":55850,"modificationDate":"2020-06-10"}, -{"geonameId":"1921372","name":"Dalianwan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":55841,"modificationDate":"2006-01-17"}, -{"geonameId":"2038158","name":"Changling","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":55841,"modificationDate":"2012-01-18"}, -{"geonameId":"1153557","name":"Chumphon","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":55835,"modificationDate":"2012-04-05"}, -{"geonameId":"2527645","name":"Tirhanimîne","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":55827,"modificationDate":"2016-11-29"}, -{"geonameId":"4488762","name":"Rocky Mount","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":55806,"modificationDate":"2017-05-07"}, -{"geonameId":"3397909","name":"Itapipoca","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":55784,"modificationDate":"2012-08-03"}, -{"geonameId":"2615006","name":"Randers","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":55780,"modificationDate":"2019-02-27"}, -{"geonameId":"5720727","name":"Corvallis","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":55780,"modificationDate":"2017-03-09"}, -{"geonameId":"2928963","name":"Eschweiler","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":55778,"modificationDate":"2015-09-04"}, -{"geonameId":"2363534","name":"Tzevie","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":55775,"modificationDate":"2020-06-10"}, -{"geonameId":"772621","name":"Ełk","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":55769,"modificationDate":"2010-10-28"}, -{"geonameId":"3170116","name":"Portici","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":55765,"modificationDate":"2014-01-11"}, -{"geonameId":"3453150","name":"Ponta Porã","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":55763,"modificationDate":"2017-05-07"}, -{"geonameId":"3437127","name":"San Antonio","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":55754,"modificationDate":"2018-04-09"}, -{"geonameId":"364706","name":"Umm Ruwaba","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":55742,"modificationDate":"2012-04-06"}, -{"geonameId":"4228147","name":"Valdosta","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":55724,"modificationDate":"2017-03-09"}, -{"geonameId":"1850108","name":"Tomigusuku","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":55715,"modificationDate":"2017-07-22"}, -{"geonameId":"1269665","name":"Islāmpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":55691,"modificationDate":"2014-10-14"}, -{"geonameId":"2638678","name":"Sale","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":55689,"modificationDate":"2011-03-03"}, -{"geonameId":"737054","name":"Zile","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":55680,"modificationDate":"2012-01-18"}, -{"geonameId":"1267904","name":"Karād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":55663,"modificationDate":"2016-06-22"}, -{"geonameId":"5355180","name":"Hanford","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":55659,"modificationDate":"2017-03-09"}, -{"geonameId":"1770351","name":"Kampung Bukit Baharu","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":55656,"modificationDate":"2012-01-17"}, -{"geonameId":"3463900","name":"Estância","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":55654,"modificationDate":"2012-08-03"}, -{"geonameId":"1705440","name":"Lubao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":55645,"modificationDate":"2017-12-13"}, -{"geonameId":"1125444","name":"Shibergan","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":55641,"modificationDate":"2020-06-09"}, -{"geonameId":"1837706","name":"Sangju","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":55640,"modificationDate":"2012-01-18"}, -{"geonameId":"1861244","name":"Iwade","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":55633,"modificationDate":"2017-07-22"}, -{"geonameId":"2268406","name":"Évora","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":55620,"modificationDate":"2018-05-01"}, -{"geonameId":"1609610","name":"Klaeng","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":55619,"modificationDate":"2012-01-16"}, -{"geonameId":"8542188","name":"Dakhla","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":55618,"modificationDate":"2018-09-03"}, -{"geonameId":"3083988","name":"Świętochłowice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":55600,"modificationDate":"2010-10-17"}, -{"geonameId":"5416329","name":"Castle Rock","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":55591,"modificationDate":"2017-03-09"}, -{"geonameId":"1803365","name":"Linqiong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":55587,"modificationDate":"2012-01-18"}, -{"geonameId":"693381","name":"Snizhne","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":55587,"modificationDate":"2014-06-05"}, -{"geonameId":"4258313","name":"Greenwood","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":55586,"modificationDate":"2017-05-23"}, -{"geonameId":"235039","name":"Arua","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":55585,"modificationDate":"2016-06-22"}, -{"geonameId":"1513604","name":"Xiva","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":55567,"modificationDate":"2020-04-08"}, -{"geonameId":"172349","name":"At Tall","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":55561,"modificationDate":"2016-12-01"}, -{"geonameId":"3925212","name":"Cacoal","countryName":"Brazil","timeZoneName":"America/Porto_Velho","timeZoneOffsetNameWithoutDst":"Amazon Time","population":55560,"modificationDate":"2013-10-22"}, -{"geonameId":"1651461","name":"Amuntai","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":55560,"modificationDate":"2007-11-09"}, -{"geonameId":"3994616","name":"Nuevo Casas Grandes","countryName":"Mexico","timeZoneName":"America/Chihuahua","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":55553,"modificationDate":"2018-11-03"}, -{"geonameId":"4887463","name":"Chicago Lawn","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":55551,"modificationDate":"2017-12-06"}, -{"geonameId":"747538","name":"Eminönü","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":55548,"modificationDate":"2012-10-11"}, -{"geonameId":"5120478","name":"Hempstead","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":55547,"modificationDate":"2017-05-23"}, -{"geonameId":"3359510","name":"Wellington","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":55543,"modificationDate":"2017-01-18"}, -{"geonameId":"5378044","name":"Novato","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":55530,"modificationDate":"2017-03-09"}, -{"geonameId":"4515843","name":"Kettering","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":55525,"modificationDate":"2017-05-23"}, -{"geonameId":"358970","name":"Basyūn","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":55523,"modificationDate":"2018-03-15"}, -{"geonameId":"3686922","name":"Cereté","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":55513,"modificationDate":"2018-07-04"}, -{"geonameId":"5063805","name":"Bellevue","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":55510,"modificationDate":"2017-03-09"}, -{"geonameId":"470676","name":"Vyasma","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":55500,"modificationDate":"2020-06-10"}, -{"geonameId":"3441894","name":"Maldonado","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":55478,"modificationDate":"2019-02-26"}, -{"geonameId":"1648918","name":"Besuki","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":55465,"modificationDate":"2007-11-09"}, -{"geonameId":"617486","name":"Rybniza","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":55455,"modificationDate":"2020-06-10"}, -{"geonameId":"5888377","name":"Aurora","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":55445,"modificationDate":"2019-09-05"}, -{"geonameId":"3897774","name":"Buin","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":55441,"modificationDate":"2013-01-11"}, -{"geonameId":"5810301","name":"Shoreline","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":55439,"modificationDate":"2017-03-09"}, -{"geonameId":"4058553","name":"Decatur","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":55437,"modificationDate":"2017-09-17"}, -{"geonameId":"3449099","name":"São Gabriel","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":55434,"modificationDate":"2012-08-03"}, -{"geonameId":"1818051","name":"Anjiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":55421,"modificationDate":"2012-01-18"}, -{"geonameId":"1865309","name":"Anan","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":55421,"modificationDate":"2017-07-22"}, -{"geonameId":"3573738","name":"San Fernando","countryName":"Trinidad and Tobago","timeZoneName":"America/Port_of_Spain","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":55419,"modificationDate":"2017-10-04"}, -{"geonameId":"2033667","name":"Xinqing","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":55415,"modificationDate":"2013-05-07"}, -{"geonameId":"1843082","name":"Gapyeong","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":55415,"modificationDate":"2016-01-11"}, -{"geonameId":"5381110","name":"Paramount","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":55412,"modificationDate":"2017-03-09"}, -{"geonameId":"64460","name":"Beledweyne","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":55410,"modificationDate":"2017-04-02"}, -{"geonameId":"3543961","name":"Placetas","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":55408,"modificationDate":"2016-01-07"}, -{"geonameId":"2977295","name":"Saint-Quentin","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":55407,"modificationDate":"2016-02-18"}, -{"geonameId":"2378736","name":"Kaédi","countryName":"Mauritania","timeZoneName":"Africa/Nouakchott","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":55374,"modificationDate":"2017-08-24"}, -{"geonameId":"761228","name":"Pruszków","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":55371,"modificationDate":"2010-10-28"}, -{"geonameId":"3465721","name":"Concórdia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":55367,"modificationDate":"2017-08-15"}, -{"geonameId":"320557","name":"Bozüyük","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":55365,"modificationDate":"2012-05-06"}, -{"geonameId":"2618528","name":"Kolding","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":55363,"modificationDate":"2019-09-05"}, -{"geonameId":"4720039","name":"Port Arthur","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":55340,"modificationDate":"2017-03-09"}, -{"geonameId":"2034600","name":"Taikang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":55316,"modificationDate":"2013-04-03"}, -{"geonameId":"6694821","name":"Nanto-shi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":55315,"modificationDate":"2017-07-22"}, -{"geonameId":"2111018","name":"Shiroi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":55314,"modificationDate":"2017-07-22"}, -{"geonameId":"1799352","name":"Yutan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":55312,"modificationDate":"2013-06-04"}, -{"geonameId":"4917592","name":"Anderson","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":55305,"modificationDate":"2017-05-23"}, -{"geonameId":"1621678","name":"Wedi","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":55300,"modificationDate":"2012-01-17"}, -{"geonameId":"1269422","name":"Jālaun","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":55299,"modificationDate":"2014-10-14"}, -{"geonameId":"3993179","name":"Pátzcuaro","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":55298,"modificationDate":"2018-11-03"}, -{"geonameId":"3107775","name":"Torrelavega","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":55297,"modificationDate":"2015-09-03"}, -{"geonameId":"3393400","name":"Pacatuba","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":55291,"modificationDate":"2012-08-03"}, -{"geonameId":"1267758","name":"Karīmganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":55290,"modificationDate":"2014-10-13"}, -{"geonameId":"1852849","name":"Satte","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":55286,"modificationDate":"2017-07-22"}, -{"geonameId":"2959223","name":"Ahlen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":55280,"modificationDate":"2015-09-04"}, -{"geonameId":"4174744","name":"Tamiami","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":55271,"modificationDate":"2011-05-14"}, -{"geonameId":"2187454","name":"Mangere","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":55266,"modificationDate":"2011-08-01"}, -{"geonameId":"2647639","name":"Halesowen","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":55265,"modificationDate":"2011-03-03"}, -{"geonameId":"1497951","name":"Nazarovo","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":55252,"modificationDate":"2019-09-05"}, -{"geonameId":"1185127","name":"Ratanpur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":55241,"modificationDate":"2020-06-10"}, -{"geonameId":"2653877","name":"Canterbury","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":55240,"modificationDate":"2019-09-05"}, -{"geonameId":"2229761","name":"Kribi","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":55224,"modificationDate":"2018-05-29"}, -{"geonameId":"2225991","name":"Mora","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":55216,"modificationDate":"2012-01-16"}, -{"geonameId":"547560","name":"Klimovsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":55206,"modificationDate":"2019-09-05"}, -{"geonameId":"1262852","name":"Mokameh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":55203,"modificationDate":"2015-10-04"}, -{"geonameId":"6690862","name":"South Croydon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":55198,"modificationDate":"2012-06-01"}, -{"geonameId":"4371582","name":"Towson","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":55197,"modificationDate":"2011-05-14"}, -{"geonameId":"730496","name":"Kazanlak","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":55196,"modificationDate":"2016-08-03"}, -{"geonameId":"997140","name":"Heilbron","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":55196,"modificationDate":"2012-07-12"}, -{"geonameId":"1698548","name":"Naic","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":55195,"modificationDate":"2017-12-13"}, -{"geonameId":"2038421","name":"Bayan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":55186,"modificationDate":"2013-05-08"}, -{"geonameId":"1275582","name":"Etawah","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":55185,"modificationDate":"2020-06-10"}, -{"geonameId":"1252956","name":"Wanparti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":55182,"modificationDate":"2018-05-27"}, -{"geonameId":"4945588","name":"North Chicopee","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":55179,"modificationDate":"2017-05-23"}, -{"geonameId":"2518505","name":"Elda","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":55168,"modificationDate":"2012-03-04"}, -{"geonameId":"2499055","name":"Drean","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":55147,"modificationDate":"2012-01-19"}, -{"geonameId":"4914557","name":"Uptown","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":55137,"modificationDate":"2017-12-06"}, -{"geonameId":"1586288","name":"Cần Giờ","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":55137,"modificationDate":"2014-12-02"}, -{"geonameId":"144794","name":"Ābyek","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":55128,"modificationDate":"2006-08-21"}, -{"geonameId":"3445153","name":"Viana","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":55122,"modificationDate":"2012-08-03"}, -{"geonameId":"213940","name":"Kasongo","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":55118,"modificationDate":"2012-04-05"}, -{"geonameId":"4172131","name":"Sarasota","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":55118,"modificationDate":"2020-05-30"}, -{"geonameId":"3191376","name":"Šabac","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":55114,"modificationDate":"2016-05-18"}, -{"geonameId":"1185293","name":"Narail","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":55112,"modificationDate":"2016-11-09"}, -{"geonameId":"3948642","name":"Abancay","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":55111,"modificationDate":"2019-09-05"}, -{"geonameId":"1610469","name":"Kalasin","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":55102,"modificationDate":"2012-01-16"}, -{"geonameId":"6853140","name":"Lesnoy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":55100,"modificationDate":"2012-01-20"}, -{"geonameId":"1257565","name":"Sāmalkot","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":55097,"modificationDate":"2018-07-04"}, -{"geonameId":"2527089","name":"Tiznit","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":55092,"modificationDate":"2016-11-02"}, -{"geonameId":"292913","name":"Al Ain City","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":55091,"modificationDate":"2019-05-29"}, -{"geonameId":"500019","name":"Rybatskoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":55076,"modificationDate":"2016-08-19"}, -{"geonameId":"6146279","name":"Sherwood Park","countryName":"Canada","timeZoneName":"America/Edmonton","timeZoneOffsetNameWithoutDst":"Mountain Time","population":55063,"modificationDate":"2007-02-13"}, -{"geonameId":"1647179","name":"Cepu","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":55055,"modificationDate":"2013-05-09"}, -{"geonameId":"478724","name":"Uritsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":55037,"modificationDate":"2014-02-06"}, -{"geonameId":"3124794","name":"Collado-Villalba","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":55027,"modificationDate":"2010-04-22"}, -{"geonameId":"3448351","name":"São Pedro da Aldeia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":55014,"modificationDate":"2012-08-03"}, -{"geonameId":"1855753","name":"Nakatsugawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":55011,"modificationDate":"2017-07-22"}, -{"geonameId":"6825277","name":"Shilin","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":55000,"modificationDate":"2013-11-05"}, -{"geonameId":"225284","name":"'Ali Sabieh","countryName":"Djibouti","timeZoneName":"Africa/Djibouti","timeZoneOffsetNameWithoutDst":"East Africa Time","population":55000,"modificationDate":"2019-04-17"}, -{"geonameId":"11762608","name":"Yeongam","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":55000,"modificationDate":"2018-02-18"}, -{"geonameId":"3618929","name":"Jinotega","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":55000,"modificationDate":"2018-10-28"}, -{"geonameId":"465057","name":"Zamoskvorech’ye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":55000,"modificationDate":"2014-02-06"}, -{"geonameId":"507338","name":"Bsatsevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":55000,"modificationDate":"2020-06-10"}, -{"geonameId":"1510205","name":"Berëzovskiy","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":55000,"modificationDate":"2018-08-22"}, -{"geonameId":"711660","name":"Boryspil’","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":55000,"modificationDate":"2014-10-01"}, -{"geonameId":"1278580","name":"Anjangaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":54999,"modificationDate":"2015-08-07"}, -{"geonameId":"349715","name":"Sebennytos","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":54980,"modificationDate":"2020-06-11"}, -{"geonameId":"1272733","name":"Dholka","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":54977,"modificationDate":"2014-10-13"}, -{"geonameId":"2483757","name":"La Reghia-Alma","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":54962,"modificationDate":"2020-06-11"}, -{"geonameId":"2036734","name":"Huangnihe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":54959,"modificationDate":"2012-01-18"}, -{"geonameId":"943960","name":"Viljoenskroon","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":54955,"modificationDate":"2012-07-12"}, -{"geonameId":"6138501","name":"Saint-Jérôme","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":54948,"modificationDate":"2016-06-22"}, -{"geonameId":"5114418","name":"Cypress Hills","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":54944,"modificationDate":"2017-04-16"}, -{"geonameId":"3404117","name":"Caicó","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":54934,"modificationDate":"2012-08-03"}, -{"geonameId":"1254346","name":"Tirur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":54934,"modificationDate":"2015-11-08"}, -{"geonameId":"4845419","name":"West Haven","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":54927,"modificationDate":"2017-05-23"}, -{"geonameId":"1506271","name":"Gorno-Altaysk","countryName":"Russia","timeZoneName":"Asia/Barnaul","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":54917,"modificationDate":"2016-11-23"}, -{"geonameId":"787487","name":"Ohrid","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":54908,"modificationDate":"2019-09-05"}, -{"geonameId":"5388867","name":"Rosemead","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":54908,"modificationDate":"2017-03-09"}, -{"geonameId":"3988333","name":"Sabinas","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":54905,"modificationDate":"2018-11-03"}, -{"geonameId":"2953358","name":"Bad Salzuflen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":54899,"modificationDate":"2015-09-04"}, -{"geonameId":"3173721","name":"Matera","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":54891,"modificationDate":"2018-03-16"}, -{"geonameId":"2928396","name":"Euskirchen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":54889,"modificationDate":"2015-09-04"}, -{"geonameId":"3167731","name":"San Severo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":54880,"modificationDate":"2018-03-16"}, -{"geonameId":"4890701","name":"Edgewater","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":54873,"modificationDate":"2017-12-06"}, -{"geonameId":"109380","name":"Al Khafjī","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":54857,"modificationDate":"2012-01-16"}, -{"geonameId":"4502434","name":"Jackson","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":54856,"modificationDate":"2017-05-23"}, -{"geonameId":"5356868","name":"Highland","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":54854,"modificationDate":"2017-03-09"}, -{"geonameId":"1803551","name":"Lingcheng","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":54848,"modificationDate":"2012-01-18"}, -{"geonameId":"1268135","name":"Kāndi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":54848,"modificationDate":"2014-10-14"}, -{"geonameId":"3539560","name":"San José de las Lajas","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":54847,"modificationDate":"2011-02-18"}, -{"geonameId":"3447785","name":"Seropédica","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":54846,"modificationDate":"2012-08-03"}, -{"geonameId":"7303786","name":"Jonquière","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":54842,"modificationDate":"2016-06-22"}, -{"geonameId":"3404558","name":"Cabedelo","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":54839,"modificationDate":"2012-08-03"}, -{"geonameId":"921815","name":"Mamoudzou","countryName":"Mayotte","timeZoneName":"Indian/Mayotte","timeZoneOffsetNameWithoutDst":"East Africa Time","population":54831,"modificationDate":"2018-08-17"}, -{"geonameId":"2872504","name":"Meerbusch","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":54826,"modificationDate":"2018-07-25"}, -{"geonameId":"2035836","name":"Manzhouli","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":54808,"modificationDate":"2012-01-18"}, -{"geonameId":"3439317","name":"Caaguazú","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":54808,"modificationDate":"2018-04-09"}, -{"geonameId":"7302815","name":"Bandar Labuan","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":54752,"modificationDate":"2010-06-17"}, -{"geonameId":"4903024","name":"Mount Prospect","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":54747,"modificationDate":"2017-05-23"}, -{"geonameId":"2806914","name":"Wolfenbüttel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":54740,"modificationDate":"2015-09-04"}, -{"geonameId":"2646329","name":"Huyton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":54738,"modificationDate":"2011-03-03"}, -{"geonameId":"1851368","name":"Suwa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":54735,"modificationDate":"2017-07-22"}, -{"geonameId":"2263827","name":"Rio de Mouro","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":54695,"modificationDate":"2018-02-14"}, -{"geonameId":"2036106","name":"Liaozhong","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":54691,"modificationDate":"2012-01-18"}, -{"geonameId":"2897216","name":"Hürth","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":54678,"modificationDate":"2015-11-29"}, -{"geonameId":"349114","name":"Sherbin","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":54676,"modificationDate":"2020-06-11"}, -{"geonameId":"2656235","name":"Barry","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":54673,"modificationDate":"2017-06-12"}, -{"geonameId":"2503755","name":"Boghni","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":54666,"modificationDate":"2019-03-14"}, -{"geonameId":"2990355","name":"Niort","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":54660,"modificationDate":"2016-02-18"}, -{"geonameId":"1271346","name":"Ghātāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":54658,"modificationDate":"2014-10-14"}, -{"geonameId":"1684681","name":"Tacurong","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":54648,"modificationDate":"2017-12-13"}, -{"geonameId":"2265467","name":"Odivelas","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":54624,"modificationDate":"2011-08-28"}, -{"geonameId":"5338783","name":"Colton","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":54621,"modificationDate":"2017-03-09"}, -{"geonameId":"1253750","name":"Unjha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":54620,"modificationDate":"2014-10-13"}, -{"geonameId":"3058780","name":"Martin","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":54618,"modificationDate":"2020-01-18"}, -{"geonameId":"650946","name":"Kotka","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":54616,"modificationDate":"2019-09-05"}, -{"geonameId":"3583480","name":"San Marcos","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":54615,"modificationDate":"2019-11-06"}, -{"geonameId":"11979227","name":"Encanto","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":54614,"modificationDate":"2018-11-24"}, -{"geonameId":"3457952","name":"Manhuaçu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":54607,"modificationDate":"2012-08-03"}, -{"geonameId":"664460","name":"Turda","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":54586,"modificationDate":"2020-05-14"}, -{"geonameId":"3033791","name":"Belfort","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":54562,"modificationDate":"2019-09-05"}, -{"geonameId":"3940002","name":"Huacho","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":54545,"modificationDate":"2012-07-19"}, -{"geonameId":"173480","name":"Meyedine","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":54534,"modificationDate":"2020-06-10"}, -{"geonameId":"1256854","name":"Sendhwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":54530,"modificationDate":"2016-01-07"}, -{"geonameId":"577893","name":"Belorechensk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":54526,"modificationDate":"2019-09-05"}, -{"geonameId":"3684917","name":"El Banco","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":54522,"modificationDate":"2018-08-08"}, -{"geonameId":"5501344","name":"Carson City","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":54521,"modificationDate":"2019-09-05"}, -{"geonameId":"3515358","name":"San Bernardino Tlaxcalancingo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":54517,"modificationDate":"2018-11-03"}, -{"geonameId":"3934608","name":"Moquegua","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":54517,"modificationDate":"2019-09-05"}, -{"geonameId":"3861344","name":"Chivilcoy","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":54514,"modificationDate":"2015-04-22"}, -{"geonameId":"1862612","name":"Himimachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":54510,"modificationDate":"2017-07-22"}, -{"geonameId":"1254343","name":"Tiruttangal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":54499,"modificationDate":"2018-12-04"}, -{"geonameId":"3590219","name":"San Francisco El Alto","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":54493,"modificationDate":"2018-12-05"}, -{"geonameId":"3454235","name":"Penápolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":54477,"modificationDate":"2012-08-03"}, -{"geonameId":"110325","name":"Duwadami","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":54474,"modificationDate":"2020-06-10"}, -{"geonameId":"1214724","name":"Langsa","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":54465,"modificationDate":"2015-11-07"}, -{"geonameId":"1799552","name":"Nanzhou","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":54449,"modificationDate":"2013-06-04"}, -{"geonameId":"5604045","name":"Pocatello","countryName":"United States","timeZoneName":"America/Boise","timeZoneOffsetNameWithoutDst":"Mountain Time","population":54441,"modificationDate":"2017-03-09"}, -{"geonameId":"4148708","name":"Bradenton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":54437,"modificationDate":"2017-03-09"}, -{"geonameId":"2302821","name":"Bolgatanga","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":54430,"modificationDate":"2020-03-02"}, -{"geonameId":"3682281","name":"Funza","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":54421,"modificationDate":"2018-07-04"}, -{"geonameId":"1185138","name":"Pirojpur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":54418,"modificationDate":"2020-02-11"}, -{"geonameId":"3458131","name":"Mairiporã","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":54415,"modificationDate":"2013-05-11"}, -{"geonameId":"725905","name":"Vidin","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":54409,"modificationDate":"2019-03-01"}, -{"geonameId":"4908033","name":"Rogers Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":54402,"modificationDate":"2017-12-06"}, -{"geonameId":"4955336","name":"Weymouth","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":54395,"modificationDate":"2017-05-23"}, -{"geonameId":"4169130","name":"Port Charlotte","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":54392,"modificationDate":"2011-05-14"}, -{"geonameId":"1292313","name":"Tharyarwady","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":54386,"modificationDate":"2016-06-01"}, -{"geonameId":"4903780","name":"Normal","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":54373,"modificationDate":"2017-05-23"}, -{"geonameId":"3038334","name":"Ajaccio","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":54364,"modificationDate":"2019-09-05"}, -{"geonameId":"3556437","name":"Jagüey Grande","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":54363,"modificationDate":"2015-12-06"}, -{"geonameId":"288899","name":"Bahlah","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":54338,"modificationDate":"2020-06-10"}, -{"geonameId":"2021618","name":"Krasnokamensk","countryName":"Russia","timeZoneName":"Asia/Chita","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":54316,"modificationDate":"2019-09-05"}, -{"geonameId":"1037390","name":"Mozambique","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":54315,"modificationDate":"2020-06-11"}, -{"geonameId":"1256382","name":"Siddhapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":54313,"modificationDate":"2016-06-11"}, -{"geonameId":"1272670","name":"Dhūri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":54302,"modificationDate":"2015-06-07"}, -{"geonameId":"4733624","name":"Spring","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":54298,"modificationDate":"2011-05-14"}, -{"geonameId":"3437444","name":"Presidente Franco","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":54292,"modificationDate":"2019-03-29"}, -{"geonameId":"4145805","name":"Allapattah","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":54289,"modificationDate":"2013-05-05"}, -{"geonameId":"1854384","name":"Okaya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":54286,"modificationDate":"2017-07-22"}, -{"geonameId":"2776421","name":"Hietzing","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":54265,"modificationDate":"2018-07-29"}, -{"geonameId":"2648187","name":"Gravesend","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":54263,"modificationDate":"2018-08-01"}, -{"geonameId":"6295533","name":"Zürich (Kreis 11)","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":54260,"modificationDate":"2012-07-30"}, -{"geonameId":"2222230","name":"Sangmelina","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":54251,"modificationDate":"2020-06-10"}, -{"geonameId":"5808276","name":"Richland","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":54248,"modificationDate":"2017-05-21"}, -{"geonameId":"1256369","name":"Sidhi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":54242,"modificationDate":"2015-08-07"}, -{"geonameId":"2953504","name":"Baden-Baden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":54239,"modificationDate":"2019-09-05"}, -{"geonameId":"2650396","name":"Eastleigh","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":54225,"modificationDate":"2012-01-17"}, -{"geonameId":"3518221","name":"Zinacantepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":54220,"modificationDate":"2018-04-06"}, -{"geonameId":"4689550","name":"Euless","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":54219,"modificationDate":"2017-03-09"}, -{"geonameId":"539061","name":"Kupchino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":54198,"modificationDate":"2013-11-10"}, -{"geonameId":"358115","name":"Deshna","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":54197,"modificationDate":"2020-06-11"}, -{"geonameId":"3429790","name":"Puerto Eldorado","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":54189,"modificationDate":"2016-01-30"}, -{"geonameId":"4568451","name":"Trujillo Alto","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":54189,"modificationDate":"2015-08-03"}, -{"geonameId":"2742611","name":"Aveiro","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":54162,"modificationDate":"2018-04-30"}, -{"geonameId":"4377664","name":"Blue Springs","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":54148,"modificationDate":"2017-05-23"}, -{"geonameId":"102651","name":"Sabiya","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":54108,"modificationDate":"2020-06-10"}, -{"geonameId":"4154047","name":"East Pensacola Heights","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":54104,"modificationDate":"2010-09-05"}, -{"geonameId":"261604","name":"Kalamata","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":54100,"modificationDate":"2016-12-05"}, -{"geonameId":"459201","name":"Jūrmala","countryName":"Latvia","timeZoneName":"Europe/Riga","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":54088,"modificationDate":"2016-12-02"}, -{"geonameId":"3456826","name":"Montenegro","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":54057,"modificationDate":"2012-07-29"}, -{"geonameId":"3179075","name":"Cerignola","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":54056,"modificationDate":"2018-03-16"}, -{"geonameId":"3129857","name":"Aranjuez","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":54055,"modificationDate":"2012-03-04"}, -{"geonameId":"5354819","name":"Hacienda Heights","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":54038,"modificationDate":"2011-05-14"}, -{"geonameId":"735861","name":"Neapolis","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":54027,"modificationDate":"2020-06-10"}, -{"geonameId":"3545841","name":"Nuevitas","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":54022,"modificationDate":"2016-02-07"}, -{"geonameId":"2500904","name":"Dar Chioukh","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":54022,"modificationDate":"2012-01-19"}, -{"geonameId":"1851357","name":"Suzaka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":54022,"modificationDate":"2017-07-22"}, -{"geonameId":"2970777","name":"Vannes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":54020,"modificationDate":"2018-02-06"}, -{"geonameId":"2834498","name":"Schweinfurt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":54012,"modificationDate":"2019-09-05"}, -{"geonameId":"1252840","name":"Wokha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":54010,"modificationDate":"2014-10-14"}, -{"geonameId":"2392505","name":"Nikki","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":54009,"modificationDate":"2018-03-21"}, -{"geonameId":"472072","name":"Altuf’yevskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":54000,"modificationDate":"2014-02-06"}, -{"geonameId":"5130334","name":"Ozone Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":53985,"modificationDate":"2017-04-16"}, -{"geonameId":"2864054","name":"Neustadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":53984,"modificationDate":"2018-12-31"}, -{"geonameId":"3165322","name":"Trani","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":53981,"modificationDate":"2018-03-16"}, -{"geonameId":"2975921","name":"Sartrouville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":53980,"modificationDate":"2016-02-18"}, -{"geonameId":"5964215","name":"Granby","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":53979,"modificationDate":"2019-09-05"}, -{"geonameId":"2229748","name":"Kumbo","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":53970,"modificationDate":"2012-01-16"}, -{"geonameId":"2996568","name":"Maisons-Alfort","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":53964,"modificationDate":"2019-03-26"}, -{"geonameId":"1268341","name":"Kālna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53964,"modificationDate":"2014-10-14"}, -{"geonameId":"3436199","name":"Azul","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":53941,"modificationDate":"2019-06-13"}, -{"geonameId":"482965","name":"Timashëvsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":53940,"modificationDate":"2011-11-17"}, -{"geonameId":"496278","name":"Severomorsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":53921,"modificationDate":"2019-09-05"}, -{"geonameId":"1277091","name":"Bārāmati","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53919,"modificationDate":"2014-10-13"}, -{"geonameId":"260114","name":"Cydonia","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":53910,"modificationDate":"2020-06-10"}, -{"geonameId":"3902949","name":"Tiquipaya","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":53904,"modificationDate":"2017-12-14"}, -{"geonameId":"565381","name":"Domodedovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":53887,"modificationDate":"2019-09-05"}, -{"geonameId":"6640032","name":"Briarwood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":53877,"modificationDate":"2017-12-06"}, -{"geonameId":"140521","name":"Bījār","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":53871,"modificationDate":"2010-08-09"}, -{"geonameId":"120972","name":"Pīshvā","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":53856,"modificationDate":"2014-09-04"}, -{"geonameId":"356933","name":"Farshuut","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":53851,"modificationDate":"2020-06-11"}, -{"geonameId":"5335006","name":"Cathedral City","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":53826,"modificationDate":"2017-03-09"}, -{"geonameId":"2994798","name":"Meaux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":53811,"modificationDate":"2016-02-18"}, -{"geonameId":"2290462","name":"Fort Hittos","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":53808,"modificationDate":"2020-06-10"}, -{"geonameId":"5100280","name":"Lakewood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":53805,"modificationDate":"2017-05-23"}, -{"geonameId":"470252","name":"Wyschni-Wolotschek","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":53800,"modificationDate":"2020-06-10"}, -{"geonameId":"707292","name":"Izyum","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":53778,"modificationDate":"2014-07-08"}, -{"geonameId":"5153207","name":"Elyria","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":53775,"modificationDate":"2017-05-23"}, -{"geonameId":"2851746","name":"Pulheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":53762,"modificationDate":"2015-09-04"}, -{"geonameId":"1587919","name":"Bỉm Sơn","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":53754,"modificationDate":"2012-01-16"}, -{"geonameId":"8858088","name":"Jardines de la Silla (Jardines)","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":53742,"modificationDate":"2014-04-11"}, -{"geonameId":"762909","name":"Ostrołęka","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":53740,"modificationDate":"2019-09-05"}, -{"geonameId":"758390","name":"Starachowice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":53739,"modificationDate":"2010-10-06"}, -{"geonameId":"2453662","name":"Markala","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":53738,"modificationDate":"2012-01-18"}, -{"geonameId":"2473744","name":"Hammamet","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":53733,"modificationDate":"2019-09-05"}, -{"geonameId":"1591527","name":"Thuong","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":53728,"modificationDate":"2020-06-09"}, -{"geonameId":"933099","name":"Selebi-Phikwe","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":53727,"modificationDate":"2018-01-24"}, -{"geonameId":"4916288","name":"Wheaton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":53715,"modificationDate":"2017-05-23"}, -{"geonameId":"5417737","name":"Commerce City","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":53696,"modificationDate":"2017-03-09"}, -{"geonameId":"2657697","name":"Acton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":53689,"modificationDate":"2010-09-22"}, -{"geonameId":"3672110","name":"Pitalito","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":53685,"modificationDate":"2015-06-21"}, -{"geonameId":"3625710","name":"Upata","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":53685,"modificationDate":"2018-08-08"}, -{"geonameId":"3827596","name":"Santiago Teyahualco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":53684,"modificationDate":"2018-11-03"}, -{"geonameId":"1145352","name":"Charikar","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":53676,"modificationDate":"2019-02-28"}, -{"geonameId":"3671315","name":"Puerto Tejada","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":53674,"modificationDate":"2018-07-04"}, -{"geonameId":"1268111","name":"Kandukūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53662,"modificationDate":"2014-10-10"}, -{"geonameId":"3032213","name":"Blois","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":53660,"modificationDate":"2019-09-05"}, -{"geonameId":"3182007","name":"Bisceglie","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":53648,"modificationDate":"2018-03-16"}, -{"geonameId":"1255449","name":"Sunām","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53647,"modificationDate":"2015-06-07"}, -{"geonameId":"5099133","name":"Hoboken","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":53635,"modificationDate":"2017-05-23"}, -{"geonameId":"5407529","name":"Watsonville","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":53628,"modificationDate":"2017-03-09"}, -{"geonameId":"7302810","name":"Gaddi Annaram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53622,"modificationDate":"2014-10-10"}, -{"geonameId":"3530531","name":"Coatepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":53621,"modificationDate":"2018-11-03"}, -{"geonameId":"1257001","name":"Sattenapalle","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53603,"modificationDate":"2015-09-06"}, -{"geonameId":"582182","name":"Anapa","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":53600,"modificationDate":"2019-10-28"}, -{"geonameId":"695379","name":"Rowenki","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":53600,"modificationDate":"2020-06-10"}, -{"geonameId":"3673045","name":"Pamplona","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":53587,"modificationDate":"2018-08-08"}, -{"geonameId":"3183541","name":"Acerra","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":53578,"modificationDate":"2015-08-20"}, -{"geonameId":"3177363","name":"Ercolano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":53576,"modificationDate":"2015-08-20"}, -{"geonameId":"367308","name":"Shendi","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":53568,"modificationDate":"2012-01-19"}, -{"geonameId":"709276","name":"Enerhodar","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":53567,"modificationDate":"2020-05-21"}, -{"geonameId":"2548818","name":"Fnidek","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":53559,"modificationDate":"2018-08-06"}, -{"geonameId":"5301388","name":"Lake Havasu City","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":53553,"modificationDate":"2017-03-09"}, -{"geonameId":"3521922","name":"Papantla de Olarte","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":53546,"modificationDate":"2018-11-03"}, -{"geonameId":"1726339","name":"Batac City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":53542,"modificationDate":"2017-12-13"}, -{"geonameId":"2634715","name":"Washington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":53526,"modificationDate":"2013-07-11"}, -{"geonameId":"1270032","name":"Hiriyūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53519,"modificationDate":"2015-11-08"}, -{"geonameId":"571159","name":"Buguruslan","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":53511,"modificationDate":"2019-09-05"}, -{"geonameId":"1274862","name":"Challakere","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53506,"modificationDate":"2015-11-08"}, -{"geonameId":"3619267","name":"El Viejo","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":53504,"modificationDate":"2018-08-08"}, -{"geonameId":"304612","name":"Menemen","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":53489,"modificationDate":"2013-08-06"}, -{"geonameId":"6183590","name":"Woburn","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":53485,"modificationDate":"2020-05-02"}, -{"geonameId":"2654938","name":"Braintree","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":53477,"modificationDate":"2017-06-12"}, -{"geonameId":"3938415","name":"Ilo","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":53476,"modificationDate":"2018-03-14"}, -{"geonameId":"1258581","name":"Rampur Hat","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53468,"modificationDate":"2014-10-14"}, -{"geonameId":"3029974","name":"Brive-la-Gaillarde","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":53466,"modificationDate":"2019-04-10"}, -{"geonameId":"1263427","name":"Masaurhi Buzurg","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53440,"modificationDate":"2016-01-07"}, -{"geonameId":"3036938","name":"Arles","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":53431,"modificationDate":"2019-09-05"}, -{"geonameId":"4832294","name":"Revere","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":53422,"modificationDate":"2017-05-23"}, -{"geonameId":"128831","name":"Kangāvar","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":53414,"modificationDate":"2014-09-04"}, -{"geonameId":"1606033","name":"Suphan Buri","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":53399,"modificationDate":"2012-01-16"}, -{"geonameId":"3034006","name":"Beauvais","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":53393,"modificationDate":"2018-02-06"}, -{"geonameId":"1261110","name":"Nūzvīd","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53391,"modificationDate":"2015-09-06"}, -{"geonameId":"3838793","name":"Río Tercero","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":53389,"modificationDate":"2016-01-30"}, -{"geonameId":"655808","name":"Joensuu","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":53388,"modificationDate":"2016-11-23"}, -{"geonameId":"3598119","name":"Cobán","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":53375,"modificationDate":"2017-09-09"}, -{"geonameId":"8334622","name":"Neu-Hohenschönhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":53374,"modificationDate":"2012-06-09"}, -{"geonameId":"1513966","name":"Guliston","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":53373,"modificationDate":"2019-09-05"}, -{"geonameId":"5106292","name":"West New York","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":53366,"modificationDate":"2017-05-23"}, -{"geonameId":"3398115","name":"Ipojuca","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":53364,"modificationDate":"2012-08-03"}, -{"geonameId":"1168307","name":"Pasrur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":53364,"modificationDate":"2019-12-06"}, -{"geonameId":"3431057","name":"Los Polvorines","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":53354,"modificationDate":"2019-08-07"}, -{"geonameId":"1256693","name":"Shājāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53346,"modificationDate":"2015-09-06"}, -{"geonameId":"1259124","name":"Puttūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53331,"modificationDate":"2014-10-14"}, -{"geonameId":"1879487","name":"Sainei-men","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":53330,"modificationDate":"2020-06-11"}, -{"geonameId":"5411046","name":"Yucaipa","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":53328,"modificationDate":"2017-03-09"}, -{"geonameId":"3467684","name":"Campos do Jordão","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":53319,"modificationDate":"2012-03-10"}, -{"geonameId":"2482090","name":"Sedrata","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":53318,"modificationDate":"2012-01-19"}, -{"geonameId":"1267616","name":"Kasaragod Fort","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53309,"modificationDate":"2020-06-10"}, -{"geonameId":"3026204","name":"Châteauroux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":53301,"modificationDate":"2019-09-05"}, -{"geonameId":"2410763","name":"São Tomé","countryName":"Sao Tome and Principe","timeZoneName":"Africa/Sao_Tome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":53300,"modificationDate":"2019-09-05"}, -{"geonameId":"735914","name":"Katerina","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":53293,"modificationDate":"2020-06-10"}, -{"geonameId":"1278094","name":"Ajodhya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53293,"modificationDate":"2015-08-07"}, -{"geonameId":"1628899","name":"Sampang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":53269,"modificationDate":"2016-01-07"}, -{"geonameId":"1262678","name":"Mubarakpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53263,"modificationDate":"2020-06-16"}, -{"geonameId":"2111568","name":"Ōami","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":53239,"modificationDate":"2016-06-22"}, -{"geonameId":"5352214","name":"Gilroy","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":53231,"modificationDate":"2017-03-09"}, -{"geonameId":"1856456","name":"Mukō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":53222,"modificationDate":"2018-01-14"}, -{"geonameId":"562321","name":"Fryazevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":53212,"modificationDate":"2012-01-17"}, -{"geonameId":"1259811","name":"Phaltan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53202,"modificationDate":"2014-10-13"}, -{"geonameId":"2647570","name":"Hamilton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":53200,"modificationDate":"2017-06-15"}, -{"geonameId":"4168228","name":"Pensacola","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":53193,"modificationDate":"2017-03-09"}, -{"geonameId":"4168930","name":"Poinciana","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":53193,"modificationDate":"2011-05-14"}, -{"geonameId":"1636308","name":"Manokwari","countryName":"Indonesia","timeZoneName":"Asia/Jayapura","timeZoneOffsetNameWithoutDst":"Eastern Indonesia Time","population":53190,"modificationDate":"2015-09-05"}, -{"geonameId":"1257459","name":"Sandīla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53182,"modificationDate":"2015-09-06"}, -{"geonameId":"3691348","name":"Tingo María","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":53177,"modificationDate":"2017-11-12"}, -{"geonameId":"3468014","name":"Camaquã","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":53169,"modificationDate":"2012-08-03"}, -{"geonameId":"739634","name":"Silivri","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":53167,"modificationDate":"2013-10-07"}, -{"geonameId":"3025053","name":"Cholet","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":53160,"modificationDate":"2019-04-10"}, -{"geonameId":"3080526","name":"Zawiercie","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":53159,"modificationDate":"2010-10-30"}, -{"geonameId":"172946","name":"Ar Rastan","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":53152,"modificationDate":"2017-02-03"}, -{"geonameId":"1257851","name":"Sāgar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53150,"modificationDate":"2014-10-14"}, -{"geonameId":"6395804","name":"Sinan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":53150,"modificationDate":"2010-08-02"}, -{"geonameId":"107781","name":"Zilfi","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":53144,"modificationDate":"2020-06-10"}, -{"geonameId":"2913761","name":"Gummersbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":53131,"modificationDate":"2015-09-04"}, -{"geonameId":"3520235","name":"Rioverde","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":53128,"modificationDate":"2018-11-03"}, -{"geonameId":"2511032","name":"San Vicent del Raspeig","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":53126,"modificationDate":"2013-12-26"}, -{"geonameId":"1624987","name":"Tanjungagung","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":53117,"modificationDate":"2013-05-07"}, -{"geonameId":"2749450","name":"Oosterhout","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":53107,"modificationDate":"2017-10-17"}, -{"geonameId":"1283368","name":"Gularia","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":53107,"modificationDate":"2020-06-10"}, -{"geonameId":"3567869","name":"Banes","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":53104,"modificationDate":"2016-02-07"}, -{"geonameId":"1841149","name":"Miryang","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":53103,"modificationDate":"2012-01-18"}, -{"geonameId":"146970","name":"Xankandi","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":53100,"modificationDate":"2017-12-27"}, -{"geonameId":"3641275","name":"El Tocuyo","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":53099,"modificationDate":"2018-08-08"}, -{"geonameId":"3017253","name":"Fréjus","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":53098,"modificationDate":"2019-08-07"}, -{"geonameId":"1566346","name":"Thai Bin","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":53071,"modificationDate":"2020-06-09"}, -{"geonameId":"1863023","name":"Hatogayamachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":53062,"modificationDate":"2020-06-11"}, -{"geonameId":"3527023","name":"Ciudad de Huajuapan de León","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":53043,"modificationDate":"2018-11-03"}, -{"geonameId":"673634","name":"Mediaş","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":53040,"modificationDate":"2014-04-22"}, -{"geonameId":"1264839","name":"Lohārdagā","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":53032,"modificationDate":"2017-08-02"}, -{"geonameId":"3567669","name":"Bartolomé Masó","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":53024,"modificationDate":"2016-01-07"}, -{"geonameId":"3180445","name":"Carpi Centro","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":53024,"modificationDate":"2018-03-16"}, -{"geonameId":"4634662","name":"Kingsport","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":53014,"modificationDate":"2017-03-09"}, -{"geonameId":"155101","name":"Makumbako","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":53003,"modificationDate":"2016-07-26"}, -{"geonameId":"2494029","name":"Hassi Messaoud","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":53000,"modificationDate":"2010-10-07"}, -{"geonameId":"3058000","name":"Prievidza","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":52987,"modificationDate":"2019-09-05"}, -{"geonameId":"5197796","name":"Levittown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":52983,"modificationDate":"2017-05-23"}, -{"geonameId":"3175537","name":"Imola","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":52981,"modificationDate":"2018-08-25"}, -{"geonameId":"736928","name":"Alexandroupoli","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":52979,"modificationDate":"2016-11-17"}, -{"geonameId":"1273232","name":"Deolāli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52958,"modificationDate":"2014-10-13"}, -{"geonameId":"1256759","name":"Shāhābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52952,"modificationDate":"2014-10-14"}, -{"geonameId":"2525628","name":"Bagheria","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":52952,"modificationDate":"2014-01-11"}, -{"geonameId":"3430708","name":"Mercedes","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":52949,"modificationDate":"2015-04-22"}, -{"geonameId":"2815330","name":"Waiblingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":52945,"modificationDate":"2014-01-16"}, -{"geonameId":"3401548","name":"Crateús","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":52933,"modificationDate":"2012-08-03"}, -{"geonameId":"3617459","name":"Nueva Guinea","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":52929,"modificationDate":"2018-08-08"}, -{"geonameId":"4167519","name":"Palm Beach Gardens","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":52923,"modificationDate":"2017-03-09"}, -{"geonameId":"2988621","name":"Pantin","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":52922,"modificationDate":"2016-02-18"}, -{"geonameId":"534701","name":"Livny","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":52915,"modificationDate":"2019-09-05"}, -{"geonameId":"3174092","name":"Manfredonia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":52911,"modificationDate":"2015-08-20"}, -{"geonameId":"1150275","name":"Tha Maka","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":52907,"modificationDate":"2012-01-16"}, -{"geonameId":"1694290","name":"Patuto","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":52883,"modificationDate":"2017-12-13"}, -{"geonameId":"2500282","name":"Djamaa","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":52882,"modificationDate":"2012-01-19"}, -{"geonameId":"160833","name":"Buseresere","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":52870,"modificationDate":"2018-12-04"}, -{"geonameId":"1220253","name":"Istaravshan","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":52851,"modificationDate":"2017-07-21"}, -{"geonameId":"1275406","name":"Bobbili","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52843,"modificationDate":"2015-09-06"}, -{"geonameId":"1274237","name":"Chikhli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52841,"modificationDate":"2014-10-13"}, -{"geonameId":"3182640","name":"Aversa","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":52830,"modificationDate":"2014-04-13"}, -{"geonameId":"2784821","name":"Verviers","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":52824,"modificationDate":"2011-03-23"}, -{"geonameId":"1706361","name":"Limay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":52824,"modificationDate":"2017-12-13"}, -{"geonameId":"11044505","name":"Zacapu","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":52806,"modificationDate":"2018-11-14"}, -{"geonameId":"2861934","name":"Nordhorn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":52803,"modificationDate":"2015-09-05"}, -{"geonameId":"964406","name":"Port Shepstone","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":52793,"modificationDate":"2012-07-12"}, -{"geonameId":"325336","name":"Adilcevaz","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":52781,"modificationDate":"2015-03-08"}, -{"geonameId":"2981280","name":"Saint-Brieuc","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":52774,"modificationDate":"2016-02-18"}, -{"geonameId":"1266217","name":"Konch","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52773,"modificationDate":"2014-10-14"}, -{"geonameId":"1858498","name":"Kudamatsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":52772,"modificationDate":"2017-08-02"}, -{"geonameId":"4838652","name":"Milford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":52759,"modificationDate":"2017-05-23"}, -{"geonameId":"134217","name":"Bandar-e Genāveh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":52750,"modificationDate":"2019-05-08"}, -{"geonameId":"1732738","name":"Kota Tinggi","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":52743,"modificationDate":"2012-01-17"}, -{"geonameId":"300640","name":"Shirnak","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":52743,"modificationDate":"2020-06-10"}, -{"geonameId":"5342485","name":"Delano","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":52733,"modificationDate":"2017-03-09"}, -{"geonameId":"2917788","name":"Greifswald","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":52731,"modificationDate":"2019-09-05"}, -{"geonameId":"1264688","name":"Lunglei","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52728,"modificationDate":"2014-10-14"}, -{"geonameId":"5408211","name":"West Sacramento","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":52721,"modificationDate":"2017-03-09"}, -{"geonameId":"290247","name":"Madīnat Ḩamad","countryName":"Bahrain","timeZoneName":"Asia/Bahrain","timeZoneOffsetNameWithoutDst":"Arabian Time","population":52718,"modificationDate":"2017-03-22"}, -{"geonameId":"1785805","name":"Wulingyuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":52712,"modificationDate":"2017-05-22"}, -{"geonameId":"8581467","name":"Slobozia","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":52710,"modificationDate":"2020-06-07"}, -{"geonameId":"1259508","name":"Pithāpuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52709,"modificationDate":"2014-10-10"}, -{"geonameId":"468866","name":"Yartsevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":52706,"modificationDate":"2012-01-17"}, -{"geonameId":"4472370","name":"Huntersville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":52704,"modificationDate":"2017-03-09"}, -{"geonameId":"1278935","name":"Amalāpuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52690,"modificationDate":"2014-10-10"}, -{"geonameId":"542327","name":"Krasnokamsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":52689,"modificationDate":"2019-09-05"}, -{"geonameId":"315468","name":"Ergani","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":52684,"modificationDate":"2015-07-03"}, -{"geonameId":"5102578","name":"Perth Amboy","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":52682,"modificationDate":"2017-05-23"}, -{"geonameId":"3838854","name":"Río Grande","countryName":"Argentina","timeZoneName":"America/Argentina/Ushuaia","timeZoneOffsetNameWithoutDst":"Argentina Time","population":52681,"modificationDate":"2017-12-21"}, -{"geonameId":"2939658","name":"Cuxhaven","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":52677,"modificationDate":"2019-11-18"}, -{"geonameId":"5395244","name":"Sherman Oaks","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":52677,"modificationDate":"2017-07-26"}, -{"geonameId":"1521370","name":"Ridder","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":52664,"modificationDate":"2014-06-26"}, -{"geonameId":"1254054","name":"Tuni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52658,"modificationDate":"2015-09-06"}, -{"geonameId":"2809889","name":"Wetzlar","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":52656,"modificationDate":"2019-09-05"}, -{"geonameId":"1626185","name":"Sumbawa Besar","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":52654,"modificationDate":"2014-01-06"}, -{"geonameId":"140046","name":"Beroojen","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":52654,"modificationDate":"2020-06-10"}, -{"geonameId":"1256343","name":"Sihor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52603,"modificationDate":"2014-10-13"}, -{"geonameId":"1272606","name":"Deglur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52596,"modificationDate":"2020-06-10"}, -{"geonameId":"69500","name":"Zebid","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":52590,"modificationDate":"2020-06-10"}, -{"geonameId":"4446675","name":"Southaven","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":52589,"modificationDate":"2017-03-09"}, -{"geonameId":"2654782","name":"Brentwood","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":52586,"modificationDate":"2017-06-12"}, -{"geonameId":"7279597","name":"Barbil","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52586,"modificationDate":"2018-07-17"}, -{"geonameId":"2271680","name":"Amora","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":52577,"modificationDate":"2012-02-01"}, -{"geonameId":"4407237","name":"Saint Peters","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":52575,"modificationDate":"2018-10-01"}, -{"geonameId":"1624058","name":"Terbanggi Besar","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":52566,"modificationDate":"2013-05-07"}, -{"geonameId":"3633341","name":"Maiquetía","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":52564,"modificationDate":"2019-03-28"}, -{"geonameId":"3646169","name":"Caucaguita","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":52556,"modificationDate":"2020-06-10"}, -{"geonameId":"4763231","name":"Harrisonburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":52538,"modificationDate":"2017-03-09"}, -{"geonameId":"906054","name":"Mongu","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":52534,"modificationDate":"2018-03-18"}, -{"geonameId":"3629710","name":"Puerto Ayacucho","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":52526,"modificationDate":"2016-04-26"}, -{"geonameId":"2269041","name":"Corroios","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":52520,"modificationDate":"2018-01-31"}, -{"geonameId":"1275435","name":"Biswān","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52516,"modificationDate":"2015-09-06"}, -{"geonameId":"4946863","name":"Peabody","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":52504,"modificationDate":"2017-05-23"}, -{"geonameId":"2502958","name":"Bouïra","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":52500,"modificationDate":"2020-05-31"}, -{"geonameId":"2204506","name":"Lautoka","countryName":"Fiji","timeZoneName":"Pacific/Fiji","timeZoneOffsetNameWithoutDst":"Fiji Summer Time","population":52500,"modificationDate":"2016-07-17"}, -{"geonameId":"1291193","name":"Thongwa","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":52496,"modificationDate":"2018-03-15"}, -{"geonameId":"5383527","name":"Placentia","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":52495,"modificationDate":"2017-03-09"}, -{"geonameId":"3696150","name":"Jaén","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":52493,"modificationDate":"2019-07-16"}, -{"geonameId":"1266073","name":"Kosi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52492,"modificationDate":"2015-08-07"}, -{"geonameId":"2794914","name":"Jette","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":52490,"modificationDate":"2020-05-25"}, -{"geonameId":"4274356","name":"Lenexa","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":52490,"modificationDate":"2017-08-27"}, -{"geonameId":"4685524","name":"DeSoto","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":52486,"modificationDate":"2017-03-09"}, -{"geonameId":"3116553","name":"Mollet del Vallès","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":52484,"modificationDate":"2010-04-22"}, -{"geonameId":"1822768","name":"Pursat","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":52476,"modificationDate":"2011-01-17"}, -{"geonameId":"4458228","name":"Burlington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":52472,"modificationDate":"2017-03-09"}, -{"geonameId":"3663529","name":"Manacapuru","countryName":"Brazil","timeZoneName":"America/Manaus","timeZoneOffsetNameWithoutDst":"Amazon Time","population":52459,"modificationDate":"2012-08-03"}, -{"geonameId":"3133895","name":"Tromsø","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":52436,"modificationDate":"2019-12-12"}, -{"geonameId":"2993002","name":"Montauban","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":52434,"modificationDate":"2020-05-07"}, -{"geonameId":"5811456","name":"South Hill","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":52431,"modificationDate":"2011-05-14"}, -{"geonameId":"1317397","name":"Kyaiklat","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":52425,"modificationDate":"2018-03-15"}, -{"geonameId":"3026613","name":"Charleville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":52415,"modificationDate":"2020-06-10"}, -{"geonameId":"3190966","name":"Sesvete","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":52411,"modificationDate":"2013-05-16"}, -{"geonameId":"3038261","name":"Albi","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":52409,"modificationDate":"2016-02-18"}, -{"geonameId":"115781","name":"Shahr-e Bābak","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":52409,"modificationDate":"2014-09-04"}, -{"geonameId":"3472248","name":"Andradina","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":52406,"modificationDate":"2012-08-03"}, -{"geonameId":"3470709","name":"Barra do Garças","countryName":"Brazil","timeZoneName":"America/Cuiaba","timeZoneOffsetNameWithoutDst":"Amazon Time","population":52398,"modificationDate":"2014-04-12"}, -{"geonameId":"2649911","name":"Esher","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":52392,"modificationDate":"2015-01-04"}, -{"geonameId":"3402613","name":"Cascavel","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":52357,"modificationDate":"2012-08-03"}, -{"geonameId":"4919987","name":"Elkhart","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":52348,"modificationDate":"2017-05-23"}, -{"geonameId":"5957776","name":"Fredericton","countryName":"Canada","timeZoneName":"America/Moncton","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":52337,"modificationDate":"2019-09-05"}, -{"geonameId":"2950344","name":"Bergkamen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":52329,"modificationDate":"2015-09-05"}, -{"geonameId":"1907125","name":"Kamifukuoka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":52323,"modificationDate":"2017-04-09"}, -{"geonameId":"1257951","name":"Ropar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52313,"modificationDate":"2015-08-07"}, -{"geonameId":"5258957","name":"La Crosse","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":52306,"modificationDate":"2017-05-23"}, -{"geonameId":"2112571","name":"Ishioka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":52304,"modificationDate":"2017-12-13"}, -{"geonameId":"1527592","name":"Naryn","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":52300,"modificationDate":"2018-03-27"}, -{"geonameId":"1273574","name":"Dandeli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52295,"modificationDate":"2014-10-14"}, -{"geonameId":"4904381","name":"Oak Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":52287,"modificationDate":"2017-05-23"}, -{"geonameId":"2490183","name":"Mansourah","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":52285,"modificationDate":"2020-06-11"}, -{"geonameId":"114593","name":"Shoosh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":52284,"modificationDate":"2020-06-10"}, -{"geonameId":"3170206","name":"Ponticelli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":52284,"modificationDate":"2019-07-22"}, -{"geonameId":"2047837","name":"Songling","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":52277,"modificationDate":"2015-02-07"}, -{"geonameId":"2508228","name":"Aïn Defla","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":52276,"modificationDate":"2018-08-08"}, -{"geonameId":"4386802","name":"Florissant","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":52268,"modificationDate":"2017-05-23"}, -{"geonameId":"562319","name":"Fryazino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":52255,"modificationDate":"2012-01-17"}, -{"geonameId":"5809402","name":"Sammamish","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":52253,"modificationDate":"2017-03-09"}, -{"geonameId":"1702442","name":"Malungon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":52248,"modificationDate":"2020-06-10"}, -{"geonameId":"3996426","name":"Matamoros","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":52233,"modificationDate":"2018-11-03"}, -{"geonameId":"6354957","name":"Hervey Bay","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":52230,"modificationDate":"2018-09-07"}, -{"geonameId":"3516225","name":"Taxco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":52217,"modificationDate":"2020-06-10"}, -{"geonameId":"1485439","name":"Zarinsk","countryName":"Russia","timeZoneName":"Asia/Barnaul","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":52209,"modificationDate":"2019-09-05"}, -{"geonameId":"5143056","name":"Wakefield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":52201,"modificationDate":"2017-04-16"}, -{"geonameId":"1117652","name":"Ban Talat Yai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":52192,"modificationDate":"2011-07-23"}, -{"geonameId":"747489","name":"Erbaa","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":52185,"modificationDate":"2014-06-26"}, -{"geonameId":"299545","name":"Taushanli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":52182,"modificationDate":"2020-06-10"}, -{"geonameId":"4018348","name":"Arandas","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":52175,"modificationDate":"2018-11-03"}, -{"geonameId":"5710756","name":"Albany","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":52175,"modificationDate":"2017-03-09"}, -{"geonameId":"733618","name":"Asenovgrad","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":52170,"modificationDate":"2012-01-18"}, -{"geonameId":"2511440","name":"San Bartolomé de Tirajana","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":52161,"modificationDate":"2015-06-17"}, -{"geonameId":"3140084","name":"Sarpsborg","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":52159,"modificationDate":"2019-12-12"}, -{"geonameId":"1185120","name":"Sandvip","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":52152,"modificationDate":"2020-06-10"}, -{"geonameId":"3209584","name":"Crosby","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":52140,"modificationDate":"2018-07-04"}, -{"geonameId":"4896075","name":"Hoffman Estates","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":52138,"modificationDate":"2017-05-23"}, -{"geonameId":"1496476","name":"Nyagan","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":52137,"modificationDate":"2013-08-05"}, -{"geonameId":"2639506","name":"Reigate","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":52123,"modificationDate":"2016-02-18"}, -{"geonameId":"1127110","name":"Sar-e Pul","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":52121,"modificationDate":"2018-02-17"}, -{"geonameId":"2973385","name":"Tarbes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":52106,"modificationDate":"2020-04-08"}, -{"geonameId":"1260222","name":"Pārvatipuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":52085,"modificationDate":"2015-09-06"}, -{"geonameId":"4883012","name":"Albany Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":52079,"modificationDate":"2017-12-06"}, -{"geonameId":"3017910","name":"Fontenay-sous-Bois","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":52075,"modificationDate":"2016-02-18"}, -{"geonameId":"2282827","name":"Ume","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":52070,"modificationDate":"2020-06-10"}, -{"geonameId":"548652","name":"Kimry","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":52070,"modificationDate":"2019-09-05"}, -{"geonameId":"2790595","name":"Mouscron","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":52069,"modificationDate":"2017-06-18"}, -{"geonameId":"285728","name":"Ar Riqqah","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":52068,"modificationDate":"2012-01-18"}, -{"geonameId":"1821935","name":"Ta Khmau","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":52066,"modificationDate":"2018-07-04"}, -{"geonameId":"3120514","name":"Huesca","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":52059,"modificationDate":"2019-10-09"}, -{"geonameId":"3077244","name":"Děčín","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":52058,"modificationDate":"2019-09-05"}, -{"geonameId":"3359638","name":"Walvis Bay","countryName":"Namibia","timeZoneName":"Africa/Windhoek","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":52058,"modificationDate":"2019-09-05"}, -{"geonameId":"884141","name":"Norton","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":52054,"modificationDate":"2013-03-12"}, -{"geonameId":"3716667","name":"Thomazeau","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":52017,"modificationDate":"2018-12-07"}, -{"geonameId":"1865412","name":"Kariya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":52015,"modificationDate":"2017-04-09"}, -{"geonameId":"5352439","name":"Glendora","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":52009,"modificationDate":"2017-03-09"}, -{"geonameId":"258620","name":"Lamía","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":52006,"modificationDate":"2014-09-11"}, -{"geonameId":"1336133","name":"Sātkania","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":52005,"modificationDate":"2016-11-09"}, -{"geonameId":"583589","name":"Levoberezhnyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":52000,"modificationDate":"2013-04-02"}, -{"geonameId":"3815324","name":"Huamantla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":51996,"modificationDate":"2018-11-03"}, -{"geonameId":"3470003","name":"Biguaçu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":51992,"modificationDate":"2012-08-03"}, -{"geonameId":"199989","name":"Busia","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":51981,"modificationDate":"2013-08-04"}, -{"geonameId":"3470324","name":"Batatais","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":51976,"modificationDate":"2012-08-03"}, -{"geonameId":"2650657","name":"Dunstable","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":51973,"modificationDate":"2014-08-29"}, -{"geonameId":"3451152","name":"Rio do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":51944,"modificationDate":"2013-05-11"}, -{"geonameId":"1278432","name":"Arcot","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":51943,"modificationDate":"2014-10-14"}, -{"geonameId":"711369","name":"Bryanka","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":51921,"modificationDate":"2014-06-26"}, -{"geonameId":"1640296","name":"Kepanjen","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":51919,"modificationDate":"2016-01-07"}, -{"geonameId":"5133271","name":"Queens Village","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51919,"modificationDate":"2017-04-16"}, -{"geonameId":"790674","name":"Gjilan","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":51912,"modificationDate":"2015-02-22"}, -{"geonameId":"3582883","name":"Usulután","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":51910,"modificationDate":"2012-01-14"}, -{"geonameId":"4184530","name":"Brookhaven","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51910,"modificationDate":"2017-03-09"}, -{"geonameId":"1177446","name":"Gwadar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":51901,"modificationDate":"2019-12-06"}, -{"geonameId":"3019256","name":"Évry","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":51900,"modificationDate":"2018-02-06"}, -{"geonameId":"1269027","name":"Brijnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":51884,"modificationDate":"2020-06-10"}, -{"geonameId":"3563317","name":"Corralillo","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":51881,"modificationDate":"2016-01-07"}, -{"geonameId":"5124276","name":"Levittown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51881,"modificationDate":"2017-05-23"}, -{"geonameId":"124193","name":"Meybod","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":51874,"modificationDate":"2018-05-08"}, -{"geonameId":"71334","name":"Sa'dah","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":51870,"modificationDate":"2013-11-02"}, -{"geonameId":"5380626","name":"Palm Desert","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":51869,"modificationDate":"2017-03-09"}, -{"geonameId":"2953436","name":"Bad Homburg vor der Höhe","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":51859,"modificationDate":"2019-09-05"}, -{"geonameId":"3440034","name":"Villa de Tacuarembo","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":51854,"modificationDate":"2020-06-10"}, -{"geonameId":"2808559","name":"Willich","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":51843,"modificationDate":"2015-09-04"}, -{"geonameId":"2512177","name":"Puertollano","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":51842,"modificationDate":"2012-03-04"}, -{"geonameId":"358095","name":"Diyarb Najm","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":51841,"modificationDate":"2013-07-06"}, -{"geonameId":"1259841","name":"Petlād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":51819,"modificationDate":"2014-10-13"}, -{"geonameId":"4392768","name":"Joplin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":51818,"modificationDate":"2017-05-23"}, -{"geonameId":"1648568","name":"Blora","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":51811,"modificationDate":"2012-01-17"}, -{"geonameId":"3073803","name":"Karlovy Vary","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":51807,"modificationDate":"2019-09-05"}, -{"geonameId":"1253807","name":"Umred","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":51794,"modificationDate":"2015-08-07"}, -{"geonameId":"741045","name":"Orhangazi","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":51792,"modificationDate":"2013-05-08"}, -{"geonameId":"4535961","name":"Enid","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":51776,"modificationDate":"2017-03-09"}, -{"geonameId":"2520493","name":"Calvià","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":51774,"modificationDate":"2015-09-01"}, -{"geonameId":"3870306","name":"Talagante","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":51764,"modificationDate":"2018-02-06"}, -{"geonameId":"1276084","name":"Bhātāpāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":51751,"modificationDate":"2015-09-06"}, -{"geonameId":"1268383","name":"Kaliaganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":51748,"modificationDate":"2020-06-10"}, -{"geonameId":"1261727","name":"Nasīrābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":51747,"modificationDate":"2014-10-14"}, -{"geonameId":"2338401","name":"Ijebu-Jesa","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":51730,"modificationDate":"2019-08-07"}, -{"geonameId":"2111884","name":"Miyako","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":51721,"modificationDate":"2017-07-22"}, -{"geonameId":"473778","name":"Vidnoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":51721,"modificationDate":"2016-07-12"}, -{"geonameId":"52867","name":"Qoryooley","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":51720,"modificationDate":"2012-01-16"}, -{"geonameId":"3654870","name":"Latacunga","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":51717,"modificationDate":"2019-09-05"}, -{"geonameId":"2477255","name":"Telerghma","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":51708,"modificationDate":"2012-01-19"}, -{"geonameId":"4148533","name":"Bonita Springs","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51704,"modificationDate":"2017-03-09"}, -{"geonameId":"5122331","name":"Irondequoit","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51692,"modificationDate":"2017-05-23"}, -{"geonameId":"2925535","name":"Frankfurt (Oder)","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":51691,"modificationDate":"2020-04-21"}, -{"geonameId":"5587698","name":"Caldwell","countryName":"United States","timeZoneName":"America/Boise","timeZoneOffsetNameWithoutDst":"Mountain Time","population":51686,"modificationDate":"2017-03-09"}, -{"geonameId":"5037784","name":"Minnetonka","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":51669,"modificationDate":"2017-05-23"}, -{"geonameId":"3181995","name":"Bitonto","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":51661,"modificationDate":"2014-04-13"}, -{"geonameId":"3453546","name":"Pirapora","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":51656,"modificationDate":"2017-08-18"}, -{"geonameId":"1863713","name":"Futtsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":51650,"modificationDate":"2017-07-22"}, -{"geonameId":"2642214","name":"Morecambe","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":51644,"modificationDate":"2018-07-03"}, -{"geonameId":"1269819","name":"Idappadi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":51642,"modificationDate":"2014-10-14"}, -{"geonameId":"3703227","name":"Pedregal","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51641,"modificationDate":"2017-08-15"}, -{"geonameId":"1271083","name":"Gohadi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":51635,"modificationDate":"2015-08-07"}, -{"geonameId":"6690794","name":"Sagrada Família","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":51623,"modificationDate":"2017-05-26"}, -{"geonameId":"4168630","name":"Pinellas Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51617,"modificationDate":"2017-03-09"}, -{"geonameId":"120931","name":"Sarpol","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":51611,"modificationDate":"2020-06-10"}, -{"geonameId":"2651715","name":"Cumbernauld","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":51610,"modificationDate":"2017-06-12"}, -{"geonameId":"1851273","name":"Tagawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":51608,"modificationDate":"2017-07-22"}, -{"geonameId":"4985153","name":"Battle Creek","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51589,"modificationDate":"2017-05-23"}, -{"geonameId":"1608900","name":"Maha Sarakham","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":51584,"modificationDate":"2012-01-16"}, -{"geonameId":"1267187","name":"Khagaul","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":51577,"modificationDate":"2016-01-07"}, -{"geonameId":"1848096","name":"Yūki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":51574,"modificationDate":"2017-07-22"}, -{"geonameId":"359710","name":"Tel el Kebir","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":51569,"modificationDate":"2020-06-11"}, -{"geonameId":"3628952","name":"Rubio","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":51568,"modificationDate":"2012-01-03"}, -{"geonameId":"2639545","name":"Redhill","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":51559,"modificationDate":"2011-02-05"}, -{"geonameId":"1295301","name":"Tachilek","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":51553,"modificationDate":"2016-06-30"}, -{"geonameId":"6822217","name":"Minokamo","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":51543,"modificationDate":"2017-07-22"}, -{"geonameId":"1310362","name":"Maubin","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":51542,"modificationDate":"2016-06-01"}, -{"geonameId":"113508","name":"Takan Tepe","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":51541,"modificationDate":"2020-06-10"}, -{"geonameId":"3625929","name":"Tucupita","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":51534,"modificationDate":"2016-01-07"}, -{"geonameId":"2930596","name":"Emden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":51526,"modificationDate":"2019-09-05"}, -{"geonameId":"1078446","name":"Amparafaravola","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":51519,"modificationDate":"2018-09-07"}, -{"geonameId":"347612","name":"Talla","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":51498,"modificationDate":"2020-06-11"}, -{"geonameId":"3129636","name":"Arganda","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":51489,"modificationDate":"2016-07-07"}, -{"geonameId":"1907309","name":"Miura","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":51483,"modificationDate":"2017-07-22"}, -{"geonameId":"3792383","name":"Agustín Codazzi","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":51478,"modificationDate":"2018-07-05"}, -{"geonameId":"2646557","name":"Horsham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":51472,"modificationDate":"2017-06-12"}, -{"geonameId":"5288636","name":"Casa Grande","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":51460,"modificationDate":"2017-03-09"}, -{"geonameId":"3461519","name":"Içara","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":51454,"modificationDate":"2012-08-03"}, -{"geonameId":"4912013","name":"South Shore","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":51451,"modificationDate":"2017-12-06"}, -{"geonameId":"5127670","name":"Mott Haven","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51450,"modificationDate":"2017-04-16"}, -{"geonameId":"4175179","name":"The Villages","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51442,"modificationDate":"2011-05-14"}, -{"geonameId":"5069297","name":"Grand Island","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":51440,"modificationDate":"2017-05-23"}, -{"geonameId":"1274119","name":"Chiplūn","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":51437,"modificationDate":"2014-10-13"}, -{"geonameId":"3405738","name":"Bezerros","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":51436,"modificationDate":"2012-08-03"}, -{"geonameId":"621754","name":"Slonim","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":51434,"modificationDate":"2018-03-07"}, -{"geonameId":"1274664","name":"Changanacherry","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":51430,"modificationDate":"2020-06-10"}, -{"geonameId":"2470088","name":"Jendouba","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":51408,"modificationDate":"2018-08-30"}, -{"geonameId":"4694568","name":"Grapevine","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":51404,"modificationDate":"2017-03-09"}, -{"geonameId":"3024783","name":"Clamart","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":51400,"modificationDate":"2016-02-18"}, -{"geonameId":"1699323","name":"Monkayo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":51393,"modificationDate":"2017-12-13"}, -{"geonameId":"2863941","name":"Neu-Ulm","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":51389,"modificationDate":"2019-09-05"}, -{"geonameId":"4843811","name":"Stratford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51384,"modificationDate":"2017-05-23"}, -{"geonameId":"3980777","name":"Uriangato","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":51382,"modificationDate":"2018-11-03"}, -{"geonameId":"1185148","name":"Patiya","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":51360,"modificationDate":"2020-02-11"}, -{"geonameId":"4998018","name":"Kentwood","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51357,"modificationDate":"2017-05-23"}, -{"geonameId":"3927758","name":"Tarma","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":51350,"modificationDate":"2015-03-29"}, -{"geonameId":"2014927","name":"Tulun","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":51330,"modificationDate":"2019-09-05"}, -{"geonameId":"2877088","name":"Lingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":51310,"modificationDate":"2019-09-05"}, -{"geonameId":"7284890","name":"Marseille 10","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":51299,"modificationDate":"2018-08-19"}, -{"geonameId":"3164603","name":"Venice","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":51298,"modificationDate":"2017-06-15"}, -{"geonameId":"2807748","name":"Winterhude","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":51297,"modificationDate":"2017-08-14"}, -{"geonameId":"3438819","name":"Coronel Oviedo","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":51286,"modificationDate":"2018-04-09"}, -{"geonameId":"2271071","name":"Barreiro","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":51280,"modificationDate":"2014-04-06"}, -{"geonameId":"7160204","name":"City of Milford (balance)","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51271,"modificationDate":"2017-05-23"}, -{"geonameId":"3027487","name":"Châlons-en-Champagne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":51257,"modificationDate":"2019-09-05"}, -{"geonameId":"3515942","name":"Teoloyucan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":51255,"modificationDate":"2018-11-03"}, -{"geonameId":"5756758","name":"Tigard","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":51253,"modificationDate":"2017-03-09"}, -{"geonameId":"4833403","name":"East Hartford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51252,"modificationDate":"2017-05-23"}, -{"geonameId":"1258637","name":"Rāmnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":51244,"modificationDate":"2015-10-04"}, -{"geonameId":"2483649","name":"Remchi","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":51224,"modificationDate":"2012-01-19"}, -{"geonameId":"3064288","name":"Teplice","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":51223,"modificationDate":"2019-03-20"}, -{"geonameId":"5016494","name":"Apple Valley","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":51221,"modificationDate":"2017-05-23"}, -{"geonameId":"5102720","name":"Plainfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51217,"modificationDate":"2017-05-23"}, -{"geonameId":"609123","name":"Qulsary","countryName":"Kazakhstan","timeZoneName":"Asia/Atyrau","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":51216,"modificationDate":"2018-08-02"}, -{"geonameId":"6559559","name":"Horishni Plavni","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":51215,"modificationDate":"2020-05-19"}, -{"geonameId":"2503852","name":"Birine","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":51209,"modificationDate":"2012-01-19"}, -{"geonameId":"4769125","name":"Leesburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51209,"modificationDate":"2019-09-10"}, -{"geonameId":"2929671","name":"Erftstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":51207,"modificationDate":"2015-09-04"}, -{"geonameId":"2509509","name":"Vila-real","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":51205,"modificationDate":"2019-08-21"}, -{"geonameId":"3387786","name":"Serra Talhada","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":51203,"modificationDate":"2018-05-27"}, -{"geonameId":"294117","name":"Nahariyya","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":51200,"modificationDate":"2017-09-05"}, -{"geonameId":"2610613","name":"Vejle","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":51177,"modificationDate":"2017-10-18"}, -{"geonameId":"355648","name":"Ibshawai","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":51173,"modificationDate":"2020-06-11"}, -{"geonameId":"3398450","name":"Horizonte","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":51171,"modificationDate":"2018-07-04"}, -{"geonameId":"2596934","name":"Séguéla","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":51157,"modificationDate":"2017-04-23"}, -{"geonameId":"5102427","name":"Parsippany","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51144,"modificationDate":"2017-05-23"}, -{"geonameId":"709248","name":"Fastiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":51143,"modificationDate":"2019-02-01"}, -{"geonameId":"4151871","name":"Coral Gables","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51117,"modificationDate":"2017-03-09"}, -{"geonameId":"2866110","name":"Neubrück","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":51109,"modificationDate":"2015-09-05"}, -{"geonameId":"1645976","name":"Comal","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":51092,"modificationDate":"2012-01-17"}, -{"geonameId":"301010","name":"Seydişehir","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":51089,"modificationDate":"2012-01-18"}, -{"geonameId":"555111","name":"Ivanteyevka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":51085,"modificationDate":"2012-01-17"}, -{"geonameId":"182701","name":"Nyeri","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":51084,"modificationDate":"2013-05-06"}, -{"geonameId":"2128867","name":"Noshiro","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":51079,"modificationDate":"2017-07-22"}, -{"geonameId":"1256269","name":"Sillod","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":51042,"modificationDate":"2014-10-13"}, -{"geonameId":"2637126","name":"Staines","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":51040,"modificationDate":"2013-04-10"}, -{"geonameId":"1264647","name":"Mācherla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":51039,"modificationDate":"2016-01-07"}, -{"geonameId":"128008","name":"Herow","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":51024,"modificationDate":"2020-06-10"}, -{"geonameId":"3441702","name":"Melo","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":51023,"modificationDate":"2015-10-05"}, -{"geonameId":"163808","name":"Tadmur","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":51015,"modificationDate":"2017-02-09"}, -{"geonameId":"3450964","name":"Rolândia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":51004,"modificationDate":"2012-08-03"}, -{"geonameId":"4175117","name":"The Hammocks","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":51003,"modificationDate":"2013-09-17"}, -{"geonameId":"3556268","name":"Chaparra","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":51002,"modificationDate":"2020-06-10"}, -{"geonameId":"729794","name":"Kardzhali","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":51000,"modificationDate":"2016-02-07"}, -{"geonameId":"1851883","name":"Shiraoka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":50974,"modificationDate":"2017-07-22"}, -{"geonameId":"790295","name":"Gostivar","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":50974,"modificationDate":"2014-10-01"}, -{"geonameId":"160892","name":"Bunda","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":50944,"modificationDate":"2018-12-04"}, -{"geonameId":"1254069","name":"Tūndla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":50939,"modificationDate":"2015-08-07"}, -{"geonameId":"3533426","name":"Acayucan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":50934,"modificationDate":"2018-11-03"}, -{"geonameId":"753142","name":"Żoliborz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":50934,"modificationDate":"2018-01-16"}, -{"geonameId":"1514387","name":"Beruniy","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":50929,"modificationDate":"2012-01-17"}, -{"geonameId":"11549783","name":"la Vila de Gràcia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":50928,"modificationDate":"2017-05-24"}, -{"geonameId":"1263661","name":"Mannārakkāt","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":50921,"modificationDate":"2017-02-04"}, -{"geonameId":"2184397","name":"Porirua","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":50914,"modificationDate":"2011-08-01"}, -{"geonameId":"1261008","name":"Ottapalam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":50913,"modificationDate":"2020-06-10"}, -{"geonameId":"6230919","name":"Whangarei","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":50900,"modificationDate":"2011-02-28"}, -{"geonameId":"1581364","name":"Hà Đông","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":50877,"modificationDate":"2013-10-04"}, -{"geonameId":"5287262","name":"Buckeye","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":50876,"modificationDate":"2011-05-14"}, -{"geonameId":"2522713","name":"Vittoria","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":50852,"modificationDate":"2018-03-16"}, -{"geonameId":"565348","name":"Donetsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50850,"modificationDate":"2019-09-05"}, -{"geonameId":"3700563","name":"Tocumen","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":50844,"modificationDate":"2017-08-16"}, -{"geonameId":"2112232","name":"Kitaibaraki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":50843,"modificationDate":"2017-07-22"}, -{"geonameId":"1732711","name":"Pontian Kechil","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":50836,"modificationDate":"2012-01-17"}, -{"geonameId":"4155529","name":"Flagami","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":50834,"modificationDate":"2013-05-05"}, -{"geonameId":"3436124","name":"Barranqueras","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":50823,"modificationDate":"2015-06-24"}, -{"geonameId":"3047679","name":"Nagykanizsa","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":50823,"modificationDate":"2015-06-17"}, -{"geonameId":"2656168","name":"Batley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":50807,"modificationDate":"2013-07-11"}, -{"geonameId":"5288786","name":"Catalina Foothills","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":50796,"modificationDate":"2011-05-14"}, -{"geonameId":"766555","name":"Legionowo","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":50786,"modificationDate":"2011-07-31"}, -{"geonameId":"3832260","name":"Yerba Buena","countryName":"Argentina","timeZoneName":"America/Argentina/Tucuman","timeZoneOffsetNameWithoutDst":"Argentina Time","population":50783,"modificationDate":"2016-01-30"}, -{"geonameId":"2990919","name":"Narbonne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":50776,"modificationDate":"2019-09-05"}, -{"geonameId":"1271151","name":"Goālpāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":50759,"modificationDate":"2014-10-13"}, -{"geonameId":"1268189","name":"Kanakpura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":50752,"modificationDate":"2020-06-10"}, -{"geonameId":"1864155","name":"Fuchūchō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":50746,"modificationDate":"2017-07-26"}, -{"geonameId":"3513966","name":"Zumpango","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":50742,"modificationDate":"2014-02-01"}, -{"geonameId":"561667","name":"Gelendzhik","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50715,"modificationDate":"2019-09-05"}, -{"geonameId":"99062","name":"Shahroban","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":50698,"modificationDate":"2020-06-10"}, -{"geonameId":"2291580","name":"Bingerville","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":50694,"modificationDate":"2016-12-03"}, -{"geonameId":"627145","name":"Kobryn","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50691,"modificationDate":"2019-09-05"}, -{"geonameId":"1167380","name":"Rajanpur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":50682,"modificationDate":"2019-12-06"}, -{"geonameId":"2978640","name":"Saint-Malo","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":50676,"modificationDate":"2019-04-10"}, -{"geonameId":"207596","name":"Mweka","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":50675,"modificationDate":"2016-11-22"}, -{"geonameId":"1264551","name":"Madhupur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":50671,"modificationDate":"2014-10-14"}, -{"geonameId":"1641333","name":"Karanganom","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":50670,"modificationDate":"2012-01-17"}, -{"geonameId":"2510073","name":"Utrera","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":50665,"modificationDate":"2012-03-04"}, -{"geonameId":"121795","name":"Ashnooyeh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":50661,"modificationDate":"2020-06-10"}, -{"geonameId":"741609","name":"Merzifon","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":50658,"modificationDate":"2012-01-18"}, -{"geonameId":"1607737","name":"Phetchabun","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":50656,"modificationDate":"2015-03-04"}, -{"geonameId":"5160315","name":"Lakewood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":50656,"modificationDate":"2017-05-23"}, -{"geonameId":"1166827","name":"Rohri","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":50649,"modificationDate":"2019-12-06"}, -{"geonameId":"532657","name":"Lytkarino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50619,"modificationDate":"2019-09-05"}, -{"geonameId":"4796512","name":"Saint Croix","countryName":"U.S. Virgin Islands","timeZoneName":"America/St_Thomas","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":50601,"modificationDate":"2016-06-22"}, -{"geonameId":"3139075","name":"Skien","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":50595,"modificationDate":"2019-12-12"}, -{"geonameId":"1854530","name":"Ōi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":50593,"modificationDate":"2017-04-09"}, -{"geonameId":"2896817","name":"Ibbenbüren","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":50577,"modificationDate":"2015-09-04"}, -{"geonameId":"2634578","name":"Wellingborough","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":50577,"modificationDate":"2017-06-12"}, -{"geonameId":"3395395","name":"Marechal Deodoro","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":50571,"modificationDate":"2012-08-03"}, -{"geonameId":"1264570","name":"Madhipura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":50570,"modificationDate":"2014-10-14"}, -{"geonameId":"548602","name":"Kingisepp","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50566,"modificationDate":"2019-12-03"}, -{"geonameId":"547840","name":"Kizlyar","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50564,"modificationDate":"2012-09-05"}, -{"geonameId":"2855328","name":"Passau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":50560,"modificationDate":"2019-09-05"}, -{"geonameId":"1274571","name":"Charkhi Dādri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":50558,"modificationDate":"2018-05-28"}, -{"geonameId":"2652974","name":"Clacton-on-Sea","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":50548,"modificationDate":"2017-06-12"}, -{"geonameId":"1640902","name":"Kawalu","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":50541,"modificationDate":"2012-01-17"}, -{"geonameId":"3448300","name":"São Roque","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":50540,"modificationDate":"2012-03-10"}, -{"geonameId":"1162105","name":"Zhob","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":50537,"modificationDate":"2019-12-06"}, -{"geonameId":"41210","name":"Khorramdarreh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":50528,"modificationDate":"2018-05-03"}, -{"geonameId":"1272225","name":"Dumraon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":50524,"modificationDate":"2015-10-04"}, -{"geonameId":"1715542","name":"Dapitan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":50514,"modificationDate":"2018-04-08"}, -{"geonameId":"3666570","name":"Turbo","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":50508,"modificationDate":"2018-04-19"}, -{"geonameId":"743818","name":"Kavaklı","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":50502,"modificationDate":"2010-08-03"}, -{"geonameId":"791580","name":"Deçan","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":50500,"modificationDate":"2015-02-22"}, -{"geonameId":"7284838","name":"Budapest XXII. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":50499,"modificationDate":"2019-09-23"}, -{"geonameId":"216404","name":"Gbadolite","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":50493,"modificationDate":"2016-11-22"}, -{"geonameId":"3664539","name":"Coari","countryName":"Brazil","timeZoneName":"America/Manaus","timeZoneOffsetNameWithoutDst":"Amazon Time","population":50490,"modificationDate":"2013-07-22"}, -{"geonameId":"3005866","name":"Laval","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":50489,"modificationDate":"2018-02-06"}, -{"geonameId":"3012937","name":"Hyères","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":50487,"modificationDate":"2020-03-14"}, -{"geonameId":"1316703","name":"Kyaukse","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":50480,"modificationDate":"2016-06-01"}, -{"geonameId":"5264870","name":"North La Crosse","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":50470,"modificationDate":"2017-05-23"}, -{"geonameId":"5788516","name":"Burien","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":50467,"modificationDate":"2017-03-09"}, -{"geonameId":"757033","name":"Tarnobrzeg","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":50459,"modificationDate":"2019-09-05"}, -{"geonameId":"749704","name":"Themiscyra","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":50459,"modificationDate":"2020-06-10"}, -{"geonameId":"2294938","name":"Tafo","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":50457,"modificationDate":"2019-12-06"}, -{"geonameId":"1153269","name":"Hua Hin","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":50456,"modificationDate":"2014-03-22"}, -{"geonameId":"1264414","name":"Mahāsamund","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":50441,"modificationDate":"2015-09-06"}, -{"geonameId":"2881062","name":"Langenhagen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":50439,"modificationDate":"2014-07-09"}, -{"geonameId":"3176391","name":"Gallarate","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":50439,"modificationDate":"2014-01-16"}, -{"geonameId":"3675707","name":"Madrid","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":50437,"modificationDate":"2018-07-04"}, -{"geonameId":"12156878","name":"Willowdale East","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":50434,"modificationDate":"2020-05-02"}, -{"geonameId":"3689570","name":"Arjona","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":50405,"modificationDate":"2018-07-04"}, -{"geonameId":"3627968","name":"San Mateo","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":50401,"modificationDate":"2018-08-08"}, -{"geonameId":"2834265","name":"Schwerte","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":50399,"modificationDate":"2015-09-04"}, -{"geonameId":"1170667","name":"Matli","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":50398,"modificationDate":"2019-12-24"}, -{"geonameId":"6089426","name":"North Bay","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":50396,"modificationDate":"2019-09-05"}, -{"geonameId":"2650732","name":"Dunfermline","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":50380,"modificationDate":"2019-09-05"}, -{"geonameId":"1271780","name":"Gajraula","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":50380,"modificationDate":"2015-09-06"}, -{"geonameId":"5777544","name":"Logan","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":50371,"modificationDate":"2017-03-09"}, -{"geonameId":"1185252","name":"Khagrachhari","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":50364,"modificationDate":"2020-02-11"}, -{"geonameId":"1514891","name":"Konibodom","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":50359,"modificationDate":"2012-04-05"}, -{"geonameId":"248382","name":"Ma'an","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":50350,"modificationDate":"2014-02-02"}, -{"geonameId":"2830582","name":"Speyer","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":50343,"modificationDate":"2019-09-05"}, -{"geonameId":"2223734","name":"Nkoteng","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":50334,"modificationDate":"2012-01-16"}, -{"geonameId":"6177869","name":"Welland","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":50331,"modificationDate":"2020-01-29"}, -{"geonameId":"6138374","name":"Saint-Hyacinthe","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":50326,"modificationDate":"2019-09-05"}, -{"geonameId":"2287790","name":"Issia","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":50313,"modificationDate":"2016-12-03"}, -{"geonameId":"298935","name":"Torbalı","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":50303,"modificationDate":"2012-01-18"}, -{"geonameId":"5805687","name":"Olympia","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":50302,"modificationDate":"2019-09-05"}, -{"geonameId":"2294962","name":"Swedru","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":50293,"modificationDate":"2019-12-06"}, -{"geonameId":"4951473","name":"South Peabody","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":50293,"modificationDate":"2017-05-23"}, -{"geonameId":"1279394","name":"Ābu Road","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":50262,"modificationDate":"2014-10-14"}, -{"geonameId":"3077685","name":"Chomutov","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":50251,"modificationDate":"2019-03-19"}, -{"geonameId":"1261910","name":"Nanjangud Town","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":50243,"modificationDate":"2020-06-10"}, -{"geonameId":"1854026","name":"Ono","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":50230,"modificationDate":"2017-07-22"}, -{"geonameId":"289199","name":"Khabura","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":50223,"modificationDate":"2020-06-10"}, -{"geonameId":"2787413","name":"Saint-Gilles","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":50221,"modificationDate":"2020-05-25"}, -{"geonameId":"1257587","name":"Sālūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":50206,"modificationDate":"2015-09-06"}, -{"geonameId":"567434","name":"Chusovoy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":50205,"modificationDate":"2019-09-05"}, -{"geonameId":"2479161","name":"Sour el Ghozlane","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":50204,"modificationDate":"2012-01-19"}, -{"geonameId":"712160","name":"Bilhorod-Dnistrovskyi","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":50201,"modificationDate":"2020-03-29"}, -{"geonameId":"1879613","name":"Anju","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":50196,"modificationDate":"2012-01-19"}, -{"geonameId":"5323163","name":"Aliso Viejo","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":50195,"modificationDate":"2017-03-09"}, -{"geonameId":"2655351","name":"Bletchley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":50193,"modificationDate":"2016-06-22"}, -{"geonameId":"3491941","name":"Villa Francisca","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":50185,"modificationDate":"2017-01-31"}, -{"geonameId":"4692883","name":"Galveston","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":50180,"modificationDate":"2019-09-05"}, -{"geonameId":"2645889","name":"Keighley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":50171,"modificationDate":"2011-07-31"}, -{"geonameId":"5384690","name":"Poway","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":50157,"modificationDate":"2017-03-09"}, -{"geonameId":"5025264","name":"Edina","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":50138,"modificationDate":"2017-05-23"}, -{"geonameId":"217570","name":"Buta","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":50130,"modificationDate":"2017-07-10"}, -{"geonameId":"513883","name":"Otradnyy","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":50127,"modificationDate":"2012-01-17"}, -{"geonameId":"2487620","name":"Metlili Chaamba","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":50117,"modificationDate":"2012-01-19"}, -{"geonameId":"5037790","name":"Minnetonka Mills","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":50117,"modificationDate":"2017-05-23"}, -{"geonameId":"1728336","name":"Balayan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":50115,"modificationDate":"2017-12-13"}, -{"geonameId":"3979846","name":"Zacapú","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":50112,"modificationDate":"2016-01-07"}, -{"geonameId":"3074199","name":"Jihlava","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":50100,"modificationDate":"2019-03-20"}, -{"geonameId":"3446753","name":"Taquaritinga","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":50098,"modificationDate":"2012-08-03"}, -{"geonameId":"1275848","name":"Bhongīr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":50094,"modificationDate":"2018-05-27"}, -{"geonameId":"2151716","name":"Reservoir","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":50092,"modificationDate":"2019-07-18"}, -{"geonameId":"1536289","name":"Snezhinsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":50086,"modificationDate":"2019-09-05"}, -{"geonameId":"3053438","name":"Dunaújváros","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":50084,"modificationDate":"2019-03-04"}, -{"geonameId":"2039623","name":"Uiju","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":50081,"modificationDate":"2020-06-18"}, -{"geonameId":"334227","name":"Inda Selassie","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":50078,"modificationDate":"2020-06-11"}, -{"geonameId":"2170089","name":"Craigieburn","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":50069,"modificationDate":"2019-07-18"}, -{"geonameId":"2907851","name":"Heidenheim an der Brenz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":50067,"modificationDate":"2014-01-15"}, -{"geonameId":"1850523","name":"Tateyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":50064,"modificationDate":"2017-07-22"}, -{"geonameId":"1642692","name":"Jatiroto","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":50059,"modificationDate":"2013-11-06"}, -{"geonameId":"1278498","name":"Aonla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":50011,"modificationDate":"2015-06-07"}, -{"geonameId":"2312393","name":"Moanda","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":50000,"modificationDate":"2017-09-01"}, -{"geonameId":"7290255","name":"Berlin Treptow","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":50000,"modificationDate":"2012-06-08"}, -{"geonameId":"2647261","name":"Hayes","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":50000,"modificationDate":"2012-03-01"}, -{"geonameId":"612287","name":"Rustavi","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":50000,"modificationDate":"2019-12-03"}, -{"geonameId":"92430","name":"Al-Hamdaniya","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":50000,"modificationDate":"2016-06-22"}, -{"geonameId":"7303471","name":"Arashiyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":50000,"modificationDate":"2017-04-09"}, -{"geonameId":"280155","name":"Ghazieh","countryName":"Lebanon","timeZoneName":"Asia/Beirut","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":50000,"modificationDate":"2019-09-19"}, -{"geonameId":"1302849","name":"Hpa-An","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":50000,"modificationDate":"2018-05-09"}, -{"geonameId":"3521305","name":"Polanco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":50000,"modificationDate":"2017-06-06"}, -{"geonameId":"6697380","name":"Putrajaya","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":50000,"modificationDate":"2008-10-17"}, -{"geonameId":"3616035","name":"Tipitapa","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":50000,"modificationDate":"2018-10-30"}, -{"geonameId":"3618908","name":"Juigalpa","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":50000,"modificationDate":"2018-10-13"}, -{"geonameId":"3828262","name":"Ciudad Sandino","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":50000,"modificationDate":"2018-10-13"}, -{"geonameId":"1161983","name":"Rawala Kot","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":50000,"modificationDate":"2019-12-06"}, -{"geonameId":"2266249","name":"Monsanto","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":50000,"modificationDate":"2012-01-17"}, -{"geonameId":"473127","name":"Novovladykino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50000,"modificationDate":"2013-04-02"}, -{"geonameId":"476368","name":"Vatutino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50000,"modificationDate":"2016-07-07"}, -{"geonameId":"477377","name":"Vagonoremont","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50000,"modificationDate":"2015-01-07"}, -{"geonameId":"497271","name":"Semënovskoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50000,"modificationDate":"2013-04-02"}, -{"geonameId":"518657","name":"Novokuz’minki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50000,"modificationDate":"2013-04-02"}, -{"geonameId":"518740","name":"Novokhovrino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50000,"modificationDate":"2016-07-13"}, -{"geonameId":"521500","name":"Nikolskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50000,"modificationDate":"2020-06-10"}, -{"geonameId":"535270","name":"Likhobory","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50000,"modificationDate":"2013-04-02"}, -{"geonameId":"543254","name":"Kozhukhovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50000,"modificationDate":"2013-04-02"}, -{"geonameId":"543344","name":"Kozeyevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50000,"modificationDate":"2013-04-02"}, -{"geonameId":"1512086","name":"Akademgorodok","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":50000,"modificationDate":"2015-11-30"}, -{"geonameId":"6418787","name":"Metrogorodok","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50000,"modificationDate":"2013-04-02"}, -{"geonameId":"8504947","name":"Untolovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":50000,"modificationDate":"2013-03-29"}, -{"geonameId":"172256","name":"‘Ayn al ‘Arab","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":50000,"modificationDate":"2018-10-13"}, -{"geonameId":"1154689","name":"Ko Samui","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":50000,"modificationDate":"2019-10-07"}, -{"geonameId":"6354984","name":"Merter Keresteciler","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":50000,"modificationDate":"2017-05-23"}, -{"geonameId":"6354985","name":"güngören merter","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":50000,"modificationDate":"2011-01-04"}, -{"geonameId":"6640202","name":"Merelani","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":50000,"modificationDate":"2008-02-03"}, -{"geonameId":"11748973","name":"Stonecrest","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":50000,"modificationDate":"2017-10-30"}, -{"geonameId":"601339","name":"Khojeili","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":50000,"modificationDate":"2020-06-10"}, -{"geonameId":"113659","name":"Tabas","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":49993,"modificationDate":"2013-10-23"}, -{"geonameId":"1267189","name":"Khagaria","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":49982,"modificationDate":"2015-11-08"}, -{"geonameId":"1721636","name":"Cabiao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":49980,"modificationDate":"2017-12-13"}, -{"geonameId":"5335663","name":"Cerritos","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":49975,"modificationDate":"2017-03-09"}, -{"geonameId":"1273002","name":"Dhāmpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":49973,"modificationDate":"2015-06-07"}, -{"geonameId":"2735083","name":"Rio Tinto","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":49966,"modificationDate":"2018-02-13"}, -{"geonameId":"2855047","name":"Peine","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":49953,"modificationDate":"2019-12-26"}, -{"geonameId":"933366","name":"Maun","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":49945,"modificationDate":"2019-09-05"}, -{"geonameId":"1492893","name":"Sayanogorsk","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":49939,"modificationDate":"2016-11-29"}, -{"geonameId":"5006917","name":"Redford","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":49936,"modificationDate":"2017-05-23"}, -{"geonameId":"3405812","name":"Belo Jardim","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":49922,"modificationDate":"2012-08-03"}, -{"geonameId":"3174021","name":"Marano di Napoli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":49920,"modificationDate":"2015-08-20"}, -{"geonameId":"2873606","name":"Mariendorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":49917,"modificationDate":"2012-06-09"}, -{"geonameId":"3985621","name":"San Luis de la Paz","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":49914,"modificationDate":"2018-11-03"}, -{"geonameId":"7315245","name":"East Honolulu","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":49914,"modificationDate":"2017-03-10"}, -{"geonameId":"2756767","name":"Doetinchem","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":49906,"modificationDate":"2017-10-17"}, -{"geonameId":"5141502","name":"Troy","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":49906,"modificationDate":"2017-05-23"}, -{"geonameId":"1735339","name":"Mukah","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":49900,"modificationDate":"2019-08-09"}, -{"geonameId":"2640681","name":"Paignton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":49886,"modificationDate":"2011-03-03"}, -{"geonameId":"553216","name":"Kanash","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":49886,"modificationDate":"2019-09-05"}, -{"geonameId":"3170147","name":"Pordenone","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":49878,"modificationDate":"2018-03-16"}, -{"geonameId":"2335843","name":"Kabba","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":49869,"modificationDate":"2016-01-30"}, -{"geonameId":"525404","name":"Monchegorsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":49868,"modificationDate":"2019-09-05"}, -{"geonameId":"741304","name":"Niksar","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":49865,"modificationDate":"2014-06-27"}, -{"geonameId":"2283016","name":"Odienné","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":49857,"modificationDate":"2017-04-23"}, -{"geonameId":"1257196","name":"Sardhana","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":49857,"modificationDate":"2015-04-08"}, -{"geonameId":"1272640","name":"Dīdwāna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":49852,"modificationDate":"2014-10-14"}, -{"geonameId":"1120985","name":"Zaranj","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":49851,"modificationDate":"2018-02-13"}, -{"geonameId":"1514258","name":"Chortoq","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":49844,"modificationDate":"2016-04-10"}, -{"geonameId":"2864435","name":"Neunkirchen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":49843,"modificationDate":"2017-09-20"}, -{"geonameId":"418851","name":"Falāvarjān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":49843,"modificationDate":"2014-09-06"}, -{"geonameId":"5140221","name":"Sunnyside","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":49833,"modificationDate":"2017-04-16"}, -{"geonameId":"713749","name":"Okhtyrka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":49818,"modificationDate":"2014-07-08"}, -{"geonameId":"1851504","name":"Sugito","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":49817,"modificationDate":"2017-04-09"}, -{"geonameId":"2685750","name":"Östersund","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":49806,"modificationDate":"2019-09-05"}, -{"geonameId":"784024","name":"Zaječar","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":49800,"modificationDate":"2019-09-05"}, -{"geonameId":"3405792","name":"Benevides","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":49794,"modificationDate":"2012-08-03"}, -{"geonameId":"2752923","name":"Kerkrade","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":49777,"modificationDate":"2019-01-14"}, -{"geonameId":"3881276","name":"Lota","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":49763,"modificationDate":"2013-01-11"}, -{"geonameId":"760924","name":"Puławy","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":49759,"modificationDate":"2019-09-05"}, -{"geonameId":"2491913","name":"Khemis el Khechna","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":49757,"modificationDate":"2012-01-19"}, -{"geonameId":"2445488","name":"Dosso","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":49750,"modificationDate":"2012-01-18"}, -{"geonameId":"1611439","name":"Chachoengsao","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":49741,"modificationDate":"2012-01-16"}, -{"geonameId":"1185247","name":"Chillmari","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":49736,"modificationDate":"2020-06-10"}, -{"geonameId":"4801859","name":"Charleston","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":49736,"modificationDate":"2019-09-05"}, -{"geonameId":"4562193","name":"Wharton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":49732,"modificationDate":"2018-01-16"}, -{"geonameId":"4562237","name":"Whitman","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":49732,"modificationDate":"2018-01-16"}, -{"geonameId":"4890119","name":"Downers Grove","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":49732,"modificationDate":"2017-05-23"}, -{"geonameId":"158160","name":"Katoro","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":49691,"modificationDate":"2016-07-26"}, -{"geonameId":"5325423","name":"Azusa","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":49690,"modificationDate":"2017-03-09"}, -{"geonameId":"1269392","name":"Jalor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":49682,"modificationDate":"2014-10-14"}, -{"geonameId":"308024","name":"Keskin","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":49679,"modificationDate":"2012-01-18"}, -{"geonameId":"1214800","name":"Labuhan Deli","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":49668,"modificationDate":"2012-01-17"}, -{"geonameId":"1177397","name":"Hadali","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":49663,"modificationDate":"2019-12-06"}, -{"geonameId":"710035","name":"Myrnohrad","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":49646,"modificationDate":"2018-06-30"}, -{"geonameId":"4499389","name":"Wilson","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":49643,"modificationDate":"2017-05-23"}, -{"geonameId":"261743","name":"Irákleio","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":49642,"modificationDate":"2019-10-23"}, -{"geonameId":"3028641","name":"Carcassonne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":49600,"modificationDate":"2020-05-07"}, -{"geonameId":"4333669","name":"Monroe","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":49598,"modificationDate":"2019-09-19"}, -{"geonameId":"2644100","name":"Llanelli","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":49591,"modificationDate":"2017-06-12"}, -{"geonameId":"1699205","name":"Morong","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":49589,"modificationDate":"2017-12-13"}, -{"geonameId":"942511","name":"Vryburg","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":49588,"modificationDate":"2012-07-12"}, -{"geonameId":"1258868","name":"Rājgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":49583,"modificationDate":"2014-10-14"}, -{"geonameId":"1276977","name":"Bārh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":49557,"modificationDate":"2016-01-07"}, -{"geonameId":"1850185","name":"Tokoname","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":49554,"modificationDate":"2017-07-26"}, -{"geonameId":"5434006","name":"Parker","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":49550,"modificationDate":"2017-03-09"}, -{"geonameId":"1277950","name":"Badūria","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":49547,"modificationDate":"2014-10-14"}, -{"geonameId":"159492","name":"Ifakara","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":49528,"modificationDate":"2016-07-26"}, -{"geonameId":"3081677","name":"Wodzisław Śląski","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":49521,"modificationDate":"2010-09-21"}, -{"geonameId":"5364007","name":"La Mirada","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":49520,"modificationDate":"2017-03-09"}, -{"geonameId":"2953386","name":"Bad Oeynhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":49513,"modificationDate":"2015-09-04"}, -{"geonameId":"309415","name":"Sultaniye","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":49509,"modificationDate":"2020-06-10"}, -{"geonameId":"3532792","name":"Apizaco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":49506,"modificationDate":"2018-11-03"}, -{"geonameId":"1256431","name":"Suratur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":49501,"modificationDate":"2020-06-10"}, -{"geonameId":"32723","name":"Īstgāh-e Rāh Āhan-e Garmsār","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":49491,"modificationDate":"2013-01-09"}, -{"geonameId":"2878044","name":"Lichtenrade","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":49489,"modificationDate":"2017-09-19"}, -{"geonameId":"2525790","name":"Acireale","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":49477,"modificationDate":"2015-08-20"}, -{"geonameId":"3037598","name":"Angoulême","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":49468,"modificationDate":"2019-10-09"}, -{"geonameId":"2645298","name":"Kirkcaldy","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":49460,"modificationDate":"2017-06-12"}, -{"geonameId":"5897884","name":"Belleville","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":49454,"modificationDate":"2018-01-20"}, -{"geonameId":"5690532","name":"Minot","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":49450,"modificationDate":"2017-05-23"}, -{"geonameId":"2152819","name":"Point Cook","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":49436,"modificationDate":"2019-07-18"}, -{"geonameId":"3456138","name":"Nova Odessa","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":49432,"modificationDate":"2012-08-03"}, -{"geonameId":"1185160","name":"Nageswari","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":49425,"modificationDate":"2016-11-09"}, -{"geonameId":"5711099","name":"Aloha","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":49425,"modificationDate":"2011-05-14"}, -{"geonameId":"325579","name":"Ziway","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":49416,"modificationDate":"2012-01-19"}, -{"geonameId":"1268799","name":"Tatanagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":49410,"modificationDate":"2020-06-10"}, -{"geonameId":"759141","name":"Skarżysko-Kamienna","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":49410,"modificationDate":"2010-10-12"}, -{"geonameId":"3556078","name":"Jobabo","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":49403,"modificationDate":"2016-01-07"}, -{"geonameId":"2295065","name":"Suhum","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":49398,"modificationDate":"2019-12-06"}, -{"geonameId":"304013","name":"Mut","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":49397,"modificationDate":"2012-01-18"}, -{"geonameId":"3679065","name":"La Estrella","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":49386,"modificationDate":"2018-06-08"}, -{"geonameId":"498418","name":"Satka","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":49384,"modificationDate":"2019-09-05"}, -{"geonameId":"2619528","name":"Hvidovre","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":49380,"modificationDate":"2017-10-18"}, -{"geonameId":"1153807","name":"Cha-am","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":49375,"modificationDate":"2014-04-05"}, -{"geonameId":"173193","name":"An Nabk","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":49372,"modificationDate":"2017-02-03"}, -{"geonameId":"938457","name":"Wolmaransstad","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":49366,"modificationDate":"2012-07-12"}, -{"geonameId":"704403","name":"Sorokyne","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":49352,"modificationDate":"2018-05-29"}, -{"geonameId":"5007989","name":"Saginaw","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":49347,"modificationDate":"2017-05-23"}, -{"geonameId":"686502","name":"Alexandria","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":49346,"modificationDate":"2016-02-07"}, -{"geonameId":"4673094","name":"Bedford","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":49337,"modificationDate":"2017-03-09"}, -{"geonameId":"1266452","name":"Kizhake Chālakudi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":49330,"modificationDate":"2014-10-13"}, -{"geonameId":"3390907","name":"Quixadá","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":49328,"modificationDate":"2012-08-03"}, -{"geonameId":"5386082","name":"Rancho Santa Margarita","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":49324,"modificationDate":"2017-03-09"}, -{"geonameId":"4562635","name":"Arecibo","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":49318,"modificationDate":"2015-08-03"}, -{"geonameId":"1170294","name":"Mirpur Mathelo","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":49311,"modificationDate":"2019-12-06"}, -{"geonameId":"500299","name":"Ruzayevka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":49311,"modificationDate":"2016-11-24"}, -{"geonameId":"1006834","name":"Edenvale","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":49292,"modificationDate":"2017-01-12"}, -{"geonameId":"5341256","name":"Cypress","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":49290,"modificationDate":"2017-03-09"}, -{"geonameId":"3724337","name":"Grangwav","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":49288,"modificationDate":"2017-04-07"}, -{"geonameId":"1850091","name":"Tomioka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":49281,"modificationDate":"2017-07-22"}, -{"geonameId":"2780741","name":"Dornbirn","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":49278,"modificationDate":"2019-09-05"}, -{"geonameId":"3846915","name":"Ledesma","countryName":"Argentina","timeZoneName":"America/Argentina/Jujuy","timeZoneOffsetNameWithoutDst":"Argentina Time","population":49267,"modificationDate":"2020-06-10"}, -{"geonameId":"1005029","name":"eSikhaleni","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":49265,"modificationDate":"2018-08-08"}, -{"geonameId":"3167010","name":"Scafati","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":49264,"modificationDate":"2015-08-20"}, -{"geonameId":"3454358","name":"Pedro Leopoldo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":49261,"modificationDate":"2012-08-03"}, -{"geonameId":"5778755","name":"Murray","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":49250,"modificationDate":"2017-03-09"}, -{"geonameId":"2902768","name":"Hof","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":49239,"modificationDate":"2014-11-02"}, -{"geonameId":"2476403","name":"Timimoun","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":49237,"modificationDate":"2019-11-25"}, -{"geonameId":"3037543","name":"Annecy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":49232,"modificationDate":"2019-09-05"}, -{"geonameId":"2493222","name":"I-n-Salah","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":49223,"modificationDate":"2012-01-19"}, -{"geonameId":"2127878","name":"Mutsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":49220,"modificationDate":"2017-07-22"}, -{"geonameId":"1779790","name":"Bentong Town","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":49213,"modificationDate":"2015-04-01"}, -{"geonameId":"1706393","name":"Liloan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":49198,"modificationDate":"2017-12-13"}, -{"geonameId":"3527879","name":"Emiliano Zapata","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":49193,"modificationDate":"2018-11-03"}, -{"geonameId":"3087497","name":"Radomsko","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":49175,"modificationDate":"2010-09-06"}, -{"geonameId":"110619","name":"Abū ‘Arīsh","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":49171,"modificationDate":"2012-01-16"}, -{"geonameId":"3685949","name":"Copacabana","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":49169,"modificationDate":"2018-06-08"}, -{"geonameId":"2186239","name":"New Plymouth","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":49168,"modificationDate":"2011-08-01"}, -{"geonameId":"1131316","name":"Paghman Palace","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":49157,"modificationDate":"2020-06-09"}, -{"geonameId":"3173180","name":"Moncalieri","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":49153,"modificationDate":"2018-03-16"}, -{"geonameId":"5151613","name":"Cuyahoga Falls","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":49146,"modificationDate":"2017-05-23"}, -{"geonameId":"418521","name":"Rahnan","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":49143,"modificationDate":"2020-06-11"}, -{"geonameId":"3452775","name":"Porto Ferreira","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":49127,"modificationDate":"2012-08-03"}, -{"geonameId":"5589173","name":"Coeur d'Alene","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":49122,"modificationDate":"2017-07-16"}, -{"geonameId":"5095779","name":"Bloomfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":49120,"modificationDate":"2019-06-12"}, -{"geonameId":"1644522","name":"Gampengrejo","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":49118,"modificationDate":"2007-11-09"}, -{"geonameId":"2654579","name":"Bromsgrove","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":49117,"modificationDate":"2017-06-12"}, -{"geonameId":"1256363","name":"Sidlaghatta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":49114,"modificationDate":"2016-09-08"}, -{"geonameId":"2131612","name":"Goshogawara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":49110,"modificationDate":"2017-07-22"}, -{"geonameId":"2924599","name":"Friedrichsfelde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":49109,"modificationDate":"2012-06-09"}, -{"geonameId":"3888214","name":"Hacienda La Calera","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":49106,"modificationDate":"2012-05-03"}, -{"geonameId":"3471039","name":"Balneário Camboriú","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":49100,"modificationDate":"2012-08-03"}, -{"geonameId":"3164433","name":"Viareggio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":49099,"modificationDate":"2018-03-16"}, -{"geonameId":"5192726","name":"Harrisburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":49081,"modificationDate":"2019-09-19"}, -{"geonameId":"3447690","name":"Serrinha","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":49078,"modificationDate":"2012-08-03"}, -{"geonameId":"3461550","name":"Ibitinga","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":49074,"modificationDate":"2012-08-03"}, -{"geonameId":"2887835","name":"Kleve","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":49072,"modificationDate":"2017-07-05"}, -{"geonameId":"1853237","name":"Saiki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":49065,"modificationDate":"2017-07-22"}, -{"geonameId":"10629856","name":"Fujiyoshida","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":49055,"modificationDate":"2018-02-23"}, -{"geonameId":"1273708","name":"Dāhānu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":49048,"modificationDate":"2013-02-08"}, -{"geonameId":"2475475","name":"Touggourt","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":49044,"modificationDate":"2012-01-19"}, -{"geonameId":"784873","name":"Trstenik","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":49043,"modificationDate":"2012-04-15"}, -{"geonameId":"759123","name":"Skierniewice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":49042,"modificationDate":"2019-09-05"}, -{"geonameId":"3573890","name":"Port of Spain","countryName":"Trinidad and Tobago","timeZoneName":"America/Port_of_Spain","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":49031,"modificationDate":"2019-09-05"}, -{"geonameId":"1183460","name":"Bannu","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":49008,"modificationDate":"2019-12-06"}, -{"geonameId":"1645343","name":"Dompu","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":49000,"modificationDate":"2016-01-17"}, -{"geonameId":"375495","name":"Pajok","countryName":"South Sudan","timeZoneName":"Africa/Juba","timeZoneOffsetNameWithoutDst":"East Africa Time","population":49000,"modificationDate":"2017-06-12"}, -{"geonameId":"1608057","name":"Pak Chong","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":48999,"modificationDate":"2012-01-16"}, -{"geonameId":"5389126","name":"Rowland Heights","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":48993,"modificationDate":"2011-05-14"}, -{"geonameId":"1487277","name":"Verkhnyaya Salda","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":48992,"modificationDate":"2019-09-05"}, -{"geonameId":"5340175","name":"Covina","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":48984,"modificationDate":"2017-03-09"}, -{"geonameId":"2753106","name":"Kampen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":48980,"modificationDate":"2019-09-05"}, -{"geonameId":"168325","name":"Khan-Sheikhoun","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":48975,"modificationDate":"2020-06-10"}, -{"geonameId":"3514876","name":"Valladolid","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":48973,"modificationDate":"2018-11-03"}, -{"geonameId":"4552215","name":"Stillwater","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":48967,"modificationDate":"2017-03-09"}, -{"geonameId":"293845","name":"Qiryat Ata","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":48966,"modificationDate":"2017-07-05"}, -{"geonameId":"1835515","name":"T’aebaek","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":48962,"modificationDate":"2012-01-18"}, -{"geonameId":"787157","name":"Peć","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":48962,"modificationDate":"2019-10-02"}, -{"geonameId":"2011457","name":"Gatak","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":48959,"modificationDate":"2018-12-06"}, -{"geonameId":"1258386","name":"Rasipuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":48950,"modificationDate":"2014-10-14"}, -{"geonameId":"2637802","name":"Sittingbourne","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":48948,"modificationDate":"2017-06-12"}, -{"geonameId":"3832899","name":"Viedma","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":48940,"modificationDate":"2016-01-30"}, -{"geonameId":"3182179","name":"Benevento","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":48931,"modificationDate":"2018-03-16"}, -{"geonameId":"5940956","name":"Dollard-Des Ormeaux","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48930,"modificationDate":"2018-02-24"}, -{"geonameId":"2376898","name":"Rosso","countryName":"Mauritania","timeZoneName":"Africa/Nouakchott","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":48922,"modificationDate":"2019-09-05"}, -{"geonameId":"1495974","name":"Osinniki","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":48919,"modificationDate":"2019-09-05"}, -{"geonameId":"3514868","name":"Valle Hermoso","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":48918,"modificationDate":"2018-11-03"}, -{"geonameId":"5128723","name":"Niagara Falls","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48916,"modificationDate":"2017-05-23"}, -{"geonameId":"1513092","name":"Novyy Turtkul’","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":48908,"modificationDate":"2016-10-07"}, -{"geonameId":"1626936","name":"Singaparna","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":48882,"modificationDate":"2016-01-07"}, -{"geonameId":"1259228","name":"Punganūru","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":48865,"modificationDate":"2016-11-22"}, -{"geonameId":"4614748","name":"Collierville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":48863,"modificationDate":"2017-03-09"}, -{"geonameId":"1263898","name":"Mandapeta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":48852,"modificationDate":"2014-10-10"}, -{"geonameId":"4597919","name":"Summerville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48848,"modificationDate":"2017-03-09"}, -{"geonameId":"122397","name":"Nekā","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":48847,"modificationDate":"2014-09-04"}, -{"geonameId":"1259400","name":"Poonamalle","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":48837,"modificationDate":"2014-10-14"}, -{"geonameId":"1622318","name":"Waingapu","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":48828,"modificationDate":"2017-12-25"}, -{"geonameId":"4369928","name":"South Bel Air","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48828,"modificationDate":"2010-09-05"}, -{"geonameId":"2849802","name":"Ravensburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":48825,"modificationDate":"2014-01-16"}, -{"geonameId":"2637476","name":"South Benfleet","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":48824,"modificationDate":"2010-08-03"}, -{"geonameId":"1276867","name":"Barpeta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":48824,"modificationDate":"2014-10-13"}, -{"geonameId":"5928065","name":"Cornwall","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48821,"modificationDate":"2009-07-31"}, -{"geonameId":"3465671","name":"Congonhas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":48819,"modificationDate":"2014-10-22"}, -{"geonameId":"361435","name":"El Balyana","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":48801,"modificationDate":"2020-06-11"}, -{"geonameId":"5272893","name":"Sheboygan","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":48797,"modificationDate":"2017-05-23"}, -{"geonameId":"2454955","name":"Kolokani","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":48774,"modificationDate":"2013-11-09"}, -{"geonameId":"4518264","name":"Middletown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48760,"modificationDate":"2017-08-03"}, -{"geonameId":"4347553","name":"Aspen Hill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48759,"modificationDate":"2018-09-24"}, -{"geonameId":"3650273","name":"Velasco Ibarra","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":48754,"modificationDate":"2017-02-07"}, -{"geonameId":"3469540","name":"Boituva","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":48750,"modificationDate":"2012-03-10"}, -{"geonameId":"3985035","name":"San Pedro","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":48746,"modificationDate":"2018-11-03"}, -{"geonameId":"3445746","name":"União da Vitória","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":48741,"modificationDate":"2019-12-31"}, -{"geonameId":"2925259","name":"Frechen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":48733,"modificationDate":"2015-09-04"}, -{"geonameId":"4192375","name":"Dunwoody","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48733,"modificationDate":"2017-03-09"}, -{"geonameId":"3716044","name":"Verrettes","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48724,"modificationDate":"2017-05-08"}, -{"geonameId":"2524881","name":"Crotone","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":48704,"modificationDate":"2015-08-19"}, -{"geonameId":"2930821","name":"Elmshorn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":48703,"modificationDate":"2015-09-04"}, -{"geonameId":"174186","name":"Afrine","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":48693,"modificationDate":"2020-06-10"}, -{"geonameId":"1499053","name":"Megion","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":48691,"modificationDate":"2019-09-05"}, -{"geonameId":"2516479","name":"Ibiza","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":48684,"modificationDate":"2016-01-14"}, -{"geonameId":"3985865","name":"San Juan de los Lagos","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":48684,"modificationDate":"2018-11-03"}, -{"geonameId":"1692872","name":"Port Area","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":48684,"modificationDate":"2017-05-04"}, -{"geonameId":"1179496","name":"Dullewala","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":48682,"modificationDate":"2019-12-06"}, -{"geonameId":"935268","name":"Saint-André","countryName":"Reunion","timeZoneName":"Indian/Reunion","timeZoneOffsetNameWithoutDst":"Réunion Time","population":48674,"modificationDate":"2012-01-18"}, -{"geonameId":"2744911","name":"Weert","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":48662,"modificationDate":"2017-10-17"}, -{"geonameId":"1317375","name":"Kyaikto","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":48658,"modificationDate":"2016-06-01"}, -{"geonameId":"2656406","name":"Banbury","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":48651,"modificationDate":"2018-07-03"}, -{"geonameId":"1255046","name":"Tamlūk","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":48646,"modificationDate":"2014-10-14"}, -{"geonameId":"1276371","name":"Bhabhua","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":48641,"modificationDate":"2015-08-07"}, -{"geonameId":"1716924","name":"Consolacion","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":48638,"modificationDate":"2017-12-13"}, -{"geonameId":"4809537","name":"Huntington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48638,"modificationDate":"2017-03-09"}, -{"geonameId":"1310460","name":"Martaban","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":48629,"modificationDate":"2016-06-01"}, -{"geonameId":"2661513","name":"Biel/Bienne","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":48614,"modificationDate":"2019-09-11"}, -{"geonameId":"3792392","name":"Plato","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":48606,"modificationDate":"2018-08-08"}, -{"geonameId":"5303752","name":"Maricopa","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":48602,"modificationDate":"2017-03-09"}, -{"geonameId":"3399506","name":"Floriano","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":48587,"modificationDate":"2012-08-03"}, -{"geonameId":"1857594","name":"Masuda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":48576,"modificationDate":"2017-07-22"}, -{"geonameId":"2667303","name":"Trollhättan","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":48573,"modificationDate":"2019-09-05"}, -{"geonameId":"695464","name":"Romny","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":48570,"modificationDate":"2014-11-05"}, -{"geonameId":"3454954","name":"Parobé","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":48559,"modificationDate":"2012-08-03"}, -{"geonameId":"1267486","name":"Kathua","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":48551,"modificationDate":"2015-09-06"}, -{"geonameId":"481985","name":"Torzhok","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":48546,"modificationDate":"2019-09-05"}, -{"geonameId":"1679980","name":"Vigan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":48545,"modificationDate":"2017-12-13"}, -{"geonameId":"5488441","name":"Roswell","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":48544,"modificationDate":"2017-03-09"}, -{"geonameId":"1185141","name":"Panchagarh","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":48531,"modificationDate":"2016-11-09"}, -{"geonameId":"2946111","name":"Bornheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":48523,"modificationDate":"2015-09-04"}, -{"geonameId":"4679803","name":"Cedar Hill","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":48507,"modificationDate":"2017-03-09"}, -{"geonameId":"1261922","name":"Nangal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":48497,"modificationDate":"2018-07-17"}, -{"geonameId":"5097402","name":"East Brunswick","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48495,"modificationDate":"2019-04-10"}, -{"geonameId":"3465508","name":"Cornélio Procópio","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":48487,"modificationDate":"2017-07-02"}, -{"geonameId":"3447839","name":"Senhor do Bonfim","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":48471,"modificationDate":"2017-05-02"}, -{"geonameId":"4991640","name":"East Lansing","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48471,"modificationDate":"2017-05-23"}, -{"geonameId":"3834813","name":"Tafí Viejo","countryName":"Argentina","timeZoneName":"America/Argentina/Tucuman","timeZoneOffsetNameWithoutDst":"Argentina Time","population":48459,"modificationDate":"2016-01-30"}, -{"geonameId":"3190342","name":"Sombor","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":48454,"modificationDate":"2020-01-28"}, -{"geonameId":"3686636","name":"Chigorodó","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":48443,"modificationDate":"2018-06-08"}, -{"geonameId":"3164630","name":"Velletri","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":48443,"modificationDate":"2015-08-19"}, -{"geonameId":"2744248","name":"Woerden","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":48431,"modificationDate":"2017-10-17"}, -{"geonameId":"3586977","name":"Cojutepeque","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":48411,"modificationDate":"2012-01-14"}, -{"geonameId":"3123673","name":"el Raval","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":48403,"modificationDate":"2017-05-26"}, -{"geonameId":"1148311","name":"Chigha Serai","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":48400,"modificationDate":"2020-06-09"}, -{"geonameId":"2747203","name":"Sittard","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":48400,"modificationDate":"2017-10-17"}, -{"geonameId":"1261415","name":"Nihtaur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":48389,"modificationDate":"2016-07-04"}, -{"geonameId":"4146166","name":"Apopka","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48382,"modificationDate":"2017-03-09"}, -{"geonameId":"1650095","name":"Banyumas","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":48378,"modificationDate":"2012-01-17"}, -{"geonameId":"1626649","name":"Solok","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":48372,"modificationDate":"2013-07-04"}, -{"geonameId":"3567834","name":"Baracoa","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":48362,"modificationDate":"2016-03-10"}, -{"geonameId":"1854979","name":"Nonoichi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":48354,"modificationDate":"2017-07-22"}, -{"geonameId":"1858301","name":"Kurayoshi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":48347,"modificationDate":"2017-07-22"}, -{"geonameId":"2798578","name":"Etterbeek","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":48344,"modificationDate":"2020-05-25"}, -{"geonameId":"2316259","name":"Bulungu","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":48344,"modificationDate":"2016-11-22"}, -{"geonameId":"5126180","name":"Maspeth","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48325,"modificationDate":"2017-04-16"}, -{"geonameId":"3094170","name":"Kutno","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":48323,"modificationDate":"2010-10-15"}, -{"geonameId":"1852595","name":"Shibukawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":48322,"modificationDate":"2017-07-22"}, -{"geonameId":"2634493","name":"West Bridgford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":48314,"modificationDate":"2011-03-03"}, -{"geonameId":"2642414","name":"Mitcham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":48311,"modificationDate":"2014-12-30"}, -{"geonameId":"1501141","name":"Kuybyshev","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":48308,"modificationDate":"2019-09-05"}, -{"geonameId":"1205481","name":"Uttar Char Fasson","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":48305,"modificationDate":"2012-07-04"}, -{"geonameId":"3496831","name":"Mao","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":48297,"modificationDate":"2016-06-05"}, -{"geonameId":"1632974","name":"Pameungpeuk","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":48294,"modificationDate":"2018-12-04"}, -{"geonameId":"729730","name":"Kyustendil","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":48286,"modificationDate":"2016-02-07"}, -{"geonameId":"4373349","name":"Wheaton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48284,"modificationDate":"2011-05-14"}, -{"geonameId":"785482","name":"Shtip","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":48279,"modificationDate":"2011-08-15"}, -{"geonameId":"490377","name":"Sosnovaya Polyana","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":48271,"modificationDate":"2015-08-17"}, -{"geonameId":"3031815","name":"Bondy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":48268,"modificationDate":"2016-02-18"}, -{"geonameId":"1695097","name":"Paniqui","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":48261,"modificationDate":"2017-12-13"}, -{"geonameId":"4923670","name":"Mishawaka","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48261,"modificationDate":"2017-05-23"}, -{"geonameId":"2113115","name":"Ami","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":48256,"modificationDate":"2017-04-09"}, -{"geonameId":"2556464","name":"Azrou","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":48249,"modificationDate":"2016-11-02"}, -{"geonameId":"1734781","name":"Banting","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":48240,"modificationDate":"2014-04-06"}, -{"geonameId":"1865290","name":"Annaka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":48235,"modificationDate":"2017-07-22"}, -{"geonameId":"2642233","name":"Morden","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":48233,"modificationDate":"2017-12-06"}, -{"geonameId":"3436003","name":"Boedo","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":48231,"modificationDate":"2017-12-06"}, -{"geonameId":"471101","name":"Vsevolozhsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":48224,"modificationDate":"2019-09-05"}, -{"geonameId":"733840","name":"Eskije","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":48221,"modificationDate":"2020-06-10"}, -{"geonameId":"7828758","name":"Saipan","countryName":"Northern Mariana Islands","timeZoneName":"Pacific/Saipan","timeZoneOffsetNameWithoutDst":"Chamorro Time","population":48220,"modificationDate":"2017-12-07"}, -{"geonameId":"77408","name":"Bājil","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":48218,"modificationDate":"2016-01-07"}, -{"geonameId":"3084826","name":"Starogard Gdański","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":48202,"modificationDate":"2010-09-13"}, -{"geonameId":"2013923","name":"Ust Kutsk","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":48202,"modificationDate":"2020-06-10"}, -{"geonameId":"3842190","name":"Palpalá","countryName":"Argentina","timeZoneName":"America/Argentina/Jujuy","timeZoneOffsetNameWithoutDst":"Argentina Time","population":48199,"modificationDate":"2016-01-30"}, -{"geonameId":"1725729","name":"Bayombong","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":48199,"modificationDate":"2017-12-13"}, -{"geonameId":"3453078","name":"Ponte Nova","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":48187,"modificationDate":"2012-08-03"}, -{"geonameId":"304184","name":"Mughlah","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":48183,"modificationDate":"2020-06-10"}, -{"geonameId":"5006250","name":"Portage","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48177,"modificationDate":"2017-05-23"}, -{"geonameId":"2651654","name":"Cwmbran","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":48157,"modificationDate":"2014-01-05"}, -{"geonameId":"1647936","name":"Buduran","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":48152,"modificationDate":"2012-01-17"}, -{"geonameId":"324172","name":"Philadelphia","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":48147,"modificationDate":"2020-06-10"}, -{"geonameId":"3652743","name":"Puerto Francisco de Orellana","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":48144,"modificationDate":"2017-02-07"}, -{"geonameId":"1265354","name":"Lachmangarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":48142,"modificationDate":"2020-06-10"}, -{"geonameId":"5106298","name":"West Orange","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48131,"modificationDate":"2018-02-18"}, -{"geonameId":"3179337","name":"Cava Dè Tirreni","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":48127,"modificationDate":"2015-08-19"}, -{"geonameId":"3438834","name":"Concepción","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":48123,"modificationDate":"2018-04-09"}, -{"geonameId":"4772354","name":"McLean","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":48115,"modificationDate":"2011-05-14"}, -{"geonameId":"3113082","name":"Portugalete","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":48105,"modificationDate":"2012-11-14"}, -{"geonameId":"3182650","name":"Avellino","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":48104,"modificationDate":"2018-03-16"}, -{"geonameId":"2437732","name":"Birni N Konni","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":48103,"modificationDate":"2013-05-12"}, -{"geonameId":"1317402","name":"Kyaikkami","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":48100,"modificationDate":"2016-06-01"}, -{"geonameId":"1666596","name":"Donggang","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":48100,"modificationDate":"2018-03-09"}, -{"geonameId":"1254331","name":"Tiruvallur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":48095,"modificationDate":"2014-10-14"}, -{"geonameId":"3400804","name":"Escada","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":48083,"modificationDate":"2012-08-03"}, -{"geonameId":"12070070","name":"San Lorenzo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":48078,"modificationDate":"2019-07-22"}, -{"geonameId":"3005269","name":"Le Blanc-Mesnil","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":48077,"modificationDate":"2016-02-18"}, -{"geonameId":"6173865","name":"Vernon","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":48073,"modificationDate":"2019-08-08"}, -{"geonameId":"359953","name":"Esh-Shuhada","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":48060,"modificationDate":"2020-06-11"}, -{"geonameId":"3446847","name":"Taquara","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":48051,"modificationDate":"2012-08-03"}, -{"geonameId":"142358","name":"Meshed-i-Sar","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":48051,"modificationDate":"2020-06-10"}, -{"geonameId":"2968705","name":"Villejuif","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":48048,"modificationDate":"2016-02-18"}, -{"geonameId":"2831708","name":"Soest","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":48037,"modificationDate":"2019-09-05"}, -{"geonameId":"1255654","name":"Sri Dungargarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":48036,"modificationDate":"2020-06-10"}, -{"geonameId":"11121204","name":"Colonia del Sol","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":48032,"modificationDate":"2017-12-06"}, -{"geonameId":"3517742","name":"Santa Ana Chiautempan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":48030,"modificationDate":"2018-11-03"}, -{"geonameId":"202065","name":"Kibuye","countryName":"Rwanda","timeZoneName":"Africa/Kigali","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":48024,"modificationDate":"2016-07-06"}, -{"geonameId":"1185149","name":"Parbatipur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":48020,"modificationDate":"2016-11-09"}, -{"geonameId":"3600026","name":"Puerto Cortez","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":48013,"modificationDate":"2016-02-02"}, -{"geonameId":"286402","name":"Al Shinas","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":48009,"modificationDate":"2020-06-10"}, -{"geonameId":"1861207","name":"Iwakura","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":48007,"modificationDate":"2017-07-22"}, -{"geonameId":"6090785","name":"North Vancouver","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":48000,"modificationDate":"2019-02-26"}, -{"geonameId":"294999","name":"Givatayim","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":48000,"modificationDate":"2020-01-24"}, -{"geonameId":"348112","name":"Sīdī Sālim","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":47998,"modificationDate":"2018-03-15"}, -{"geonameId":"5164466","name":"Newark","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":47986,"modificationDate":"2017-05-23"}, -{"geonameId":"1283329","name":"Titahari","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":47984,"modificationDate":"2019-10-19"}, -{"geonameId":"2473634","name":"El Kef","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":47979,"modificationDate":"2018-08-30"}, -{"geonameId":"1570549","name":"Phú Khương","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":47966,"modificationDate":"2018-12-04"}, -{"geonameId":"1258294","name":"Raxaul","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47965,"modificationDate":"2015-10-04"}, -{"geonameId":"5335650","name":"Ceres","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":47963,"modificationDate":"2017-03-09"}, -{"geonameId":"3684666","name":"El Carmen","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":47957,"modificationDate":"2020-06-11"}, -{"geonameId":"3387202","name":"Sousa","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":47927,"modificationDate":"2012-08-03"}, -{"geonameId":"1328218","name":"Bhamo","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":47920,"modificationDate":"2016-06-01"}, -{"geonameId":"1256029","name":"Siruguppa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47917,"modificationDate":"2015-12-05"}, -{"geonameId":"1177278","name":"Hala","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":47915,"modificationDate":"2019-12-06"}, -{"geonameId":"2850257","name":"Rastatt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":47906,"modificationDate":"2014-01-16"}, -{"geonameId":"2960992","name":"Waterford","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":47904,"modificationDate":"2019-03-16"}, -{"geonameId":"2643697","name":"Long Eaton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":47898,"modificationDate":"2011-03-03"}, -{"geonameId":"3461763","name":"Guaxupé","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":47889,"modificationDate":"2012-08-03"}, -{"geonameId":"4314550","name":"Alexandria","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":47889,"modificationDate":"2017-03-09"}, -{"geonameId":"3462378","name":"Goianésia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":47883,"modificationDate":"2012-08-03"}, -{"geonameId":"935223","name":"Saint-Louis","countryName":"Reunion","timeZoneName":"Indian/Reunion","timeZoneOffsetNameWithoutDst":"Réunion Time","population":47881,"modificationDate":"2012-01-18"}, -{"geonameId":"1276832","name":"Bāruipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47874,"modificationDate":"2014-10-14"}, -{"geonameId":"8428480","name":"El‘ad","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":47866,"modificationDate":"2020-04-21"}, -{"geonameId":"4381072","name":"Chesterfield","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":47864,"modificationDate":"2017-05-23"}, -{"geonameId":"1263824","name":"Cutch-Mandvi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47853,"modificationDate":"2020-06-10"}, -{"geonameId":"1263684","name":"Manjlegaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47845,"modificationDate":"2020-06-10"}, -{"geonameId":"3465105","name":"Cruz das Almas","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":47844,"modificationDate":"2012-08-03"}, -{"geonameId":"1228730","name":"Ratnapura","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":47832,"modificationDate":"2019-04-10"}, -{"geonameId":"3801276","name":"Tierra Blanca","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":47824,"modificationDate":"2018-11-03"}, -{"geonameId":"1127768","name":"Samagan","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":47823,"modificationDate":"2020-06-09"}, -{"geonameId":"354981","name":"Juhaynah","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":47821,"modificationDate":"2012-01-19"}, -{"geonameId":"4929771","name":"Barnstable","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":47821,"modificationDate":"2017-05-23"}, -{"geonameId":"1167031","name":"Ratodero","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":47819,"modificationDate":"2019-12-06"}, -{"geonameId":"1252919","name":"Warud","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47817,"modificationDate":"2016-02-11"}, -{"geonameId":"2929600","name":"Erkrath","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":47815,"modificationDate":"2015-09-04"}, -{"geonameId":"1252958","name":"Vankaner Kathiawar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47814,"modificationDate":"2020-06-10"}, -{"geonameId":"4278890","name":"Salina","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":47813,"modificationDate":"2017-05-23"}, -{"geonameId":"4260210","name":"Lawrence","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":47809,"modificationDate":"2017-05-23"}, -{"geonameId":"7931933","name":"Ol Kalou","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":47795,"modificationDate":"2013-08-04"}, -{"geonameId":"2650628","name":"Durham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":47785,"modificationDate":"2019-09-05"}, -{"geonameId":"767470","name":"Krosno","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":47784,"modificationDate":"2019-09-05"}, -{"geonameId":"3456370","name":"Navegantes","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":47781,"modificationDate":"2012-08-03"}, -{"geonameId":"1637001","name":"Luwuk","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":47778,"modificationDate":"2016-02-27"}, -{"geonameId":"1273909","name":"Churāchāndpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47774,"modificationDate":"2014-10-13"}, -{"geonameId":"3465320","name":"Cosmópolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":47772,"modificationDate":"2012-08-03"}, -{"geonameId":"1608409","name":"Narathiwat","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":47771,"modificationDate":"2012-01-16"}, -{"geonameId":"3403208","name":"Capanema","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":47766,"modificationDate":"2012-08-03"}, -{"geonameId":"2470588","name":"Hammam-Lif","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":47760,"modificationDate":"2019-04-11"}, -{"geonameId":"3176854","name":"Foligno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":47747,"modificationDate":"2018-03-16"}, -{"geonameId":"1625908","name":"Sungai Raya","countryName":"Indonesia","timeZoneName":"Asia/Pontianak","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":47735,"modificationDate":"2014-04-30"}, -{"geonameId":"286293","name":"Sufālat Samā’il","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":47718,"modificationDate":"2014-10-01"}, -{"geonameId":"7257992","name":"Bel Air South","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":47709,"modificationDate":"2011-05-14"}, -{"geonameId":"5852275","name":"Pearl City","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":47698,"modificationDate":"2015-05-25"}, -{"geonameId":"2813187","name":"Weißensee","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":47693,"modificationDate":"2012-06-09"}, -{"geonameId":"538836","name":"Kurganinsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":47681,"modificationDate":"2019-09-05"}, -{"geonameId":"1540356","name":"Raduzhny","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":47679,"modificationDate":"2019-09-05"}, -{"geonameId":"5153420","name":"Euclid","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":47676,"modificationDate":"2017-05-23"}, -{"geonameId":"932698","name":"Leribe","countryName":"Lesotho","timeZoneName":"Africa/Maseru","timeZoneOffsetNameWithoutDst":"South Africa Time","population":47675,"modificationDate":"2012-01-18"}, -{"geonameId":"2621215","name":"Greve","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":47671,"modificationDate":"2017-10-18"}, -{"geonameId":"1272237","name":"Dumka","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47663,"modificationDate":"2014-10-14"}, -{"geonameId":"1651591","name":"Amahai","countryName":"Indonesia","timeZoneName":"Asia/Jayapura","timeZoneOffsetNameWithoutDst":"Eastern Indonesia Time","population":47653,"modificationDate":"2013-05-19"}, -{"geonameId":"1255134","name":"Talegaon-Dabhada","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47653,"modificationDate":"2020-06-10"}, -{"geonameId":"2487882","name":"Merouana","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":47646,"modificationDate":"2012-01-19"}, -{"geonameId":"1269873","name":"Hunsūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47644,"modificationDate":"2015-11-08"}, -{"geonameId":"3460344","name":"Jacobina","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":47637,"modificationDate":"2014-12-26"}, -{"geonameId":"5007655","name":"Roseville","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":47637,"modificationDate":"2017-05-23"}, -{"geonameId":"1650460","name":"Balung","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":47631,"modificationDate":"2007-11-09"}, -{"geonameId":"3460826","name":"Itamaraju","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":47628,"modificationDate":"2012-08-03"}, -{"geonameId":"3428759","name":"San Lorenzo","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":47626,"modificationDate":"2018-12-05"}, -{"geonameId":"4736134","name":"Texas City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":47618,"modificationDate":"2017-03-09"}, -{"geonameId":"5278159","name":"Wauwatosa","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":47614,"modificationDate":"2017-05-23"}, -{"geonameId":"597231","name":"Marjampol","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":47613,"modificationDate":"2020-06-10"}, -{"geonameId":"524640","name":"Mtsensk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":47609,"modificationDate":"2019-09-05"}, -{"geonameId":"3172269","name":"Nichelino","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":47605,"modificationDate":"2015-08-19"}, -{"geonameId":"1635815","name":"Maumere","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":47598,"modificationDate":"2017-11-10"}, -{"geonameId":"2147497","name":"Tamworth","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":47597,"modificationDate":"2019-07-21"}, -{"geonameId":"110831","name":"Āzādshahr","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":47590,"modificationDate":"2016-05-07"}, -{"geonameId":"1250615","name":"Badulla","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":47587,"modificationDate":"2019-04-10"}, -{"geonameId":"1734439","name":"Bedong","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":47585,"modificationDate":"2012-01-17"}, -{"geonameId":"3014856","name":"Grasse","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":47581,"modificationDate":"2019-09-05"}, -{"geonameId":"12157064","name":"Centenario","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":47581,"modificationDate":"2020-05-07"}, -{"geonameId":"2754659","name":"Heerhugowaard","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":47580,"modificationDate":"2017-10-17"}, -{"geonameId":"2367990","name":"Aného","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":47579,"modificationDate":"2014-10-17"}, -{"geonameId":"739251","name":"Suluova","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":47572,"modificationDate":"2012-01-18"}, -{"geonameId":"1259503","name":"Pithoragari","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47571,"modificationDate":"2020-06-10"}, -{"geonameId":"1269256","name":"Jangaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47558,"modificationDate":"2018-05-27"}, -{"geonameId":"915883","name":"Kafue","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":47554,"modificationDate":"2012-01-17"}, -{"geonameId":"3178587","name":"Civitavecchia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":47543,"modificationDate":"2020-01-16"}, -{"geonameId":"578155","name":"Belaya Kalitva","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":47521,"modificationDate":"2019-09-05"}, -{"geonameId":"5349613","name":"Florin","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":47513,"modificationDate":"2011-05-14"}, -{"geonameId":"1278190","name":"Atrauli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47512,"modificationDate":"2020-06-10"}, -{"geonameId":"1261754","name":"Narsimhapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47511,"modificationDate":"2015-08-07"}, -{"geonameId":"118191","name":"Rūdsar","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":47502,"modificationDate":"2018-01-09"}, -{"geonameId":"6930414","name":"Stuttgart-Ost","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":47500,"modificationDate":"2018-01-15"}, -{"geonameId":"2934662","name":"Dülmen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":47495,"modificationDate":"2015-09-04"}, -{"geonameId":"3624955","name":"Alajuela","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":47494,"modificationDate":"2016-09-07"}, -{"geonameId":"3467796","name":"Campo Belo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":47491,"modificationDate":"2012-08-03"}, -{"geonameId":"1700712","name":"Masbate","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":47490,"modificationDate":"2017-12-31"}, -{"geonameId":"719965","name":"Hódmezővásárhely","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":47485,"modificationDate":"2015-06-17"}, -{"geonameId":"142496","name":"Aznā","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":47482,"modificationDate":"2012-01-17"}, -{"geonameId":"2225728","name":"Mutengene","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":47478,"modificationDate":"2006-01-17"}, -{"geonameId":"5610810","name":"Twin Falls","countryName":"United States","timeZoneName":"America/Boise","timeZoneOffsetNameWithoutDst":"Mountain Time","population":47468,"modificationDate":"2017-03-09"}, -{"geonameId":"1262562","name":"Mulbāgal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47462,"modificationDate":"2016-11-22"}, -{"geonameId":"2016764","name":"Shelekhov","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":47459,"modificationDate":"2020-01-08"}, -{"geonameId":"3428576","name":"San Pedro","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":47452,"modificationDate":"2017-12-06"}, -{"geonameId":"293842","name":"Kiryat Gat","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":47450,"modificationDate":"2019-11-03"}, -{"geonameId":"1717926","name":"Catarman","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":47449,"modificationDate":"2020-06-16"}, -{"geonameId":"4893886","name":"Glenview","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":47446,"modificationDate":"2017-05-23"}, -{"geonameId":"729114","name":"Montana","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":47445,"modificationDate":"2016-02-07"}, -{"geonameId":"2925550","name":"Frankenthal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":47438,"modificationDate":"2015-09-05"}, -{"geonameId":"1262663","name":"Mudhol","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47427,"modificationDate":"2014-10-14"}, -{"geonameId":"2641224","name":"Northwich","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":47421,"modificationDate":"2017-06-12"}, -{"geonameId":"933088","name":"Serowe","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":47419,"modificationDate":"2012-04-10"}, -{"geonameId":"1270820","name":"Gudalur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47419,"modificationDate":"2014-10-14"}, -{"geonameId":"558312","name":"Gryazi","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":47413,"modificationDate":"2016-12-20"}, -{"geonameId":"1578500","name":"Kon Tum","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":47409,"modificationDate":"2014-01-08"}, -{"geonameId":"5221931","name":"East Providence","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":47408,"modificationDate":"2017-05-23"}, -{"geonameId":"2905455","name":"Herzogenrath","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":47381,"modificationDate":"2020-06-17"}, -{"geonameId":"3859552","name":"Cutral-Có","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":47380,"modificationDate":"2015-12-09"}, -{"geonameId":"1655559","name":"Luang Prabang","countryName":"Laos","timeZoneName":"Asia/Vientiane","timeZoneOffsetNameWithoutDst":"Indochina Time","population":47378,"modificationDate":"2015-09-05"}, -{"geonameId":"3067421","name":"Prostějov","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":47374,"modificationDate":"2019-03-20"}, -{"geonameId":"1215839","name":"Urgut Shahri","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":47373,"modificationDate":"2020-02-07"}, -{"geonameId":"5380668","name":"Palm Springs","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":47371,"modificationDate":"2017-03-09"}, -{"geonameId":"773380","name":"Dębica","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":47366,"modificationDate":"2012-10-01"}, -{"geonameId":"739914","name":"Colonia","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":47360,"modificationDate":"2020-06-10"}, -{"geonameId":"12157065","name":"Cono Norte","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":47347,"modificationDate":"2020-05-07"}, -{"geonameId":"1276810","name":"Barwāni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47343,"modificationDate":"2015-09-06"}, -{"geonameId":"5392323","name":"San Luis Obispo","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":47339,"modificationDate":"2017-03-09"}, -{"geonameId":"2974681","name":"Sevran","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":47334,"modificationDate":"2016-02-18"}, -{"geonameId":"259824","name":"Kifisiá","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":47332,"modificationDate":"2019-10-23"}, -{"geonameId":"1268866","name":"Jodhpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47329,"modificationDate":"2014-10-13"}, -{"geonameId":"1719329","name":"Candaba","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":47326,"modificationDate":"2017-12-13"}, -{"geonameId":"3067580","name":"Přerov","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":47311,"modificationDate":"2019-03-20"}, -{"geonameId":"3460966","name":"Itaberaba","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":47301,"modificationDate":"2012-08-03"}, -{"geonameId":"620391","name":"Volkovysk","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":47300,"modificationDate":"2020-03-07"}, -{"geonameId":"2233410","name":"Buea","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":47300,"modificationDate":"2018-01-23"}, -{"geonameId":"2748076","name":"Rijswijk","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":47299,"modificationDate":"2017-10-17"}, -{"geonameId":"894239","name":"Chegutu","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":47294,"modificationDate":"2012-01-17"}, -{"geonameId":"1151063","name":"Pran Buri","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":47293,"modificationDate":"2012-02-28"}, -{"geonameId":"1519244","name":"Shchuchinsk","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":47290,"modificationDate":"2019-04-16"}, -{"geonameId":"1161724","name":"Chabahar","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":47287,"modificationDate":"2015-10-03"}, -{"geonameId":"2189529","name":"Invercargill","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":47287,"modificationDate":"2011-08-01"}, -{"geonameId":"756320","name":"Ursus","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":47285,"modificationDate":"2018-01-16"}, -{"geonameId":"3090436","name":"Nysa","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":47283,"modificationDate":"2017-05-11"}, -{"geonameId":"3028263","name":"Castres","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":47275,"modificationDate":"2020-05-07"}, -{"geonameId":"6173864","name":"Vernon","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":47274,"modificationDate":"2019-02-26"}, -{"geonameId":"524699","name":"Mozhga","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":47270,"modificationDate":"2016-11-25"}, -{"geonameId":"1259243","name":"Punalūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47263,"modificationDate":"2017-03-04"}, -{"geonameId":"659180","name":"Hämeenlinna","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":47261,"modificationDate":"2017-01-26"}, -{"geonameId":"2301639","name":"Dome","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":47260,"modificationDate":"2019-12-05"}, -{"geonameId":"4943828","name":"Methuen","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":47255,"modificationDate":"2017-05-23"}, -{"geonameId":"3027484","name":"Chalons","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":47251,"modificationDate":"2020-06-10"}, -{"geonameId":"98685","name":"Ar Rumaythah","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":47248,"modificationDate":"2016-06-22"}, -{"geonameId":"3589977","name":"San José Pinula","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":47247,"modificationDate":"2019-06-05"}, -{"geonameId":"5373628","name":"Mission District","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":47234,"modificationDate":"2019-11-02"}, -{"geonameId":"186827","name":"Meru","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":47226,"modificationDate":"2013-06-27"}, -{"geonameId":"299137","name":"Tire","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":47220,"modificationDate":"2013-08-06"}, -{"geonameId":"1852901","name":"Sasayama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":47204,"modificationDate":"2017-07-22"}, -{"geonameId":"201463","name":"Rwamagana","countryName":"Rwanda","timeZoneName":"Africa/Kigali","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":47203,"modificationDate":"2016-07-06"}, -{"geonameId":"2111173","name":"Sawara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":47199,"modificationDate":"2017-04-09"}, -{"geonameId":"2289549","name":"Duekoué","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":47198,"modificationDate":"2016-12-03"}, -{"geonameId":"7284885","name":"Marseille 04","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":47193,"modificationDate":"2018-08-19"}, -{"geonameId":"660561","name":"Porvoo","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":47192,"modificationDate":"2019-09-05"}, -{"geonameId":"2656708","name":"Ayr","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":47190,"modificationDate":"2017-06-15"}, -{"geonameId":"2299625","name":"Kintampo","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":47185,"modificationDate":"2019-12-08"}, -{"geonameId":"1260909","name":"Padrauna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47181,"modificationDate":"2015-09-06"}, -{"geonameId":"2640358","name":"Perth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":47180,"modificationDate":"2017-06-12"}, -{"geonameId":"3682393","name":"Florida","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":47173,"modificationDate":"2018-09-05"}, -{"geonameId":"3555907","name":"Jovellanos","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":47164,"modificationDate":"2015-12-06"}, -{"geonameId":"8521440","name":"Dzerzhinsky","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":47163,"modificationDate":"2018-10-19"}, -{"geonameId":"2644972","name":"Lancaster","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":47162,"modificationDate":"2019-09-05"}, -{"geonameId":"1688398","name":"Santa Ana","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":47158,"modificationDate":"2017-12-13"}, -{"geonameId":"612366","name":"P’ot’i","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":47149,"modificationDate":"2019-10-28"}, -{"geonameId":"1176035","name":"Jatoi Shimali","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":47144,"modificationDate":"2019-12-06"}, -{"geonameId":"3833859","name":"Tres Arroyos","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":47136,"modificationDate":"2015-04-22"}, -{"geonameId":"3164039","name":"Viterbo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":47134,"modificationDate":"2015-07-15"}, -{"geonameId":"1270723","name":"Gumia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47121,"modificationDate":"2017-08-02"}, -{"geonameId":"3489577","name":"Mandeville","countryName":"Jamaica","timeZoneName":"America/Jamaica","timeZoneOffsetNameWithoutDst":"Eastern Time","population":47115,"modificationDate":"2017-03-14"}, -{"geonameId":"1630723","name":"Poso","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":47110,"modificationDate":"2017-06-21"}, -{"geonameId":"4152093","name":"Country Club","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":47105,"modificationDate":"2011-05-14"}, -{"geonameId":"3182272","name":"Battipaglia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":47104,"modificationDate":"2015-08-17"}, -{"geonameId":"2464168","name":"Oued Lill","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":47101,"modificationDate":"2019-04-11"}, -{"geonameId":"2419472","name":"Kissidougou","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":47099,"modificationDate":"2012-06-15"}, -{"geonameId":"3169447","name":"Rho","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":47086,"modificationDate":"2018-03-16"}, -{"geonameId":"56335","name":"Jawhar","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":47086,"modificationDate":"2015-11-10"}, -{"geonameId":"2176031","name":"Berwick","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":47074,"modificationDate":"2019-07-18"}, -{"geonameId":"1277765","name":"Bail-Hongal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47063,"modificationDate":"2015-12-05"}, -{"geonameId":"1256418","name":"Shujālpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":47058,"modificationDate":"2015-10-04"}, -{"geonameId":"3036784","name":"Arras","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":47052,"modificationDate":"2019-09-05"}, -{"geonameId":"11549789","name":"Sant Gervasi - Galvany","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":47043,"modificationDate":"2017-05-24"}, -{"geonameId":"3167777","name":"San Remo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":47043,"modificationDate":"2014-01-11"}, -{"geonameId":"305742","name":"Kulu","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":47037,"modificationDate":"2012-01-18"}, -{"geonameId":"338998","name":"Dilla","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":47021,"modificationDate":"2020-06-11"}, -{"geonameId":"3031133","name":"Boulogne-sur-Mer","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":47013,"modificationDate":"2019-09-05"}, -{"geonameId":"2875881","name":"Lörrach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":47002,"modificationDate":"2015-08-10"}, -{"geonameId":"2635785","name":"Tipton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":47000,"modificationDate":"2012-03-29"}, -{"geonameId":"1510203","name":"Beryozovsky","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":47000,"modificationDate":"2014-04-11"}, -{"geonameId":"2337759","name":"Ilaro","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":46999,"modificationDate":"2016-01-30"}, -{"geonameId":"6822108","name":"Inashiki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":46994,"modificationDate":"2017-07-22"}, -{"geonameId":"2027749","name":"Amursk","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":46993,"modificationDate":"2019-09-05"}, -{"geonameId":"1697023","name":"Orion","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":46991,"modificationDate":"2017-12-13"}, -{"geonameId":"3448640","name":"São José do Rio Pardo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":46989,"modificationDate":"2012-08-03"}, -{"geonameId":"121861","name":"Sherkat-e Naft","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":46983,"modificationDate":"2020-06-10"}, -{"geonameId":"3109481","name":"Santurtzi","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":46978,"modificationDate":"2012-11-14"}, -{"geonameId":"3515384","name":"Tlapa de Comonfort","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":46975,"modificationDate":"2018-11-03"}, -{"geonameId":"701855","name":"Marhanets","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":46973,"modificationDate":"2020-05-24"}, -{"geonameId":"3515504","name":"Titzimin","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":46971,"modificationDate":"2020-06-10"}, -{"geonameId":"4074267","name":"Madison","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":46962,"modificationDate":"2017-03-09"}, -{"geonameId":"4259671","name":"Jeffersonville","countryName":"United States","timeZoneName":"America/Kentucky/Louisville","timeZoneOffsetNameWithoutDst":"Eastern Time","population":46960,"modificationDate":"2017-05-23"}, -{"geonameId":"784372","name":"Vitina","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":46959,"modificationDate":"2015-02-22"}, -{"geonameId":"5392090","name":"San Jacinto","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":46951,"modificationDate":"2017-03-09"}, -{"geonameId":"3025622","name":"Chelles","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":46947,"modificationDate":"2016-02-18"}, -{"geonameId":"2175411","name":"Blacktown","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":46942,"modificationDate":"2019-07-18"}, -{"geonameId":"1269502","name":"Jaisingpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46942,"modificationDate":"2014-10-13"}, -{"geonameId":"138742","name":"Chenārān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":46940,"modificationDate":"2018-08-08"}, -{"geonameId":"3029227","name":"Cagnes-sur-Mer","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":46923,"modificationDate":"2019-08-07"}, -{"geonameId":"6822219","name":"Gujō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":46918,"modificationDate":"2017-07-22"}, -{"geonameId":"5162645","name":"Mentor","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":46901,"modificationDate":"2017-05-23"}, -{"geonameId":"265560","name":"Agrínio","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":46899,"modificationDate":"2017-01-24"}, -{"geonameId":"2979590","name":"Saint-Herblain","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":46898,"modificationDate":"2016-02-18"}, -{"geonameId":"2646088","name":"Inverness","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":46870,"modificationDate":"2017-06-12"}, -{"geonameId":"3186084","name":"Berat","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":46866,"modificationDate":"2012-06-03"}, -{"geonameId":"347542","name":"Tumyah","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":46866,"modificationDate":"2020-06-11"}, -{"geonameId":"3122826","name":"Esplugues de Llobregat","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":46862,"modificationDate":"2010-04-22"}, -{"geonameId":"1274536","name":"Chatrā","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46844,"modificationDate":"2017-08-02"}, -{"geonameId":"250637","name":"Al Jubayhah","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":46834,"modificationDate":"2016-03-10"}, -{"geonameId":"3345300","name":"Karlovac","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":46833,"modificationDate":"2017-10-19"}, -{"geonameId":"5161723","name":"Mansfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":46830,"modificationDate":"2017-03-09"}, -{"geonameId":"1260959","name":"Pāchora","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46823,"modificationDate":"2015-09-06"}, -{"geonameId":"1260168","name":"Patancheru","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46821,"modificationDate":"2014-10-10"}, -{"geonameId":"3082473","name":"Wejherowo","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":46820,"modificationDate":"2010-10-21"}, -{"geonameId":"4429295","name":"Hattiesburg","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":46805,"modificationDate":"2017-03-09"}, -{"geonameId":"3589646","name":"San Pedro Ayampuc","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":46803,"modificationDate":"2019-04-10"}, -{"geonameId":"1213713","name":"Singkil","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":46800,"modificationDate":"2018-04-25"}, -{"geonameId":"1260454","name":"Panna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46791,"modificationDate":"2015-08-07"}, -{"geonameId":"1259813","name":"Phalodi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46788,"modificationDate":"2014-10-14"}, -{"geonameId":"5774001","name":"Draper","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":46774,"modificationDate":"2017-03-09"}, -{"geonameId":"1252738","name":"Yeola","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46762,"modificationDate":"2015-09-06"}, -{"geonameId":"2111749","name":"Naka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":46760,"modificationDate":"2018-02-23"}, -{"geonameId":"4838633","name":"Middletown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":46756,"modificationDate":"2017-05-23"}, -{"geonameId":"3449720","name":"Santo Amaro","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":46748,"modificationDate":"2012-08-03"}, -{"geonameId":"2492345","name":"Karkira","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":46747,"modificationDate":"2019-08-04"}, -{"geonameId":"917748","name":"Choma","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":46746,"modificationDate":"2017-05-07"}, -{"geonameId":"1855907","name":"Nakama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":46745,"modificationDate":"2017-07-22"}, -{"geonameId":"3458632","name":"Leopoldina","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":46742,"modificationDate":"2012-08-03"}, -{"geonameId":"1537939","name":"Stepnogorsk","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":46736,"modificationDate":"2016-05-09"}, -{"geonameId":"151479","name":"Njombe","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":46724,"modificationDate":"2018-05-09"}, -{"geonameId":"1256698","name":"Sheikhpura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46718,"modificationDate":"2015-10-04"}, -{"geonameId":"2263352","name":"São Domingos de Rana","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":46718,"modificationDate":"2018-02-13"}, -{"geonameId":"3650267","name":"Ventanas","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":46708,"modificationDate":"2017-02-07"}, -{"geonameId":"4743275","name":"Wylie","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":46708,"modificationDate":"2017-03-09"}, -{"geonameId":"3869657","name":"Tomé","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":46698,"modificationDate":"2013-01-11"}, -{"geonameId":"300075","name":"Syuryuch","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":46694,"modificationDate":"2020-06-10"}, -{"geonameId":"4256038","name":"Columbus","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":46690,"modificationDate":"2017-05-23"}, -{"geonameId":"614455","name":"Gori","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":46676,"modificationDate":"2013-06-27"}, -{"geonameId":"1606030","name":"Surin","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":46673,"modificationDate":"2012-01-16"}, -{"geonameId":"2958595","name":"Albstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":46664,"modificationDate":"2019-09-05"}, -{"geonameId":"2498183","name":"El Hadjar","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":46656,"modificationDate":"2012-01-19"}, -{"geonameId":"1270759","name":"Gulaothi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46647,"modificationDate":"2020-06-10"}, -{"geonameId":"5364271","name":"Laguna","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":46621,"modificationDate":"2018-04-18"}, -{"geonameId":"2231319","name":"Garoua Boulaï","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":46615,"modificationDate":"2016-03-09"}, -{"geonameId":"2918752","name":"Gotha","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":46615,"modificationDate":"2019-09-05"}, -{"geonameId":"3449741","name":"Santiago","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":46611,"modificationDate":"2012-08-03"}, -{"geonameId":"4658590","name":"Smyrna","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":46607,"modificationDate":"2017-03-09"}, -{"geonameId":"1149698","name":"Phetchaburi","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":46601,"modificationDate":"2012-01-16"}, -{"geonameId":"2739590","name":"Figueira da Foz","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":46600,"modificationDate":"2020-02-01"}, -{"geonameId":"538908","name":"Kurchatov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":46600,"modificationDate":"2012-01-17"}, -{"geonameId":"4752031","name":"Charlottesville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":46597,"modificationDate":"2017-03-09"}, -{"geonameId":"7963596","name":"Panauti","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":46595,"modificationDate":"2019-10-18"}, -{"geonameId":"3174945","name":"Lecco","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":46580,"modificationDate":"2015-08-17"}, -{"geonameId":"315515","name":"Erdemli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":46570,"modificationDate":"2013-04-04"}, -{"geonameId":"646005","name":"Mikkeli","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":46550,"modificationDate":"2015-05-14"}, -{"geonameId":"1256832","name":"Seohāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46546,"modificationDate":"2015-08-07"}, -{"geonameId":"1176022","name":"Jauharabad","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":46545,"modificationDate":"2019-12-06"}, -{"geonameId":"616062","name":"Vagharshapat","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":46540,"modificationDate":"2018-10-27"}, -{"geonameId":"3021000","name":"Douai","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":46531,"modificationDate":"2019-04-10"}, -{"geonameId":"3571971","name":"Lucaya","countryName":"Bahamas","timeZoneName":"America/Nassau","timeZoneOffsetNameWithoutDst":"Eastern Time","population":46525,"modificationDate":"2012-01-18"}, -{"geonameId":"3178388","name":"Collegno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":46524,"modificationDate":"2015-08-14"}, -{"geonameId":"1290374","name":"Twante","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":46516,"modificationDate":"2018-04-06"}, -{"geonameId":"2872079","name":"Melle","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":46514,"modificationDate":"2015-09-04"}, -{"geonameId":"3178131","name":"Corato","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":46505,"modificationDate":"2015-08-14"}, -{"geonameId":"1252699","name":"Zahirābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46504,"modificationDate":"2014-10-10"}, -{"geonameId":"1508350","name":"Chebarkul’","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":46502,"modificationDate":"2018-10-02"}, -{"geonameId":"1849831","name":"Toyooka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":46500,"modificationDate":"2017-07-22"}, -{"geonameId":"1159716","name":"Sarakhs","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":46499,"modificationDate":"2014-09-04"}, -{"geonameId":"6128081","name":"Rouge","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":46496,"modificationDate":"2020-05-02"}, -{"geonameId":"5903510","name":"Blainville","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":46493,"modificationDate":"2019-02-26"}, -{"geonameId":"2750896","name":"Middelburg","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":46485,"modificationDate":"2020-04-12"}, -{"geonameId":"5366375","name":"Lincoln","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":46474,"modificationDate":"2017-03-09"}, -{"geonameId":"3404817","name":"Breves","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":46473,"modificationDate":"2012-08-03"}, -{"geonameId":"774208","name":"Ciechanów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":46438,"modificationDate":"2017-09-04"}, -{"geonameId":"1267675","name":"Kurseong","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46427,"modificationDate":"2020-06-10"}, -{"geonameId":"3177700","name":"Cuneo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":46416,"modificationDate":"2018-03-16"}, -{"geonameId":"11549821","name":"Barri de les Corts","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":46412,"modificationDate":"2017-05-24"}, -{"geonameId":"2756139","name":"Emmeloord","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":46409,"modificationDate":"2017-10-17"}, -{"geonameId":"5800112","name":"Lacey","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":46409,"modificationDate":"2017-03-09"}, -{"geonameId":"1263761","name":"Manglaur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46395,"modificationDate":"2016-02-12"}, -{"geonameId":"2504581","name":"Beni Saf","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":46382,"modificationDate":"2019-08-18"}, -{"geonameId":"5429032","name":"Littleton","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":46368,"modificationDate":"2017-03-09"}, -{"geonameId":"1271688","name":"Gangākher","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46366,"modificationDate":"2014-10-13"}, -{"geonameId":"1966336","name":"Bagong Pagasa","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":46365,"modificationDate":"2019-07-10"}, -{"geonameId":"1261234","name":"Nohar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46360,"modificationDate":"2015-02-06"}, -{"geonameId":"2645605","name":"Kilmarnock","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":46350,"modificationDate":"2019-09-19"}, -{"geonameId":"2218840","name":"Bani Walid","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":46350,"modificationDate":"2019-09-05"}, -{"geonameId":"2958141","name":"Alsdorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":46340,"modificationDate":"2015-09-04"}, -{"geonameId":"1498087","name":"Nadym","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":46339,"modificationDate":"2019-09-05"}, -{"geonameId":"1611026","name":"Chum Phae","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":46335,"modificationDate":"2012-01-16"}, -{"geonameId":"874045","name":"Staryy Malgobek","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":46334,"modificationDate":"2012-08-05"}, -{"geonameId":"1272207","name":"Ganj Dundwāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46314,"modificationDate":"2015-08-07"}, -{"geonameId":"3511336","name":"Boca Chica","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":46300,"modificationDate":"2016-06-05"}, -{"geonameId":"3946820","name":"Barranca","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":46290,"modificationDate":"2012-07-19"}, -{"geonameId":"2947444","name":"Böblingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":46282,"modificationDate":"2014-01-09"}, -{"geonameId":"2656379","name":"Banstead","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":46280,"modificationDate":"2015-02-17"}, -{"geonameId":"1261901","name":"Nānpāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46280,"modificationDate":"2014-10-14"}, -{"geonameId":"4506008","name":"Beavercreek","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":46277,"modificationDate":"2017-05-23"}, -{"geonameId":"1858858","name":"Komoro","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":46272,"modificationDate":"2017-07-22"}, -{"geonameId":"1645875","name":"Curup","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":46245,"modificationDate":"2018-04-25"}, -{"geonameId":"2469264","name":"Menzel Bourguiba","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":46245,"modificationDate":"2018-08-05"}, -{"geonameId":"202068","name":"Kibungo","countryName":"Rwanda","timeZoneName":"Africa/Kigali","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":46240,"modificationDate":"2016-07-06"}, -{"geonameId":"1606939","name":"Sadao","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":46236,"modificationDate":"2012-01-16"}, -{"geonameId":"3171737","name":"Paderno Dugnano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":46235,"modificationDate":"2014-01-16"}, -{"geonameId":"1735268","name":"Batu Gajah","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":46183,"modificationDate":"2012-01-17"}, -{"geonameId":"3468425","name":"Cachoeiras de Macacu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":46177,"modificationDate":"2012-08-03"}, -{"geonameId":"1278228","name":"Atarra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46168,"modificationDate":"2015-08-07"}, -{"geonameId":"2917138","name":"Gronau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":46161,"modificationDate":"2018-05-31"}, -{"geonameId":"1254813","name":"Teghra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46160,"modificationDate":"2018-12-04"}, -{"geonameId":"3020020","name":"Epinay","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":46145,"modificationDate":"2020-06-10"}, -{"geonameId":"4474040","name":"Kannapolis","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":46144,"modificationDate":"2017-03-09"}, -{"geonameId":"2641843","name":"Neath","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":46126,"modificationDate":"2011-03-03"}, -{"geonameId":"2847690","name":"Rheda-Wiedenbrück","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":46123,"modificationDate":"2015-09-04"}, -{"geonameId":"1276249","name":"Bhaisa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46120,"modificationDate":"2014-10-10"}, -{"geonameId":"192067","name":"Kilifi","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":46118,"modificationDate":"2013-06-27"}, -{"geonameId":"511794","name":"Pechora","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":46113,"modificationDate":"2019-09-05"}, -{"geonameId":"321025","name":"Bitlis","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":46111,"modificationDate":"2015-08-07"}, -{"geonameId":"2645456","name":"King's Lynn","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":46093,"modificationDate":"2017-06-12"}, -{"geonameId":"3949231","name":"Jacobo Hunter","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":46092,"modificationDate":"2020-05-08"}, -{"geonameId":"3876664","name":"Penco","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":46091,"modificationDate":"2013-01-11"}, -{"geonameId":"2801471","name":"Borgerhout","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":46087,"modificationDate":"2020-05-25"}, -{"geonameId":"1183090","name":"Bat Khela","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":46079,"modificationDate":"2019-12-06"}, -{"geonameId":"2633858","name":"Winchester","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":46074,"modificationDate":"2019-09-05"}, -{"geonameId":"591260","name":"Kotayarvi","countryName":"Estonia","timeZoneName":"Europe/Tallinn","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":46060,"modificationDate":"2020-06-10"}, -{"geonameId":"88562","name":"Et Tag","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":46050,"modificationDate":"2020-06-10"}, -{"geonameId":"4936008","name":"Everett","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":46050,"modificationDate":"2017-05-23"}, -{"geonameId":"5109177","name":"Binghamton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":46032,"modificationDate":"2017-05-23"}, -{"geonameId":"3169231","name":"Rivoli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":46031,"modificationDate":"2015-08-14"}, -{"geonameId":"2523866","name":"Paternò","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":46030,"modificationDate":"2014-04-13"}, -{"geonameId":"4684724","name":"Cypress","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":46025,"modificationDate":"2011-07-28"}, -{"geonameId":"6295532","name":"Zürich (Kreis 3)","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":46018,"modificationDate":"2012-07-30"}, -{"geonameId":"1272411","name":"Dondaicha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":46018,"modificationDate":"2018-12-04"}, -{"geonameId":"1021396","name":"Balfour","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":46008,"modificationDate":"2012-07-12"}, -{"geonameId":"136702","name":"Dehlorān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":46002,"modificationDate":"2014-09-04"}, -{"geonameId":"2345521","name":"Damaturu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":46000,"modificationDate":"2016-06-22"}, -{"geonameId":"499453","name":"Safonovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":46000,"modificationDate":"2019-09-05"}, -{"geonameId":"3121519","name":"Gavà","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":45994,"modificationDate":"2012-03-04"}, -{"geonameId":"3172729","name":"Montesilvano Marina","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":45991,"modificationDate":"2019-09-04"}, -{"geonameId":"2473572","name":"Mahdia","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":45977,"modificationDate":"2018-08-31"}, -{"geonameId":"1253091","name":"Vite","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45973,"modificationDate":"2014-10-13"}, -{"geonameId":"1259954","name":"Peddapuram Town","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45967,"modificationDate":"2020-06-10"}, -{"geonameId":"2476301","name":"Tindouf","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":45966,"modificationDate":"2019-11-25"}, -{"geonameId":"502793","name":"Rasskazovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":45957,"modificationDate":"2019-09-05"}, -{"geonameId":"4891010","name":"Elmhurst","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":45957,"modificationDate":"2017-05-23"}, -{"geonameId":"3607511","name":"La Lima","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":45955,"modificationDate":"2013-12-15"}, -{"geonameId":"2524205","name":"Mazara del Vallo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":45953,"modificationDate":"2016-11-06"}, -{"geonameId":"2864058","name":"Neustadt am Rübenberge","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":45942,"modificationDate":"2019-03-08"}, -{"geonameId":"1172915","name":"Kot Radha Kishan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":45938,"modificationDate":"2019-12-06"}, -{"geonameId":"3456944","name":"Mongaguá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":45930,"modificationDate":"2012-03-10"}, -{"geonameId":"2893438","name":"Kamen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":45927,"modificationDate":"2015-09-04"}, -{"geonameId":"2968054","name":"Vincennes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":45923,"modificationDate":"2016-02-18"}, -{"geonameId":"1264363","name":"Mahmudābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45921,"modificationDate":"2015-08-07"}, -{"geonameId":"546521","name":"Koltschugino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":45912,"modificationDate":"2020-06-10"}, -{"geonameId":"3645671","name":"Chivacoa","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":45904,"modificationDate":"2018-08-08"}, -{"geonameId":"2153953","name":"Pakenham","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":45895,"modificationDate":"2019-07-18"}, -{"geonameId":"1175453","name":"Kahna Nau","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":45888,"modificationDate":"2019-12-06"}, -{"geonameId":"1896348","name":"Hikari","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":45885,"modificationDate":"2017-07-22"}, -{"geonameId":"5120442","name":"Hell's Kitchen","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":45884,"modificationDate":"2017-12-06"}, -{"geonameId":"102585","name":"Şafwá","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":45876,"modificationDate":"2017-11-07"}, -{"geonameId":"3168550","name":"San Benedetto del Tronto","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":45873,"modificationDate":"2018-01-03"}, -{"geonameId":"2656241","name":"Barrow in Furness","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":45865,"modificationDate":"2017-06-12"}, -{"geonameId":"1849237","name":"Uozu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":45848,"modificationDate":"2017-07-22"}, -{"geonameId":"8436084","name":"Auburn Gresham","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":45842,"modificationDate":"2017-12-06"}, -{"geonameId":"1260824","name":"Pakur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45840,"modificationDate":"2018-07-17"}, -{"geonameId":"2277060","name":"Gbarnga","countryName":"Liberia","timeZoneName":"Africa/Monrovia","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":45835,"modificationDate":"2015-05-06"}, -{"geonameId":"3595237","name":"Jalapa","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":45834,"modificationDate":"2012-12-05"}, -{"geonameId":"3461017","name":"Irati","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":45830,"modificationDate":"2012-08-03"}, -{"geonameId":"10792588","name":"Cherthala","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45827,"modificationDate":"2015-09-16"}, -{"geonameId":"699839","name":"Nova Kakhovka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":45819,"modificationDate":"2020-05-20"}, -{"geonameId":"352679","name":"Mashtūl as Sūq","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":45798,"modificationDate":"2012-01-19"}, -{"geonameId":"361213","name":"Al Ḩāmūl","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":45798,"modificationDate":"2018-03-15"}, -{"geonameId":"3180172","name":"Casalnuovo di Napoli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":45796,"modificationDate":"2015-08-14"}, -{"geonameId":"1169620","name":"Mustafābād","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":45795,"modificationDate":"2019-12-06"}, -{"geonameId":"3894426","name":"Coyhaique","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":45787,"modificationDate":"2017-04-08"}, -{"geonameId":"1723257","name":"Bugo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":45787,"modificationDate":"2017-12-13"}, -{"geonameId":"3178283","name":"Cologno Monzese","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":45786,"modificationDate":"2014-01-16"}, -{"geonameId":"2633373","name":"Yeovil","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":45784,"modificationDate":"2018-07-03"}, -{"geonameId":"7174365","name":"City of Sammamish","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":45780,"modificationDate":"2014-09-15"}, -{"geonameId":"2112758","name":"Higashine","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":45779,"modificationDate":"2017-07-22"}, -{"geonameId":"178443","name":"Wajir","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":45771,"modificationDate":"2013-06-28"}, -{"geonameId":"5324105","name":"Antelope","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":45770,"modificationDate":"2011-05-14"}, -{"geonameId":"1261567","name":"Nāyudupet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45769,"modificationDate":"2017-01-04"}, -{"geonameId":"3567612","name":"Bauta","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":45768,"modificationDate":"2015-12-06"}, -{"geonameId":"4702828","name":"Keller","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":45758,"modificationDate":"2017-03-09"}, -{"geonameId":"1863310","name":"Hamada","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":45750,"modificationDate":"2017-07-22"}, -{"geonameId":"2995387","name":"Martigues","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":45749,"modificationDate":"2016-02-18"}, -{"geonameId":"1270474","name":"Hālol","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45741,"modificationDate":"2014-10-13"}, -{"geonameId":"2878695","name":"Leonberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":45711,"modificationDate":"2012-06-05"}, -{"geonameId":"3451704","name":"Registro","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":45697,"modificationDate":"2012-08-03"}, -{"geonameId":"3386449","name":"Tianguá","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":45696,"modificationDate":"2012-08-03"}, -{"geonameId":"2831924","name":"Singen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":45696,"modificationDate":"2017-11-12"}, -{"geonameId":"2743493","name":"Zwijndrecht","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":45696,"modificationDate":"2017-10-17"}, -{"geonameId":"1220855","name":"Vahdat","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":45693,"modificationDate":"2016-11-22"}, -{"geonameId":"2152659","name":"Port Macquarie","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":45692,"modificationDate":"2019-07-18"}, -{"geonameId":"1266960","name":"Kharar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45691,"modificationDate":"2015-09-06"}, -{"geonameId":"472722","name":"Volkhov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":45673,"modificationDate":"2019-09-05"}, -{"geonameId":"1210565","name":"Burhānuddin","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":45670,"modificationDate":"2016-11-09"}, -{"geonameId":"1177064","name":"Chak Thirty-one -Eleven Left","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":45665,"modificationDate":"2019-12-06"}, -{"geonameId":"873901","name":"Obukhovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":45664,"modificationDate":"2013-03-29"}, -{"geonameId":"1850745","name":"Tamana","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":45661,"modificationDate":"2017-07-22"}, -{"geonameId":"1229293","name":"Puttalam","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":45661,"modificationDate":"2018-12-30"}, -{"geonameId":"317844","name":"Çumra","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":45657,"modificationDate":"2012-01-18"}, -{"geonameId":"1276328","name":"Bhadrāchalam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45656,"modificationDate":"2014-10-12"}, -{"geonameId":"3166601","name":"Sesto Fiorentino","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":45656,"modificationDate":"2014-04-13"}, -{"geonameId":"3598122","name":"Coatepeque","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":45654,"modificationDate":"2019-01-09"}, -{"geonameId":"168661","name":"Kafranbel","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":45652,"modificationDate":"2017-10-30"}, -{"geonameId":"260183","name":"Chaïdári","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":45642,"modificationDate":"2019-10-23"}, -{"geonameId":"1258584","name":"Rāmpura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45639,"modificationDate":"2015-05-06"}, -{"geonameId":"4418478","name":"Biloxi","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":45637,"modificationDate":"2017-08-21"}, -{"geonameId":"2829901","name":"Stade","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":45634,"modificationDate":"2015-09-05"}, -{"geonameId":"1185199","name":"Kaliganja","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":45631,"modificationDate":"2020-06-10"}, -{"geonameId":"735640","name":"Komotina","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":45631,"modificationDate":"2020-06-10"}, -{"geonameId":"2745123","name":"Waalwijk","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":45610,"modificationDate":"2017-10-17"}, -{"geonameId":"295721","name":"Acre","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":45603,"modificationDate":"2018-12-05"}, -{"geonameId":"3164565","name":"Vercelli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":45593,"modificationDate":"2019-09-27"}, -{"geonameId":"2642593","name":"Middleton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":45589,"modificationDate":"2013-08-05"}, -{"geonameId":"295277","name":"Eilat","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":45588,"modificationDate":"2019-09-05"}, -{"geonameId":"2832561","name":"Langenhorn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":45586,"modificationDate":"2019-06-18"}, -{"geonameId":"4452808","name":"Apex","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":45585,"modificationDate":"2017-05-23"}, -{"geonameId":"2349431","name":"Argungu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":45584,"modificationDate":"2016-06-22"}, -{"geonameId":"3169984","name":"Pozzuoli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":45575,"modificationDate":"2015-08-13"}, -{"geonameId":"2647317","name":"Havant","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":45574,"modificationDate":"2010-08-03"}, -{"geonameId":"3110962","name":"Sama","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":45565,"modificationDate":"2010-04-22"}, -{"geonameId":"7521348","name":"Ain Sukhna","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":45552,"modificationDate":"2016-09-20"}, -{"geonameId":"4928096","name":"West Lafayette","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":45550,"modificationDate":"2017-05-23"}, -{"geonameId":"1185100","name":"Dohār","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":45543,"modificationDate":"2016-11-09"}, -{"geonameId":"2524123","name":"Misterbianco","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":45542,"modificationDate":"2015-08-13"}, -{"geonameId":"1854905","name":"Numata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":45526,"modificationDate":"2017-07-22"}, -{"geonameId":"2653646","name":"Carshalton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":45525,"modificationDate":"2012-06-01"}, -{"geonameId":"110250","name":"Afif","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":45525,"modificationDate":"2018-12-07"}, -{"geonameId":"1263331","name":"Mattanur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45521,"modificationDate":"2017-08-23"}, -{"geonameId":"785380","name":"Strumica","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":45508,"modificationDate":"2014-06-05"}, -{"geonameId":"122289","name":"Neyrīz","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":45506,"modificationDate":"2014-09-04"}, -{"geonameId":"468390","name":"Yefremov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":45497,"modificationDate":"2012-01-17"}, -{"geonameId":"185702","name":"Mumias","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":45485,"modificationDate":"2018-09-05"}, -{"geonameId":"178522","name":"Voi","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":45483,"modificationDate":"2013-10-30"}, -{"geonameId":"3536640","name":"Santo Domingo","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":45476,"modificationDate":"2016-01-07"}, -{"geonameId":"1256558","name":"Shertallai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45474,"modificationDate":"2017-04-06"}, -{"geonameId":"3168309","name":"San Giorgio a Cremano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":45463,"modificationDate":"2015-08-13"}, -{"geonameId":"1256064","name":"Sironj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45455,"modificationDate":"2015-08-07"}, -{"geonameId":"3459342","name":"Lagarto","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":45445,"modificationDate":"2012-08-03"}, -{"geonameId":"1273374","name":"Daund","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45440,"modificationDate":"2014-10-13"}, -{"geonameId":"7284884","name":"Marseille 03","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":45414,"modificationDate":"2018-08-19"}, -{"geonameId":"7886881","name":"Centar Župa","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":45412,"modificationDate":"2013-08-09"}, -{"geonameId":"2906376","name":"Hennef","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":45409,"modificationDate":"2011-10-26"}, -{"geonameId":"2941694","name":"Bünde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":45403,"modificationDate":"2015-09-05"}, -{"geonameId":"3183005","name":"Anzio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":45403,"modificationDate":"2015-08-13"}, -{"geonameId":"4175437","name":"Titusville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":45393,"modificationDate":"2017-07-16"}, -{"geonameId":"4017957","name":"Autlán de Navarro","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":45382,"modificationDate":"2018-11-03"}, -{"geonameId":"3623076","name":"Liberia","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":45380,"modificationDate":"2016-09-07"}, -{"geonameId":"1260296","name":"PurlaKimedy","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45379,"modificationDate":"2020-06-10"}, -{"geonameId":"1348820","name":"Pujali","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45379,"modificationDate":"2014-10-14"}, -{"geonameId":"702723","name":"Lubny","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":45379,"modificationDate":"2020-05-18"}, -{"geonameId":"3588698","name":"Sololá","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":45373,"modificationDate":"2012-12-05"}, -{"geonameId":"1278294","name":"Ashta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45365,"modificationDate":"2015-10-04"}, -{"geonameId":"3701117","name":"Santiago de Veraguas","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":45355,"modificationDate":"2017-07-10"}, -{"geonameId":"5178195","name":"Altoona","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":45344,"modificationDate":"2017-05-23"}, -{"geonameId":"1261957","name":"Nandikotkūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45343,"modificationDate":"2014-10-10"}, -{"geonameId":"2361477","name":"Dedugu","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":45341,"modificationDate":"2020-06-10"}, -{"geonameId":"3031009","name":"Bourg-en-Bresse","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":45340,"modificationDate":"2016-02-18"}, -{"geonameId":"1848382","name":"Youkaichi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":45338,"modificationDate":"2018-02-23"}, -{"geonameId":"5376803","name":"Newark","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":45336,"modificationDate":"2018-04-18"}, -{"geonameId":"553152","name":"Kanevskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":45334,"modificationDate":"2013-05-07"}, -{"geonameId":"2508119","name":"’Aïn el Turk","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":45323,"modificationDate":"2019-03-08"}, -{"geonameId":"1267115","name":"Khalīlābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45321,"modificationDate":"2015-09-06"}, -{"geonameId":"3166465","name":"Soccavo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":45314,"modificationDate":"2019-07-22"}, -{"geonameId":"1855670","name":"Nanao","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":45309,"modificationDate":"2017-07-22"}, -{"geonameId":"1274043","name":"Chittaranjan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45305,"modificationDate":"2014-10-14"}, -{"geonameId":"113343","name":"Hashtpar","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":45305,"modificationDate":"2016-05-07"}, -{"geonameId":"3493283","name":"Salcedo","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":45299,"modificationDate":"2016-06-05"}, -{"geonameId":"2872347","name":"Meiderich","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":45297,"modificationDate":"2015-09-05"}, -{"geonameId":"3686513","name":"Chiquinquirá","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":45294,"modificationDate":"2018-06-08"}, -{"geonameId":"1854807","name":"Obita","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":45293,"modificationDate":"2017-04-09"}, -{"geonameId":"2753468","name":"Huizen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":45292,"modificationDate":"2017-10-17"}, -{"geonameId":"1260134","name":"Pathardihi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45276,"modificationDate":"2020-06-10"}, -{"geonameId":"2745392","name":"Vlissingen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":45273,"modificationDate":"2020-04-12"}, -{"geonameId":"355420","name":"Iţsā","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":45269,"modificationDate":"2018-12-05"}, -{"geonameId":"2016187","name":"Speasskdalniy","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":45265,"modificationDate":"2020-06-10"}, -{"geonameId":"2807465","name":"Wismar","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":45255,"modificationDate":"2019-09-05"}, -{"geonameId":"5045021","name":"Saint Louis Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":45250,"modificationDate":"2017-05-23"}, -{"geonameId":"2646867","name":"Hinckley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":45249,"modificationDate":"2017-06-12"}, -{"geonameId":"3394453","name":"Moreno","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":45237,"modificationDate":"2012-08-03"}, -{"geonameId":"3457736","name":"Mariana","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":45236,"modificationDate":"2012-08-03"}, -{"geonameId":"352628","name":"Muttay","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":45215,"modificationDate":"2020-06-11"}, -{"geonameId":"4834040","name":"Enfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":45212,"modificationDate":"2017-05-23"}, -{"geonameId":"3403697","name":"Cametá","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":45200,"modificationDate":"2017-06-02"}, -{"geonameId":"3455923","name":"Olímpia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":45199,"modificationDate":"2012-08-03"}, -{"geonameId":"298316","name":"Urla","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":45199,"modificationDate":"2017-01-05"}, -{"geonameId":"1272201","name":"Dūngarpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45195,"modificationDate":"2014-10-14"}, -{"geonameId":"495112","name":"Shebekino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":45194,"modificationDate":"2012-01-17"}, -{"geonameId":"3428992","name":"San Isidro","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":45190,"modificationDate":"2016-05-07"}, -{"geonameId":"2748172","name":"Ridderkerk","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":45189,"modificationDate":"2019-12-27"}, -{"geonameId":"568595","name":"Chernyakhovsk","countryName":"Russia","timeZoneName":"Europe/Kaliningrad","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":45187,"modificationDate":"2017-12-10"}, -{"geonameId":"1263852","name":"Mandlā","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45184,"modificationDate":"2015-09-06"}, -{"geonameId":"2802031","name":"Beveren","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":45179,"modificationDate":"2014-12-23"}, -{"geonameId":"2521710","name":"Antequera","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":45168,"modificationDate":"2012-03-04"}, -{"geonameId":"2542227","name":"Midelt","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":45159,"modificationDate":"2016-11-02"}, -{"geonameId":"2503229","name":"Boudouaou","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":45153,"modificationDate":"2019-03-13"}, -{"geonameId":"1055433","name":"Tôlanaro","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":45141,"modificationDate":"2018-09-07"}, -{"geonameId":"2127896","name":"Takikawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":45131,"modificationDate":"2017-07-22"}, -{"geonameId":"3386396","name":"Timbaúba","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":45121,"modificationDate":"2012-08-03"}, -{"geonameId":"2267095","name":"Leiria","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":45112,"modificationDate":"2017-04-02"}, -{"geonameId":"3523011","name":"Mazatlan","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":45108,"modificationDate":"2019-10-24"}, -{"geonameId":"752627","name":"Pulathane","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":45105,"modificationDate":"2020-06-10"}, -{"geonameId":"1271874","name":"Forbesganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":45098,"modificationDate":"2015-12-05"}, -{"geonameId":"5152333","name":"Dublin","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":45098,"modificationDate":"2017-05-23"}, -{"geonameId":"3172244","name":"Nocera Inferiore","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":45086,"modificationDate":"2015-08-04"}, -{"geonameId":"3531013","name":"Chiapa de Corzo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":45077,"modificationDate":"2018-11-03"}, -{"geonameId":"233275","name":"Iganga","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":45024,"modificationDate":"2016-06-22"}, -{"geonameId":"2747034","name":"Soest","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":45021,"modificationDate":"2017-10-17"}, -{"geonameId":"11101593","name":"Tung Chung","countryName":"Hong Kong","timeZoneName":"Asia/Hong_Kong","timeZoneOffsetNameWithoutDst":"Hong Kong Time","population":45000,"modificationDate":"2016-03-27"}, -{"geonameId":"11524139","name":"Hokuto","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":45000,"modificationDate":"2017-07-21"}, -{"geonameId":"1248158","name":"Devinuwara","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":45000,"modificationDate":"2018-12-29"}, -{"geonameId":"2208425","name":"Zuwārah","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":45000,"modificationDate":"2020-03-07"}, -{"geonameId":"1308052","name":"Myawadi","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":45000,"modificationDate":"2018-04-06"}, -{"geonameId":"6945426","name":"Paşcani","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":45000,"modificationDate":"2012-06-12"}, -{"geonameId":"4790207","name":"Tuckahoe","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44990,"modificationDate":"2011-05-14"}, -{"geonameId":"94220","name":"Koysinceq","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":44987,"modificationDate":"2016-06-22"}, -{"geonameId":"1270287","name":"Harpanahalli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44977,"modificationDate":"2014-10-14"}, -{"geonameId":"1687164","name":"Sariaya","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":44977,"modificationDate":"2017-12-13"}, -{"geonameId":"2748000","name":"Roermond","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":44975,"modificationDate":"2017-10-17"}, -{"geonameId":"1269655","name":"Itānagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44971,"modificationDate":"2014-10-14"}, -{"geonameId":"4366001","name":"Potomac","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44965,"modificationDate":"2011-05-14"}, -{"geonameId":"3032179","name":"Bobigny","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":44962,"modificationDate":"2018-02-06"}, -{"geonameId":"4833320","name":"Cleveland Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44962,"modificationDate":"2017-05-23"}, -{"geonameId":"2992292","name":"Montluçon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":44960,"modificationDate":"2019-04-10"}, -{"geonameId":"1164069","name":"Talagang","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":44960,"modificationDate":"2019-12-06"}, -{"geonameId":"734301","name":"Sykiés","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":44955,"modificationDate":"2014-01-01"}, -{"geonameId":"1270722","name":"Gumlā","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44951,"modificationDate":"2017-09-11"}, -{"geonameId":"3166988","name":"Scandicci","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":44951,"modificationDate":"2014-01-16"}, -{"geonameId":"4043909","name":"Dededo Village","countryName":"Guam","timeZoneName":"Pacific/Guam","timeZoneOffsetNameWithoutDst":"Chamorro Time","population":44943,"modificationDate":"2013-07-07"}, -{"geonameId":"3661944","name":"Tefé","countryName":"Brazil","timeZoneName":"America/Manaus","timeZoneOffsetNameWithoutDst":"Amazon Time","population":44942,"modificationDate":"2014-08-03"}, -{"geonameId":"1261068","name":"Ozar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44935,"modificationDate":"2014-10-13"}, -{"geonameId":"295740","name":"Afula","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":44930,"modificationDate":"2017-07-03"}, -{"geonameId":"1694775","name":"Parang","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":44930,"modificationDate":"2017-12-13"}, -{"geonameId":"1516438","name":"Zyryanovsk","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":44929,"modificationDate":"2017-01-04"}, -{"geonameId":"1630681","name":"Candi Prambanan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":44925,"modificationDate":"2012-01-17"}, -{"geonameId":"974670","name":"Mondlo","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":44922,"modificationDate":"2019-09-23"}, -{"geonameId":"5104404","name":"Sayreville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44920,"modificationDate":"2017-05-23"}, -{"geonameId":"133037","name":"Golpāyegān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":44916,"modificationDate":"2014-09-04"}, -{"geonameId":"3868633","name":"Vallenar","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":44895,"modificationDate":"2018-02-06"}, -{"geonameId":"1842939","name":"Kimje","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":44894,"modificationDate":"2012-01-18"}, -{"geonameId":"324106","name":"Aliağa","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":44883,"modificationDate":"2013-08-06"}, -{"geonameId":"6295534","name":"Zürich (Kreis 9)","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":44878,"modificationDate":"2012-07-30"}, -{"geonameId":"3074603","name":"Jablonec nad Nisou","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":44878,"modificationDate":"2018-09-08"}, -{"geonameId":"1697046","name":"Orani","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":44877,"modificationDate":"2017-12-13"}, -{"geonameId":"1163724","name":"Taunsa","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":44869,"modificationDate":"2019-12-06"}, -{"geonameId":"6332309","name":"Cutler Bay","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44865,"modificationDate":"2017-03-09"}, -{"geonameId":"3391908","name":"Piripiri","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":44864,"modificationDate":"2012-08-03"}, -{"geonameId":"3653403","name":"Pasaje","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":44860,"modificationDate":"2017-02-07"}, -{"geonameId":"1634680","name":"Muntilan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":44859,"modificationDate":"2018-04-25"}, -{"geonameId":"692087","name":"Svitlovodsk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":44857,"modificationDate":"2020-05-15"}, -{"geonameId":"3899629","name":"Angol","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":44856,"modificationDate":"2018-02-06"}, -{"geonameId":"1719053","name":"Canlaon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":44851,"modificationDate":"2017-12-13"}, -{"geonameId":"2562055","name":"Skhirate","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":44850,"modificationDate":"2016-11-29"}, -{"geonameId":"3036433","name":"Aubagne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":44844,"modificationDate":"2019-03-12"}, -{"geonameId":"1275930","name":"Bimlipatam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44843,"modificationDate":"2020-06-10"}, -{"geonameId":"5098706","name":"Hackensack","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44834,"modificationDate":"2017-05-23"}, -{"geonameId":"3680387","name":"El Rosario","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":44833,"modificationDate":"2020-06-11"}, -{"geonameId":"736364","name":"Dráma","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":44823,"modificationDate":"2015-06-25"}, -{"geonameId":"1255023","name":"Tānda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44822,"modificationDate":"2016-03-10"}, -{"geonameId":"2971041","name":"Valenciennes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":44821,"modificationDate":"2019-09-05"}, -{"geonameId":"2761353","name":"Wiener Neustadt","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":44820,"modificationDate":"2019-02-11"}, -{"geonameId":"3460620","name":"Itararé","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":44809,"modificationDate":"2012-08-03"}, -{"geonameId":"1524298","name":"Aksu","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":44808,"modificationDate":"2019-05-06"}, -{"geonameId":"1861416","name":"Ishigaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":44802,"modificationDate":"2017-07-22"}, -{"geonameId":"3612907","name":"Danlí","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":44799,"modificationDate":"2019-05-23"}, -{"geonameId":"3163948","name":"Vomero","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":44791,"modificationDate":"2019-07-22"}, -{"geonameId":"3086706","name":"Rumia","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":44791,"modificationDate":"2010-10-12"}, -{"geonameId":"3461588","name":"Ibiporã","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":44790,"modificationDate":"2012-08-03"}, -{"geonameId":"1490796","name":"Strezhevoy","countryName":"Russia","timeZoneName":"Asia/Tomsk","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":44784,"modificationDate":"2012-01-17"}, -{"geonameId":"4126226","name":"Pine Bluff","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":44772,"modificationDate":"2017-05-23"}, -{"geonameId":"3455785","name":"Orlândia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":44766,"modificationDate":"2012-08-03"}, -{"geonameId":"1215395","name":"Berastagi","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":44765,"modificationDate":"2015-03-31"}, -{"geonameId":"1267939","name":"Kapadvanj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44764,"modificationDate":"2015-10-04"}, -{"geonameId":"2620425","name":"Herning","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":44763,"modificationDate":"2018-06-08"}, -{"geonameId":"8858089","name":"San Buenaventura","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":44761,"modificationDate":"2014-04-11"}, -{"geonameId":"1282666","name":"Ṭikāpur","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":44758,"modificationDate":"2019-10-19"}, -{"geonameId":"3172287","name":"Nettuno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":44756,"modificationDate":"2015-04-22"}, -{"geonameId":"3489523","name":"May Pen","countryName":"Jamaica","timeZoneName":"America/Jamaica","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44755,"modificationDate":"2017-03-14"}, -{"geonameId":"2246544","name":"Richard-Toll","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":44752,"modificationDate":"2017-06-05"}, -{"geonameId":"3659139","name":"Chone","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":44751,"modificationDate":"2017-02-07"}, -{"geonameId":"99548","name":"Azizie","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":44751,"modificationDate":"2020-06-10"}, -{"geonameId":"1606239","name":"Si Sa Ket","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":44751,"modificationDate":"2012-01-16"}, -{"geonameId":"2638664","name":"Salisbury","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":44748,"modificationDate":"2017-06-12"}, -{"geonameId":"2956656","name":"Amberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":44737,"modificationDate":"2019-09-05"}, -{"geonameId":"1020641","name":"Beaufort West","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":44737,"modificationDate":"2012-07-12"}, -{"geonameId":"933685","name":"Kanye","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":44716,"modificationDate":"2019-09-05"}, -{"geonameId":"1650434","name":"Bambanglipuro","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":44713,"modificationDate":"2018-12-04"}, -{"geonameId":"5143992","name":"West Seneca","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44711,"modificationDate":"2017-05-23"}, -{"geonameId":"2640132","name":"Pontefract","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":44710,"modificationDate":"2017-06-12"}, -{"geonameId":"2973675","name":"Suresnes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":44697,"modificationDate":"2016-02-18"}, -{"geonameId":"2522129","name":"Alzira","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":44690,"modificationDate":"2012-03-04"}, -{"geonameId":"3377408","name":"Linden","countryName":"Guyana","timeZoneName":"America/Guyana","timeZoneOffsetNameWithoutDst":"Guyana Time","population":44690,"modificationDate":"2013-06-27"}, -{"geonameId":"5173237","name":"Strongsville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44668,"modificationDate":"2017-05-23"}, -{"geonameId":"2736041","name":"Ponte de Lima","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":44667,"modificationDate":"2018-04-30"}, -{"geonameId":"580222","name":"Avtovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":44667,"modificationDate":"2013-11-10"}, -{"geonameId":"2994144","name":"Meudon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":44652,"modificationDate":"2016-02-18"}, -{"geonameId":"2929622","name":"Erkelenz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":44650,"modificationDate":"2019-08-29"}, -{"geonameId":"2300721","name":"Gbawe","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":44645,"modificationDate":"2019-12-05"}, -{"geonameId":"743439","name":"Keşan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":44644,"modificationDate":"2020-01-14"}, -{"geonameId":"5338166","name":"Coachella","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":44635,"modificationDate":"2017-03-09"}, -{"geonameId":"1283190","name":"Kirtipur","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":44632,"modificationDate":"2019-10-19"}, -{"geonameId":"3671772","name":"Pradera","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":44630,"modificationDate":"2018-09-05"}, -{"geonameId":"5205377","name":"Penn Hills","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44610,"modificationDate":"2017-05-23"}, -{"geonameId":"2899449","name":"Homburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":44607,"modificationDate":"2015-09-05"}, -{"geonameId":"7284886","name":"Marseille 05","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":44583,"modificationDate":"2018-08-19"}, -{"geonameId":"5346649","name":"Encino","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":44581,"modificationDate":"2018-04-18"}, -{"geonameId":"2826099","name":"Straubing","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":44580,"modificationDate":"2019-09-05"}, -{"geonameId":"2504110","name":"Berriane","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":44580,"modificationDate":"2012-05-06"}, -{"geonameId":"1504871","name":"Kamen’-na-Obi","countryName":"Russia","timeZoneName":"Asia/Barnaul","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":44564,"modificationDate":"2012-01-17"}, -{"geonameId":"1152188","name":"Mae Sot","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":44563,"modificationDate":"2012-01-16"}, -{"geonameId":"6178582","name":"West End","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":44560,"modificationDate":"2019-02-26"}, -{"geonameId":"583798","name":"Akhtubinsk","countryName":"Russia","timeZoneName":"Europe/Astrakhan","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":44551,"modificationDate":"2016-12-03"}, -{"geonameId":"1310120","name":"Mawlaik","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":44540,"modificationDate":"2019-02-22"}, -{"geonameId":"2756644","name":"Drachten","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":44537,"modificationDate":"2017-10-17"}, -{"geonameId":"2485618","name":"Oued Fodda","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":44523,"modificationDate":"2019-10-01"}, -{"geonameId":"2297141","name":"Nsawam","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":44522,"modificationDate":"2019-12-06"}, -{"geonameId":"3566603","name":"Poblado Cabaiguan","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":44515,"modificationDate":"2020-06-10"}, -{"geonameId":"7289614","name":"Halle Neustadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":44515,"modificationDate":"2019-04-29"}, -{"geonameId":"3080414","name":"Zduńska Wola","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":44515,"modificationDate":"2010-10-21"}, -{"geonameId":"3176515","name":"Frosinone","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":44505,"modificationDate":"2020-03-24"}, -{"geonameId":"3056459","name":"Zvolen","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":44502,"modificationDate":"2019-06-09"}, -{"geonameId":"4101260","name":"Bentonville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":44499,"modificationDate":"2019-07-11"}, -{"geonameId":"1254570","name":"Thoubāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44493,"modificationDate":"2014-10-13"}, -{"geonameId":"4156018","name":"Fort Pierce","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44484,"modificationDate":"2017-03-09"}, -{"geonameId":"3403687","name":"Camocim","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":44481,"modificationDate":"2012-08-03"}, -{"geonameId":"933471","name":"Mahalapye","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":44471,"modificationDate":"2019-09-05"}, -{"geonameId":"2518878","name":"Denia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":44464,"modificationDate":"2010-04-22"}, -{"geonameId":"733905","name":"Véroia","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":44464,"modificationDate":"2017-12-10"}, -{"geonameId":"8299576","name":"Bridgewater","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44464,"modificationDate":"2017-05-23"}, -{"geonameId":"1842800","name":"Koesan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":44461,"modificationDate":"2012-01-18"}, -{"geonameId":"321191","name":"Beyşehir","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":44460,"modificationDate":"2019-11-29"}, -{"geonameId":"3458132","name":"Mairinque","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":44456,"modificationDate":"2012-08-03"}, -{"geonameId":"1262783","name":"Morār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44451,"modificationDate":"2014-10-14"}, -{"geonameId":"1263148","name":"Memāri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44448,"modificationDate":"2014-10-14"}, -{"geonameId":"3178796","name":"Chieti","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":44444,"modificationDate":"2015-08-12"}, -{"geonameId":"3085978","name":"Sieradz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":44436,"modificationDate":"2010-10-16"}, -{"geonameId":"1023309","name":"Aliwal North","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":44436,"modificationDate":"2012-07-12"}, -{"geonameId":"2791301","name":"Merksem","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":44435,"modificationDate":"2020-05-25"}, -{"geonameId":"3542502","name":"Regla","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":44431,"modificationDate":"2020-02-07"}, -{"geonameId":"2525755","name":"Alcamo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":44431,"modificationDate":"2015-07-12"}, -{"geonameId":"1261532","name":"Nellikkuppam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44423,"modificationDate":"2017-09-05"}, -{"geonameId":"1142170","name":"Fayzabad","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":44421,"modificationDate":"2018-02-17"}, -{"geonameId":"5341531","name":"Danville","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":44400,"modificationDate":"2017-03-09"}, -{"geonameId":"3034475","name":"Bayonne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":44396,"modificationDate":"2020-02-07"}, -{"geonameId":"1278593","name":"Angul","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44386,"modificationDate":"2014-10-14"}, -{"geonameId":"294577","name":"Qiryat Karmiel","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":44382,"modificationDate":"2020-06-10"}, -{"geonameId":"3095795","name":"Kołobrzeg","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":44377,"modificationDate":"2019-09-05"}, -{"geonameId":"3012647","name":"Istres","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":44373,"modificationDate":"2019-06-05"}, -{"geonameId":"3620680","name":"Bluefields","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":44373,"modificationDate":"2013-05-05"}, -{"geonameId":"2420884","name":"Fria","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":44369,"modificationDate":"2015-03-06"}, -{"geonameId":"3586833","name":"Cuscatancingo","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":44369,"modificationDate":"2019-11-06"}, -{"geonameId":"1860122","name":"Kanonji","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":44363,"modificationDate":"2020-06-11"}, -{"geonameId":"3461316","name":"Indaial","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":44359,"modificationDate":"2012-08-03"}, -{"geonameId":"1263230","name":"Medak","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44351,"modificationDate":"2014-10-10"}, -{"geonameId":"2472833","name":"Zouila","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":44349,"modificationDate":"2018-08-05"}, -{"geonameId":"1201753","name":"Hājīganj","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":44343,"modificationDate":"2016-11-09"}, -{"geonameId":"1268325","name":"Kālpi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44339,"modificationDate":"2014-10-14"}, -{"geonameId":"542000","name":"Krasnoye Selo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":44323,"modificationDate":"2016-12-20"}, -{"geonameId":"4166638","name":"Oakland Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44319,"modificationDate":"2017-03-09"}, -{"geonameId":"2972811","name":"Thionville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":44311,"modificationDate":"2019-04-10"}, -{"geonameId":"3631878","name":"Morón","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":44308,"modificationDate":"2018-08-08"}, -{"geonameId":"1163582","name":"Thatta","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":44302,"modificationDate":"2019-12-06"}, -{"geonameId":"1270000","name":"Hodal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44300,"modificationDate":"2015-08-07"}, -{"geonameId":"2467815","name":"Maxula","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":44298,"modificationDate":"2020-06-10"}, -{"geonameId":"1854018","name":"Onoda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":44295,"modificationDate":"2018-07-04"}, -{"geonameId":"3407378","name":"Aracati","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":44293,"modificationDate":"2018-08-02"}, -{"geonameId":"1640138","name":"Ketanggungan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":44288,"modificationDate":"2012-01-17"}, -{"geonameId":"2614481","name":"Roskilde","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":44285,"modificationDate":"2019-09-05"}, -{"geonameId":"1849788","name":"Tsubame","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":44284,"modificationDate":"2017-07-22"}, -{"geonameId":"321062","name":"Birecik","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":44284,"modificationDate":"2015-02-07"}, -{"geonameId":"4929399","name":"Attleboro","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44284,"modificationDate":"2017-05-23"}, -{"geonameId":"1258642","name":"Rāmnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44277,"modificationDate":"2016-03-10"}, -{"geonameId":"3694564","name":"Moyobamba","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":44276,"modificationDate":"2019-09-05"}, -{"geonameId":"3832778","name":"Villa Constitución","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":44271,"modificationDate":"2016-01-30"}, -{"geonameId":"1822906","name":"Phumĭ Véal Srê","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":44270,"modificationDate":"2011-04-19"}, -{"geonameId":"1278354","name":"Arsikere","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44269,"modificationDate":"2014-10-14"}, -{"geonameId":"2996148","name":"Mantes-la-Jolie","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":44263,"modificationDate":"2019-04-10"}, -{"geonameId":"3637623","name":"Lagunillas","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":44257,"modificationDate":"2018-07-04"}, -{"geonameId":"744537","name":"Karacabey","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":44256,"modificationDate":"2013-05-08"}, -{"geonameId":"2294034","name":"Winneba","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":44254,"modificationDate":"2019-12-06"}, -{"geonameId":"3024066","name":"Compiègne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":44243,"modificationDate":"2016-02-18"}, -{"geonameId":"1855476","name":"Nichinan","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":44243,"modificationDate":"2017-07-22"}, -{"geonameId":"4369190","name":"Severn","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44231,"modificationDate":"2011-05-14"}, -{"geonameId":"2296458","name":"Kasoa","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":44227,"modificationDate":"2019-12-06"}, -{"geonameId":"4747845","name":"Blacksburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44215,"modificationDate":"2017-03-09"}, -{"geonameId":"4695912","name":"Haltom City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":44206,"modificationDate":"2017-03-09"}, -{"geonameId":"4885597","name":"Brighton Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":44202,"modificationDate":"2017-12-06"}, -{"geonameId":"589580","name":"Pärnu","countryName":"Estonia","timeZoneName":"Europe/Tallinn","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":44192,"modificationDate":"2018-10-06"}, -{"geonameId":"670938","name":"Petroşani","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":44187,"modificationDate":"2013-12-01"}, -{"geonameId":"1261446","name":"Nidadavole","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44173,"modificationDate":"2015-09-06"}, -{"geonameId":"281577","name":"Ţūlkarm","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":44169,"modificationDate":"2020-01-08"}, -{"geonameId":"5367788","name":"Lompoc","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":44164,"modificationDate":"2017-03-09"}, -{"geonameId":"2503468","name":"Boû Arfa","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":44143,"modificationDate":"2018-12-05"}, -{"geonameId":"2943320","name":"Brühl","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":44137,"modificationDate":"2015-09-04"}, -{"geonameId":"541404","name":"Krasnyy Sulin","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":44133,"modificationDate":"2013-05-07"}, -{"geonameId":"361478","name":"Al Badārī","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":44132,"modificationDate":"2012-01-19"}, -{"geonameId":"3592609","name":"Mazatenango","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":44132,"modificationDate":"2012-12-05"}, -{"geonameId":"687196","name":"Zhovti Vody","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":44128,"modificationDate":"2020-05-23"}, -{"geonameId":"1269042","name":"Jhajjar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44122,"modificationDate":"2014-10-13"}, -{"geonameId":"3166576","name":"Settimo Torinese","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":44122,"modificationDate":"2015-08-12"}, -{"geonameId":"1166073","name":"Sarai Alamgir","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":44120,"modificationDate":"2018-05-08"}, -{"geonameId":"301116","name":"Şereflikoçhisar","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":44101,"modificationDate":"2010-08-03"}, -{"geonameId":"3163392","name":"Ålesund","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":44096,"modificationDate":"2019-12-12"}, -{"geonameId":"4177727","name":"Wesley Chapel","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":44092,"modificationDate":"2011-05-14"}, -{"geonameId":"12047644","name":"Rejon placu Świętego Macieja","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":44090,"modificationDate":"2019-06-03"}, -{"geonameId":"478044","name":"Ust Labinskaja","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":44088,"modificationDate":"2020-06-10"}, -{"geonameId":"1498129","name":"Myski","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":44082,"modificationDate":"2019-09-05"}, -{"geonameId":"3689235","name":"Baranoa","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":44078,"modificationDate":"2018-07-04"}, -{"geonameId":"863061","name":"Usinsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":44078,"modificationDate":"2019-09-05"}, -{"geonameId":"3116789","name":"Mieres","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":44070,"modificationDate":"2018-12-01"}, -{"geonameId":"1253403","name":"Varangaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":44067,"modificationDate":"2016-01-07"}, -{"geonameId":"4879890","name":"Urbandale","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":44062,"modificationDate":"2017-05-23"}, -{"geonameId":"2532394","name":"Souq Larb’a al Gharb","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":44059,"modificationDate":"2016-11-29"}, -{"geonameId":"3461194","name":"Inhumas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":44058,"modificationDate":"2012-08-03"}, -{"geonameId":"949224","name":"Thohoyandou","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":44046,"modificationDate":"2012-07-12"}, -{"geonameId":"3456848","name":"Monte Carmelo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":44041,"modificationDate":"2012-08-03"}, -{"geonameId":"1629749","name":"Rembangan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":44030,"modificationDate":"2012-01-17"}, -{"geonameId":"1724956","name":"Binmaley","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":44026,"modificationDate":"2017-12-13"}, -{"geonameId":"500886","name":"Rtishchevo","countryName":"Russia","timeZoneName":"Europe/Saratov","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":44013,"modificationDate":"2019-09-05"}, -{"geonameId":"2785141","name":"Turnhout","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":44000,"modificationDate":"2020-05-01"}, -{"geonameId":"8633918","name":"Piendamo","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":44000,"modificationDate":"2018-04-18"}, -{"geonameId":"1511954","name":"Alapayevsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":44000,"modificationDate":"2012-01-17"}, -{"geonameId":"6690786","name":"Dreta de l'Eixample","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":43994,"modificationDate":"2017-05-26"}, -{"geonameId":"12156843","name":"L'Amoreaux","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43993,"modificationDate":"2020-05-02"}, -{"geonameId":"4562407","name":"York","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43992,"modificationDate":"2017-05-23"}, -{"geonameId":"2990474","name":"Nevers","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":43988,"modificationDate":"2016-02-18"}, -{"geonameId":"1162868","name":"Usta Muhammad","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":43983,"modificationDate":"2019-12-06"}, -{"geonameId":"554599","name":"Kachkanar","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":43983,"modificationDate":"2012-04-05"}, -{"geonameId":"3398904","name":"Goiana","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":43980,"modificationDate":"2012-08-03"}, -{"geonameId":"4166233","name":"North Miami Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43971,"modificationDate":"2017-03-09"}, -{"geonameId":"2652696","name":"Coatbridge","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":43970,"modificationDate":"2017-06-12"}, -{"geonameId":"12156826","name":"Islington-City Centre West","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43965,"modificationDate":"2020-05-02"}, -{"geonameId":"5345609","name":"El Centro","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":43956,"modificationDate":"2017-03-09"}, -{"geonameId":"2055166","name":"Sayansk","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":43949,"modificationDate":"2012-01-20"}, -{"geonameId":"3058060","name":"Považská Bystrica","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":43936,"modificationDate":"2019-09-05"}, -{"geonameId":"2927268","name":"Fellbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":43935,"modificationDate":"2013-02-16"}, -{"geonameId":"1134720","name":"Nawab City","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":43934,"modificationDate":"2020-06-09"}, -{"geonameId":"5133640","name":"Rego Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43925,"modificationDate":"2017-04-16"}, -{"geonameId":"2879367","name":"Lehrte","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":43920,"modificationDate":"2014-08-18"}, -{"geonameId":"335288","name":"Hagere Hiywot","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":43920,"modificationDate":"2020-06-11"}, -{"geonameId":"3404020","name":"Cajazeiras","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":43913,"modificationDate":"2012-08-03"}, -{"geonameId":"2861982","name":"Nordhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":43912,"modificationDate":"2015-09-05"}, -{"geonameId":"2636484","name":"Sutton in Ashfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":43912,"modificationDate":"2011-03-03"}, -{"geonameId":"2508813","name":"Adrar","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":43903,"modificationDate":"2016-01-30"}, -{"geonameId":"1634614","name":"Nabire","countryName":"Indonesia","timeZoneName":"Asia/Jayapura","timeZoneOffsetNameWithoutDst":"Eastern Indonesia Time","population":43898,"modificationDate":"2013-05-09"}, -{"geonameId":"4614088","name":"Cleveland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43898,"modificationDate":"2017-03-09"}, -{"geonameId":"3534749","name":"Urbano Noris","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":43892,"modificationDate":"2020-06-10"}, -{"geonameId":"1269323","name":"Jammalamadugu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43870,"modificationDate":"2016-10-08"}, -{"geonameId":"2881885","name":"Lahr","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":43863,"modificationDate":"2017-09-22"}, -{"geonameId":"3652100","name":"Salinas","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":43862,"modificationDate":"2017-02-07"}, -{"geonameId":"1269179","name":"Jasdan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43861,"modificationDate":"2014-10-13"}, -{"geonameId":"2931574","name":"Eisenach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":43846,"modificationDate":"2019-09-05"}, -{"geonameId":"1840211","name":"Nonsan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":43845,"modificationDate":"2012-01-18"}, -{"geonameId":"1267283","name":"Kendrāparha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43843,"modificationDate":"2014-10-14"}, -{"geonameId":"3026467","name":"Chartres","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":43838,"modificationDate":"2019-09-05"}, -{"geonameId":"2498590","name":"El Attaf","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":43837,"modificationDate":"2012-01-19"}, -{"geonameId":"2648208","name":"Grantham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":43833,"modificationDate":"2017-06-12"}, -{"geonameId":"10104154","name":"Echo Park","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":43832,"modificationDate":"2015-02-18"}, -{"geonameId":"3460186","name":"Jales","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":43831,"modificationDate":"2012-08-03"}, -{"geonameId":"2044091","name":"Kwainei","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":43831,"modificationDate":"2020-06-11"}, -{"geonameId":"480122","name":"Tutayev","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":43828,"modificationDate":"2012-01-17"}, -{"geonameId":"4363843","name":"North Bethesda","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43828,"modificationDate":"2013-05-31"}, -{"geonameId":"6943537","name":"Llefià","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":43827,"modificationDate":"2011-09-11"}, -{"geonameId":"1863418","name":"Hagi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":43826,"modificationDate":"2017-07-22"}, -{"geonameId":"2234663","name":"Batouri","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":43821,"modificationDate":"2012-01-16"}, -{"geonameId":"2642705","name":"Merthyr Tydfil","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":43820,"modificationDate":"2017-06-12"}, -{"geonameId":"5327098","name":"Beaumont","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":43811,"modificationDate":"2017-03-09"}, -{"geonameId":"1271142","name":"Gobārdānga","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43808,"modificationDate":"2014-10-14"}, -{"geonameId":"3430104","name":"Paso de los Libres","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":43805,"modificationDate":"2015-04-22"}, -{"geonameId":"4900373","name":"Lombard","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":43797,"modificationDate":"2017-05-23"}, -{"geonameId":"6064969","name":"Malvern","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43794,"modificationDate":"2020-05-02"}, -{"geonameId":"2648026","name":"Great Sankey","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":43793,"modificationDate":"2011-03-03"}, -{"geonameId":"1252745","name":"Yellandu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43787,"modificationDate":"2014-10-10"}, -{"geonameId":"5771826","name":"Bountiful","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":43784,"modificationDate":"2017-03-09"}, -{"geonameId":"1175082","name":"Kamra","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":43779,"modificationDate":"2019-12-06"}, -{"geonameId":"1263120","name":"Merta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43758,"modificationDate":"2019-02-21"}, -{"geonameId":"2513811","name":"Mislata","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":43756,"modificationDate":"2012-03-04"}, -{"geonameId":"1644360","name":"Gebog","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":43756,"modificationDate":"2012-01-17"}, -{"geonameId":"3398570","name":"Guarabira","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":43749,"modificationDate":"2012-08-03"}, -{"geonameId":"3446077","name":"Três Pontas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":43749,"modificationDate":"2012-08-03"}, -{"geonameId":"2214603","name":"Murzuq","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":43732,"modificationDate":"2014-04-26"}, -{"geonameId":"1259444","name":"Polavaram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43710,"modificationDate":"2015-09-06"}, -{"geonameId":"3695754","name":"Lambayeque","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":43710,"modificationDate":"2012-07-19"}, -{"geonameId":"219414","name":"Basoko","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":43709,"modificationDate":"2016-11-22"}, -{"geonameId":"4166222","name":"North Lauderdale","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43703,"modificationDate":"2017-03-09"}, -{"geonameId":"3124765","name":"Colmenar Viejo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":43700,"modificationDate":"2012-03-04"}, -{"geonameId":"7302825","name":"Kanuru","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43696,"modificationDate":"2014-10-10"}, -{"geonameId":"2545017","name":"Jerada","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":43696,"modificationDate":"2016-11-02"}, -{"geonameId":"3542744","name":"Ranchuelo","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":43695,"modificationDate":"2016-11-21"}, -{"geonameId":"1699805","name":"Mexico","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":43694,"modificationDate":"2017-12-13"}, -{"geonameId":"56166","name":"Jilib","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":43694,"modificationDate":"2012-01-16"}, -{"geonameId":"2647948","name":"Greenock","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":43690,"modificationDate":"2017-06-15"}, -{"geonameId":"1607978","name":"Pattani","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":43690,"modificationDate":"2015-03-04"}, -{"geonameId":"3070544","name":"Mladá Boleslav","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":43684,"modificationDate":"2019-03-20"}, -{"geonameId":"1513714","name":"Kosonsoy","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":43684,"modificationDate":"2016-10-07"}, -{"geonameId":"2898304","name":"Hoyerswerda","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":43681,"modificationDate":"2015-09-05"}, -{"geonameId":"2656915","name":"Ashton-under-Lyne","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":43675,"modificationDate":"2010-10-16"}, -{"geonameId":"2925192","name":"Freiberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":43670,"modificationDate":"2015-09-05"}, -{"geonameId":"1271113","name":"Godda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43658,"modificationDate":"2016-01-07"}, -{"geonameId":"1265961","name":"Kotputli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43651,"modificationDate":"2014-10-14"}, -{"geonameId":"750317","name":"Bulancak","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":43635,"modificationDate":"2016-07-09"}, -{"geonameId":"512382","name":"Pashkovskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":43634,"modificationDate":"2013-04-03"}, -{"geonameId":"1260543","name":"Pāndhurnā","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43630,"modificationDate":"2015-08-07"}, -{"geonameId":"2644660","name":"Leigh","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":43626,"modificationDate":"2015-07-17"}, -{"geonameId":"4677551","name":"Burleson","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":43625,"modificationDate":"2017-03-09"}, -{"geonameId":"496519","name":"Sertolovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":43622,"modificationDate":"2016-12-17"}, -{"geonameId":"3693645","name":"Picsi","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":43610,"modificationDate":"2012-07-19"}, -{"geonameId":"4166776","name":"Ocoee","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43608,"modificationDate":"2017-03-09"}, -{"geonameId":"2415703","name":"Siguiri","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":43601,"modificationDate":"2012-06-15"}, -{"geonameId":"1141540","name":"Gereshk","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":43588,"modificationDate":"2018-02-17"}, -{"geonameId":"2853574","name":"Pirmasens","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":43582,"modificationDate":"2015-09-05"}, -{"geonameId":"604490","name":"Luleå","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":43574,"modificationDate":"2019-09-05"}, -{"geonameId":"3836194","name":"Santa Lucía","countryName":"Argentina","timeZoneName":"America/Argentina/San_Juan","timeZoneOffsetNameWithoutDst":"Argentina Time","population":43565,"modificationDate":"2015-04-22"}, -{"geonameId":"5307540","name":"Oro Valley","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":43565,"modificationDate":"2017-03-09"}, -{"geonameId":"1591449","name":"Bak Ninh","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":43564,"modificationDate":"2020-06-09"}, -{"geonameId":"1142264","name":"Farah","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":43561,"modificationDate":"2018-02-17"}, -{"geonameId":"2918840","name":"Goslar","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":43560,"modificationDate":"2015-11-29"}, -{"geonameId":"5920457","name":"Chatham","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43550,"modificationDate":"2019-08-23"}, -{"geonameId":"3336891","name":"Filderstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":43550,"modificationDate":"2011-07-31"}, -{"geonameId":"75337","name":"Hajje","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":43549,"modificationDate":"2020-06-10"}, -{"geonameId":"2644726","name":"Leatherhead","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":43544,"modificationDate":"2014-12-31"}, -{"geonameId":"2111248","name":"Sagae","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":43544,"modificationDate":"2017-07-22"}, -{"geonameId":"6318968","name":"Xinguara","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":43530,"modificationDate":"2019-07-21"}, -{"geonameId":"8224216","name":"Letchworth Garden City","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":43529,"modificationDate":"2020-02-01"}, -{"geonameId":"1690666","name":"Samal","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":43526,"modificationDate":"2017-12-13"}, -{"geonameId":"1607779","name":"Phatthalung","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":43522,"modificationDate":"2012-01-16"}, -{"geonameId":"3165475","name":"Torre Annunziata","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":43521,"modificationDate":"2015-08-12"}, -{"geonameId":"1693618","name":"Pinamalayan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":43521,"modificationDate":"2017-12-13"}, -{"geonameId":"656913","name":"Hyvinge","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":43515,"modificationDate":"2014-09-25"}, -{"geonameId":"3991226","name":"Purísima de Bustos","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":43512,"modificationDate":"2018-11-03"}, -{"geonameId":"3832811","name":"Villa Ángela","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":43511,"modificationDate":"2016-01-30"}, -{"geonameId":"2802249","name":"Berchem","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":43511,"modificationDate":"2020-05-25"}, -{"geonameId":"4744870","name":"Ashburn","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43511,"modificationDate":"2015-03-17"}, -{"geonameId":"2231482","name":"Fundong","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":43509,"modificationDate":"2012-01-16"}, -{"geonameId":"2824948","name":"Suhl","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":43509,"modificationDate":"2015-09-04"}, -{"geonameId":"3113415","name":"Pinto","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":43501,"modificationDate":"2012-03-04"}, -{"geonameId":"233070","name":"Kabale","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":43500,"modificationDate":"2016-06-22"}, -{"geonameId":"1258639","name":"Rāmnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43497,"modificationDate":"2015-10-04"}, -{"geonameId":"1272639","name":"Dīg","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43486,"modificationDate":"2014-10-14"}, -{"geonameId":"132961","name":"Gonābād","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":43465,"modificationDate":"2014-09-04"}, -{"geonameId":"4180531","name":"Augusta","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43459,"modificationDate":"2011-03-02"}, -{"geonameId":"3461370","name":"Imbituba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":43450,"modificationDate":"2012-08-03"}, -{"geonameId":"3471772","name":"Araranguá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":43444,"modificationDate":"2014-12-23"}, -{"geonameId":"355939","name":"Rehia","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":43432,"modificationDate":"2020-06-11"}, -{"geonameId":"3128832","name":"Barajas de Madrid","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":43423,"modificationDate":"2017-05-26"}, -{"geonameId":"3127958","name":"Boadilla del Monte","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":43414,"modificationDate":"2017-10-30"}, -{"geonameId":"3427453","name":"Villa de Mayo","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":43405,"modificationDate":"2019-08-07"}, -{"geonameId":"5641727","name":"Bozeman","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":43405,"modificationDate":"2017-03-09"}, -{"geonameId":"531129","name":"Malgobek","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":43400,"modificationDate":"2019-09-05"}, -{"geonameId":"933331","name":"Mogoditshane","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":43394,"modificationDate":"2012-01-18"}, -{"geonameId":"762788","name":"Otwock","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":43388,"modificationDate":"2011-07-31"}, -{"geonameId":"1268138","name":"Kāndhla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43387,"modificationDate":"2015-04-08"}, -{"geonameId":"943032","name":"Volksrust","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":43378,"modificationDate":"2019-03-18"}, -{"geonameId":"1860785","name":"Kainan","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":43369,"modificationDate":"2017-07-29"}, -{"geonameId":"2641731","name":"Newark on Trent","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":43363,"modificationDate":"2018-07-03"}, -{"geonameId":"7284887","name":"Marseille 06","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":43360,"modificationDate":"2018-08-19"}, -{"geonameId":"5314328","name":"Sierra Vista","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":43355,"modificationDate":"2017-03-09"}, -{"geonameId":"3004871","name":"Le Cannet","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":43353,"modificationDate":"2016-02-18"}, -{"geonameId":"1253182","name":"Vikārābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43337,"modificationDate":"2018-05-28"}, -{"geonameId":"5117949","name":"Freeport","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43334,"modificationDate":"2017-05-23"}, -{"geonameId":"3122453","name":"Figueres","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":43330,"modificationDate":"2012-03-04"}, -{"geonameId":"2812174","name":"Weinheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":43325,"modificationDate":"2013-02-16"}, -{"geonameId":"3336893","name":"Rodgau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":43315,"modificationDate":"2019-09-05"}, -{"geonameId":"673636","name":"Medgidia","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":43315,"modificationDate":"2012-06-12"}, -{"geonameId":"1731744","name":"Alabel","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":43312,"modificationDate":"2018-01-14"}, -{"geonameId":"525138","name":"Morshansk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":43311,"modificationDate":"2014-03-12"}, -{"geonameId":"490068","name":"Sovetsk","countryName":"Russia","timeZoneName":"Europe/Kaliningrad","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":43309,"modificationDate":"2019-09-05"}, -{"geonameId":"4947459","name":"Pittsfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43303,"modificationDate":"2017-05-23"}, -{"geonameId":"732263","name":"Dimitrovgrad","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":43288,"modificationDate":"2012-01-18"}, -{"geonameId":"3433787","name":"General Pacheco","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":43287,"modificationDate":"2019-08-07"}, -{"geonameId":"1253392","name":"Varkala","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43276,"modificationDate":"2014-10-13"}, -{"geonameId":"5855927","name":"Hilo","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":43263,"modificationDate":"2015-02-09"}, -{"geonameId":"2633551","name":"Worksop","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":43252,"modificationDate":"2017-06-12"}, -{"geonameId":"3515505","name":"Tizayuca","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":43250,"modificationDate":"2018-11-03"}, -{"geonameId":"674531","name":"Lugoj","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":43243,"modificationDate":"2012-06-12"}, -{"geonameId":"1257749","name":"Saint Thomas Mount","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43223,"modificationDate":"2014-10-14"}, -{"geonameId":"1257751","name":"Sainthia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43221,"modificationDate":"2014-10-14"}, -{"geonameId":"1254080","name":"Tumsar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43218,"modificationDate":"2014-10-13"}, -{"geonameId":"2953416","name":"Bad Kreuznach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":43213,"modificationDate":"2015-09-04"}, -{"geonameId":"5143630","name":"West Babylon","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43213,"modificationDate":"2017-05-23"}, -{"geonameId":"282457","name":"Qalkilya","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":43212,"modificationDate":"2020-06-10"}, -{"geonameId":"4889553","name":"DeKalb","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":43211,"modificationDate":"2017-05-23"}, -{"geonameId":"2467959","name":"Clupea","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":43209,"modificationDate":"2020-06-10"}, -{"geonameId":"1840862","name":"Munsan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":43208,"modificationDate":"2012-01-18"}, -{"geonameId":"2522437","name":"Adeje","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":43204,"modificationDate":"2012-03-04"}, -{"geonameId":"3995343","name":"Moroleón","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":43200,"modificationDate":"2018-11-03"}, -{"geonameId":"234077","name":"Busia","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":43200,"modificationDate":"2016-06-22"}, -{"geonameId":"1152468","name":"Lamphun","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":43196,"modificationDate":"2012-01-16"}, -{"geonameId":"304355","name":"Milas","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":43193,"modificationDate":"2018-05-21"}, -{"geonameId":"294760","name":"Hod HaSharon","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":43185,"modificationDate":"2017-07-02"}, -{"geonameId":"5391749","name":"San Bruno","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":43185,"modificationDate":"2017-03-09"}, -{"geonameId":"1853354","name":"Ryūō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":43180,"modificationDate":"2017-04-09"}, -{"geonameId":"1856878","name":"Mitsuke","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":43180,"modificationDate":"2017-07-22"}, -{"geonameId":"114049","name":"Sonqor","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":43174,"modificationDate":"2017-03-04"}, -{"geonameId":"4392388","name":"Jefferson City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":43169,"modificationDate":"2019-09-05"}, -{"geonameId":"4145941","name":"Altamonte Springs","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":43159,"modificationDate":"2017-03-09"}, -{"geonameId":"1863978","name":"Nishifukuma","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":43154,"modificationDate":"2017-04-09"}, -{"geonameId":"3601311","name":"Siguatepeque","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":43141,"modificationDate":"2012-05-06"}, -{"geonameId":"1082639","name":"Ambatondrazaka","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":43134,"modificationDate":"2018-09-07"}, -{"geonameId":"1259892","name":"Pernambut","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43124,"modificationDate":"2020-06-10"}, -{"geonameId":"1499350","name":"Mariinsk","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":43122,"modificationDate":"2019-09-05"}, -{"geonameId":"542199","name":"Krasnoufimsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":43121,"modificationDate":"2019-09-05"}, -{"geonameId":"3459251","name":"Lagoa da Prata","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":43118,"modificationDate":"2012-08-03"}, -{"geonameId":"2112444","name":"Kamaishi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":43107,"modificationDate":"2017-07-22"}, -{"geonameId":"5327319","name":"Bell Gardens","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":43106,"modificationDate":"2017-03-09"}, -{"geonameId":"1516601","name":"Dzhetygara","countryName":"Kazakhstan","timeZoneName":"Asia/Qostanay","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":43104,"modificationDate":"2018-01-10"}, -{"geonameId":"2417988","name":"Macenta","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":43102,"modificationDate":"2012-06-15"}, -{"geonameId":"1605069","name":"Warin Chamrap","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":43102,"modificationDate":"2012-01-16"}, -{"geonameId":"2413920","name":"Bakau","countryName":"Gambia","timeZoneName":"Africa/Banjul","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":43098,"modificationDate":"2012-01-18"}, -{"geonameId":"2754669","name":"Heerenveen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":43094,"modificationDate":"2017-10-17"}, -{"geonameId":"211098","name":"Lubao","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":43068,"modificationDate":"2016-11-22"}, -{"geonameId":"1842966","name":"Gijang","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":43064,"modificationDate":"2015-05-06"}, -{"geonameId":"4004024","name":"Jerez","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":43064,"modificationDate":"2020-06-10"}, -{"geonameId":"2293260","name":"Anibelekru","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":43061,"modificationDate":"2020-06-10"}, -{"geonameId":"2799645","name":"Dendermonde","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":43055,"modificationDate":"2013-03-05"}, -{"geonameId":"1640354","name":"Kencong","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":43046,"modificationDate":"2007-11-09"}, -{"geonameId":"1276954","name":"Barhiya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43045,"modificationDate":"2018-12-04"}, -{"geonameId":"2869791","name":"Monheim am Rhein","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":43038,"modificationDate":"2015-09-05"}, -{"geonameId":"3182043","name":"Biella","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":43030,"modificationDate":"2015-08-12"}, -{"geonameId":"3457772","name":"Marechal Cândido Rondon","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":43028,"modificationDate":"2012-08-03"}, -{"geonameId":"4003995","name":"Jesús María","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":43012,"modificationDate":"2014-04-11"}, -{"geonameId":"540771","name":"Kronstadt","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":43005,"modificationDate":"2019-09-26"}, -{"geonameId":"1631733","name":"Pelabuhanratu","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":43001,"modificationDate":"2018-04-24"}, -{"geonameId":"2920478","name":"Gifhorn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":43000,"modificationDate":"2015-09-04"}, -{"geonameId":"1268403","name":"Kālimpong","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":43000,"modificationDate":"2015-08-07"}, -{"geonameId":"6166739","name":"Timmins","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42997,"modificationDate":"2017-11-12"}, -{"geonameId":"301911","name":"Sandykly","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":42981,"modificationDate":"2020-06-10"}, -{"geonameId":"1258756","name":"Rāmachandrapuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42977,"modificationDate":"2014-10-10"}, -{"geonameId":"2219235","name":"Ubari","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":42975,"modificationDate":"2018-05-29"}, -{"geonameId":"2293801","name":"Yendi","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":42972,"modificationDate":"2019-12-05"}, -{"geonameId":"2400555","name":"Franceville","countryName":"Gabon","timeZoneName":"Africa/Libreville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":42967,"modificationDate":"2019-09-05"}, -{"geonameId":"1258201","name":"Repalle","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42967,"modificationDate":"2014-10-10"}, -{"geonameId":"5374764","name":"Morgan Hill","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":42948,"modificationDate":"2017-03-09"}, -{"geonameId":"3522164","name":"Palenque","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":42947,"modificationDate":"2018-11-03"}, -{"geonameId":"5787829","name":"Bothell","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":42939,"modificationDate":"2017-03-09"}, -{"geonameId":"3526657","name":"Matamoros","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":42936,"modificationDate":"2020-06-10"}, -{"geonameId":"5253352","name":"Fond du Lac","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":42933,"modificationDate":"2017-07-16"}, -{"geonameId":"3172087","name":"Olbia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":42930,"modificationDate":"2018-03-16"}, -{"geonameId":"2455558","name":"Kati","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":42922,"modificationDate":"2013-11-09"}, -{"geonameId":"3110642","name":"Sant Feliu de Llobregat","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":42919,"modificationDate":"2012-03-04"}, -{"geonameId":"360612","name":"Al Qanāyāt","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":42912,"modificationDate":"2019-01-10"}, -{"geonameId":"99039","name":"Al Musayyib","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":42901,"modificationDate":"2016-06-22"}, -{"geonameId":"464101","name":"Pestovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":42900,"modificationDate":"2020-06-10"}, -{"geonameId":"518909","name":"Novodvinsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":42900,"modificationDate":"2019-09-05"}, -{"geonameId":"4504118","name":"Sicklerville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42891,"modificationDate":"2017-05-23"}, -{"geonameId":"5104405","name":"Sayreville Junction","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42890,"modificationDate":"2017-05-23"}, -{"geonameId":"1257762","name":"Selu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42879,"modificationDate":"2015-08-07"}, -{"geonameId":"921772","name":"Moroni","countryName":"Comoros","timeZoneName":"Indian/Comoro","timeZoneOffsetNameWithoutDst":"East Africa Time","population":42872,"modificationDate":"2020-06-14"}, -{"geonameId":"5467328","name":"Farmington","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":42871,"modificationDate":"2017-03-09"}, -{"geonameId":"4950065","name":"Salem","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42869,"modificationDate":"2019-09-19"}, -{"geonameId":"3166548","name":"Siena","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":42867,"modificationDate":"2018-03-16"}, -{"geonameId":"1275920","name":"Bhīnmāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42863,"modificationDate":"2014-10-14"}, -{"geonameId":"4929180","name":"Arlington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42844,"modificationDate":"2017-05-23"}, -{"geonameId":"3166830","name":"Secondigliano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":42827,"modificationDate":"2019-07-22"}, -{"geonameId":"2967421","name":"Wattrelos","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":42826,"modificationDate":"2016-02-18"}, -{"geonameId":"2654186","name":"Bury St Edmunds","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":42812,"modificationDate":"2018-07-03"}, -{"geonameId":"5363943","name":"La Jolla","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":42808,"modificationDate":"2018-04-18"}, -{"geonameId":"2129211","name":"Misawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":42805,"modificationDate":"2017-07-22"}, -{"geonameId":"1694498","name":"Passi","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":42794,"modificationDate":"2017-12-13"}, -{"geonameId":"1632566","name":"Panji","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":42789,"modificationDate":"2010-05-09"}, -{"geonameId":"1277320","name":"Bangarapet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42789,"modificationDate":"2019-01-31"}, -{"geonameId":"1691804","name":"Recodo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":42788,"modificationDate":"2010-08-14"}, -{"geonameId":"5920433","name":"Châteauguay","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42786,"modificationDate":"2019-02-26"}, -{"geonameId":"2943560","name":"Bruchsal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":42785,"modificationDate":"2013-02-16"}, -{"geonameId":"1255953","name":"Sivaganga","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42785,"modificationDate":"2014-10-14"}, -{"geonameId":"142679","name":"Astane","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":42784,"modificationDate":"2020-06-10"}, -{"geonameId":"5323525","name":"Altadena","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":42777,"modificationDate":"2011-05-14"}, -{"geonameId":"1606050","name":"Su-ngai Kolok","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":42776,"modificationDate":"2012-01-16"}, -{"geonameId":"1492401","name":"Sharypovo","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":42773,"modificationDate":"2019-09-05"}, -{"geonameId":"4511283","name":"Fairfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42767,"modificationDate":"2017-05-23"}, -{"geonameId":"3029096","name":"Caluire-et-Cuire","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":42763,"modificationDate":"2019-06-05"}, -{"geonameId":"3166711","name":"Seregno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":42760,"modificationDate":"2014-04-13"}, -{"geonameId":"4883679","name":"Ashburn","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":42752,"modificationDate":"2017-12-06"}, -{"geonameId":"1640972","name":"Katabu","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":42750,"modificationDate":"2007-11-09"}, -{"geonameId":"2645313","name":"Kirkby","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":42744,"modificationDate":"2017-06-12"}, -{"geonameId":"2340091","name":"Gumel","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":42742,"modificationDate":"2016-06-22"}, -{"geonameId":"2634864","name":"Wallsend","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":42739,"modificationDate":"2010-10-16"}, -{"geonameId":"5386035","name":"Rancho Palos Verdes","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":42732,"modificationDate":"2017-03-09"}, -{"geonameId":"3514321","name":"Yautepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":42731,"modificationDate":"2018-11-03"}, -{"geonameId":"3540885","name":"San Antonio de los Baños","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":42724,"modificationDate":"2015-12-06"}, -{"geonameId":"2843729","name":"Rottenburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":42721,"modificationDate":"2013-02-15"}, -{"geonameId":"3403353","name":"Canindé","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":42720,"modificationDate":"2012-08-03"}, -{"geonameId":"3448825","name":"São Joaquim da Barra","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":42720,"modificationDate":"2012-08-03"}, -{"geonameId":"3016702","name":"Gap","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":42715,"modificationDate":"2019-08-07"}, -{"geonameId":"350370","name":"Quweisna","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":42708,"modificationDate":"2020-06-11"}, -{"geonameId":"1855863","name":"Nakano","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":42708,"modificationDate":"2017-07-22"}, -{"geonameId":"1289828","name":"Wakema","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":42705,"modificationDate":"2016-06-01"}, -{"geonameId":"6115355","name":"Quinte West","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42697,"modificationDate":"2010-09-22"}, -{"geonameId":"1254356","name":"Tirupparangunram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42696,"modificationDate":"2017-08-02"}, -{"geonameId":"8533869","name":"West Vancouver","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":42694,"modificationDate":"2019-02-26"}, -{"geonameId":"1256432","name":"Shōranūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42694,"modificationDate":"2017-02-04"}, -{"geonameId":"5377640","name":"North Highlands","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":42694,"modificationDate":"2011-05-14"}, -{"geonameId":"3524903","name":"Las Choapas","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":42693,"modificationDate":"2018-11-03"}, -{"geonameId":"2639524","name":"Redruth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":42690,"modificationDate":"2017-06-12"}, -{"geonameId":"2231564","name":"Fontem","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":42689,"modificationDate":"2016-03-09"}, -{"geonameId":"4902476","name":"Moline","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":42681,"modificationDate":"2017-05-23"}, -{"geonameId":"233476","name":"Fort Portal","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":42670,"modificationDate":"2016-06-22"}, -{"geonameId":"6697039","name":"Basauri","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":42657,"modificationDate":"2011-07-31"}, -{"geonameId":"3140390","name":"Sandefjord","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":42654,"modificationDate":"2019-12-12"}, -{"geonameId":"1185260","name":"Abhaynagar","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":42653,"modificationDate":"2020-06-10"}, -{"geonameId":"454310","name":"Ventspils","countryName":"Latvia","timeZoneName":"Europe/Riga","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":42644,"modificationDate":"2019-11-25"}, -{"geonameId":"2498752","name":"El Affroun","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":42627,"modificationDate":"2012-01-19"}, -{"geonameId":"544370","name":"Koryazhma","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":42627,"modificationDate":"2012-01-17"}, -{"geonameId":"1275655","name":"Bikramganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42626,"modificationDate":"2015-09-06"}, -{"geonameId":"3566429","name":"Cacocum","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":42623,"modificationDate":"2016-02-07"}, -{"geonameId":"5084868","name":"Concord","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42620,"modificationDate":"2019-09-05"}, -{"geonameId":"1856667","name":"Mizunami","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":42617,"modificationDate":"2017-07-22"}, -{"geonameId":"6822126","name":"Kurobe-shi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":42613,"modificationDate":"2017-07-27"}, -{"geonameId":"8334624","name":"Alt-Hohenschönhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":42609,"modificationDate":"2012-06-09"}, -{"geonameId":"5085688","name":"East Concord","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42605,"modificationDate":"2017-05-23"}, -{"geonameId":"1605467","name":"Tha Yang","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":42602,"modificationDate":"2008-09-24"}, -{"geonameId":"1858902","name":"Komatsushimachō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":42598,"modificationDate":"2017-07-29"}, -{"geonameId":"2228005","name":"Mbanga","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":42590,"modificationDate":"2012-01-16"}, -{"geonameId":"2973495","name":"Talence","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":42579,"modificationDate":"2020-01-08"}, -{"geonameId":"517269","name":"Novozybkov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":42571,"modificationDate":"2019-09-05"}, -{"geonameId":"2925034","name":"Freising","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":42570,"modificationDate":"2014-01-09"}, -{"geonameId":"2829962","name":"Staaken","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":42566,"modificationDate":"2012-06-09"}, -{"geonameId":"1850746","name":"Tamamura","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":42566,"modificationDate":"2017-04-09"}, -{"geonameId":"4723406","name":"Rockwall","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":42566,"modificationDate":"2017-03-09"}, -{"geonameId":"1717053","name":"Compostela","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":42563,"modificationDate":"2017-12-13"}, -{"geonameId":"1255860","name":"Sojat","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42556,"modificationDate":"2014-10-14"}, -{"geonameId":"928534","name":"Kasungu","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":42555,"modificationDate":"2011-04-25"}, -{"geonameId":"1519725","name":"Soran","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":42552,"modificationDate":"2017-03-04"}, -{"geonameId":"940424","name":"Wesselsbron","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":42552,"modificationDate":"2012-07-12"}, -{"geonameId":"2813040","name":"Weiden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":42550,"modificationDate":"2014-02-08"}, -{"geonameId":"2430506","name":"Kelo","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":42533,"modificationDate":"2012-01-18"}, -{"geonameId":"2508157","name":"Selamate","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":42527,"modificationDate":"2020-06-11"}, -{"geonameId":"4906125","name":"Plainfield","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":42527,"modificationDate":"2017-05-23"}, -{"geonameId":"146617","name":"Famagusta","countryName":"Cyprus","timeZoneName":"Asia/Famagusta","timeZoneOffsetNameWithoutDst":"GMT+02:00","population":42526,"modificationDate":"2019-11-28"}, -{"geonameId":"1266616","name":"Khurda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42526,"modificationDate":"2014-10-14"}, -{"geonameId":"1269168","name":"Jaspur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42524,"modificationDate":"2015-08-07"}, -{"geonameId":"4006806","name":"Empalme","countryName":"Mexico","timeZoneName":"America/Hermosillo","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":42516,"modificationDate":"2018-11-03"}, -{"geonameId":"1254675","name":"Thangadh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42508,"modificationDate":"2020-06-10"}, -{"geonameId":"2892080","name":"Kaufbeuren","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":42505,"modificationDate":"2014-02-08"}, -{"geonameId":"534341","name":"Lomonosov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":42505,"modificationDate":"2019-09-05"}, -{"geonameId":"2634579","name":"Welling","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":42500,"modificationDate":"2012-06-01"}, -{"geonameId":"2110744","name":"Tomiya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":42500,"modificationDate":"2017-04-09"}, -{"geonameId":"2130741","name":"Abashiri","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":42498,"modificationDate":"2018-05-06"}, -{"geonameId":"1861223","name":"Iwai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":42497,"modificationDate":"2017-04-09"}, -{"geonameId":"2018116","name":"Partizansk","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":42489,"modificationDate":"2019-09-05"}, -{"geonameId":"90150","name":"Tekrit","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":42477,"modificationDate":"2020-06-10"}, -{"geonameId":"169372","name":"Irbine","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":42474,"modificationDate":"2020-06-10"}, -{"geonameId":"3530617","name":"Cintalapa de Figueroa","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":42467,"modificationDate":"2018-11-03"}, -{"geonameId":"2696334","name":"Lidingö","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":42466,"modificationDate":"2017-03-18"}, -{"geonameId":"1840536","name":"Naju","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":42459,"modificationDate":"2016-06-04"}, -{"geonameId":"5234372","name":"Burlington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42452,"modificationDate":"2019-09-05"}, -{"geonameId":"2858738","name":"Oberursel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":42448,"modificationDate":"2015-09-04"}, -{"geonameId":"3445126","name":"Videira","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":42440,"modificationDate":"2012-08-03"}, -{"geonameId":"1268896","name":"Jintūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42420,"modificationDate":"2014-10-13"}, -{"geonameId":"2866333","name":"Nettetal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":42417,"modificationDate":"2011-07-31"}, -{"geonameId":"2112527","name":"Iwanuma","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":42411,"modificationDate":"2017-07-22"}, -{"geonameId":"3038224","name":"Alès","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":42410,"modificationDate":"2016-07-27"}, -{"geonameId":"1266794","name":"Khekra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42408,"modificationDate":"2018-12-04"}, -{"geonameId":"5388564","name":"Rohnert Park","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":42407,"modificationDate":"2017-03-09"}, -{"geonameId":"5920288","name":"Charlottetown","countryName":"Canada","timeZoneName":"America/Halifax","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":42402,"modificationDate":"2019-11-21"}, -{"geonameId":"1277636","name":"Bālāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42401,"modificationDate":"2014-10-13"}, -{"geonameId":"2653075","name":"Christchurch","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":42396,"modificationDate":"2015-02-16"}, -{"geonameId":"1649595","name":"Baturaden","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":42394,"modificationDate":"2013-11-08"}, -{"geonameId":"1272532","name":"Dīnhāta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42381,"modificationDate":"2014-10-14"}, -{"geonameId":"337405","name":"Gambella","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":42366,"modificationDate":"2020-06-11"}, -{"geonameId":"1639524","name":"Kotabumi","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":42366,"modificationDate":"2012-08-04"}, -{"geonameId":"3441684","name":"Mercedes","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":42359,"modificationDate":"2012-02-17"}, -{"geonameId":"98459","name":"Suweiri","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":42354,"modificationDate":"2020-06-10"}, -{"geonameId":"3396277","name":"Limoeiro","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":42328,"modificationDate":"2012-08-03"}, -{"geonameId":"1865375","name":"Amagi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":42312,"modificationDate":"2018-02-23"}, -{"geonameId":"4914570","name":"Urbana","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":42311,"modificationDate":"2017-05-23"}, -{"geonameId":"1262117","name":"Naini Tāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42309,"modificationDate":"2019-10-24"}, -{"geonameId":"3016321","name":"Gennevilliers","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":42294,"modificationDate":"2016-02-18"}, -{"geonameId":"2202064","name":"Nadi","countryName":"Fiji","timeZoneName":"Pacific/Fiji","timeZoneOffsetNameWithoutDst":"Fiji Summer Time","population":42284,"modificationDate":"2019-04-27"}, -{"geonameId":"711350","name":"Bucha","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":42279,"modificationDate":"2013-04-04"}, -{"geonameId":"907770","name":"Mansa","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":42277,"modificationDate":"2012-01-17"}, -{"geonameId":"2657324","name":"Andover","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":42276,"modificationDate":"2018-07-03"}, -{"geonameId":"7302832","name":"Kyathampalle","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42275,"modificationDate":"2014-10-10"}, -{"geonameId":"5439752","name":"Southglenn","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":42268,"modificationDate":"2018-03-23"}, -{"geonameId":"4003662","name":"Juventino Rosas","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":42264,"modificationDate":"2018-11-03"}, -{"geonameId":"1308204","name":"Myanaung","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":42252,"modificationDate":"2016-06-01"}, -{"geonameId":"3861445","name":"Chilecito","countryName":"Argentina","timeZoneName":"America/Argentina/La_Rioja","timeZoneOffsetNameWithoutDst":"Argentina Time","population":42248,"modificationDate":"2015-04-22"}, -{"geonameId":"2514392","name":"Lucena","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":42248,"modificationDate":"2012-03-04"}, -{"geonameId":"6354895","name":"Rimouski","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42240,"modificationDate":"2016-06-22"}, -{"geonameId":"65170","name":"Baardheere","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":42240,"modificationDate":"2006-01-27"}, -{"geonameId":"545673","name":"Konakovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":42239,"modificationDate":"2019-09-05"}, -{"geonameId":"1256322","name":"Sikandra Rao","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42229,"modificationDate":"2015-08-07"}, -{"geonameId":"1185251","name":"Dhar Lalmohan","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":42220,"modificationDate":"2020-06-10"}, -{"geonameId":"3533826","name":"Yaguajay","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":42218,"modificationDate":"2019-06-18"}, -{"geonameId":"3651438","name":"Santa Elena","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":42214,"modificationDate":"2017-02-07"}, -{"geonameId":"729559","name":"Lovech","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":42211,"modificationDate":"2019-09-05"}, -{"geonameId":"3175860","name":"Gravina in Puglia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":42210,"modificationDate":"2015-08-12"}, -{"geonameId":"5001929","name":"Midland","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42200,"modificationDate":"2017-05-23"}, -{"geonameId":"5309858","name":"Prescott Valley","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":42197,"modificationDate":"2017-03-09"}, -{"geonameId":"587078","name":"Bilajari","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":42194,"modificationDate":"2019-05-26"}, -{"geonameId":"1518518","name":"Talghar","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":42194,"modificationDate":"2020-04-08"}, -{"geonameId":"1260674","name":"Palmaner","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42179,"modificationDate":"2016-11-22"}, -{"geonameId":"3723440","name":"Kenscoff","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42175,"modificationDate":"2017-04-07"}, -{"geonameId":"491281","name":"Sokol","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":42174,"modificationDate":"2019-09-05"}, -{"geonameId":"1735018","name":"Mentekab","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":42171,"modificationDate":"2012-01-17"}, -{"geonameId":"3505855","name":"Esperanza","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":42169,"modificationDate":"2016-06-05"}, -{"geonameId":"1519948","name":"Kapshagay","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":42167,"modificationDate":"2013-11-11"}, -{"geonameId":"11549773","name":"l'Antiga Esquerra de l'Eixample","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":42161,"modificationDate":"2017-05-24"}, -{"geonameId":"5213681","name":"State College","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42161,"modificationDate":"2017-05-23"}, -{"geonameId":"1269477","name":"Gaypur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42157,"modificationDate":"2020-06-10"}, -{"geonameId":"583437","name":"Alatyr’","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":42156,"modificationDate":"2016-11-29"}, -{"geonameId":"3389860","name":"Salgueiro","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":42152,"modificationDate":"2012-08-03"}, -{"geonameId":"1838069","name":"Santyoku","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":42145,"modificationDate":"2015-06-16"}, -{"geonameId":"1722267","name":"Bustos","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":42139,"modificationDate":"2019-09-18"}, -{"geonameId":"5099967","name":"Kearny","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42137,"modificationDate":"2017-05-23"}, -{"geonameId":"2658377","name":"Thun","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":42136,"modificationDate":"2019-09-10"}, -{"geonameId":"1274984","name":"Canning","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42132,"modificationDate":"2014-10-14"}, -{"geonameId":"1267175","name":"Khairābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42125,"modificationDate":"2019-09-28"}, -{"geonameId":"3652257","name":"Rosa Zarate","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":42121,"modificationDate":"2017-02-07"}, -{"geonameId":"554894","name":"Izberbash","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":42121,"modificationDate":"2015-04-12"}, -{"geonameId":"7284828","name":"Budapest VI. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":42120,"modificationDate":"2019-09-23"}, -{"geonameId":"2894375","name":"Kaarst","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":42112,"modificationDate":"2016-09-27"}, -{"geonameId":"2037393","name":"Fengxiang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":42109,"modificationDate":"2013-05-07"}, -{"geonameId":"5345679","name":"El Dorado Hills","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":42108,"modificationDate":"2011-05-14"}, -{"geonameId":"2465840","name":"Sidi Bouzid","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":42098,"modificationDate":"2018-08-31"}, -{"geonameId":"3454231","name":"Penedo","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":42097,"modificationDate":"2012-08-03"}, -{"geonameId":"3466704","name":"Castro","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":42091,"modificationDate":"2014-10-24"}, -{"geonameId":"98112","name":"Balad","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":42088,"modificationDate":"2016-06-22"}, -{"geonameId":"3516843","name":"Santo Domingo Tehuantepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":42082,"modificationDate":"2018-11-03"}, -{"geonameId":"4755280","name":"Danville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42082,"modificationDate":"2017-03-09"}, -{"geonameId":"2805761","name":"Wunstorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":42080,"modificationDate":"2015-09-04"}, -{"geonameId":"1162959","name":"Umarkot","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":42074,"modificationDate":"2019-12-06"}, -{"geonameId":"6138175","name":"Saint-Eustache","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42062,"modificationDate":"2016-06-22"}, -{"geonameId":"1268020","name":"Kannad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42056,"modificationDate":"2015-09-06"}, -{"geonameId":"2461874","name":"Smara","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":42056,"modificationDate":"2017-07-08"}, -{"geonameId":"1278208","name":"Athni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":42047,"modificationDate":"2014-10-14"}, -{"geonameId":"465543","name":"Zainsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":42044,"modificationDate":"2019-09-05"}, -{"geonameId":"3058472","name":"Nové Zámky","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":42044,"modificationDate":"2019-06-09"}, -{"geonameId":"2298264","name":"Mampong","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":42037,"modificationDate":"2019-12-06"}, -{"geonameId":"4233813","name":"Belleville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":42034,"modificationDate":"2019-12-14"}, -{"geonameId":"5100506","name":"Linden","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":42021,"modificationDate":"2017-05-23"}, -{"geonameId":"5038108","name":"Moorhead","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":42005,"modificationDate":"2017-05-23"}, -{"geonameId":"1798636","name":"Gutao","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":42000,"modificationDate":"2012-01-18"}, -{"geonameId":"196185","name":"Iten","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":42000,"modificationDate":"2017-12-07"}, -{"geonameId":"1526193","name":"Arkalyk","countryName":"Kazakhstan","timeZoneName":"Asia/Qostanay","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":42000,"modificationDate":"2012-06-05"}, -{"geonameId":"8341919","name":"Varash","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":42000,"modificationDate":"2019-03-08"}, -{"geonameId":"3698390","name":"Chepén","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":41992,"modificationDate":"2016-01-07"}, -{"geonameId":"3468893","name":"Brumado","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":41989,"modificationDate":"2012-08-03"}, -{"geonameId":"1275762","name":"Biaora","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41989,"modificationDate":"2018-07-17"}, -{"geonameId":"5145067","name":"Woodside","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":41981,"modificationDate":"2017-04-16"}, -{"geonameId":"2933882","name":"Eberswalde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":41980,"modificationDate":"2019-09-05"}, -{"geonameId":"2951881","name":"Bautzen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":41972,"modificationDate":"2019-03-14"}, -{"geonameId":"2493918","name":"Hennaya","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":41959,"modificationDate":"2012-01-19"}, -{"geonameId":"1185204","name":"Jhikergacha","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":41957,"modificationDate":"2020-06-10"}, -{"geonameId":"2720383","name":"Borlänge","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":41955,"modificationDate":"2017-03-18"}, -{"geonameId":"2636663","name":"Stretford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":41953,"modificationDate":"2010-10-16"}, -{"geonameId":"5330582","name":"Brea","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":41944,"modificationDate":"2017-03-09"}, -{"geonameId":"2878943","name":"Lemgo","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":41943,"modificationDate":"2015-09-05"}, -{"geonameId":"1216787","name":"Kitob","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":41938,"modificationDate":"2019-10-19"}, -{"geonameId":"789518","name":"Kikinda","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":41935,"modificationDate":"2016-05-18"}, -{"geonameId":"353219","name":"Madīnat Sittah Uktūbar","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":41930,"modificationDate":"2019-12-19"}, -{"geonameId":"3451124","name":"Rio Negrinho","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":41914,"modificationDate":"2012-08-03"}, -{"geonameId":"878281","name":"Lindi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":41912,"modificationDate":"2016-07-26"}, -{"geonameId":"3443758","name":"Artigas","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":41909,"modificationDate":"2012-02-14"}, -{"geonameId":"1614465","name":"Ban Phaeo","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":41904,"modificationDate":"2012-01-16"}, -{"geonameId":"2939951","name":"Coburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":41901,"modificationDate":"2016-06-15"}, -{"geonameId":"5780557","name":"Riverton","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":41900,"modificationDate":"2017-03-09"}, -{"geonameId":"2473517","name":"Metlaoui","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":41899,"modificationDate":"2018-08-05"}, -{"geonameId":"5309842","name":"Prescott","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":41899,"modificationDate":"2017-03-09"}, -{"geonameId":"3178784","name":"Chioggia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":41897,"modificationDate":"2014-01-11"}, -{"geonameId":"3392251","name":"Pesqueira","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":41896,"modificationDate":"2012-08-03"}, -{"geonameId":"7577022","name":"Tres Cantos","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":41896,"modificationDate":"2018-06-08"}, -{"geonameId":"3456873","name":"Monte Alto","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":41893,"modificationDate":"2012-08-03"}, -{"geonameId":"1267461","name":"Kātol","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41893,"modificationDate":"2015-04-08"}, -{"geonameId":"321337","name":"Besni","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":41892,"modificationDate":"2012-01-18"}, -{"geonameId":"3522484","name":"Ocosingo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":41878,"modificationDate":"2018-11-03"}, -{"geonameId":"4503136","name":"Mount Laurel","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":41864,"modificationDate":"2017-05-23"}, -{"geonameId":"12157070","name":"Carmen De La Legua Reynoso","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":41863,"modificationDate":"2020-05-07"}, -{"geonameId":"1278335","name":"Arvi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41837,"modificationDate":"2020-06-10"}, -{"geonameId":"3690654","name":"Yurimaguas","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":41827,"modificationDate":"2014-07-03"}, -{"geonameId":"3651356","name":"Santa Rosa","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":41816,"modificationDate":"2017-02-07"}, -{"geonameId":"3846864","name":"Lincoln","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":41808,"modificationDate":"2015-04-22"}, -{"geonameId":"3188383","name":"Warasdin","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":41808,"modificationDate":"2020-06-11"}, -{"geonameId":"4736388","name":"The Colony","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":41779,"modificationDate":"2017-03-09"}, -{"geonameId":"2020812","name":"Lesozavodsk","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":41778,"modificationDate":"2019-09-05"}, -{"geonameId":"2949012","name":"Bietigheim-Bissingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":41769,"modificationDate":"2013-02-16"}, -{"geonameId":"1277882","name":"Bāghpat","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41766,"modificationDate":"2015-05-06"}, -{"geonameId":"4771401","name":"Manassas","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":41764,"modificationDate":"2017-03-09"}, -{"geonameId":"4608408","name":"Brentwood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":41763,"modificationDate":"2017-03-09"}, -{"geonameId":"103035","name":"Rabigh Qasr","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":41759,"modificationDate":"2020-06-10"}, -{"geonameId":"1277038","name":"Bar Bigha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41758,"modificationDate":"2018-12-04"}, -{"geonameId":"709354","name":"Toretsk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":41758,"modificationDate":"2018-07-04"}, -{"geonameId":"3182749","name":"Ascoli Piceno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":41741,"modificationDate":"2015-08-12"}, -{"geonameId":"1264912","name":"Limbdi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41740,"modificationDate":"2014-10-13"}, -{"geonameId":"786827","name":"Požarevac","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":41736,"modificationDate":"2019-09-05"}, -{"geonameId":"709334","name":"Dzhankoy","countryName":"Ukraine","timeZoneName":"Europe/Simferopol","timeZoneOffsetNameWithoutDst":"Moscow Time","population":41731,"modificationDate":"2018-06-01"}, -{"geonameId":"261614","name":"Álimos","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":41720,"modificationDate":"2019-10-23"}, -{"geonameId":"2113077","name":"Asahi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":41720,"modificationDate":"2017-07-22"}, -{"geonameId":"1645428","name":"Diwek","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":41719,"modificationDate":"2007-11-09"}, -{"geonameId":"3177300","name":"Faenza","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":41714,"modificationDate":"2018-03-16"}, -{"geonameId":"8593865","name":"Mülheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":41711,"modificationDate":"2019-05-21"}, -{"geonameId":"1275647","name":"Bilāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41710,"modificationDate":"2015-10-04"}, -{"geonameId":"2651048","name":"Dover","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":41709,"modificationDate":"2019-09-05"}, -{"geonameId":"1255437","name":"Sundargarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41705,"modificationDate":"2014-10-14"}, -{"geonameId":"4955190","name":"Westfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":41690,"modificationDate":"2019-01-10"}, -{"geonameId":"3393264","name":"Palmares","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":41679,"modificationDate":"2012-08-03"}, -{"geonameId":"1850818","name":"Taketoyo","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":41679,"modificationDate":"2017-04-09"}, -{"geonameId":"2647349","name":"Hatfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":41677,"modificationDate":"2018-07-03"}, -{"geonameId":"2614030","name":"Silkeborg","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":41674,"modificationDate":"2017-10-18"}, -{"geonameId":"2798554","name":"Evere","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":41667,"modificationDate":"2020-05-25"}, -{"geonameId":"544896","name":"Korenovsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":41665,"modificationDate":"2019-09-05"}, -{"geonameId":"1263594","name":"Mānvi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41647,"modificationDate":"2015-11-08"}, -{"geonameId":"1271892","name":"Fatwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41647,"modificationDate":"2016-01-07"}, -{"geonameId":"1505526","name":"Irbit","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":41647,"modificationDate":"2019-09-05"}, -{"geonameId":"478544","name":"Uryupinsk","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":41644,"modificationDate":"2012-01-17"}, -{"geonameId":"1862389","name":"Hisai-motomachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":41642,"modificationDate":"2017-04-09"}, -{"geonameId":"3509207","name":"Cotuí","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":41641,"modificationDate":"2016-06-05"}, -{"geonameId":"2977356","name":"Saint-Priest","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":41641,"modificationDate":"2019-06-05"}, -{"geonameId":"2477528","name":"Tazoult-Lambese","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":41636,"modificationDate":"2012-01-19"}, -{"geonameId":"3628267","name":"San Joaquín","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":41630,"modificationDate":"2018-08-08"}, -{"geonameId":"6151350","name":"Sorel-Tracy","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":41629,"modificationDate":"2019-07-04"}, -{"geonameId":"2982757","name":"Rosny-sous-Bois","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":41627,"modificationDate":"2019-03-26"}, -{"geonameId":"1500997","name":"Kyshtym","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":41625,"modificationDate":"2012-01-17"}, -{"geonameId":"2417833","name":"Mamou","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":41619,"modificationDate":"2012-06-15"}, -{"geonameId":"561731","name":"Gay","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":41619,"modificationDate":"2019-06-27"}, -{"geonameId":"1183224","name":"Basirpur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":41617,"modificationDate":"2020-01-08"}, -{"geonameId":"3668132","name":"Sevilla","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":41612,"modificationDate":"2018-09-05"}, -{"geonameId":"2881646","name":"Landau in der Pfalz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":41612,"modificationDate":"2015-09-04"}, -{"geonameId":"1519327","name":"Shakhtinsk","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":41602,"modificationDate":"2017-12-14"}, -{"geonameId":"694216","name":"Shepetivka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":41599,"modificationDate":"2020-05-12"}, -{"geonameId":"3369129","name":"Ceres","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":41596,"modificationDate":"2012-07-12"}, -{"geonameId":"1269350","name":"Jambusar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41594,"modificationDate":"2014-10-13"}, -{"geonameId":"3449427","name":"Santos Dumont","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":41582,"modificationDate":"2012-08-03"}, -{"geonameId":"3939470","name":"Huancavelica","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":41576,"modificationDate":"2014-01-13"}, -{"geonameId":"4273299","name":"Hutchinson","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":41569,"modificationDate":"2017-05-23"}, -{"geonameId":"4941873","name":"Leominster","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":41569,"modificationDate":"2017-05-23"}, -{"geonameId":"1273128","name":"Devakottai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41568,"modificationDate":"2014-10-14"}, -{"geonameId":"1619602","name":"Bang Bua Thong","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":41567,"modificationDate":"2017-10-31"}, -{"geonameId":"4350635","name":"Catonsville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":41567,"modificationDate":"2011-05-14"}, -{"geonameId":"3393409","name":"Pacajus","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":41558,"modificationDate":"2012-08-03"}, -{"geonameId":"293539","name":"Shefar‘am","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":41558,"modificationDate":"2020-04-30"}, -{"geonameId":"2127515","name":"Wakkanai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":41556,"modificationDate":"2019-09-05"}, -{"geonameId":"1272596","name":"Digras","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41554,"modificationDate":"2019-02-21"}, -{"geonameId":"681862","name":"Câmpina","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":41554,"modificationDate":"2014-06-04"}, -{"geonameId":"2657402","name":"Altrincham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":41548,"modificationDate":"2017-07-23"}, -{"geonameId":"5120656","name":"Hicksville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":41547,"modificationDate":"2017-05-23"}, -{"geonameId":"4884141","name":"Bartlett","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":41545,"modificationDate":"2017-05-23"}, -{"geonameId":"3547976","name":"Manicaragua","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":41532,"modificationDate":"2014-08-07"}, -{"geonameId":"3629419","name":"Quibor","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":41526,"modificationDate":"2020-06-10"}, -{"geonameId":"3569024","name":"Amancio","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":41523,"modificationDate":"2016-01-07"}, -{"geonameId":"1252925","name":"Warora","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41523,"modificationDate":"2015-08-07"}, -{"geonameId":"3598465","name":"Chiquimula","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":41521,"modificationDate":"2018-04-23"}, -{"geonameId":"3035843","name":"Auxerre","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":41516,"modificationDate":"2019-09-05"}, -{"geonameId":"2907201","name":"Heinsberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":41505,"modificationDate":"2015-09-04"}, -{"geonameId":"3583178","name":"San Vicente","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":41504,"modificationDate":"2013-06-30"}, -{"geonameId":"2751073","name":"Medemblik","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":41500,"modificationDate":"2017-10-17"}, -{"geonameId":"6696686","name":"Pyt-Yakh","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":41500,"modificationDate":"2009-03-03"}, -{"geonameId":"3460242","name":"Jaguaquara","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":41498,"modificationDate":"2012-08-03"}, -{"geonameId":"3472311","name":"Amparo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":41497,"modificationDate":"2012-03-10"}, -{"geonameId":"4885955","name":"Buffalo Grove","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":41496,"modificationDate":"2017-05-23"}, -{"geonameId":"1269979","name":"Hominabad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41485,"modificationDate":"2020-06-10"}, -{"geonameId":"1809159","name":"Guye","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":41484,"modificationDate":"2015-01-07"}, -{"geonameId":"3625066","name":"Zaraza","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":41483,"modificationDate":"2012-01-03"}, -{"geonameId":"478581","name":"Urus-Martan","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":41480,"modificationDate":"2019-10-09"}, -{"geonameId":"697592","name":"Pervomaysk","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":41480,"modificationDate":"2020-06-10"}, -{"geonameId":"5225809","name":"Woonsocket","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":41475,"modificationDate":"2017-05-23"}, -{"geonameId":"3184862","name":"Lushnjë","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":41469,"modificationDate":"2019-01-02"}, -{"geonameId":"5964347","name":"Grande Prairie","countryName":"Canada","timeZoneName":"America/Edmonton","timeZoneOffsetNameWithoutDst":"Mountain Time","population":41462,"modificationDate":"2019-09-05"}, -{"geonameId":"3530385","name":"Comalcalco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":41458,"modificationDate":"2018-11-03"}, -{"geonameId":"137268","name":"Khafajiyeh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":41443,"modificationDate":"2020-06-10"}, -{"geonameId":"117793","name":"Sahin Dazh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":41442,"modificationDate":"2020-06-10"}, -{"geonameId":"8030162","name":"West Hills","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":41426,"modificationDate":"2018-04-18"}, -{"geonameId":"281292","name":"Yuta","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":41425,"modificationDate":"2019-05-19"}, -{"geonameId":"1271847","name":"Gādarwāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41420,"modificationDate":"2015-04-08"}, -{"geonameId":"210379","name":"Lusambo","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":41416,"modificationDate":"2016-11-22"}, -{"geonameId":"1851813","name":"Shirone","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":41406,"modificationDate":"2018-02-23"}, -{"geonameId":"2783615","name":"Wilrijk","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":41403,"modificationDate":"2020-04-05"}, -{"geonameId":"2976341","name":"Salon-de-Provence","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":41397,"modificationDate":"2019-06-05"}, -{"geonameId":"532459","name":"Lyudinovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":41392,"modificationDate":"2012-01-17"}, -{"geonameId":"3427687","name":"Tortuguitas","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":41390,"modificationDate":"2019-08-07"}, -{"geonameId":"1694861","name":"Paombong","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":41384,"modificationDate":"2017-12-13"}, -{"geonameId":"3203099","name":"Bugojno","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":41378,"modificationDate":"2016-06-05"}, -{"geonameId":"504250","name":"Pugachev","countryName":"Russia","timeZoneName":"Europe/Saratov","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":41375,"modificationDate":"2015-03-01"}, -{"geonameId":"5793427","name":"Edmonds","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":41375,"modificationDate":"2017-03-09"}, -{"geonameId":"2341294","name":"Geidam","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":41367,"modificationDate":"2016-06-22"}, -{"geonameId":"1855540","name":"Naze","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":41365,"modificationDate":"2017-04-09"}, -{"geonameId":"2268339","name":"Faro","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":41355,"modificationDate":"2019-02-18"}, -{"geonameId":"2652622","name":"Coity","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":41352,"modificationDate":"2011-03-03"}, -{"geonameId":"2641690","name":"Newburn","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":41347,"modificationDate":"2011-03-03"}, -{"geonameId":"1640044","name":"Kijang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":41344,"modificationDate":"2012-12-05"}, -{"geonameId":"2655138","name":"Boston","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":41340,"modificationDate":"2017-06-12"}, -{"geonameId":"8315400","name":"Holloway","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":41329,"modificationDate":"2012-06-07"}, -{"geonameId":"6693470","name":"Lytham St Annes","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":41327,"modificationDate":"2012-03-29"}, -{"geonameId":"1274102","name":"Chidawa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41319,"modificationDate":"2014-10-14"}, -{"geonameId":"5303705","name":"Marana","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":41315,"modificationDate":"2017-03-09"}, -{"geonameId":"3109493","name":"Sants","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":41313,"modificationDate":"2017-05-26"}, -{"geonameId":"2394545","name":"Dogbo","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":41312,"modificationDate":"2017-12-20"}, -{"geonameId":"597188","name":"Mazeikiai","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":41309,"modificationDate":"2014-09-24"}, -{"geonameId":"1223648","name":"Welisara","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":41306,"modificationDate":"2018-12-16"}, -{"geonameId":"463824","name":"Zelenokumsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":41306,"modificationDate":"2019-09-05"}, -{"geonameId":"3462580","name":"Garça","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":41302,"modificationDate":"2012-08-03"}, -{"geonameId":"362882","name":"Abū al Maţāmīr","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":41302,"modificationDate":"2018-03-15"}, -{"geonameId":"4842898","name":"Shelton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":41296,"modificationDate":"2017-05-23"}, -{"geonameId":"673441","name":"Miercurea-Ciuc","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":41282,"modificationDate":"2013-05-05"}, -{"geonameId":"1700753","name":"Masantol","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":41278,"modificationDate":"2017-12-13"}, -{"geonameId":"2654730","name":"Bridgwater","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":41276,"modificationDate":"2018-07-03"}, -{"geonameId":"2833564","name":"Seevetal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":41266,"modificationDate":"2011-07-31"}, -{"geonameId":"2499104","name":"Draa el Mizan","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":41263,"modificationDate":"2012-01-19"}, -{"geonameId":"1707123","name":"La Trinidad","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":41258,"modificationDate":"2017-12-13"}, -{"geonameId":"3209380","name":"Stenjevec","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":41257,"modificationDate":"2018-04-05"}, -{"geonameId":"4850699","name":"Cedar Falls","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":41255,"modificationDate":"2017-05-23"}, -{"geonameId":"5336054","name":"Chatsworth","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":41255,"modificationDate":"2018-04-18"}, -{"geonameId":"1274837","name":"Chāmpa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41252,"modificationDate":"2019-02-21"}, -{"geonameId":"344420","name":"Axum","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":41249,"modificationDate":"2015-11-22"}, -{"geonameId":"1261696","name":"Naugachhia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41247,"modificationDate":"2015-12-05"}, -{"geonameId":"2880498","name":"Lankwitz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":41242,"modificationDate":"2017-09-19"}, -{"geonameId":"2299349","name":"Konongo","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":41238,"modificationDate":"2019-12-05"}, -{"geonameId":"1269936","name":"Hoskote","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41236,"modificationDate":"2014-10-14"}, -{"geonameId":"1273390","name":"Daudnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41236,"modificationDate":"2015-09-06"}, -{"geonameId":"1730749","name":"Angat","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":41235,"modificationDate":"2019-09-27"}, -{"geonameId":"1061412","name":"Mananara","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":41209,"modificationDate":"2018-09-28"}, -{"geonameId":"3170102","name":"Civitanova Marche","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":41205,"modificationDate":"2017-10-30"}, -{"geonameId":"4893365","name":"Gage Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":41202,"modificationDate":"2017-12-06"}, -{"geonameId":"2544720","name":"Kasba Tadla","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":41199,"modificationDate":"2016-11-02"}, -{"geonameId":"2635062","name":"Urmston","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":41198,"modificationDate":"2011-03-03"}, -{"geonameId":"1256340","name":"Sihorā","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41192,"modificationDate":"2015-09-06"}, -{"geonameId":"102985","name":"Raḩīmah","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":41188,"modificationDate":"2012-01-16"}, -{"geonameId":"4930505","name":"Beverly","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":41186,"modificationDate":"2017-05-23"}, -{"geonameId":"351434","name":"Naja' Ḥammādī","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":41184,"modificationDate":"2017-07-10"}, -{"geonameId":"1269570","name":"Jaggayyapeta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41180,"modificationDate":"2014-10-10"}, -{"geonameId":"752967","name":"Żyrardów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":41179,"modificationDate":"2010-10-15"}, -{"geonameId":"3385742","name":"União dos Palmares","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":41178,"modificationDate":"2012-08-03"}, -{"geonameId":"2515692","name":"La Orotava","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":41171,"modificationDate":"2012-04-29"}, -{"geonameId":"1266128","name":"Koraput","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41170,"modificationDate":"2020-06-10"}, -{"geonameId":"294097","name":"Naẕerat ‘Illit","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":41169,"modificationDate":"2020-04-28"}, -{"geonameId":"1272674","name":"Dhupguri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41168,"modificationDate":"2020-06-10"}, -{"geonameId":"3985129","name":"San Pedro","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":41165,"modificationDate":"2018-04-06"}, -{"geonameId":"2885734","name":"Königswinter","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":41164,"modificationDate":"2015-09-04"}, -{"geonameId":"7260219","name":"University","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":41163,"modificationDate":"2015-05-13"}, -{"geonameId":"3453535","name":"Piraquara","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":41161,"modificationDate":"2014-08-17"}, -{"geonameId":"1710770","name":"Indang","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":41159,"modificationDate":"2017-12-13"}, -{"geonameId":"4683217","name":"Coppell","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":41159,"modificationDate":"2017-03-09"}, -{"geonameId":"2476396","name":"Timizart","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":41158,"modificationDate":"2012-01-19"}, -{"geonameId":"1708226","name":"La Carlota","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":41157,"modificationDate":"2017-12-13"}, -{"geonameId":"3436714","name":"Villarrica","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":41157,"modificationDate":"2019-09-05"}, -{"geonameId":"665355","name":"Tecuci","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":41154,"modificationDate":"2012-06-12"}, -{"geonameId":"1165789","name":"Sehwan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":41150,"modificationDate":"2019-12-06"}, -{"geonameId":"5153924","name":"Findlay","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":41149,"modificationDate":"2017-05-23"}, -{"geonameId":"3113331","name":"Plasencia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":41148,"modificationDate":"2012-03-04"}, -{"geonameId":"1856881","name":"Mitsukaidō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":41147,"modificationDate":"2018-11-02"}, -{"geonameId":"2482211","name":"Sebdou","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":41146,"modificationDate":"2012-01-19"}, -{"geonameId":"563705","name":"Dzerzhinskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":41146,"modificationDate":"2012-01-17"}, -{"geonameId":"3448616","name":"São Lourenço","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":41143,"modificationDate":"2013-10-22"}, -{"geonameId":"2633708","name":"Wokingham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":41143,"modificationDate":"2016-06-22"}, -{"geonameId":"3089658","name":"Oświęcim","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":41143,"modificationDate":"2012-11-20"}, -{"geonameId":"2979783","name":"Saint-Germain-en-Laye","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":41142,"modificationDate":"2019-04-10"}, -{"geonameId":"2111065","name":"Shinjō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":41140,"modificationDate":"2017-07-22"}, -{"geonameId":"1185165","name":"Mrizapur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":41137,"modificationDate":"2020-06-10"}, -{"geonameId":"1263195","name":"Mehekar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41137,"modificationDate":"2014-10-13"}, -{"geonameId":"1850217","name":"Tōkamachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":41136,"modificationDate":"2017-07-22"}, -{"geonameId":"2871992","name":"Memmingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":41135,"modificationDate":"2019-09-05"}, -{"geonameId":"2262957","name":"Sesimbra","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":41134,"modificationDate":"2018-04-30"}, -{"geonameId":"2816630","name":"Völklingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":41132,"modificationDate":"2015-09-05"}, -{"geonameId":"229139","name":"Mityana","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":41131,"modificationDate":"2016-06-22"}, -{"geonameId":"2524119","name":"Modica","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":41126,"modificationDate":"2018-03-16"}, -{"geonameId":"1005125","name":"Ermelo","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":41124,"modificationDate":"2012-07-12"}, -{"geonameId":"5333689","name":"Campbell","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":41117,"modificationDate":"2017-03-09"}, -{"geonameId":"3180733","name":"Capannori","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":41116,"modificationDate":"2015-08-12"}, -{"geonameId":"1702649","name":"Malita","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":41114,"modificationDate":"2017-12-13"}, -{"geonameId":"1586185","name":"Kao banh","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":41112,"modificationDate":"2020-06-09"}, -{"geonameId":"1270102","name":"Hilsa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41110,"modificationDate":"2016-01-07"}, -{"geonameId":"3556168","name":"Jiguaní","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":41106,"modificationDate":"2016-02-07"}, -{"geonameId":"3182957","name":"Aprilia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":41094,"modificationDate":"2015-08-12"}, -{"geonameId":"2477462","name":"Tebesbest","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":41091,"modificationDate":"2012-01-19"}, -{"geonameId":"2522152","name":"Alcantarilla","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":41084,"modificationDate":"2012-03-04"}, -{"geonameId":"1513983","name":"Gydzh-Duvan","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":41070,"modificationDate":"2020-06-10"}, -{"geonameId":"1608239","name":"Nong Khae","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":41067,"modificationDate":"2012-01-16"}, -{"geonameId":"173322","name":"Qusir","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":41062,"modificationDate":"2020-06-10"}, -{"geonameId":"4768351","name":"Lake Ridge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":41058,"modificationDate":"2011-05-14"}, -{"geonameId":"1276103","name":"Bharthana","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":41055,"modificationDate":"2015-12-05"}, -{"geonameId":"4749950","name":"Burke","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":41055,"modificationDate":"2011-05-14"}, -{"geonameId":"5036420","name":"Mankato","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":41044,"modificationDate":"2017-05-23"}, -{"geonameId":"293286","name":"Umm el Faham","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":41030,"modificationDate":"2020-06-10"}, -{"geonameId":"3452779","name":"Porto Feliz","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":41015,"modificationDate":"2012-03-10"}, -{"geonameId":"576317","name":"Birsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":41014,"modificationDate":"2019-09-05"}, -{"geonameId":"4744468","name":"Annandale","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":41008,"modificationDate":"2011-05-14"}, -{"geonameId":"3034640","name":"Bastia","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":41001,"modificationDate":"2019-09-05"}, -{"geonameId":"426272","name":"Gitega","countryName":"Burundi","timeZoneName":"Africa/Bujumbura","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":41000,"modificationDate":"2019-05-10"}, -{"geonameId":"791149","name":"Gjorče Petro","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":41000,"modificationDate":"2019-10-04"}, -{"geonameId":"3389822","name":"Salinópolis","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":40998,"modificationDate":"2012-08-03"}, -{"geonameId":"4288809","name":"Covington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40997,"modificationDate":"2017-03-09"}, -{"geonameId":"4903466","name":"New City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":40997,"modificationDate":"2017-12-06"}, -{"geonameId":"5127536","name":"Morris Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40982,"modificationDate":"2017-04-16"}, -{"geonameId":"3110627","name":"San Fernando de Henares","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":40981,"modificationDate":"2012-03-04"}, -{"geonameId":"4215114","name":"Peachtree Corners","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40978,"modificationDate":"2017-03-09"}, -{"geonameId":"1258952","name":"Raisen","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40977,"modificationDate":"2015-08-07"}, -{"geonameId":"5492450","name":"South Valley","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":40976,"modificationDate":"2011-05-14"}, -{"geonameId":"4167178","name":"Ormond Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40970,"modificationDate":"2017-03-09"}, -{"geonameId":"3840860","name":"Pocito","countryName":"Argentina","timeZoneName":"America/Argentina/San_Juan","timeZoneOffsetNameWithoutDst":"Argentina Time","population":40969,"modificationDate":"2015-04-22"}, -{"geonameId":"2636465","name":"Swadlincote","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":40960,"modificationDate":"2011-03-03"}, -{"geonameId":"1268834","name":"Jalārpet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40959,"modificationDate":"2016-11-22"}, -{"geonameId":"2635427","name":"Trowbridge","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":40952,"modificationDate":"2017-06-12"}, -{"geonameId":"4150118","name":"Carrollwood Village","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40949,"modificationDate":"2006-01-27"}, -{"geonameId":"387958","name":"Salwa","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":40945,"modificationDate":"2020-06-11"}, -{"geonameId":"2128558","name":"Otofuke","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":40944,"modificationDate":"2017-04-09"}, -{"geonameId":"4699540","name":"Huntsville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":40938,"modificationDate":"2017-03-09"}, -{"geonameId":"4013723","name":"Ciudad Constitución","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":40935,"modificationDate":"2018-11-03"}, -{"geonameId":"3462916","name":"Frutal","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":40931,"modificationDate":"2012-08-03"}, -{"geonameId":"2802170","name":"Beringen","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":40930,"modificationDate":"2011-02-23"}, -{"geonameId":"7284882","name":"Marseille 01","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":40919,"modificationDate":"2018-08-19"}, -{"geonameId":"3083955","name":"Świnoujście","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":40919,"modificationDate":"2019-09-05"}, -{"geonameId":"1713004","name":"Gerona","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":40914,"modificationDate":"2017-12-13"}, -{"geonameId":"6545103","name":"Poble Sec","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":40906,"modificationDate":"2017-05-26"}, -{"geonameId":"188657","name":"Lugulu","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":40894,"modificationDate":"2018-09-05"}, -{"geonameId":"3388269","name":"São Miguel dos Campos","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":40890,"modificationDate":"2012-08-03"}, -{"geonameId":"2639928","name":"Prescot","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":40889,"modificationDate":"2011-07-31"}, -{"geonameId":"5405841","name":"Venice","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":40885,"modificationDate":"2018-04-18"}, -{"geonameId":"562389","name":"Frolovo","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":40882,"modificationDate":"2019-09-05"}, -{"geonameId":"2946228","name":"Borken","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":40876,"modificationDate":"2019-09-05"}, -{"geonameId":"1189056","name":"Sakhipur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":40869,"modificationDate":"2016-11-09"}, -{"geonameId":"1169145","name":"Naushahra Virkan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":40853,"modificationDate":"2019-12-06"}, -{"geonameId":"3387604","name":"Sirinhaém","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":40852,"modificationDate":"2012-04-16"}, -{"geonameId":"1832215","name":"Yeonil","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":40852,"modificationDate":"2016-09-09"}, -{"geonameId":"2667094","name":"Tumba","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":40832,"modificationDate":"2017-03-18"}, -{"geonameId":"524736","name":"Mozdok","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":40823,"modificationDate":"2019-09-05"}, -{"geonameId":"101312","name":"Turaif","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":40819,"modificationDate":"2016-09-20"}, -{"geonameId":"1696614","name":"Pagbilao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":40818,"modificationDate":"2017-12-13"}, -{"geonameId":"1275050","name":"Burla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40816,"modificationDate":"2015-09-06"}, -{"geonameId":"4597948","name":"Sumter","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40816,"modificationDate":"2017-03-09"}, -{"geonameId":"3402229","name":"Chapadinha","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":40804,"modificationDate":"2012-08-03"}, -{"geonameId":"2843350","name":"Rudow","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":40802,"modificationDate":"2017-09-19"}, -{"geonameId":"2234794","name":"Banyo","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":40798,"modificationDate":"2012-01-16"}, -{"geonameId":"3668572","name":"Santander de Quilichao","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":40798,"modificationDate":"2018-07-04"}, -{"geonameId":"3684945","name":"El Bagre","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":40798,"modificationDate":"2016-01-28"}, -{"geonameId":"1626895","name":"Sinjai","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":40797,"modificationDate":"2016-01-07"}, -{"geonameId":"616629","name":"Hrazdan","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":40795,"modificationDate":"2011-03-28"}, -{"geonameId":"2857129","name":"Oranienburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":40793,"modificationDate":"2019-09-05"}, -{"geonameId":"707565","name":"Irpin","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":40789,"modificationDate":"2017-05-26"}, -{"geonameId":"1862230","name":"Hondomachi-hondo","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":40787,"modificationDate":"2017-04-09"}, -{"geonameId":"4247703","name":"Quincy","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":40780,"modificationDate":"2017-05-23"}, -{"geonameId":"5219488","name":"Wilkes-Barre","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40780,"modificationDate":"2019-09-05"}, -{"geonameId":"315985","name":"Edremit","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":40777,"modificationDate":"2013-06-05"}, -{"geonameId":"935616","name":"Le Port","countryName":"Reunion","timeZoneName":"Indian/Reunion","timeZoneOffsetNameWithoutDst":"Réunion Time","population":40771,"modificationDate":"2019-02-26"}, -{"geonameId":"3174638","name":"Lodi","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":40767,"modificationDate":"2014-04-13"}, -{"geonameId":"1860176","name":"Kannabe","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":40766,"modificationDate":"2020-06-11"}, -{"geonameId":"746574","name":"Gönen","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":40763,"modificationDate":"2013-06-05"}, -{"geonameId":"4899966","name":"Lincoln Square","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":40761,"modificationDate":"2017-12-14"}, -{"geonameId":"3521941","name":"Pánuco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":40754,"modificationDate":"2018-11-03"}, -{"geonameId":"2479183","name":"Souma","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":40745,"modificationDate":"2018-10-05"}, -{"geonameId":"5364066","name":"La Puente","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":40745,"modificationDate":"2017-03-09"}, -{"geonameId":"1858866","name":"Komono","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":40740,"modificationDate":"2017-04-09"}, -{"geonameId":"1718436","name":"Carcar","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":40739,"modificationDate":"2017-12-13"}, -{"geonameId":"2974733","name":"Sète","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":40736,"modificationDate":"2016-02-18"}, -{"geonameId":"913613","name":"Kansanshi","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":40705,"modificationDate":"2011-10-27"}, -{"geonameId":"2746331","name":"Tiel","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":40702,"modificationDate":"2017-10-17"}, -{"geonameId":"2514287","name":"Mairena del Aljarafe","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":40700,"modificationDate":"2012-03-04"}, -{"geonameId":"2311968","name":"Nioki","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":40695,"modificationDate":"2016-11-22"}, -{"geonameId":"2119538","name":"Yelizovo","countryName":"Russia","timeZoneName":"Asia/Kamchatka","timeZoneOffsetNameWithoutDst":"Petropavlovsk-Kamchatski Time","population":40692,"modificationDate":"2016-11-29"}, -{"geonameId":"3469437","name":"Bom Jesus da Lapa","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":40691,"modificationDate":"2017-07-15"}, -{"geonameId":"1864945","name":"Atami","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":40687,"modificationDate":"2017-07-22"}, -{"geonameId":"4939783","name":"Holyoke","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40684,"modificationDate":"2017-05-23"}, -{"geonameId":"3102987","name":"Bolesławiec","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":40682,"modificationDate":"2011-07-31"}, -{"geonameId":"787050","name":"Pirot","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":40678,"modificationDate":"2012-04-17"}, -{"geonameId":"291696","name":"Port Khor Fakkan","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":40677,"modificationDate":"2020-06-10"}, -{"geonameId":"1273704","name":"Dahegām","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40671,"modificationDate":"2014-10-13"}, -{"geonameId":"4728328","name":"Sherman","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":40667,"modificationDate":"2017-03-09"}, -{"geonameId":"1271493","name":"Garhwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40662,"modificationDate":"2015-08-07"}, -{"geonameId":"2616038","name":"Næstved","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":40660,"modificationDate":"2017-10-18"}, -{"geonameId":"3037612","name":"Anglet","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":40658,"modificationDate":"2020-02-07"}, -{"geonameId":"667227","name":"Sighetu Marmaţiei","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":40653,"modificationDate":"2013-12-01"}, -{"geonameId":"2985034","name":"Puteaux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":40646,"modificationDate":"2016-02-18"}, -{"geonameId":"1567621","name":"Sontai","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":40636,"modificationDate":"2020-06-09"}, -{"geonameId":"4580098","name":"Goose Creek","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40633,"modificationDate":"2017-03-09"}, -{"geonameId":"3445350","name":"Venâncio Aires","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":40627,"modificationDate":"2012-08-03"}, -{"geonameId":"3690577","name":"Acacías","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":40627,"modificationDate":"2018-08-08"}, -{"geonameId":"1179223","name":"Fort Abbas","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":40626,"modificationDate":"2019-12-06"}, -{"geonameId":"2506043","name":"Azazga","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":40623,"modificationDate":"2012-01-19"}, -{"geonameId":"3646451","name":"Carrizal","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":40618,"modificationDate":"2012-01-11"}, -{"geonameId":"3520274","name":"Río Blanco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":40611,"modificationDate":"2018-11-03"}, -{"geonameId":"358274","name":"Dayr Mawās","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":40609,"modificationDate":"2020-01-09"}, -{"geonameId":"3676397","name":"Lorica","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":40605,"modificationDate":"2018-07-04"}, -{"geonameId":"2738752","name":"Guimarães","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":40604,"modificationDate":"2018-05-01"}, -{"geonameId":"9610004","name":"Šilainiai","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":40600,"modificationDate":"2014-09-26"}, -{"geonameId":"1274890","name":"Chakradharpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40599,"modificationDate":"2017-09-05"}, -{"geonameId":"2853658","name":"Pinneberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":40577,"modificationDate":"2015-09-04"}, -{"geonameId":"5036588","name":"Maplewood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":40567,"modificationDate":"2017-05-23"}, -{"geonameId":"1725684","name":"Bayugan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":40561,"modificationDate":"2018-03-28"}, -{"geonameId":"1185095","name":"Teknāf","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":40557,"modificationDate":"2016-11-09"}, -{"geonameId":"4912691","name":"Streamwood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":40554,"modificationDate":"2017-05-23"}, -{"geonameId":"1854444","name":"Ojiya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":40549,"modificationDate":"2017-07-22"}, -{"geonameId":"2514216","name":"Manacor","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":40548,"modificationDate":"2011-07-31"}, -{"geonameId":"4936812","name":"Fitchburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40545,"modificationDate":"2017-05-23"}, -{"geonameId":"3023763","name":"Corbeil-Essonnes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":40527,"modificationDate":"2016-02-18"}, -{"geonameId":"1278868","name":"Ambāh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40523,"modificationDate":"2015-08-07"}, -{"geonameId":"1185210","name":"Gaurnadi","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":40519,"modificationDate":"2020-02-11"}, -{"geonameId":"2754848","name":"Harderwijk","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":40516,"modificationDate":"2017-10-17"}, -{"geonameId":"3179977","name":"Cascina","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":40512,"modificationDate":"2015-08-11"}, -{"geonameId":"4581832","name":"Hilton Head Island","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40512,"modificationDate":"2017-03-09"}, -{"geonameId":"162627","name":"Jebrud","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":40502,"modificationDate":"2020-06-10"}, -{"geonameId":"1851155","name":"Takahama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":40501,"modificationDate":"2017-07-22"}, -{"geonameId":"145531","name":"Saurimo","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":40498,"modificationDate":"2012-01-17"}, -{"geonameId":"1185272","name":"Kālia","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":40492,"modificationDate":"2016-11-09"}, -{"geonameId":"1176995","name":"Havelian","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":40481,"modificationDate":"2019-12-06"}, -{"geonameId":"1608597","name":"Mukdahan","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":40480,"modificationDate":"2012-01-16"}, -{"geonameId":"2655777","name":"Bexhill-on-Sea","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":40478,"modificationDate":"2015-04-24"}, -{"geonameId":"5364079","name":"La Quinta","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":40476,"modificationDate":"2017-03-09"}, -{"geonameId":"4212937","name":"North Atlanta","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40456,"modificationDate":"2017-03-10"}, -{"geonameId":"1056151","name":"Soavinandriana","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":40453,"modificationDate":"2018-09-10"}, -{"geonameId":"581313","name":"Apsheronsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":40451,"modificationDate":"2019-09-05"}, -{"geonameId":"1268376","name":"Kallakkurichchi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40449,"modificationDate":"2014-10-14"}, -{"geonameId":"4889229","name":"Crystal Lake","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":40448,"modificationDate":"2018-10-06"}, -{"geonameId":"1629974","name":"Rantepao","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":40438,"modificationDate":"2016-01-07"}, -{"geonameId":"1271345","name":"Ghātampur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40435,"modificationDate":"2014-10-14"}, -{"geonameId":"4357141","name":"Hagerstown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40432,"modificationDate":"2017-03-09"}, -{"geonameId":"5392034","name":"San Gabriel","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":40424,"modificationDate":"2017-03-09"}, -{"geonameId":"1844308","name":"Hayang","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":40423,"modificationDate":"2012-01-18"}, -{"geonameId":"1279123","name":"Akivīdu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40413,"modificationDate":"2015-09-06"}, -{"geonameId":"4035413","name":"Apia","countryName":"Samoa","timeZoneName":"Pacific/Apia","timeZoneOffsetNameWithoutDst":"Apia Time","population":40407,"modificationDate":"2019-09-05"}, -{"geonameId":"704679","name":"Podilsk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":40406,"modificationDate":"2020-03-30"}, -{"geonameId":"6184365","name":"Woodstock","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40404,"modificationDate":"2019-08-08"}, -{"geonameId":"3471395","name":"Artur Nogueira","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":40403,"modificationDate":"2012-08-03"}, -{"geonameId":"2518770","name":"Écija","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":40400,"modificationDate":"2012-03-04"}, -{"geonameId":"226110","name":"Tororo","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":40400,"modificationDate":"2016-06-22"}, -{"geonameId":"1214055","name":"Reuleuet","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":40393,"modificationDate":"2013-11-08"}, -{"geonameId":"3463865","name":"Estância Velha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":40390,"modificationDate":"2012-08-03"}, -{"geonameId":"361827","name":"Delingat","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":40386,"modificationDate":"2020-06-11"}, -{"geonameId":"1848573","name":"Yanagawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":40386,"modificationDate":"2017-07-22"}, -{"geonameId":"1298911","name":"Pyu","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":40386,"modificationDate":"2016-06-01"}, -{"geonameId":"3866163","name":"Alta Gracia","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":40384,"modificationDate":"2016-01-30"}, -{"geonameId":"363619","name":"Yei","countryName":"South Sudan","timeZoneName":"Africa/Juba","timeZoneOffsetNameWithoutDst":"East Africa Time","population":40382,"modificationDate":"2018-07-15"}, -{"geonameId":"363656","name":"Yambio","countryName":"South Sudan","timeZoneName":"Africa/Juba","timeZoneOffsetNameWithoutDst":"East Africa Time","population":40382,"modificationDate":"2020-02-22"}, -{"geonameId":"1265886","name":"Kovur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40379,"modificationDate":"2020-06-10"}, -{"geonameId":"4470778","name":"Hickory","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40374,"modificationDate":"2017-05-23"}, -{"geonameId":"2935220","name":"Dreieich","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":40367,"modificationDate":"2015-09-04"}, -{"geonameId":"4930511","name":"Beverly Cove","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40365,"modificationDate":"2017-05-23"}, -{"geonameId":"1527513","name":"Uzgen","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":40360,"modificationDate":"2015-06-07"}, -{"geonameId":"724144","name":"Michalovce","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":40360,"modificationDate":"2019-09-05"}, -{"geonameId":"4178550","name":"Winter Garden","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40356,"modificationDate":"2017-03-09"}, -{"geonameId":"4886662","name":"Carol Stream","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":40356,"modificationDate":"2017-05-23"}, -{"geonameId":"3090764","name":"Nowa Sól","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":40354,"modificationDate":"2020-04-25"}, -{"geonameId":"3177608","name":"Desio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":40337,"modificationDate":"2014-04-13"}, -{"geonameId":"2853572","name":"Pirna","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":40322,"modificationDate":"2019-05-01"}, -{"geonameId":"1319533","name":"Kayan","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":40322,"modificationDate":"2018-12-05"}, -{"geonameId":"3153623","name":"Haugesund","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":40321,"modificationDate":"2012-03-01"}, -{"geonameId":"2954006","name":"Aurich","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":40319,"modificationDate":"2015-09-05"}, -{"geonameId":"196742","name":"Homa Bay","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":40319,"modificationDate":"2013-06-27"}, -{"geonameId":"2110257","name":"Tarawa","countryName":"Kiribati","timeZoneName":"Pacific/Tarawa","timeZoneOffsetNameWithoutDst":"Gilbert Islands Time","population":40311,"modificationDate":"2018-12-28"}, -{"geonameId":"2019951","name":"Mirny","countryName":"Russia","timeZoneName":"Asia/Yakutsk","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":40308,"modificationDate":"2019-09-05"}, -{"geonameId":"3469516","name":"Bom Despacho","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":40303,"modificationDate":"2012-08-03"}, -{"geonameId":"3456827","name":"Monte Mor","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":40290,"modificationDate":"2012-08-03"}, -{"geonameId":"750598","name":"Bilecik","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":40285,"modificationDate":"2012-01-16"}, -{"geonameId":"1255850","name":"Solan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40283,"modificationDate":"2015-03-08"}, -{"geonameId":"511359","name":"Pereslawl-Saleski","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":40283,"modificationDate":"2020-06-10"}, -{"geonameId":"1583477","name":"Dien Bien Phu","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":40282,"modificationDate":"2020-06-14"}, -{"geonameId":"2378538","name":"Kiffa","countryName":"Mauritania","timeZoneName":"Africa/Nouakchott","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":40281,"modificationDate":"2019-09-05"}, -{"geonameId":"1580142","name":"Hong-Yen","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":40273,"modificationDate":"2020-06-09"}, -{"geonameId":"1702372","name":"Mamatid","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":40271,"modificationDate":"2017-12-13"}, -{"geonameId":"2179670","name":"Wanganui","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":40268,"modificationDate":"2011-08-01"}, -{"geonameId":"2100633","name":"Arawa","countryName":"Papua New Guinea","timeZoneName":"Pacific/Bougainville","timeZoneOffsetNameWithoutDst":"GMT+11:00","population":40266,"modificationDate":"2015-02-04"}, -{"geonameId":"2482939","name":"Rouached","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":40263,"modificationDate":"2018-10-05"}, -{"geonameId":"7932342","name":"Barmbek-Nord","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":40261,"modificationDate":"2017-08-14"}, -{"geonameId":"5175865","name":"Warren","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40245,"modificationDate":"2017-05-23"}, -{"geonameId":"247105","name":"Sehab","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":40241,"modificationDate":"2020-06-10"}, -{"geonameId":"3173995","name":"Marcianise","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":40239,"modificationDate":"2014-04-13"}, -{"geonameId":"2165171","name":"Glen Waverley","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":40238,"modificationDate":"2019-07-18"}, -{"geonameId":"927246","name":"Mangochi","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":40236,"modificationDate":"2011-04-25"}, -{"geonameId":"1262410","name":"Murtajāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40223,"modificationDate":"2015-08-07"}, -{"geonameId":"4013724","name":"Camargo","countryName":"Mexico","timeZoneName":"America/Chihuahua","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":40221,"modificationDate":"2018-11-03"}, -{"geonameId":"1279227","name":"Ahmadpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40218,"modificationDate":"2014-10-13"}, -{"geonameId":"1270619","name":"Gursahāiganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40214,"modificationDate":"2015-08-07"}, -{"geonameId":"2861632","name":"Nürtingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":40210,"modificationDate":"2015-03-04"}, -{"geonameId":"2890473","name":"Kirchheim unter Teck","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":40206,"modificationDate":"2013-02-16"}, -{"geonameId":"2387546","name":"Bozoum","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":40201,"modificationDate":"2016-06-22"}, -{"geonameId":"481964","name":"Tosno","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":40198,"modificationDate":"2019-09-05"}, -{"geonameId":"5100886","name":"Marlboro","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40191,"modificationDate":"2017-05-23"}, -{"geonameId":"2512169","name":"Puerto Real","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":40183,"modificationDate":"2012-03-04"}, -{"geonameId":"1642317","name":"Juwana","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":40177,"modificationDate":"2012-01-17"}, -{"geonameId":"2290412","name":"Daoukro","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":40175,"modificationDate":"2016-05-20"}, -{"geonameId":"1156257","name":"Ban Na","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":40174,"modificationDate":"2012-11-07"}, -{"geonameId":"118704","name":"Rāvar","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":40167,"modificationDate":"2014-09-04"}, -{"geonameId":"120694","name":"Qā’en","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":40157,"modificationDate":"2014-09-04"}, -{"geonameId":"148942","name":"Vwawa","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":40145,"modificationDate":"2018-09-08"}, -{"geonameId":"2144095","name":"Werribee","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":40143,"modificationDate":"2019-07-18"}, -{"geonameId":"3564114","name":"Cifuentes","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":40142,"modificationDate":"2014-07-18"}, -{"geonameId":"3085151","name":"Sopot","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":40142,"modificationDate":"2019-09-05"}, -{"geonameId":"2493956","name":"Héliopolis","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":40139,"modificationDate":"2012-01-19"}, -{"geonameId":"770380","name":"Jarosław","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":40134,"modificationDate":"2010-09-12"}, -{"geonameId":"1259879","name":"Periyakulam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40131,"modificationDate":"2017-08-02"}, -{"geonameId":"1263580","name":"Māpuca","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40122,"modificationDate":"2016-11-25"}, -{"geonameId":"3660361","name":"Balzar","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":40115,"modificationDate":"2017-02-07"}, -{"geonameId":"533690","name":"Luga","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":40114,"modificationDate":"2019-09-05"}, -{"geonameId":"2315417","name":"Inongo","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":40113,"modificationDate":"2016-11-22"}, -{"geonameId":"1255211","name":"Tāki","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40113,"modificationDate":"2014-10-14"}, -{"geonameId":"1272657","name":"Diamond Harbour","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40095,"modificationDate":"2014-10-14"}, -{"geonameId":"585557","name":"Mashtagi","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":40092,"modificationDate":"2020-06-10"}, -{"geonameId":"1285871","name":"Nyaungdon","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":40092,"modificationDate":"2016-06-01"}, -{"geonameId":"1256983","name":"Saundatti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40091,"modificationDate":"2014-10-14"}, -{"geonameId":"551964","name":"Kashira","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":40084,"modificationDate":"2019-09-05"}, -{"geonameId":"1174357","name":"Khairpur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":40083,"modificationDate":"2019-12-06"}, -{"geonameId":"3458147","name":"Mafra","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":40081,"modificationDate":"2012-08-03"}, -{"geonameId":"5105262","name":"Teaneck","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40078,"modificationDate":"2018-02-18"}, -{"geonameId":"1735086","name":"Nibong Tebal","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":40072,"modificationDate":"2012-01-17"}, -{"geonameId":"3992986","name":"Pénjamo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":40070,"modificationDate":"2018-11-03"}, -{"geonameId":"5332698","name":"Calexico","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":40053,"modificationDate":"2017-03-09"}, -{"geonameId":"3649408","name":"Altagracia de Orituco","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":40052,"modificationDate":"2018-08-08"}, -{"geonameId":"757692","name":"Świdnik","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":40050,"modificationDate":"2010-09-09"}, -{"geonameId":"3127978","name":"Blanes","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":40047,"modificationDate":"2012-03-04"}, -{"geonameId":"1502536","name":"Korkino","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":40046,"modificationDate":"2017-12-28"}, -{"geonameId":"2536074","name":"Sidi Bennour","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":40044,"modificationDate":"2016-11-02"}, -{"geonameId":"1253545","name":"Vaijāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40043,"modificationDate":"2014-10-13"}, -{"geonameId":"2882087","name":"Laatzen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":40038,"modificationDate":"2015-09-04"}, -{"geonameId":"3491952","name":"Villa Altagracia","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":40027,"modificationDate":"2016-06-05"}, -{"geonameId":"4062577","name":"Florence","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":40026,"modificationDate":"2017-03-09"}, -{"geonameId":"1732663","name":"Raub","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":40024,"modificationDate":"2012-01-17"}, -{"geonameId":"3589626","name":"San Pedro","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":40021,"modificationDate":"2020-06-10"}, -{"geonameId":"101631","name":"Ţubarjal","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":40019,"modificationDate":"2012-01-16"}, -{"geonameId":"1271319","name":"Ghatshila","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40018,"modificationDate":"2020-06-10"}, -{"geonameId":"3396048","name":"Macaíba","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":40015,"modificationDate":"2012-08-03"}, -{"geonameId":"3526952","name":"Huejutla de Reyes","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":40015,"modificationDate":"2018-04-03"}, -{"geonameId":"1850499","name":"Tatsuno","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":40011,"modificationDate":"2020-06-11"}, -{"geonameId":"419435","name":"Az Zarqā","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":40010,"modificationDate":"2013-07-07"}, -{"geonameId":"2623188","name":"Charlottenlund","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":40000,"modificationDate":"2017-10-18"}, -{"geonameId":"2624341","name":"Ballerup","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":40000,"modificationDate":"2017-10-18"}, -{"geonameId":"2655329","name":"Bloxwich","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":40000,"modificationDate":"2012-03-29"}, -{"geonameId":"3590616","name":"Salamá","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":40000,"modificationDate":"2013-08-04"}, -{"geonameId":"8449493","name":"Pekan Bahapal","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":40000,"modificationDate":"2013-01-19"}, -{"geonameId":"1270245","name":"Hashimara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40000,"modificationDate":"2020-06-10"}, -{"geonameId":"7302851","name":"Sathupalli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":40000,"modificationDate":"2014-10-12"}, -{"geonameId":"121959","name":"Nowshahr","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":40000,"modificationDate":"2017-03-04"}, -{"geonameId":"2524013","name":"Nicastro","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":40000,"modificationDate":"2018-10-01"}, -{"geonameId":"1527004","name":"Balykchy","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":40000,"modificationDate":"2015-06-07"}, -{"geonameId":"1521315","name":"Lisakovsk","countryName":"Kazakhstan","timeZoneName":"Asia/Qostanay","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":40000,"modificationDate":"2019-08-14"}, -{"geonameId":"2550898","name":"Imzouren","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":40000,"modificationDate":"2016-11-29"}, -{"geonameId":"469707","name":"Yagry","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":40000,"modificationDate":"2015-06-16"}, -{"geonameId":"6696767","name":"Langepas","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":40000,"modificationDate":"2008-11-29"}, -{"geonameId":"159908","name":"Geita","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":40000,"modificationDate":"2018-05-09"}, -{"geonameId":"705809","name":"Kirovsk","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":40000,"modificationDate":"2020-06-10"}, -{"geonameId":"11704266","name":"St. Johns","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":40000,"modificationDate":"2017-10-04"}, -{"geonameId":"3639725","name":"Güiria","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":40000,"modificationDate":"2018-08-08"}, -{"geonameId":"1581052","name":"Hà Tiên","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":40000,"modificationDate":"2014-08-05"}, -{"geonameId":"789996","name":"Istok","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":40000,"modificationDate":"2015-02-22"}, -{"geonameId":"6690867","name":"Ewell","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":39994,"modificationDate":"2011-03-03"}, -{"geonameId":"2517111","name":"Granadilla de Abona","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":39993,"modificationDate":"2012-03-04"}, -{"geonameId":"2470191","name":"Djemmal","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":39990,"modificationDate":"2018-08-05"}, -{"geonameId":"1259190","name":"Pūranpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39988,"modificationDate":"2014-10-14"}, -{"geonameId":"12031840","name":"Kiryat Ono","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":39986,"modificationDate":"2020-04-29"}, -{"geonameId":"1270543","name":"Haflang","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39982,"modificationDate":"2020-06-10"}, -{"geonameId":"5046997","name":"Shakopee","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":39981,"modificationDate":"2017-05-23"}, -{"geonameId":"3101547","name":"Chrzanów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":39973,"modificationDate":"2012-10-01"}, -{"geonameId":"3818742","name":"San Andrés Cholula","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":39964,"modificationDate":"2018-11-03"}, -{"geonameId":"1258698","name":"Rameswaram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39960,"modificationDate":"2014-10-14"}, -{"geonameId":"546225","name":"Kolomyagi","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":39945,"modificationDate":"2013-03-29"}, -{"geonameId":"3668175","name":"Segovia","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":39938,"modificationDate":"2018-06-08"}, -{"geonameId":"3466641","name":"Catu","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":39932,"modificationDate":"2012-08-03"}, -{"geonameId":"1277232","name":"Bānsi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39926,"modificationDate":"2015-08-07"}, -{"geonameId":"2501362","name":"Chetouane","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":39913,"modificationDate":"2012-01-19"}, -{"geonameId":"1766249","name":"Kampong Pangkal Kalong","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":39904,"modificationDate":"2018-12-04"}, -{"geonameId":"4930577","name":"Billerica","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39904,"modificationDate":"2017-05-23"}, -{"geonameId":"1254342","name":"Thiruthani","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39899,"modificationDate":"2014-10-14"}, -{"geonameId":"1860626","name":"Kameyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":39899,"modificationDate":"2017-07-22"}, -{"geonameId":"4839843","name":"Norwich","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39899,"modificationDate":"2017-05-23"}, -{"geonameId":"7279752","name":"Mandideep","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39898,"modificationDate":"2014-10-14"}, -{"geonameId":"1062553","name":"Mahanoro","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":39879,"modificationDate":"2018-09-10"}, -{"geonameId":"1488429","name":"Uray","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":39878,"modificationDate":"2012-08-04"}, -{"geonameId":"1275634","name":"Bīlāspur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39873,"modificationDate":"2015-10-04"}, -{"geonameId":"2168305","name":"Dubbo","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":39863,"modificationDate":"2019-07-18"}, -{"geonameId":"1254695","name":"Thakurdwara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39860,"modificationDate":"2014-10-14"}, -{"geonameId":"582956","name":"Alekseyevka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":39848,"modificationDate":"2020-03-07"}, -{"geonameId":"3016621","name":"Garges-lès-Gonesse","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":39847,"modificationDate":"2016-02-18"}, -{"geonameId":"3106050","name":"Vic","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":39844,"modificationDate":"2012-03-04"}, -{"geonameId":"1868998","name":"Sŭngho 1-tong","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":39841,"modificationDate":"2012-01-19"}, -{"geonameId":"2983362","name":"Roanne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":39840,"modificationDate":"2019-04-10"}, -{"geonameId":"1630200","name":"Rajapolah","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":39840,"modificationDate":"2012-01-17"}, -{"geonameId":"4929022","name":"Amherst","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39833,"modificationDate":"2017-05-23"}, -{"geonameId":"2898111","name":"Hückelhoven","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":39828,"modificationDate":"2015-09-04"}, -{"geonameId":"3447720","name":"Serrana","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":39826,"modificationDate":"2012-08-03"}, -{"geonameId":"4687331","name":"Duncanville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":39826,"modificationDate":"2017-03-09"}, -{"geonameId":"5264381","name":"New Berlin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":39825,"modificationDate":"2017-05-23"}, -{"geonameId":"4943170","name":"Marlborough","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39818,"modificationDate":"2017-05-23"}, -{"geonameId":"5378566","name":"Oakley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":39813,"modificationDate":"2017-03-09"}, -{"geonameId":"3514510","name":"Xicotepec de Juárez","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":39803,"modificationDate":"2018-11-03"}, -{"geonameId":"3685823","name":"Corozal","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":39800,"modificationDate":"2018-09-05"}, -{"geonameId":"2508130","name":"Ain Mellah","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":39798,"modificationDate":"2020-06-11"}, -{"geonameId":"2468106","name":"Ksar Hellal","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":39792,"modificationDate":"2018-08-05"}, -{"geonameId":"293322","name":"Tiberias","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":39790,"modificationDate":"2017-07-02"}, -{"geonameId":"1519030","name":"Chu","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":39785,"modificationDate":"2015-12-05"}, -{"geonameId":"1179790","name":"Dinga","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":39784,"modificationDate":"2019-12-06"}, -{"geonameId":"1849299","name":"Umi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":39772,"modificationDate":"2017-04-09"}, -{"geonameId":"1271940","name":"Farrukhnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39766,"modificationDate":"2014-10-10"}, -{"geonameId":"4516233","name":"Lancaster","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39766,"modificationDate":"2017-03-09"}, -{"geonameId":"734538","name":"Políchni","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":39765,"modificationDate":"2012-01-17"}, -{"geonameId":"2699310","name":"Kristianstad","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":39762,"modificationDate":"2019-09-05"}, -{"geonameId":"596479","name":"Fabijoniškės","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":39759,"modificationDate":"2015-02-12"}, -{"geonameId":"3655720","name":"Huaquillas","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":39757,"modificationDate":"2017-02-07"}, -{"geonameId":"1172488","name":"Ladhewala Waraich","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":39757,"modificationDate":"2019-12-06"}, -{"geonameId":"2641267","name":"North Shields","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":39747,"modificationDate":"2013-07-11"}, -{"geonameId":"1859175","name":"Kobayashi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":39747,"modificationDate":"2017-07-22"}, -{"geonameId":"1685146","name":"Taal","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":39745,"modificationDate":"2017-12-13"}, -{"geonameId":"2498172","name":"El Hadjira","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":39744,"modificationDate":"2012-01-19"}, -{"geonameId":"1276037","name":"Bhavāni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39744,"modificationDate":"2017-04-06"}, -{"geonameId":"3095971","name":"Knurów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":39744,"modificationDate":"2011-07-31"}, -{"geonameId":"2939623","name":"Dachau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":39740,"modificationDate":"2018-09-12"}, -{"geonameId":"2542987","name":"Martil","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":39738,"modificationDate":"2016-11-02"}, -{"geonameId":"1273618","name":"Damaun","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39737,"modificationDate":"2020-06-10"}, -{"geonameId":"3168837","name":"Rozzano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":39731,"modificationDate":"2015-08-11"}, -{"geonameId":"2911665","name":"Halberstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":39729,"modificationDate":"2019-09-05"}, -{"geonameId":"1857379","name":"Mibu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":39728,"modificationDate":"2017-04-09"}, -{"geonameId":"485698","name":"Svetlograd","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":39727,"modificationDate":"2019-09-05"}, -{"geonameId":"3180991","name":"Campobasso","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":39723,"modificationDate":"2019-02-28"}, -{"geonameId":"4883904","name":"Avondale","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":39721,"modificationDate":"2017-12-14"}, -{"geonameId":"4908068","name":"Romeoville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":39719,"modificationDate":"2017-05-23"}, -{"geonameId":"5341114","name":"Culver City","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":39717,"modificationDate":"2020-04-20"}, -{"geonameId":"727221","name":"Silistra","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":39715,"modificationDate":"2019-12-10"}, -{"geonameId":"3459094","name":"Laguna","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":39711,"modificationDate":"2012-08-03"}, -{"geonameId":"3622547","name":"Paraíso","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":39702,"modificationDate":"2016-09-07"}, -{"geonameId":"5101334","name":"Montclair","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39701,"modificationDate":"2017-05-23"}, -{"geonameId":"1710389","name":"Jaen","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":39700,"modificationDate":"2017-12-13"}, -{"geonameId":"690412","name":"Vasylkiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":39700,"modificationDate":"2019-02-03"}, -{"geonameId":"2975525","name":"Savigny-sur-Orge","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":39698,"modificationDate":"2016-02-18"}, -{"geonameId":"2836320","name":"Schorndorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":39697,"modificationDate":"2013-02-15"}, -{"geonameId":"1856560","name":"Moroyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":39693,"modificationDate":"2020-06-11"}, -{"geonameId":"1272722","name":"Dhone","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39689,"modificationDate":"2015-11-08"}, -{"geonameId":"759591","name":"Sanok","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":39684,"modificationDate":"2019-02-26"}, -{"geonameId":"2751316","name":"Maarssen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":39675,"modificationDate":"2017-10-17"}, -{"geonameId":"7525990","name":"Yuzhnoukrayinsk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":39674,"modificationDate":"2020-04-22"}, -{"geonameId":"4435764","name":"Meridian","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":39661,"modificationDate":"2017-03-09"}, -{"geonameId":"5807575","name":"Puyallup","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":39659,"modificationDate":"2017-03-09"}, -{"geonameId":"1719683","name":"Camiling","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":39655,"modificationDate":"2017-12-13"}, -{"geonameId":"1261932","name":"Nāndūra Buzurg","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39650,"modificationDate":"2015-08-07"}, -{"geonameId":"3045643","name":"Salgótarján","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":39640,"modificationDate":"2019-02-10"}, -{"geonameId":"1711621","name":"Hinigaran","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":39636,"modificationDate":"2017-12-13"}, -{"geonameId":"233312","name":"Hoima","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":39625,"modificationDate":"2016-06-22"}, -{"geonameId":"1619423","name":"Bang Lamung","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":39620,"modificationDate":"2008-09-18"}, -{"geonameId":"673921","name":"Mangalia","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":39619,"modificationDate":"2012-06-12"}, -{"geonameId":"3582805","name":"Zacatecoluca","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":39613,"modificationDate":"2012-01-14"}, -{"geonameId":"325304","name":"Yarpuz","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":39613,"modificationDate":"2020-06-10"}, -{"geonameId":"3514929","name":"Uman","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":39611,"modificationDate":"2018-11-03"}, -{"geonameId":"1209562","name":"Bera","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":39604,"modificationDate":"2016-11-09"}, -{"geonameId":"1735450","name":"Lumut","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":39595,"modificationDate":"2012-01-17"}, -{"geonameId":"298230","name":"Cimin","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":39591,"modificationDate":"2015-02-07"}, -{"geonameId":"956507","name":"Senekal","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":39584,"modificationDate":"2012-07-12"}, -{"geonameId":"701075","name":"Myrhorod","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":39575,"modificationDate":"2020-05-20"}, -{"geonameId":"2864549","name":"Neumarkt in der Oberpfalz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":39557,"modificationDate":"2019-09-02"}, -{"geonameId":"1262412","name":"Murshidābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39557,"modificationDate":"2014-10-14"}, -{"geonameId":"4956032","name":"Woburn","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39555,"modificationDate":"2017-05-23"}, -{"geonameId":"2871535","name":"Mettmann","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":39550,"modificationDate":"2015-09-05"}, -{"geonameId":"1851426","name":"Sumoto","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":39546,"modificationDate":"2017-08-01"}, -{"geonameId":"470734","name":"Vyatskiye Polyany","countryName":"Russia","timeZoneName":"Europe/Kirov","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":39534,"modificationDate":"2014-06-26"}, -{"geonameId":"3108681","name":"Soria","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":39528,"modificationDate":"2019-09-05"}, -{"geonameId":"2876187","name":"Löhne","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":39521,"modificationDate":"2015-09-04"}, -{"geonameId":"5788054","name":"Bremerton","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":39520,"modificationDate":"2017-03-09"}, -{"geonameId":"2998056","name":"Livry-Gargan","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":39518,"modificationDate":"2016-02-18"}, -{"geonameId":"3020035","name":"Épinal","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":39518,"modificationDate":"2018-02-06"}, -{"geonameId":"1262302","name":"Kummankod","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39512,"modificationDate":"2020-06-10"}, -{"geonameId":"744093","name":"Karasu Mahallesi","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":39508,"modificationDate":"2018-04-28"}, -{"geonameId":"1623197","name":"Tual","countryName":"Indonesia","timeZoneName":"Asia/Jayapura","timeZoneOffsetNameWithoutDst":"Eastern Indonesia Time","population":39502,"modificationDate":"2018-07-18"}, -{"geonameId":"2893264","name":"Kamp-Lintfort","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":39490,"modificationDate":"2015-09-04"}, -{"geonameId":"2944027","name":"Britz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":39488,"modificationDate":"2012-06-09"}, -{"geonameId":"4157898","name":"Hallandale Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39488,"modificationDate":"2017-03-09"}, -{"geonameId":"2799365","name":"Dilbeek","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":39482,"modificationDate":"2012-01-18"}, -{"geonameId":"2111016","name":"Shiroishi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":39481,"modificationDate":"2017-07-22"}, -{"geonameId":"162099","name":"Abadan","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":39481,"modificationDate":"2014-10-15"}, -{"geonameId":"1489962","name":"Tavda","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":39480,"modificationDate":"2019-09-05"}, -{"geonameId":"5462393","name":"Clovis","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":39480,"modificationDate":"2017-03-09"}, -{"geonameId":"1863279","name":"Hamanoichi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":39475,"modificationDate":"2017-04-09"}, -{"geonameId":"4347242","name":"Annapolis","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39474,"modificationDate":"2019-09-23"}, -{"geonameId":"4740629","name":"Weslaco","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":39474,"modificationDate":"2017-03-09"}, -{"geonameId":"3390160","name":"Russas","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":39465,"modificationDate":"2012-08-03"}, -{"geonameId":"4379966","name":"Cape Girardeau","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":39462,"modificationDate":"2017-12-29"}, -{"geonameId":"3460954","name":"Itabirito","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":39452,"modificationDate":"2012-08-03"}, -{"geonameId":"148619","name":"Aghdam","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":39451,"modificationDate":"2020-06-10"}, -{"geonameId":"5287565","name":"Bullhead City","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":39445,"modificationDate":"2017-03-09"}, -{"geonameId":"2218478","name":"Brak","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":39444,"modificationDate":"2014-01-01"}, -{"geonameId":"1260368","name":"Parāsia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39440,"modificationDate":"2015-04-08"}, -{"geonameId":"2950978","name":"Bensheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":39439,"modificationDate":"2019-09-05"}, -{"geonameId":"2304220","name":"Asamankese","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":39435,"modificationDate":"2019-12-06"}, -{"geonameId":"1261711","name":"Nāthdwāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39426,"modificationDate":"2014-10-14"}, -{"geonameId":"1185171","name":"Mehendiganj","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":39424,"modificationDate":"2020-02-11"}, -{"geonameId":"2739997","name":"Ermesinde","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":39420,"modificationDate":"2020-02-03"}, -{"geonameId":"1832771","name":"Yesan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":39409,"modificationDate":"2012-01-18"}, -{"geonameId":"1621520","name":"Wiradesa","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":39407,"modificationDate":"2012-01-17"}, -{"geonameId":"3101672","name":"Chojnice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":39407,"modificationDate":"2019-01-29"}, -{"geonameId":"4166195","name":"North Fort Myers","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39407,"modificationDate":"2013-05-31"}, -{"geonameId":"293831","name":"Qiryat Motzkin","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":39404,"modificationDate":"2020-06-10"}, -{"geonameId":"4932879","name":"Chelsea","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39398,"modificationDate":"2017-05-23"}, -{"geonameId":"1688795","name":"San Pascual","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":39395,"modificationDate":"2017-12-13"}, -{"geonameId":"4513409","name":"Grove City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39388,"modificationDate":"2017-05-23"}, -{"geonameId":"792456","name":"Bor","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":39387,"modificationDate":"2019-09-05"}, -{"geonameId":"3599699","name":"Antigua Guatemala","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":39368,"modificationDate":"2012-01-16"}, -{"geonameId":"1879029","name":"Changyŏn","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":39368,"modificationDate":"2012-01-19"}, -{"geonameId":"3118212","name":"Lloret de Mar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":39363,"modificationDate":"2012-03-04"}, -{"geonameId":"3583471","name":"San Martín","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":39361,"modificationDate":"2018-12-05"}, -{"geonameId":"3557923","name":"Guaymaro","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":39358,"modificationDate":"2020-06-10"}, -{"geonameId":"2977824","name":"Saint-Ouen","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":39353,"modificationDate":"2016-02-18"}, -{"geonameId":"3168843","name":"Rovigo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":39347,"modificationDate":"2018-03-16"}, -{"geonameId":"1185249","name":"Chhagalnaya","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":39335,"modificationDate":"2020-06-10"}, -{"geonameId":"1734599","name":"Kuala Kangsar","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":39331,"modificationDate":"2012-01-17"}, -{"geonameId":"1607001","name":"Roi Et","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":39328,"modificationDate":"2015-03-04"}, -{"geonameId":"1256752","name":"Shāhābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39323,"modificationDate":"2019-02-21"}, -{"geonameId":"548410","name":"Kirov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":39319,"modificationDate":"2012-01-17"}, -{"geonameId":"8504965","name":"Sampsonievskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":39318,"modificationDate":"2013-04-02"}, -{"geonameId":"320995","name":"Bodrum","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":39317,"modificationDate":"2019-09-24"}, -{"geonameId":"169023","name":"Jisr-esh-Shughour","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":39311,"modificationDate":"2020-06-10"}, -{"geonameId":"3054543","name":"Czegled","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":39287,"modificationDate":"2020-06-10"}, -{"geonameId":"1694914","name":"Pantubig","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":39285,"modificationDate":"2017-12-13"}, -{"geonameId":"2172111","name":"Castle Hill","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":39284,"modificationDate":"2019-07-18"}, -{"geonameId":"2498775","name":"El Abiodh Sidi Cheikh","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":39283,"modificationDate":"2012-01-19"}, -{"geonameId":"1697006","name":"Oroquieta","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":39279,"modificationDate":"2017-12-13"}, -{"geonameId":"2280589","name":"Tengréla","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":39277,"modificationDate":"2016-12-03"}, -{"geonameId":"293822","name":"Qiryat Yam","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":39273,"modificationDate":"2017-07-05"}, -{"geonameId":"1605024","name":"Wichian Buri","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":39272,"modificationDate":"2012-01-16"}, -{"geonameId":"2488616","name":"Mehdia daira de meghila","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":39271,"modificationDate":"2018-08-28"}, -{"geonameId":"1056386","name":"Soanierana Ivongo","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":39271,"modificationDate":"2018-09-10"}, -{"geonameId":"3116689","name":"Miranda de Ebro","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":39264,"modificationDate":"2012-03-04"}, -{"geonameId":"4354428","name":"Essex","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39262,"modificationDate":"2011-05-14"}, -{"geonameId":"3174051","name":"Mantova","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":39260,"modificationDate":"2014-01-16"}, -{"geonameId":"4500546","name":"Atlantic City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39260,"modificationDate":"2019-03-14"}, -{"geonameId":"5380420","name":"Pacifica","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":39260,"modificationDate":"2017-03-09"}, -{"geonameId":"1856698","name":"Miyoshi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":39257,"modificationDate":"2017-07-22"}, -{"geonameId":"2983770","name":"Rezé","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":39248,"modificationDate":"2016-02-18"}, -{"geonameId":"1271212","name":"Giddarbāha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39243,"modificationDate":"2015-02-06"}, -{"geonameId":"470666","name":"Vyazniki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":39243,"modificationDate":"2014-06-26"}, -{"geonameId":"4624601","name":"Germantown","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":39240,"modificationDate":"2017-03-09"}, -{"geonameId":"1849069","name":"Uto","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":39234,"modificationDate":"2017-07-22"}, -{"geonameId":"2359608","name":"Kaya","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":39229,"modificationDate":"2012-01-18"}, -{"geonameId":"3570428","name":"Le Lamentin","countryName":"Martinique","timeZoneName":"America/Martinique","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":39229,"modificationDate":"2019-02-26"}, -{"geonameId":"1279147","name":"Akalkot","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39226,"modificationDate":"2015-08-07"}, -{"geonameId":"1854405","name":"Ōkawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":39223,"modificationDate":"2017-07-22"}, -{"geonameId":"1185254","name":"Chhātak","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":39218,"modificationDate":"2016-11-14"}, -{"geonameId":"1861108","name":"Izumi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":39217,"modificationDate":"2017-07-22"}, -{"geonameId":"293690","name":"Rosh Ha‘Ayin","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":39215,"modificationDate":"2017-07-02"}, -{"geonameId":"10628607","name":"Aroor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39214,"modificationDate":"2015-08-19"}, -{"geonameId":"1274151","name":"Chinnamanūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39213,"modificationDate":"2014-10-14"}, -{"geonameId":"2112802","name":"Hasaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":39209,"modificationDate":"2017-04-09"}, -{"geonameId":"3997211","name":"Los Reyes de Salgado","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":39209,"modificationDate":"2018-11-03"}, -{"geonameId":"3646062","name":"Tacarigua","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":39205,"modificationDate":"2012-01-18"}, -{"geonameId":"3692667","name":"Saña","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":39200,"modificationDate":"2015-12-06"}, -{"geonameId":"1485634","name":"Yuzhnoural’sk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":39200,"modificationDate":"2012-01-17"}, -{"geonameId":"3454407","name":"Pedreira","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":39198,"modificationDate":"2012-08-03"}, -{"geonameId":"5433124","name":"Northglenn","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":39197,"modificationDate":"2017-03-09"}, -{"geonameId":"723526","name":"Neudorf","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":39195,"modificationDate":"2020-06-10"}, -{"geonameId":"5116917","name":"Far Rockaway","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39189,"modificationDate":"2017-04-16"}, -{"geonameId":"3522444","name":"Ocozocoautla de Espinosa","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":39180,"modificationDate":"2018-11-03"}, -{"geonameId":"2110506","name":"Yokote","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":39178,"modificationDate":"2017-08-03"}, -{"geonameId":"1713818","name":"Escalante","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":39177,"modificationDate":"2017-12-13"}, -{"geonameId":"1683088","name":"Tanjay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":39151,"modificationDate":"2017-12-13"}, -{"geonameId":"3455459","name":"Palmas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":39150,"modificationDate":"2012-08-03"}, -{"geonameId":"1174301","name":"Khalabat","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":39148,"modificationDate":"2019-12-06"}, -{"geonameId":"297789","name":"Yalvaç","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":39145,"modificationDate":"2012-02-28"}, -{"geonameId":"3566356","name":"Caibairien","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":39140,"modificationDate":"2020-06-10"}, -{"geonameId":"1271259","name":"Ghosi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39138,"modificationDate":"2020-06-10"}, -{"geonameId":"1540711","name":"Muravlenko","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":39137,"modificationDate":"2019-09-05"}, -{"geonameId":"2832521","name":"Siegburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":39135,"modificationDate":"2015-09-04"}, -{"geonameId":"151567","name":"Nguruka","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":39135,"modificationDate":"2016-07-26"}, -{"geonameId":"2287958","name":"Guiglo","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":39134,"modificationDate":"2016-12-03"}, -{"geonameId":"7118093","name":"Gallus","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":39130,"modificationDate":"2018-10-31"}, -{"geonameId":"1278698","name":"Amudālavalasa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39124,"modificationDate":"2015-09-06"}, -{"geonameId":"3455152","name":"Paraguaçu Paulista","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":39120,"modificationDate":"2012-08-03"}, -{"geonameId":"5123280","name":"Kensington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39120,"modificationDate":"2017-04-16"}, -{"geonameId":"1308464","name":"Mawlamyinegyunn","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":39115,"modificationDate":"2018-03-15"}, -{"geonameId":"5113694","name":"Coram","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39113,"modificationDate":"2017-05-23"}, -{"geonameId":"2521738","name":"Andújar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":39111,"modificationDate":"2012-03-04"}, -{"geonameId":"1259939","name":"Pehowa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39101,"modificationDate":"2015-01-07"}, -{"geonameId":"2648438","name":"Glenrothes","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":39100,"modificationDate":"2017-06-15"}, -{"geonameId":"5278120","name":"Wausau","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":39094,"modificationDate":"2017-05-23"}, -{"geonameId":"3190103","name":"Sremska Mitrovica","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":39084,"modificationDate":"2014-10-20"}, -{"geonameId":"1261122","name":"Nūrpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39077,"modificationDate":"2019-02-21"}, -{"geonameId":"473788","name":"Vichuga","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":39071,"modificationDate":"2014-06-27"}, -{"geonameId":"3169412","name":"Rieti","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":39068,"modificationDate":"2015-08-11"}, -{"geonameId":"171830","name":"Bāniyās","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":39066,"modificationDate":"2012-01-17"}, -{"geonameId":"142676","name":"Āstārā","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":39065,"modificationDate":"2013-03-31"}, -{"geonameId":"1279068","name":"Aland","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39064,"modificationDate":"2014-10-14"}, -{"geonameId":"2992415","name":"Montigny-le-Bretonneux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":39063,"modificationDate":"2016-02-18"}, -{"geonameId":"5906267","name":"Boucherville","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":39062,"modificationDate":"2016-06-22"}, -{"geonameId":"12070067","name":"Scampia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":39060,"modificationDate":"2019-07-22"}, -{"geonameId":"1282635","name":"Tulsīpur","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":39058,"modificationDate":"2019-10-19"}, -{"geonameId":"2745634","name":"Venray","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":39047,"modificationDate":"2017-10-17"}, -{"geonameId":"2322529","name":"Talata Mafara","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":39045,"modificationDate":"2016-06-22"}, -{"geonameId":"698436","name":"Pokrov","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":39044,"modificationDate":"2020-05-24"}, -{"geonameId":"1261823","name":"Nārāyanpet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":39041,"modificationDate":"2014-10-10"}, -{"geonameId":"2925017","name":"Freital","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":39027,"modificationDate":"2015-09-05"}, -{"geonameId":"285778","name":"Al Manqaf","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":39025,"modificationDate":"2012-01-18"}, -{"geonameId":"554770","name":"Izobil’nyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":39022,"modificationDate":"2020-06-13"}, -{"geonameId":"4699575","name":"Hurst","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":39016,"modificationDate":"2017-03-09"}, -{"geonameId":"2280316","name":"Toumodi","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":39005,"modificationDate":"2016-12-03"}, -{"geonameId":"3177219","name":"Fano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":38999,"modificationDate":"2018-03-16"}, -{"geonameId":"1652203","name":"Xam Nua","countryName":"Laos","timeZoneName":"Asia/Vientiane","timeZoneOffsetNameWithoutDst":"Indochina Time","population":38992,"modificationDate":"2019-04-10"}, -{"geonameId":"1857209","name":"Minakuchi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":38986,"modificationDate":"2020-06-11"}, -{"geonameId":"4011668","name":"Esperanza","countryName":"Mexico","timeZoneName":"America/Hermosillo","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":38969,"modificationDate":"2018-11-03"}, -{"geonameId":"3203521","name":"Brčko","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":38968,"modificationDate":"2016-06-05"}, -{"geonameId":"3927942","name":"Tambopata","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":38966,"modificationDate":"2014-07-22"}, -{"geonameId":"2990187","name":"Noisy-le-Sec","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":38955,"modificationDate":"2016-02-18"}, -{"geonameId":"2994651","name":"Melun","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":38953,"modificationDate":"2019-09-05"}, -{"geonameId":"3457147","name":"Mineiros","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":38951,"modificationDate":"2012-08-03"}, -{"geonameId":"1260354","name":"Paravoor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38946,"modificationDate":"2020-06-10"}, -{"geonameId":"2637752","name":"Skelmersdale","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":38944,"modificationDate":"2011-03-03"}, -{"geonameId":"2928615","name":"Ettlingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":38942,"modificationDate":"2013-02-15"}, -{"geonameId":"1277289","name":"Bhagalpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38939,"modificationDate":"2020-06-10"}, -{"geonameId":"1314042","name":"Letpandan","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":38936,"modificationDate":"2016-06-01"}, -{"geonameId":"2734585","name":"Santo António dos Olivais","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":38936,"modificationDate":"2018-02-14"}, -{"geonameId":"3170341","name":"Pomigliano d'Arco","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":38921,"modificationDate":"2015-08-11"}, -{"geonameId":"3120431","name":"Igualada","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":38918,"modificationDate":"2012-01-19"}, -{"geonameId":"3134331","name":"Tønsberg","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":38914,"modificationDate":"2020-04-04"}, -{"geonameId":"3035409","name":"Bagneux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":38900,"modificationDate":"2016-02-18"}, -{"geonameId":"1636808","name":"Majenang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":38897,"modificationDate":"2012-01-17"}, -{"geonameId":"3392054","name":"Pinheiro","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":38893,"modificationDate":"2012-08-03"}, -{"geonameId":"3585484","name":"Ilopango","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":38890,"modificationDate":"2012-01-18"}, -{"geonameId":"2290836","name":"Boundiali","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":38878,"modificationDate":"2016-12-03"}, -{"geonameId":"5398630","name":"Stanton","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":38872,"modificationDate":"2017-03-09"}, -{"geonameId":"583673","name":"Aksay","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":38871,"modificationDate":"2013-05-07"}, -{"geonameId":"3467452","name":"Canoinhas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":38862,"modificationDate":"2012-08-03"}, -{"geonameId":"1357699","name":"New Bādāh","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":38855,"modificationDate":"2019-12-06"}, -{"geonameId":"2311127","name":"Tshela","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":38845,"modificationDate":"2013-01-10"}, -{"geonameId":"3077929","name":"Česká Lípa","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":38841,"modificationDate":"2018-09-08"}, -{"geonameId":"1926055","name":"Ōzu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":38833,"modificationDate":"2017-07-22"}, -{"geonameId":"3436177","name":"Balcarce","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":38823,"modificationDate":"2019-06-13"}, -{"geonameId":"118826","name":"Rāmhormoz","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":38821,"modificationDate":"2014-09-04"}, -{"geonameId":"3091831","name":"Mikołów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":38821,"modificationDate":"2015-11-19"}, -{"geonameId":"2111435","name":"Ōmagari","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":38805,"modificationDate":"2018-02-23"}, -{"geonameId":"4705191","name":"Lancaster","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":38801,"modificationDate":"2017-03-09"}, -{"geonameId":"4692521","name":"Friendswood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":38800,"modificationDate":"2017-03-09"}, -{"geonameId":"789541","name":"Kavadarci","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":38799,"modificationDate":"2015-11-08"}, -{"geonameId":"3064104","name":"Třebíč","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":38785,"modificationDate":"2019-03-20"}, -{"geonameId":"3080644","name":"Żary","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":38779,"modificationDate":"2019-03-18"}, -{"geonameId":"217834","name":"Bukama","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":38770,"modificationDate":"2016-11-29"}, -{"geonameId":"1647991","name":"Buaran","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":38770,"modificationDate":"2013-10-29"}, -{"geonameId":"750637","name":"Beypazarı","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":38769,"modificationDate":"2012-01-18"}, -{"geonameId":"2995206","name":"Massy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":38768,"modificationDate":"2016-02-18"}, -{"geonameId":"3112011","name":"Errenteria","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":38767,"modificationDate":"2012-11-19"}, -{"geonameId":"3461129","name":"Ipiaú","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":38762,"modificationDate":"2017-06-01"}, -{"geonameId":"2817065","name":"Voerde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":38759,"modificationDate":"2015-09-04"}, -{"geonameId":"2753719","name":"Hoogeveen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":38754,"modificationDate":"2017-10-17"}, -{"geonameId":"364367","name":"Aweil","countryName":"South Sudan","timeZoneName":"Africa/Juba","timeZoneOffsetNameWithoutDst":"East Africa Time","population":38745,"modificationDate":"2019-05-04"}, -{"geonameId":"2340086","name":"Gummi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":38744,"modificationDate":"2016-06-22"}, -{"geonameId":"3452331","name":"Presidente Epitácio","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":38742,"modificationDate":"2012-08-03"}, -{"geonameId":"3468592","name":"Cabreúva","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":38738,"modificationDate":"2012-08-03"}, -{"geonameId":"1256246","name":"Simdega","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38732,"modificationDate":"2014-10-14"}, -{"geonameId":"2649322","name":"Fleet","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":38726,"modificationDate":"2018-07-03"}, -{"geonameId":"1497549","name":"Nizhneudinsk","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":38723,"modificationDate":"2019-09-05"}, -{"geonameId":"3014078","name":"Haguenau","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":38721,"modificationDate":"2016-02-18"}, -{"geonameId":"1848243","name":"Yorii","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":38717,"modificationDate":"2017-04-09"}, -{"geonameId":"2498000","name":"El Idrissia","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":38714,"modificationDate":"2012-01-19"}, -{"geonameId":"1266209","name":"Kondapalle","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38714,"modificationDate":"2015-09-06"}, -{"geonameId":"536200","name":"Leningradskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":38712,"modificationDate":"2013-05-07"}, -{"geonameId":"4196586","name":"Gainesville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":38712,"modificationDate":"2017-03-09"}, -{"geonameId":"2992017","name":"Montrouge","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":38708,"modificationDate":"2016-02-18"}, -{"geonameId":"2814127","name":"Warendorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":38707,"modificationDate":"2019-09-05"}, -{"geonameId":"8096113","name":"The Acreage","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":38704,"modificationDate":"2017-03-10"}, -{"geonameId":"1185156","name":"Nalchhiti","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":38703,"modificationDate":"2020-06-10"}, -{"geonameId":"6696291","name":"Wichit","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":38701,"modificationDate":"2010-06-08"}, -{"geonameId":"294074","name":"Ness Ziona","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":38700,"modificationDate":"2017-07-02"}, -{"geonameId":"2841590","name":"Sankt Ingbert","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":38697,"modificationDate":"2015-09-05"}, -{"geonameId":"5374232","name":"Montclair","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":38690,"modificationDate":"2017-03-09"}, -{"geonameId":"3562827","name":"Cumanayagua","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":38687,"modificationDate":"2016-11-21"}, -{"geonameId":"2657780","name":"Abingdon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":38676,"modificationDate":"2018-07-03"}, -{"geonameId":"3175532","name":"Imperia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":38675,"modificationDate":"2015-08-11"}, -{"geonameId":"2759426","name":"Barendrecht","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":38672,"modificationDate":"2017-10-17"}, -{"geonameId":"2511852","name":"Rincón de la Victoria","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":38666,"modificationDate":"2012-03-04"}, -{"geonameId":"6139289","name":"Salaberry-de-Valleyfield","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":38662,"modificationDate":"2016-06-22"}, -{"geonameId":"2635703","name":"Tonbridge","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":38657,"modificationDate":"2017-06-12"}, -{"geonameId":"130245","name":"Javānrūd","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":38657,"modificationDate":"2006-01-17"}, -{"geonameId":"3092472","name":"Malbork","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":38655,"modificationDate":"2017-07-08"}, -{"geonameId":"1849782","name":"Tsubata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":38644,"modificationDate":"2017-04-09"}, -{"geonameId":"1761242","name":"Klebang Besar","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":38643,"modificationDate":"2012-01-17"}, -{"geonameId":"1694826","name":"Papaya","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":38640,"modificationDate":"2017-12-13"}, -{"geonameId":"1257429","name":"Sangaria","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38638,"modificationDate":"2020-06-10"}, -{"geonameId":"3429576","name":"Retiro","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":38635,"modificationDate":"2017-05-08"}, -{"geonameId":"5847486","name":"Kailua","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":38635,"modificationDate":"2017-09-05"}, -{"geonameId":"2995908","name":"Marcq-en-Barœul","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":38629,"modificationDate":"2016-02-18"}, -{"geonameId":"2639660","name":"Ramsgate","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":38624,"modificationDate":"2015-05-31"}, -{"geonameId":"1269046","name":"Nawadih","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38624,"modificationDate":"2020-06-10"}, -{"geonameId":"4907907","name":"Rock Island","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":38620,"modificationDate":"2017-05-23"}, -{"geonameId":"949703","name":"Thaba Nchu","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":38616,"modificationDate":"2012-07-12"}, -{"geonameId":"2129395","name":"Kuroishi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":38615,"modificationDate":"2017-04-09"}, -{"geonameId":"1269415","name":"Jalesar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38614,"modificationDate":"2015-08-07"}, -{"geonameId":"1256067","name":"Sirohi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38610,"modificationDate":"2014-10-14"}, -{"geonameId":"1639356","name":"Krian","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":38603,"modificationDate":"2012-01-17"}, -{"geonameId":"3827586","name":"Melchor Ocampo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":38599,"modificationDate":"2018-11-03"}, -{"geonameId":"2503156","name":"Bougaa","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":38597,"modificationDate":"2012-01-19"}, -{"geonameId":"2967870","name":"Vitrolles","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":38591,"modificationDate":"2016-02-18"}, -{"geonameId":"2646274","name":"Ilkeston","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":38587,"modificationDate":"2015-06-05"}, -{"geonameId":"1725157","name":"Binalbagan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":38587,"modificationDate":"2017-12-13"}, -{"geonameId":"5515110","name":"Whitney","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":38585,"modificationDate":"2015-08-06"}, -{"geonameId":"1276219","name":"Bhālki","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38583,"modificationDate":"2014-10-14"}, -{"geonameId":"3020850","name":"Draguignan","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":38573,"modificationDate":"2019-09-05"}, -{"geonameId":"374739","name":"Gogrial","countryName":"South Sudan","timeZoneName":"Africa/Juba","timeZoneOffsetNameWithoutDst":"East Africa Time","population":38572,"modificationDate":"2017-06-12"}, -{"geonameId":"3407243","name":"Araripina","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":38569,"modificationDate":"2012-08-03"}, -{"geonameId":"2957773","name":"Altenburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":38568,"modificationDate":"2015-09-05"}, -{"geonameId":"2394814","name":"Cové","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":38566,"modificationDate":"2012-10-18"}, -{"geonameId":"2835537","name":"Schwabach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":38554,"modificationDate":"2019-09-05"}, -{"geonameId":"4167348","name":"Oviedo","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":38551,"modificationDate":"2017-03-09"}, -{"geonameId":"1260713","name":"Palia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38547,"modificationDate":"2020-06-10"}, -{"geonameId":"1607552","name":"Phrae","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":38538,"modificationDate":"2012-01-16"}, -{"geonameId":"526558","name":"Millerovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":38527,"modificationDate":"2019-09-05"}, -{"geonameId":"668873","name":"Râmnicu Sărat","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":38526,"modificationDate":"2012-06-12"}, -{"geonameId":"11549779","name":"Sant Antoni","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":38512,"modificationDate":"2017-05-24"}, -{"geonameId":"4886676","name":"Carpentersville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":38512,"modificationDate":"2017-05-23"}, -{"geonameId":"6318807","name":"Tucumã","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":38508,"modificationDate":"2019-07-21"}, -{"geonameId":"2810538","name":"Westend","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":38501,"modificationDate":"2012-06-09"}, -{"geonameId":"3083826","name":"Szczecinek","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":38496,"modificationDate":"2019-09-05"}, -{"geonameId":"5735724","name":"Lake Oswego","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":38496,"modificationDate":"2017-03-09"}, -{"geonameId":"163779","name":"Tel Bisi","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":38491,"modificationDate":"2020-06-10"}, -{"geonameId":"1163905","name":"Tank","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":38488,"modificationDate":"2019-12-06"}, -{"geonameId":"2264456","name":"Portimão","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":38487,"modificationDate":"2018-06-05"}, -{"geonameId":"3459138","name":"Lagoa Santa","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":38486,"modificationDate":"2014-12-25"}, -{"geonameId":"716671","name":"Uraj","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":38476,"modificationDate":"2020-06-10"}, -{"geonameId":"2942122","name":"Buckow","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":38474,"modificationDate":"2012-06-09"}, -{"geonameId":"11147723","name":"Ingeniero Pablo Nogués","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":38470,"modificationDate":"2019-08-07"}, -{"geonameId":"3866367","name":"Alderetes","countryName":"Argentina","timeZoneName":"America/Argentina/Tucuman","timeZoneOffsetNameWithoutDst":"Argentina Time","population":38466,"modificationDate":"2016-01-30"}, -{"geonameId":"3815392","name":"Zacatelco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":38466,"modificationDate":"2013-07-31"}, -{"geonameId":"426700","name":"Ruyigi","countryName":"Burundi","timeZoneName":"Africa/Bujumbura","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":38458,"modificationDate":"2012-01-19"}, -{"geonameId":"4543338","name":"Muskogee","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":38456,"modificationDate":"2017-03-09"}, -{"geonameId":"1255143","name":"Talchar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38436,"modificationDate":"2020-06-10"}, -{"geonameId":"1274896","name":"Chaklāsi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38435,"modificationDate":"2014-10-13"}, -{"geonameId":"2520712","name":"Burjassot","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":38433,"modificationDate":"2015-06-16"}, -{"geonameId":"553190","name":"Kandalaksha","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":38431,"modificationDate":"2020-04-04"}, -{"geonameId":"1621416","name":"Wonopringgo","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":38429,"modificationDate":"2013-10-29"}, -{"geonameId":"3105600","name":"Vilafranca del Penedès","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":38425,"modificationDate":"2015-07-25"}, -{"geonameId":"2051471","name":"Dalnegorsk","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":38424,"modificationDate":"2017-11-19"}, -{"geonameId":"5471578","name":"Hobbs","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":38416,"modificationDate":"2017-03-09"}, -{"geonameId":"3064000","name":"Třinec","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":38415,"modificationDate":"2018-09-08"}, -{"geonameId":"2154219","name":"Orange","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":38408,"modificationDate":"2019-09-19"}, -{"geonameId":"2702261","name":"Kalmar","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":38408,"modificationDate":"2019-10-10"}, -{"geonameId":"5003132","name":"Muskegon","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":38401,"modificationDate":"2018-01-03"}, -{"geonameId":"6244895","name":"Upper Hutt","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":38400,"modificationDate":"2011-08-01"}, -{"geonameId":"336372","name":"Waliso","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":38394,"modificationDate":"2014-11-16"}, -{"geonameId":"3684615","name":"El Cerrito","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":38390,"modificationDate":"2018-09-05"}, -{"geonameId":"1737589","name":"Lawas","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":38385,"modificationDate":"2019-08-09"}, -{"geonameId":"5176472","name":"Westerville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":38384,"modificationDate":"2017-05-23"}, -{"geonameId":"1691280","name":"Sablayan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":38383,"modificationDate":"2017-12-13"}, -{"geonameId":"3359741","name":"Vredenburg","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":38382,"modificationDate":"2018-07-24"}, -{"geonameId":"562309","name":"Furmanov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":38380,"modificationDate":"2012-01-17"}, -{"geonameId":"1265580","name":"Kunnamangalam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38372,"modificationDate":"2014-10-13"}, -{"geonameId":"184707","name":"Naivasha","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":38366,"modificationDate":"2018-03-06"}, -{"geonameId":"11549795","name":"el Camp de l'Arpa del Clot","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":38361,"modificationDate":"2017-05-24"}, -{"geonameId":"12070058","name":"Chiaia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":38356,"modificationDate":"2019-07-22"}, -{"geonameId":"1172964","name":"Kot Mumin","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":38355,"modificationDate":"2019-12-10"}, -{"geonameId":"1258864","name":"Rajgriha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38348,"modificationDate":"2020-06-10"}, -{"geonameId":"4706736","name":"Little Elm","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":38341,"modificationDate":"2017-03-09"}, -{"geonameId":"456202","name":"Rēzekne","countryName":"Latvia","timeZoneName":"Europe/Riga","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":38340,"modificationDate":"2019-09-05"}, -{"geonameId":"2750065","name":"Nijkerk","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":38335,"modificationDate":"2017-10-17"}, -{"geonameId":"1265660","name":"Kumhāri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38334,"modificationDate":"2014-10-14"}, -{"geonameId":"2842632","name":"Saarlouis","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":38333,"modificationDate":"2015-09-05"}, -{"geonameId":"4895066","name":"Hanover Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":38333,"modificationDate":"2017-05-23"}, -{"geonameId":"2764359","name":"Steyr","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":38331,"modificationDate":"2019-09-05"}, -{"geonameId":"2874230","name":"Maintal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":38313,"modificationDate":"2019-09-05"}, -{"geonameId":"1217926","name":"Oqtosh","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":38307,"modificationDate":"2012-01-17"}, -{"geonameId":"448149","name":"Sncar","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":38294,"modificationDate":"2020-06-11"}, -{"geonameId":"4680388","name":"Channelview","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":38289,"modificationDate":"2011-05-14"}, -{"geonameId":"4167694","name":"Panama City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":38286,"modificationDate":"2017-03-09"}, -{"geonameId":"727696","name":"Razgrad","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":38285,"modificationDate":"2016-02-07"}, -{"geonameId":"1260138","name":"Pattanamtitta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38285,"modificationDate":"2020-06-10"}, -{"geonameId":"1163968","name":"Tandlianwala","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":38285,"modificationDate":"2019-12-06"}, -{"geonameId":"758682","name":"Sochaczew","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":38267,"modificationDate":"2010-09-18"}, -{"geonameId":"3003093","name":"Lens","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":38265,"modificationDate":"2019-02-28"}, -{"geonameId":"3102459","name":"Brzeg","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":38259,"modificationDate":"2019-09-05"}, -{"geonameId":"689378","name":"Volodymyr-Volynskyi","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":38256,"modificationDate":"2017-12-12"}, -{"geonameId":"3563609","name":"Condado","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":38248,"modificationDate":"2015-12-06"}, -{"geonameId":"3428068","name":"San Vicente","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":38247,"modificationDate":"2018-07-04"}, -{"geonameId":"2652698","name":"Coalville","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":38245,"modificationDate":"2017-06-12"}, -{"geonameId":"3458049","name":"Mandaguari","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":38238,"modificationDate":"2012-08-03"}, -{"geonameId":"3628060","name":"Colón","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":38233,"modificationDate":"2018-08-08"}, -{"geonameId":"4578737","name":"Florence","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":38228,"modificationDate":"2017-03-09"}, -{"geonameId":"3182297","name":"Bassano del Grappa","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":38224,"modificationDate":"2015-08-11"}, -{"geonameId":"1261960","name":"Nandigāma","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38219,"modificationDate":"2015-09-06"}, -{"geonameId":"1181887","name":"Chak Azam Sahu","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":38216,"modificationDate":"2019-12-06"}, -{"geonameId":"5854686","name":"Waipahu","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":38216,"modificationDate":"2017-09-05"}, -{"geonameId":"359900","name":"Es Saff","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":38213,"modificationDate":"2020-06-11"}, -{"geonameId":"6145489","name":"Shawinigan","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":38211,"modificationDate":"2019-08-08"}, -{"geonameId":"1541359","name":"Lyantor","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":38200,"modificationDate":"2009-12-29"}, -{"geonameId":"4497290","name":"Wake Forest","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":38199,"modificationDate":"2017-05-23"}, -{"geonameId":"282993","name":"Ma‘ale Adummim","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":38193,"modificationDate":"2020-04-27"}, -{"geonameId":"2940451","name":"Buxtehude","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":38192,"modificationDate":"2015-09-05"}, -{"geonameId":"285108","name":"Al Bira","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":38192,"modificationDate":"2020-06-10"}, -{"geonameId":"1264403","name":"Mayyazhi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38183,"modificationDate":"2020-06-10"}, -{"geonameId":"7281807","name":"Hoppers Crossing","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":38178,"modificationDate":"2019-07-18"}, -{"geonameId":"1851259","name":"Tahara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":38177,"modificationDate":"2017-07-22"}, -{"geonameId":"4514746","name":"Huber Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":38176,"modificationDate":"2017-05-23"}, -{"geonameId":"7911271","name":"Canvey Island","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":38170,"modificationDate":"2017-06-12"}, -{"geonameId":"1253074","name":"Vvara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38168,"modificationDate":"2020-06-10"}, -{"geonameId":"2959279","name":"Ahaus","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":38165,"modificationDate":"2015-09-04"}, -{"geonameId":"3451134","name":"Rio Grande da Serra","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":38161,"modificationDate":"2012-09-27"}, -{"geonameId":"1185262","name":"Bhairamara","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":38159,"modificationDate":"2020-06-10"}, -{"geonameId":"6690866","name":"Surbiton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":38158,"modificationDate":"2012-03-01"}, -{"geonameId":"3994667","name":"Nueva Rosita","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":38158,"modificationDate":"2018-11-03"}, -{"geonameId":"655958","name":"Järvenpää","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":38148,"modificationDate":"2019-09-05"}, -{"geonameId":"5370868","name":"Martinez","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":38137,"modificationDate":"2017-03-09"}, -{"geonameId":"3016830","name":"Gagny","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":38134,"modificationDate":"2016-02-18"}, -{"geonameId":"5115960","name":"East Meadow","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":38132,"modificationDate":"2017-05-23"}, -{"geonameId":"1264136","name":"Malavalli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38129,"modificationDate":"2016-09-08"}, -{"geonameId":"1267091","name":"Khambhāliya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38121,"modificationDate":"2018-05-28"}, -{"geonameId":"3515827","name":"Tepozotlan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":38119,"modificationDate":"2020-06-10"}, -{"geonameId":"1852479","name":"Shimabara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":38113,"modificationDate":"2017-07-22"}, -{"geonameId":"3625979","name":"Trujillo","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":38110,"modificationDate":"2016-01-07"}, -{"geonameId":"2867996","name":"Mühlhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":38108,"modificationDate":"2015-09-05"}, -{"geonameId":"3873441","name":"Rengo","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":38100,"modificationDate":"2013-01-11"}, -{"geonameId":"2026303","name":"Bol’shoy Kamen’","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":38100,"modificationDate":"2019-09-10"}, -{"geonameId":"3167113","name":"Saronno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":38099,"modificationDate":"2014-04-13"}, -{"geonameId":"877532","name":"Newala Kisimani","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":38099,"modificationDate":"2016-07-26"}, -{"geonameId":"2129766","name":"Kamiiso","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":38098,"modificationDate":"2018-03-07"}, -{"geonameId":"2510392","name":"Tomelloso","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":38095,"modificationDate":"2019-12-15"}, -{"geonameId":"290187","name":"Medinat Isa","countryName":"Bahrain","timeZoneName":"Asia/Bahrain","timeZoneOffsetNameWithoutDst":"Arabian Time","population":38090,"modificationDate":"2020-06-10"}, -{"geonameId":"4357340","name":"Hanover","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":38088,"modificationDate":"2012-05-30"}, -{"geonameId":"320369","name":"Burhaniye","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":38083,"modificationDate":"2013-07-06"}, -{"geonameId":"4916311","name":"Wheeling","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":38079,"modificationDate":"2017-05-23"}, -{"geonameId":"5551535","name":"Apache Junction","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":38074,"modificationDate":"2017-03-09"}, -{"geonameId":"2387495","name":"Carnot","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":38071,"modificationDate":"2016-06-22"}, -{"geonameId":"1255483","name":"Sulurpeta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38065,"modificationDate":"2020-06-10"}, -{"geonameId":"1292579","name":"Thanatpin","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":38059,"modificationDate":"2016-06-01"}, -{"geonameId":"1632694","name":"Pangkalanbuun","countryName":"Indonesia","timeZoneName":"Asia/Pontianak","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":38057,"modificationDate":"2018-04-25"}, -{"geonameId":"2285449","name":"Lakota","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":38055,"modificationDate":"2016-12-03"}, -{"geonameId":"2634032","name":"Whitley Bay","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":38055,"modificationDate":"2011-03-03"}, -{"geonameId":"5779816","name":"Pleasant Grove","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":38052,"modificationDate":"2017-03-09"}, -{"geonameId":"679550","name":"Dej","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":38033,"modificationDate":"2012-06-12"}, -{"geonameId":"1276027","name":"Bhawāniganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38030,"modificationDate":"2012-09-06"}, -{"geonameId":"1493197","name":"Salekhard","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":38025,"modificationDate":"2019-09-05"}, -{"geonameId":"5246835","name":"Brookfield","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":38025,"modificationDate":"2017-05-23"}, -{"geonameId":"3441665","name":"Minas","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":38025,"modificationDate":"2012-02-17"}, -{"geonameId":"3454620","name":"Pederneiras","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":38020,"modificationDate":"2012-08-03"}, -{"geonameId":"2981206","name":"Saint-Chamond","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":38014,"modificationDate":"2018-10-13"}, -{"geonameId":"3173914","name":"Marino","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":38013,"modificationDate":"2015-08-11"}, -{"geonameId":"1274468","name":"Chetwayi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38011,"modificationDate":"2017-02-04"}, -{"geonameId":"1253220","name":"Vetapālem","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38007,"modificationDate":"2015-09-06"}, -{"geonameId":"1862352","name":"Hitoyoshi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":38006,"modificationDate":"2017-07-22"}, -{"geonameId":"2834629","name":"Schwedt (Oder)","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":38001,"modificationDate":"2018-09-19"}, -{"geonameId":"2647972","name":"Greenford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":38000,"modificationDate":"2012-06-01"}, -{"geonameId":"9794300","name":"Shahbazpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":38000,"modificationDate":"2016-04-20"}, -{"geonameId":"1241964","name":"Kalutara","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":38000,"modificationDate":"2018-12-30"}, -{"geonameId":"2375558","name":"Zouerate","countryName":"Mauritania","timeZoneName":"Africa/Nouakchott","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":38000,"modificationDate":"2016-01-07"}, -{"geonameId":"2745321","name":"Voorburg","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":38000,"modificationDate":"2017-10-17"}, -{"geonameId":"76154","name":"Dhī as Sufāl","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":37997,"modificationDate":"2012-01-16"}, -{"geonameId":"5151891","name":"Delaware","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37995,"modificationDate":"2017-05-23"}, -{"geonameId":"1191139","name":"Phultala","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":37985,"modificationDate":"2018-12-04"}, -{"geonameId":"4026075","name":"Guacamayas","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":37980,"modificationDate":"2018-11-03"}, -{"geonameId":"5780802","name":"Roy","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":37964,"modificationDate":"2017-03-09"}, -{"geonameId":"5142109","name":"Valley Stream","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37962,"modificationDate":"2017-05-23"}, -{"geonameId":"355392","name":"‘Izbat al Burj","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":37953,"modificationDate":"2018-03-15"}, -{"geonameId":"585915","name":"Khirdalan","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":37949,"modificationDate":"2014-06-27"}, -{"geonameId":"3924877","name":"Rolim de Moura","countryName":"Brazil","timeZoneName":"America/Porto_Velho","timeZoneOffsetNameWithoutDst":"Amazon Time","population":37949,"modificationDate":"2020-06-11"}, -{"geonameId":"1264409","name":"Mahbūbābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37949,"modificationDate":"2018-05-28"}, -{"geonameId":"913029","name":"Kapiri Mposhi","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":37942,"modificationDate":"2012-06-05"}, -{"geonameId":"8593856","name":"Neustadt/Süd","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":37939,"modificationDate":"2015-03-19"}, -{"geonameId":"4727326","name":"Schertz","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":37938,"modificationDate":"2017-03-09"}, -{"geonameId":"5781860","name":"Spanish Fork","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":37935,"modificationDate":"2017-03-09"}, -{"geonameId":"3893726","name":"Constitución","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":37917,"modificationDate":"2013-01-11"}, -{"geonameId":"1264317","name":"Maihar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37913,"modificationDate":"2015-08-07"}, -{"geonameId":"159909","name":"Geiro","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":37909,"modificationDate":"2016-07-26"}, -{"geonameId":"5734711","name":"Keizer","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":37895,"modificationDate":"2017-03-09"}, -{"geonameId":"4705708","name":"Leander","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":37889,"modificationDate":"2017-03-09"}, -{"geonameId":"1519938","name":"Karatau","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":37881,"modificationDate":"2015-10-04"}, -{"geonameId":"4374054","name":"Woodlawn","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37879,"modificationDate":"2011-05-14"}, -{"geonameId":"2796153","name":"Heist-op-den-Berg","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":37873,"modificationDate":"2013-06-07"}, -{"geonameId":"2657030","name":"Arnold","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37873,"modificationDate":"2012-01-17"}, -{"geonameId":"1272653","name":"Dibai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37873,"modificationDate":"2015-09-06"}, -{"geonameId":"5160783","name":"Lima","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37873,"modificationDate":"2017-05-23"}, -{"geonameId":"4597200","name":"Spartanburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37867,"modificationDate":"2017-03-09"}, -{"geonameId":"2786545","name":"Sint-Truiden","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":37859,"modificationDate":"2019-09-05"}, -{"geonameId":"1258111","name":"Robertsganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37855,"modificationDate":"2015-08-07"}, -{"geonameId":"770293","name":"Jasło","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":37851,"modificationDate":"2019-09-05"}, -{"geonameId":"1267336","name":"Kekri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37850,"modificationDate":"2014-10-14"}, -{"geonameId":"1254880","name":"Tarikere","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37848,"modificationDate":"2014-10-14"}, -{"geonameId":"1263303","name":"Maudaha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37844,"modificationDate":"2015-08-07"}, -{"geonameId":"2646525","name":"Houghton-Le-Spring","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37840,"modificationDate":"2015-05-29"}, -{"geonameId":"2655562","name":"Bishops Stortford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37838,"modificationDate":"2018-07-03"}, -{"geonameId":"3029931","name":"Bron","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":37825,"modificationDate":"2019-06-05"}, -{"geonameId":"3456398","name":"Nanuque","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":37824,"modificationDate":"2012-08-03"}, -{"geonameId":"1259388","name":"Porsa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37824,"modificationDate":"2015-08-07"}, -{"geonameId":"3646767","name":"Caraballeda","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":37824,"modificationDate":"2018-08-08"}, -{"geonameId":"79836","name":"Al Bayda","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":37821,"modificationDate":"2017-04-24"}, -{"geonameId":"1256967","name":"Savanūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37819,"modificationDate":"2014-10-14"}, -{"geonameId":"2951654","name":"Beckum","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":37814,"modificationDate":"2015-09-04"}, -{"geonameId":"3182636","name":"Avezzano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":37808,"modificationDate":"2015-08-11"}, -{"geonameId":"1185274","name":"Baniachang","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":37807,"modificationDate":"2016-11-09"}, -{"geonameId":"2361082","name":"Dori","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37806,"modificationDate":"2012-01-18"}, -{"geonameId":"2911395","name":"Haltern am See","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":37788,"modificationDate":"2019-02-28"}, -{"geonameId":"479703","name":"Uchaly","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":37788,"modificationDate":"2013-08-13"}, -{"geonameId":"1171868","name":"Loralai","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":37787,"modificationDate":"2019-12-06"}, -{"geonameId":"2325506","name":"Otan Ayegbaju","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":37783,"modificationDate":"2019-08-07"}, -{"geonameId":"1259338","name":"Partapgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37780,"modificationDate":"2020-06-10"}, -{"geonameId":"726174","name":"Targovishte","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":37774,"modificationDate":"2013-06-10"}, -{"geonameId":"1489870","name":"Tayshet","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":37766,"modificationDate":"2016-12-15"}, -{"geonameId":"4905367","name":"Park Ridge","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":37757,"modificationDate":"2017-05-23"}, -{"geonameId":"2902533","name":"Hofheim am Taunus","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":37750,"modificationDate":"2015-09-04"}, -{"geonameId":"2365190","name":"Sansane-Mangu","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37748,"modificationDate":"2020-06-10"}, -{"geonameId":"3090146","name":"Olkusz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":37744,"modificationDate":"2010-10-20"}, -{"geonameId":"3717546","name":"Saint-Raphaël","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37739,"modificationDate":"2017-05-08"}, -{"geonameId":"1275641","name":"Bilāsipāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37739,"modificationDate":"2014-10-13"}, -{"geonameId":"3173131","name":"Monopoli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":37738,"modificationDate":"2019-11-26"}, -{"geonameId":"1514896","name":"Isfara","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":37738,"modificationDate":"2012-02-28"}, -{"geonameId":"2513106","name":"Ontinyent","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":37735,"modificationDate":"2015-05-31"}, -{"geonameId":"479532","name":"Uglich","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":37732,"modificationDate":"2013-01-10"}, -{"geonameId":"738228","name":"Vakfıkebir","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":37728,"modificationDate":"2012-01-18"}, -{"geonameId":"2827479","name":"Stendal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":37722,"modificationDate":"2015-09-04"}, -{"geonameId":"1159877","name":"Borgan","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":37722,"modificationDate":"2020-06-10"}, -{"geonameId":"6101141","name":"Penticton","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":37721,"modificationDate":"2019-02-26"}, -{"geonameId":"1734753","name":"Kampung Ayer Keroh","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":37716,"modificationDate":"2012-01-17"}, -{"geonameId":"1636806","name":"Majene","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":37715,"modificationDate":"2018-04-24"}, -{"geonameId":"3696057","name":"Juanjuí","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":37715,"modificationDate":"2017-12-11"}, -{"geonameId":"3055685","name":"Baja","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":37714,"modificationDate":"2019-03-04"}, -{"geonameId":"3115739","name":"Narón","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":37712,"modificationDate":"2018-06-08"}, -{"geonameId":"1218021","name":"Yolotan","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":37705,"modificationDate":"2020-06-10"}, -{"geonameId":"3204186","name":"Bijeljina","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":37692,"modificationDate":"2017-05-08"}, -{"geonameId":"709540","name":"Dubno","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":37690,"modificationDate":"2014-08-06"}, -{"geonameId":"4178552","name":"Winter Haven","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37689,"modificationDate":"2017-03-09"}, -{"geonameId":"3173841","name":"Martina Franca","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":37685,"modificationDate":"2015-08-11"}, -{"geonameId":"6534256","name":"Quarto","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":37683,"modificationDate":"2015-08-10"}, -{"geonameId":"1274640","name":"Chanzarayapatna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37681,"modificationDate":"2020-06-10"}, -{"geonameId":"1272061","name":"Ellenabad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37680,"modificationDate":"2015-05-06"}, -{"geonameId":"1152227","name":"Mae Chan","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":37672,"modificationDate":"2016-01-19"}, -{"geonameId":"2228499","name":"Manjo","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":37661,"modificationDate":"2012-01-16"}, -{"geonameId":"2354675","name":"Tenkodogo","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37658,"modificationDate":"2012-01-18"}, -{"geonameId":"290104","name":"Sitrah","countryName":"Bahrain","timeZoneName":"Asia/Bahrain","timeZoneOffsetNameWithoutDst":"Arabian Time","population":37657,"modificationDate":"2015-05-06"}, -{"geonameId":"2293507","name":"Aboisso","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37654,"modificationDate":"2016-05-18"}, -{"geonameId":"1105726","name":"Ekangala","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":37650,"modificationDate":"2018-10-05"}, -{"geonameId":"4146429","name":"Aventura","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37649,"modificationDate":"2017-03-09"}, -{"geonameId":"1260120","name":"Pāthri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37648,"modificationDate":"2015-08-07"}, -{"geonameId":"1926116","name":"Kawanoe","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":37641,"modificationDate":"2020-06-11"}, -{"geonameId":"4369224","name":"Severna Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37634,"modificationDate":"2011-05-14"}, -{"geonameId":"4170617","name":"Royal Palm Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37633,"modificationDate":"2017-03-09"}, -{"geonameId":"8015209","name":"St Albans","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":37629,"modificationDate":"2019-07-18"}, -{"geonameId":"1276330","name":"Bhādra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37629,"modificationDate":"2014-10-14"}, -{"geonameId":"2808662","name":"Wilhelmstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":37624,"modificationDate":"2012-06-09"}, -{"geonameId":"539555","name":"Kulebaki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":37622,"modificationDate":"2019-09-05"}, -{"geonameId":"1277201","name":"Bartval","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37619,"modificationDate":"2020-06-10"}, -{"geonameId":"2644547","name":"Leyland","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37614,"modificationDate":"2011-03-03"}, -{"geonameId":"1864873","name":"Ayabe","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":37612,"modificationDate":"2017-07-22"}, -{"geonameId":"3094086","name":"Kwidzyn","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":37601,"modificationDate":"2011-07-31"}, -{"geonameId":"688373","name":"Yasynuvata","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":37600,"modificationDate":"2014-12-03"}, -{"geonameId":"481608","name":"Troitsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":37591,"modificationDate":"2015-08-23"}, -{"geonameId":"2758998","name":"Beverwijk","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":37585,"modificationDate":"2017-10-17"}, -{"geonameId":"5414941","name":"Brighton","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":37585,"modificationDate":"2017-03-09"}, -{"geonameId":"2638946","name":"Rushden","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37584,"modificationDate":"2018-07-03"}, -{"geonameId":"3105575","name":"Vilagarcía de Arousa","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":37576,"modificationDate":"2018-12-01"}, -{"geonameId":"3059101","name":"Levice","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":37574,"modificationDate":"2019-09-05"}, -{"geonameId":"4082866","name":"Phenix City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37570,"modificationDate":"2017-03-09"}, -{"geonameId":"2792196","name":"Lokeren","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":37567,"modificationDate":"2012-01-18"}, -{"geonameId":"1065140","name":"Faratsiho","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":37563,"modificationDate":"2018-09-10"}, -{"geonameId":"6692471","name":"Los Realejos","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":37559,"modificationDate":"2018-06-08"}, -{"geonameId":"6331908","name":"Milton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37547,"modificationDate":"2017-03-09"}, -{"geonameId":"1266031","name":"Kotamangalam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37543,"modificationDate":"2018-12-04"}, -{"geonameId":"3931470","name":"Puerto Maldonado","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":37543,"modificationDate":"2019-09-05"}, -{"geonameId":"157863","name":"Kidatu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":37542,"modificationDate":"2016-07-26"}, -{"geonameId":"2356228","name":"Réo","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37535,"modificationDate":"2013-02-08"}, -{"geonameId":"739236","name":"Sungurlu","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":37526,"modificationDate":"2012-01-18"}, -{"geonameId":"4142290","name":"Dover","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37522,"modificationDate":"2019-09-05"}, -{"geonameId":"1642628","name":"Jekulo","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":37521,"modificationDate":"2012-01-17"}, -{"geonameId":"3202781","name":"Celje","countryName":"Slovenia","timeZoneName":"Europe/Ljubljana","timeZoneOffsetNameWithoutDst":"Central European Time","population":37520,"modificationDate":"2019-09-05"}, -{"geonameId":"579574","name":"Baksan","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":37519,"modificationDate":"2019-09-05"}, -{"geonameId":"3521628","name":"Perote","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":37516,"modificationDate":"2018-11-03"}, -{"geonameId":"1843585","name":"Imsil","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":37514,"modificationDate":"2019-01-10"}, -{"geonameId":"1159384","name":"Tayebad","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":37513,"modificationDate":"2020-06-10"}, -{"geonameId":"2801154","name":"Braine-l'Alleud","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":37512,"modificationDate":"2014-02-20"}, -{"geonameId":"1655123","name":"Phong Savan","countryName":"Laos","timeZoneName":"Asia/Vientiane","timeZoneOffsetNameWithoutDst":"Indochina Time","population":37507,"modificationDate":"2020-06-10"}, -{"geonameId":"1678008","name":"Jincheng","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":37507,"modificationDate":"2017-11-07"}, -{"geonameId":"2906595","name":"Hemer","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":37502,"modificationDate":"2015-09-04"}, -{"geonameId":"112656","name":"Tonekābon","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":37501,"modificationDate":"2014-09-04"}, -{"geonameId":"5316201","name":"Sun City","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":37499,"modificationDate":"2011-05-14"}, -{"geonameId":"4161422","name":"Lake Worth","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37498,"modificationDate":"2017-03-09"}, -{"geonameId":"3672664","name":"Corregimiento de Payande","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":37496,"modificationDate":"2020-06-11"}, -{"geonameId":"1832743","name":"Yeoju","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":37490,"modificationDate":"2012-01-18"}, -{"geonameId":"2970456","name":"Vaulx-en-Velin","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":37489,"modificationDate":"2019-06-05"}, -{"geonameId":"7250691","name":"Kew Gardens Hills","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37479,"modificationDate":"2017-12-14"}, -{"geonameId":"1264976","name":"Leh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37475,"modificationDate":"2020-06-18"}, -{"geonameId":"2644652","name":"Leighton Buzzard","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37469,"modificationDate":"2017-06-12"}, -{"geonameId":"1854022","name":"Ono","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":37469,"modificationDate":"2017-07-26"}, -{"geonameId":"2927930","name":"Falkensee","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":37468,"modificationDate":"2015-09-05"}, -{"geonameId":"4940764","name":"Jamaica Plain","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37468,"modificationDate":"2017-05-23"}, -{"geonameId":"3012219","name":"Joué-lès-Tours","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":37466,"modificationDate":"2017-10-30"}, -{"geonameId":"2327650","name":"Ogoja","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":37466,"modificationDate":"2016-01-30"}, -{"geonameId":"1277748","name":"Bairāgnia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37465,"modificationDate":"2016-07-04"}, -{"geonameId":"5374175","name":"Monrovia","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":37463,"modificationDate":"2017-03-09"}, -{"geonameId":"418896","name":"Dorcheh Pīāz","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":37462,"modificationDate":"2011-09-12"}, -{"geonameId":"5357499","name":"Hollister","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":37462,"modificationDate":"2017-03-09"}, -{"geonameId":"5368453","name":"Los Banos","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":37457,"modificationDate":"2017-03-09"}, -{"geonameId":"360464","name":"Wasta","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":37453,"modificationDate":"2020-06-11"}, -{"geonameId":"3453807","name":"Espírito Santo do Pinhal","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":37448,"modificationDate":"2012-08-03"}, -{"geonameId":"2499116","name":"Draa Ben Khedda","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":37443,"modificationDate":"2019-06-28"}, -{"geonameId":"1854665","name":"Ogawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":37443,"modificationDate":"2017-04-09"}, -{"geonameId":"1720751","name":"Calaca","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":37443,"modificationDate":"2017-12-13"}, -{"geonameId":"2292755","name":"Arrah","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37432,"modificationDate":"2016-05-18"}, -{"geonameId":"751057","name":"Parthenium","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":37427,"modificationDate":"2020-06-10"}, -{"geonameId":"1277318","name":"Bāngarmau","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37425,"modificationDate":"2014-10-14"}, -{"geonameId":"895061","name":"Bindura","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":37423,"modificationDate":"2010-08-03"}, -{"geonameId":"1493648","name":"Rezh","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":37420,"modificationDate":"2018-02-28"}, -{"geonameId":"4168773","name":"Plant City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37406,"modificationDate":"2017-03-09"}, -{"geonameId":"2942323","name":"Buchholz in der Nordheide","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":37404,"modificationDate":"2015-09-05"}, -{"geonameId":"1176358","name":"Jalalpur Pirwala","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":37393,"modificationDate":"2019-12-06"}, -{"geonameId":"281146","name":"Beit Hanun","countryName":"Palestinian Territory","timeZoneName":"Asia/Gaza","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":37392,"modificationDate":"2020-06-10"}, -{"geonameId":"517716","name":"Novovoronezh","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":37392,"modificationDate":"2012-01-17"}, -{"geonameId":"3394500","name":"Morada Nova","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":37389,"modificationDate":"2012-08-03"}, -{"geonameId":"785387","name":"Struga","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":37387,"modificationDate":"2019-09-05"}, -{"geonameId":"2633397","name":"Yeadon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37379,"modificationDate":"2013-07-11"}, -{"geonameId":"587057","name":"Barda","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":37372,"modificationDate":"2014-06-27"}, -{"geonameId":"3521108","name":"Progreso","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":37369,"modificationDate":"2018-11-03"}, -{"geonameId":"1260833","name":"Paithan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37360,"modificationDate":"2014-10-13"}, -{"geonameId":"1863540","name":"Gosen","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":37360,"modificationDate":"2017-07-22"}, -{"geonameId":"3174679","name":"Lissone","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":37353,"modificationDate":"2014-01-16"}, -{"geonameId":"158214","name":"Kasulu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":37349,"modificationDate":"2016-07-26"}, -{"geonameId":"5255068","name":"Greenfield","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":37349,"modificationDate":"2017-05-23"}, -{"geonameId":"169897","name":"Harasta el Bassal","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":37348,"modificationDate":"2020-06-10"}, -{"geonameId":"3464728","name":"Diamantina","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":37343,"modificationDate":"2015-06-13"}, -{"geonameId":"2655315","name":"Blyth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37339,"modificationDate":"2017-06-12"}, -{"geonameId":"3450272","name":"Santa Cruz do Rio Pardo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":37336,"modificationDate":"2012-08-03"}, -{"geonameId":"2014718","name":"Tynda","countryName":"Russia","timeZoneName":"Asia/Yakutsk","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":37335,"modificationDate":"2019-09-05"}, -{"geonameId":"1682659","name":"Tayabas","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":37330,"modificationDate":"2018-03-28"}, -{"geonameId":"4866263","name":"Marion","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":37330,"modificationDate":"2017-05-23"}, -{"geonameId":"1715169","name":"Del Pilar","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":37329,"modificationDate":"2017-12-13"}, -{"geonameId":"504576","name":"Protvino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":37329,"modificationDate":"2012-02-28"}, -{"geonameId":"77726","name":"Ataq","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":37315,"modificationDate":"2013-08-08"}, -{"geonameId":"2291087","name":"Bonoua","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37312,"modificationDate":"2018-03-07"}, -{"geonameId":"2500889","name":"Maison Blanche","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":37311,"modificationDate":"2020-06-11"}, -{"geonameId":"1168680","name":"Pabbi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":37307,"modificationDate":"2019-12-06"}, -{"geonameId":"1277053","name":"Barauli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37302,"modificationDate":"2015-10-04"}, -{"geonameId":"1697486","name":"Noveleta","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":37299,"modificationDate":"2017-12-13"}, -{"geonameId":"3672068","name":"Planeta Rica","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":37297,"modificationDate":"2014-12-10"}, -{"geonameId":"7257540","name":"Braintree","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37297,"modificationDate":"2019-02-27"}, -{"geonameId":"4212684","name":"Newnan","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37291,"modificationDate":"2017-03-09"}, -{"geonameId":"3038213","name":"Alfortville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":37290,"modificationDate":"2016-02-18"}, -{"geonameId":"3400558","name":"Eusébio","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":37289,"modificationDate":"2012-08-03"}, -{"geonameId":"3009824","name":"La Courneuve","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":37287,"modificationDate":"2016-02-18"}, -{"geonameId":"4736096","name":"Texarkana","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":37280,"modificationDate":"2017-03-09"}, -{"geonameId":"2650278","name":"Eccles","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37275,"modificationDate":"2014-04-06"}, -{"geonameId":"3180758","name":"Cantù","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":37273,"modificationDate":"2015-08-10"}, -{"geonameId":"1650234","name":"Banjar","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":37263,"modificationDate":"2018-04-24"}, -{"geonameId":"347749","name":"Sumusţā as Sulţānī","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":37260,"modificationDate":"2012-01-19"}, -{"geonameId":"496478","name":"Sestroretsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":37248,"modificationDate":"2019-09-05"}, -{"geonameId":"3470776","name":"Barra Bonita","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":37246,"modificationDate":"2012-08-03"}, -{"geonameId":"2177513","name":"Auburn","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":37245,"modificationDate":"2019-07-18"}, -{"geonameId":"1257890","name":"Sadāseopet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37245,"modificationDate":"2014-10-10"}, -{"geonameId":"2508174","name":"Damesme","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":37241,"modificationDate":"2020-06-11"}, -{"geonameId":"3514677","name":"Villaflores","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":37237,"modificationDate":"2018-11-03"}, -{"geonameId":"3172768","name":"Monterotondo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":37225,"modificationDate":"2019-12-30"}, -{"geonameId":"116102","name":"Fallehiyeh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":37220,"modificationDate":"2020-06-10"}, -{"geonameId":"1253216","name":"Vettoor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37219,"modificationDate":"2020-06-10"}, -{"geonameId":"1175748","name":"Chak Jhumra","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":37214,"modificationDate":"2019-12-06"}, -{"geonameId":"3026141","name":"Châtellerault","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":37210,"modificationDate":"2019-09-04"}, -{"geonameId":"4882920","name":"Addison","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":37208,"modificationDate":"2017-05-23"}, -{"geonameId":"3467371","name":"Capâo Bonito","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":37206,"modificationDate":"2012-08-03"}, -{"geonameId":"2639563","name":"Redcar","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37203,"modificationDate":"2011-03-03"}, -{"geonameId":"3988050","name":"Salvatierra","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":37203,"modificationDate":"2018-11-03"}, -{"geonameId":"2660119","name":"Köniz","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":37196,"modificationDate":"2019-10-02"}, -{"geonameId":"124647","name":"Mshiz","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":37192,"modificationDate":"2020-06-10"}, -{"geonameId":"627751","name":"Kalinkavichy","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":37190,"modificationDate":"2014-06-26"}, -{"geonameId":"2313084","name":"Mangai","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":37188,"modificationDate":"2016-11-22"}, -{"geonameId":"1166547","name":"Sahiwal","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":37186,"modificationDate":"2019-12-10"}, -{"geonameId":"584717","name":"Khachmaz","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":37175,"modificationDate":"2020-06-10"}, -{"geonameId":"4522411","name":"Reynoldsburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37158,"modificationDate":"2017-05-23"}, -{"geonameId":"2846939","name":"Riesa","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":37156,"modificationDate":"2015-09-05"}, -{"geonameId":"1058080","name":"Nosy Varika","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":37152,"modificationDate":"2018-09-10"}, -{"geonameId":"2110743","name":"Tomobe","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":37146,"modificationDate":"2017-04-09"}, -{"geonameId":"1699088","name":"Muñoz","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":37141,"modificationDate":"2017-12-13"}, -{"geonameId":"5781765","name":"South Jordan Heights","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":37141,"modificationDate":"2006-01-17"}, -{"geonameId":"1859319","name":"Kitakata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":37140,"modificationDate":"2017-07-22"}, -{"geonameId":"2556657","name":"Azemmour","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":37140,"modificationDate":"2016-11-02"}, -{"geonameId":"4364362","name":"Odenton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37132,"modificationDate":"2011-05-14"}, -{"geonameId":"2657613","name":"Airdrie","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37130,"modificationDate":"2017-06-12"}, -{"geonameId":"2392837","name":"Malanville","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":37117,"modificationDate":"2018-03-20"}, -{"geonameId":"2610734","name":"Vanløse","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":37115,"modificationDate":"2017-10-18"}, -{"geonameId":"1606638","name":"Sam Phran","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":37115,"modificationDate":"2012-01-16"}, -{"geonameId":"4207226","name":"Mableton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37115,"modificationDate":"2014-10-07"}, -{"geonameId":"2968482","name":"Villepinte","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":37114,"modificationDate":"2016-02-18"}, -{"geonameId":"376450","name":"Dilling","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":37113,"modificationDate":"2012-01-19"}, -{"geonameId":"3190941","name":"Šibenik","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":37112,"modificationDate":"2019-10-08"}, -{"geonameId":"1166933","name":"Renala Khurd","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":37111,"modificationDate":"2019-12-06"}, -{"geonameId":"1860211","name":"Kanekomachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":37107,"modificationDate":"2017-04-09"}, -{"geonameId":"4581833","name":"Hilton Head","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37099,"modificationDate":"2018-01-06"}, -{"geonameId":"3111605","name":"Ripollet","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":37088,"modificationDate":"2012-03-04"}, -{"geonameId":"5729080","name":"Grants Pass","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":37088,"modificationDate":"2017-03-09"}, -{"geonameId":"1260045","name":"Patti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37087,"modificationDate":"2015-09-06"}, -{"geonameId":"2227230","name":"Melong","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":37086,"modificationDate":"2014-04-05"}, -{"geonameId":"1448637","name":"Risalpur Cantonment","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":37084,"modificationDate":"2019-12-06"}, -{"geonameId":"2805644","name":"Würselen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":37074,"modificationDate":"2015-09-04"}, -{"geonameId":"644171","name":"Nurmijärvi","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":37073,"modificationDate":"2014-09-25"}, -{"geonameId":"4472687","name":"Indian Trail","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37073,"modificationDate":"2017-05-23"}, -{"geonameId":"3660401","name":"Sucre","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":37056,"modificationDate":"2020-06-10"}, -{"geonameId":"1271543","name":"Garhmuktesar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37043,"modificationDate":"2018-12-04"}, -{"geonameId":"2801117","name":"Brasschaat","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":37040,"modificationDate":"2012-01-18"}, -{"geonameId":"214575","name":"Kampene","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":37034,"modificationDate":"2018-12-04"}, -{"geonameId":"215605","name":"Kabare","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":37034,"modificationDate":"2012-12-05"}, -{"geonameId":"1258186","name":"Revelganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37031,"modificationDate":"2015-09-06"}, -{"geonameId":"4886255","name":"Calumet City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":37031,"modificationDate":"2017-05-23"}, -{"geonameId":"764679","name":"Mińsk Mazowiecki","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":37027,"modificationDate":"2019-09-05"}, -{"geonameId":"3405924","name":"Beberibe","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":37025,"modificationDate":"2012-08-03"}, -{"geonameId":"1001860","name":"Giyani","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":37024,"modificationDate":"2012-07-12"}, -{"geonameId":"2640349","name":"Peterlee","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":37015,"modificationDate":"2017-06-12"}, -{"geonameId":"4999311","name":"Lincoln Park","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":37012,"modificationDate":"2017-05-23"}, -{"geonameId":"1260274","name":"Parola","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":37001,"modificationDate":"2015-09-06"}, -{"geonameId":"2797114","name":"Grimbergen","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":37000,"modificationDate":"2020-05-01"}, -{"geonameId":"6618983","name":"Centar","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":37000,"modificationDate":"2019-04-24"}, -{"geonameId":"1249978","name":"Bentota","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":37000,"modificationDate":"2018-12-29"}, -{"geonameId":"501187","name":"Rostokino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":37000,"modificationDate":"2013-04-02"}, -{"geonameId":"2715459","name":"Falun","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":37000,"modificationDate":"2019-09-05"}, -{"geonameId":"1150533","name":"Sukhothai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":37000,"modificationDate":"2012-01-16"}, -{"geonameId":"1282601","name":"Tursunzoda","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":37000,"modificationDate":"2017-12-14"}, -{"geonameId":"3460511","name":"Ituverava","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":36997,"modificationDate":"2012-08-03"}, -{"geonameId":"3703346","name":"Parque Lefevre","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36997,"modificationDate":"2017-08-15"}, -{"geonameId":"5802049","name":"Lynnwood","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":36997,"modificationDate":"2019-09-05"}, -{"geonameId":"2486284","name":"Nedroma","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":36995,"modificationDate":"2012-01-19"}, -{"geonameId":"99010","name":"Imam Qasim","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":36992,"modificationDate":"2016-06-22"}, -{"geonameId":"750735","name":"Beşikdüzü","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":36987,"modificationDate":"2016-08-03"}, -{"geonameId":"3178972","name":"Cesano Maderno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":36986,"modificationDate":"2014-04-13"}, -{"geonameId":"3175628","name":"Jesi","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":36985,"modificationDate":"2014-01-11"}, -{"geonameId":"2270962","name":"Benfica","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":36985,"modificationDate":"2018-02-20"}, -{"geonameId":"5144400","name":"Whitestone","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36984,"modificationDate":"2017-04-16"}, -{"geonameId":"2649660","name":"Farnham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":36971,"modificationDate":"2018-07-03"}, -{"geonameId":"1300969","name":"Paungde","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":36971,"modificationDate":"2019-03-21"}, -{"geonameId":"933340","name":"Mochudi","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":36962,"modificationDate":"2012-01-18"}, -{"geonameId":"3090170","name":"Oleśnica","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":36956,"modificationDate":"2010-09-12"}, -{"geonameId":"2784604","name":"Vilvoorde","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":36955,"modificationDate":"2011-02-03"}, -{"geonameId":"1855134","name":"Nishiwaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":36953,"modificationDate":"2017-07-22"}, -{"geonameId":"2621951","name":"Fredericia","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":36946,"modificationDate":"2017-10-18"}, -{"geonameId":"3173614","name":"Melito di Napoli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":36933,"modificationDate":"2014-04-13"}, -{"geonameId":"2755476","name":"Goes","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":36931,"modificationDate":"2017-10-17"}, -{"geonameId":"1263952","name":"Manapparai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36926,"modificationDate":"2014-10-14"}, -{"geonameId":"3167053","name":"Sassuolo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":36926,"modificationDate":"2015-06-10"}, -{"geonameId":"2130146","name":"Hanawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":36925,"modificationDate":"2017-04-09"}, -{"geonameId":"301101","name":"Serik","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":36925,"modificationDate":"2012-01-18"}, -{"geonameId":"2961297","name":"Swords","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":36924,"modificationDate":"2014-07-08"}, -{"geonameId":"2653224","name":"Chester-le-Street","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":36917,"modificationDate":"2015-06-08"}, -{"geonameId":"1054192","name":"Vavatenina","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":36916,"modificationDate":"2018-09-10"}, -{"geonameId":"3464547","name":"Dom Pedrito","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":36911,"modificationDate":"2012-08-03"}, -{"geonameId":"700261","name":"Netishyn","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":36909,"modificationDate":"2020-05-12"}, -{"geonameId":"621713","name":"Smarhoń","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":36900,"modificationDate":"2020-05-07"}, -{"geonameId":"2523194","name":"Sciacca","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":36897,"modificationDate":"2019-09-28"}, -{"geonameId":"1252795","name":"Yanam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36896,"modificationDate":"2014-10-10"}, -{"geonameId":"5245387","name":"Beloit","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":36891,"modificationDate":"2017-05-23"}, -{"geonameId":"299900","name":"Talas","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":36890,"modificationDate":"2012-01-18"}, -{"geonameId":"1259019","name":"Rāhuri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36885,"modificationDate":"2014-10-13"}, -{"geonameId":"5095549","name":"Belleville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36878,"modificationDate":"2019-06-12"}, -{"geonameId":"3197378","name":"Kranj","countryName":"Slovenia","timeZoneName":"Europe/Ljubljana","timeZoneOffsetNameWithoutDst":"Central European Time","population":36874,"modificationDate":"2014-04-27"}, -{"geonameId":"1258297","name":"Rawat Bhatta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36872,"modificationDate":"2020-06-10"}, -{"geonameId":"1269993","name":"Hojāi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36869,"modificationDate":"2018-05-28"}, -{"geonameId":"1279134","name":"Akbarpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36865,"modificationDate":"2015-08-07"}, -{"geonameId":"1571968","name":"Ninbinh","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":36864,"modificationDate":"2020-06-09"}, -{"geonameId":"5801617","name":"Longview","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":36848,"modificationDate":"2017-03-09"}, -{"geonameId":"8858090","name":"Santa Teresa","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":36845,"modificationDate":"2018-11-03"}, -{"geonameId":"2677234","name":"Skövde","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":36842,"modificationDate":"2017-03-18"}, -{"geonameId":"3983671","name":"Santiago","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":36840,"modificationDate":"2018-11-03"}, -{"geonameId":"2921039","name":"Germering","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":36834,"modificationDate":"2013-02-19"}, -{"geonameId":"2500737","name":"Debila","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":36834,"modificationDate":"2012-01-19"}, -{"geonameId":"2511730","name":"Ronda","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":36827,"modificationDate":"2012-12-15"}, -{"geonameId":"2660076","name":"La Chaux-de-Fonds","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":36825,"modificationDate":"2020-01-07"}, -{"geonameId":"2514553","name":"Los Palacios y Villafranca","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":36824,"modificationDate":"2012-01-19"}, -{"geonameId":"2810855","name":"Wermelskirchen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":36816,"modificationDate":"2015-09-04"}, -{"geonameId":"1058381","name":"Morondava","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":36803,"modificationDate":"2018-09-07"}, -{"geonameId":"4614867","name":"Columbia","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":36800,"modificationDate":"2017-03-09"}, -{"geonameId":"2527915","name":"Tinghir","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":36795,"modificationDate":"2016-11-29"}, -{"geonameId":"2176592","name":"Baulkham Hills","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":36792,"modificationDate":"2019-07-18"}, -{"geonameId":"8858091","name":"San Jerónimo Cuatro Vientos","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":36778,"modificationDate":"2014-04-11"}, -{"geonameId":"2648063","name":"Great Malvern","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":36770,"modificationDate":"2018-07-03"}, -{"geonameId":"3460740","name":"Itapema","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":36761,"modificationDate":"2012-08-03"}, -{"geonameId":"1253077","name":"Vuyyūru","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36755,"modificationDate":"2015-09-06"}, -{"geonameId":"1259688","name":"Pilibangan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36755,"modificationDate":"2014-10-14"}, -{"geonameId":"353828","name":"Kawm Ḩamādah","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":36751,"modificationDate":"2019-01-10"}, -{"geonameId":"4925006","name":"Portage","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":36738,"modificationDate":"2017-05-23"}, -{"geonameId":"4928118","name":"Westfield","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36738,"modificationDate":"2017-05-23"}, -{"geonameId":"2251084","name":"Joal-Fadiout","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":36735,"modificationDate":"2012-01-17"}, -{"geonameId":"4262045","name":"New Albany","countryName":"United States","timeZoneName":"America/Kentucky/Louisville","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36732,"modificationDate":"2017-05-23"}, -{"geonameId":"2334801","name":"Katsina-Ala","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":36722,"modificationDate":"2016-05-23"}, -{"geonameId":"3450873","name":"Rosário do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":36721,"modificationDate":"2012-08-03"}, -{"geonameId":"124274","name":"Mahrīz","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":36720,"modificationDate":"2013-10-04"}, -{"geonameId":"1771287","name":"Kampung Baharu Nilai","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":36720,"modificationDate":"2014-04-06"}, -{"geonameId":"406993","name":"Eqbālīyeh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":36709,"modificationDate":"2012-12-06"}, -{"geonameId":"711669","name":"Boryslav","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":36704,"modificationDate":"2013-01-10"}, -{"geonameId":"923058","name":"Kambove","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":36702,"modificationDate":"2016-11-22"}, -{"geonameId":"1276815","name":"Barwāla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36694,"modificationDate":"2015-02-06"}, -{"geonameId":"1278609","name":"Anekal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36693,"modificationDate":"2014-10-14"}, -{"geonameId":"2879185","name":"Leinfelden-Echterdingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":36672,"modificationDate":"2013-02-16"}, -{"geonameId":"5098135","name":"Fort Lee","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36672,"modificationDate":"2017-05-23"}, -{"geonameId":"1869021","name":"Sunan","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":36671,"modificationDate":"2018-01-10"}, -{"geonameId":"2619856","name":"Hørsholm","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":36670,"modificationDate":"2017-10-18"}, -{"geonameId":"3590858","name":"Retalhuleu","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":36656,"modificationDate":"2018-04-23"}, -{"geonameId":"1627035","name":"Simpang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":36652,"modificationDate":"2014-04-06"}, -{"geonameId":"496934","name":"Serdobsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":36652,"modificationDate":"2019-09-05"}, -{"geonameId":"575560","name":"Bogorodsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":36652,"modificationDate":"2019-09-05"}, -{"geonameId":"2647057","name":"Herne Bay","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":36642,"modificationDate":"2013-07-11"}, -{"geonameId":"3182336","name":"Barra","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":36642,"modificationDate":"2019-07-22"}, -{"geonameId":"2506404","name":"Arris","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":36641,"modificationDate":"2018-10-05"}, -{"geonameId":"1268214","name":"Kampli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36641,"modificationDate":"2015-12-05"}, -{"geonameId":"361457","name":"El Baqur","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":36633,"modificationDate":"2020-06-11"}, -{"geonameId":"2939945","name":"Coesfeld","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":36631,"modificationDate":"2015-09-04"}, -{"geonameId":"12156838","name":"Dovercourt-Wallace Emerson-Junction","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36625,"modificationDate":"2020-05-02"}, -{"geonameId":"1610227","name":"Kantharalak","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":36621,"modificationDate":"2012-01-16"}, -{"geonameId":"2633883","name":"Wilmslow","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":36617,"modificationDate":"2011-03-03"}, -{"geonameId":"1259756","name":"Phulbam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36613,"modificationDate":"2020-06-10"}, -{"geonameId":"5110159","name":"Brighton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36609,"modificationDate":"2017-05-23"}, -{"geonameId":"1278176","name":"Attingal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36595,"modificationDate":"2017-03-04"}, -{"geonameId":"4529987","name":"Bartlesville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":36595,"modificationDate":"2017-03-09"}, -{"geonameId":"2360073","name":"Hunde","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":36593,"modificationDate":"2020-06-10"}, -{"geonameId":"1860191","name":"Kanie","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":36592,"modificationDate":"2017-04-09"}, -{"geonameId":"754800","name":"Wołomin","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":36592,"modificationDate":"2019-09-05"}, -{"geonameId":"3862320","name":"Castelli","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":36588,"modificationDate":"2016-01-30"}, -{"geonameId":"3679554","name":"La Ceja","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":36584,"modificationDate":"2018-04-20"}, -{"geonameId":"1720464","name":"Calauan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":36580,"modificationDate":"2017-12-13"}, -{"geonameId":"5097751","name":"Ewing","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36559,"modificationDate":"2017-05-23"}, -{"geonameId":"149402","name":"Tunduma","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":36556,"modificationDate":"2018-09-09"}, -{"geonameId":"4726440","name":"San Juan","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":36556,"modificationDate":"2017-03-09"}, -{"geonameId":"147271","name":"Salyan","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":36555,"modificationDate":"2013-04-03"}, -{"geonameId":"5144975","name":"Woodhaven","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36555,"modificationDate":"2017-04-16"}, -{"geonameId":"293844","name":"Qiryat Bialik","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":36551,"modificationDate":"2017-07-02"}, -{"geonameId":"639734","name":"Rauma","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":36550,"modificationDate":"2019-09-05"}, -{"geonameId":"3669346","name":"San Marcos","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":36549,"modificationDate":"2018-09-05"}, -{"geonameId":"483661","name":"Temryuk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":36546,"modificationDate":"2013-05-07"}, -{"geonameId":"2835481","name":"Schwäbisch Hall","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":36543,"modificationDate":"2014-01-17"}, -{"geonameId":"2524393","name":"Licata","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":36537,"modificationDate":"2015-07-12"}, -{"geonameId":"2666238","name":"Upplands Väsby","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":36534,"modificationDate":"2013-03-11"}, -{"geonameId":"671964","name":"Odorheiu Secuiesc","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":36532,"modificationDate":"2012-06-12"}, -{"geonameId":"3465164","name":"Cristalina","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":36531,"modificationDate":"2015-06-24"}, -{"geonameId":"3440639","name":"San José de Mayo","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":36529,"modificationDate":"2012-01-16"}, -{"geonameId":"1254322","name":"Cheyyar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36527,"modificationDate":"2014-10-14"}, -{"geonameId":"697637","name":"Pereiaslav-Khmelnytskyi","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":36527,"modificationDate":"2018-11-26"}, -{"geonameId":"710374","name":"Chuhuyiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":36519,"modificationDate":"2016-09-22"}, -{"geonameId":"2795930","name":"Herstal","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":36503,"modificationDate":"2011-03-14"}, -{"geonameId":"1576303","name":"Lao Kay","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":36502,"modificationDate":"2020-06-09"}, -{"geonameId":"4711729","name":"Mission Bend","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":36501,"modificationDate":"2011-05-14"}, -{"geonameId":"3674463","name":"Montenegro","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":36499,"modificationDate":"2018-08-08"}, -{"geonameId":"1260911","name":"Padra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36499,"modificationDate":"2014-10-13"}, -{"geonameId":"3029030","name":"Cambrai","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":36492,"modificationDate":"2019-09-05"}, -{"geonameId":"735563","name":"Kozáni","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":36481,"modificationDate":"2019-03-15"}, -{"geonameId":"2863223","name":"Niederkassel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":36480,"modificationDate":"2015-09-04"}, -{"geonameId":"2701713","name":"Karlskrona","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":36477,"modificationDate":"2019-09-05"}, -{"geonameId":"2641557","name":"Newton Abbot","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":36474,"modificationDate":"2018-07-03"}, -{"geonameId":"1185239","name":"Sarankhola","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":36470,"modificationDate":"2016-11-09"}, -{"geonameId":"738251","name":"Uzunköprü","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":36470,"modificationDate":"2015-05-04"}, -{"geonameId":"1235855","name":"Matale","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":36462,"modificationDate":"2018-12-30"}, -{"geonameId":"1273923","name":"Chunār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36459,"modificationDate":"2015-08-07"}, -{"geonameId":"1566559","name":"Tei Nin","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":36456,"modificationDate":"2020-06-09"}, -{"geonameId":"1257481","name":"Sanavad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36455,"modificationDate":"2020-06-10"}, -{"geonameId":"97783","name":"Baiji","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":36454,"modificationDate":"2020-06-10"}, -{"geonameId":"5392229","name":"San Juan Capistrano","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":36454,"modificationDate":"2019-12-22"}, -{"geonameId":"3456368","name":"Naviraí","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":36452,"modificationDate":"2012-08-03"}, -{"geonameId":"388065","name":"Ar Rābiyah","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":36447,"modificationDate":"2012-10-19"}, -{"geonameId":"740883","name":"Pimolisa","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":36443,"modificationDate":"2020-06-10"}, -{"geonameId":"5509851","name":"Pahrump","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":36441,"modificationDate":"2011-05-14"}, -{"geonameId":"2636910","name":"Stirling","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":36440,"modificationDate":"2017-06-15"}, -{"geonameId":"2269594","name":"Cascais","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":36436,"modificationDate":"2017-07-03"}, -{"geonameId":"2986501","name":"Poissy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":36431,"modificationDate":"2016-02-18"}, -{"geonameId":"1563287","name":"Tuyen Kwang","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":36430,"modificationDate":"2020-06-09"}, -{"geonameId":"2643116","name":"Mangotsfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":36427,"modificationDate":"2011-03-03"}, -{"geonameId":"2738014","name":"Maia","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":36426,"modificationDate":"2014-04-06"}, -{"geonameId":"2685828","name":"Östermalm","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":36418,"modificationDate":"2010-08-28"}, -{"geonameId":"518682","name":"Novokubansk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":36401,"modificationDate":"2019-09-05"}, -{"geonameId":"1276652","name":"Bayāna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36399,"modificationDate":"2014-10-14"}, -{"geonameId":"1172339","name":"Lakki","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":36391,"modificationDate":"2019-12-06"}, -{"geonameId":"3435103","name":"Curuzú Cuatiá","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":36390,"modificationDate":"2016-01-30"}, -{"geonameId":"3173326","name":"Modugno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":36384,"modificationDate":"2015-06-23"}, -{"geonameId":"4367734","name":"Saint Charles","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36376,"modificationDate":"2006-01-17"}, -{"geonameId":"5401469","name":"Temple City","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":36365,"modificationDate":"2017-03-09"}, -{"geonameId":"2852577","name":"Porta Westfalica","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":36364,"modificationDate":"2017-04-26"}, -{"geonameId":"5161902","name":"Marion","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36363,"modificationDate":"2017-05-23"}, -{"geonameId":"646218","name":"Mellunkylä","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":36360,"modificationDate":"2018-10-28"}, -{"geonameId":"3023924","name":"Conflans-Sainte-Honorine","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":36358,"modificationDate":"2016-02-18"}, -{"geonameId":"2336985","name":"Itu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":36358,"modificationDate":"2016-01-30"}, -{"geonameId":"3654853","name":"La Troncal","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":36353,"modificationDate":"2017-02-07"}, -{"geonameId":"4772566","name":"Mechanicsville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36348,"modificationDate":"2011-05-14"}, -{"geonameId":"3192409","name":"Prijedor","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":36347,"modificationDate":"2016-06-05"}, -{"geonameId":"1163224","name":"Topi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":36340,"modificationDate":"2019-12-06"}, -{"geonameId":"2938784","name":"Datteln","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":36338,"modificationDate":"2017-04-26"}, -{"geonameId":"2655672","name":"Billericay","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":36338,"modificationDate":"2018-07-03"}, -{"geonameId":"4708308","name":"Lufkin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":36333,"modificationDate":"2017-03-09"}, -{"geonameId":"4503548","name":"Pennsauken","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36332,"modificationDate":"2017-05-23"}, -{"geonameId":"1490686","name":"Sukhoy Log","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":36329,"modificationDate":"2012-01-17"}, -{"geonameId":"1853174","name":"Sakaiminato","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":36324,"modificationDate":"2017-08-02"}, -{"geonameId":"4219762","name":"Rome","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36323,"modificationDate":"2017-03-09"}, -{"geonameId":"2110586","name":"Watari","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":36321,"modificationDate":"2017-04-09"}, -{"geonameId":"2891643","name":"Kempen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":36312,"modificationDate":"2015-09-04"}, -{"geonameId":"1691911","name":"Ramon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":36307,"modificationDate":"2017-12-13"}, -{"geonameId":"784136","name":"Vršac","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":36300,"modificationDate":"2020-01-28"}, -{"geonameId":"586429","name":"Govsan","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":36293,"modificationDate":"2020-06-10"}, -{"geonameId":"325780","name":"Yirgalem","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":36292,"modificationDate":"2020-06-11"}, -{"geonameId":"2111656","name":"Nihommatsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":36287,"modificationDate":"2017-07-27"}, -{"geonameId":"1526168","name":"Arys","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":36285,"modificationDate":"2018-08-07"}, -{"geonameId":"5337696","name":"Claremont","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":36283,"modificationDate":"2017-03-09"}, -{"geonameId":"2553455","name":"Chefchaouene","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":36280,"modificationDate":"2016-11-04"}, -{"geonameId":"3059436","name":"Komárno","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":36279,"modificationDate":"2019-09-05"}, -{"geonameId":"762423","name":"Piaseczno","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":36278,"modificationDate":"2010-10-30"}, -{"geonameId":"755475","name":"Włochy","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":36276,"modificationDate":"2018-01-16"}, -{"geonameId":"1848776","name":"Yaita","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":36275,"modificationDate":"2017-07-22"}, -{"geonameId":"3064379","name":"Tábor","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":36264,"modificationDate":"2019-10-08"}, -{"geonameId":"2429605","name":"Koumra","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":36263,"modificationDate":"2012-01-18"}, -{"geonameId":"1626486","name":"Srono","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":36260,"modificationDate":"2007-11-09"}, -{"geonameId":"148290","name":"Jalilabad","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":36259,"modificationDate":"2018-07-21"}, -{"geonameId":"2521519","name":"Arucas","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":36259,"modificationDate":"2012-03-04"}, -{"geonameId":"2791961","name":"Maasmechelen","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":36251,"modificationDate":"2011-02-28"}, -{"geonameId":"1151340","name":"Photharam","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":36248,"modificationDate":"2012-01-16"}, -{"geonameId":"2166144","name":"Frankston","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":36239,"modificationDate":"2019-07-18"}, -{"geonameId":"3449112","name":"São Francisco do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":36224,"modificationDate":"2012-08-03"}, -{"geonameId":"1685875","name":"Solano","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":36222,"modificationDate":"2017-12-13"}, -{"geonameId":"5253710","name":"Franklin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":36222,"modificationDate":"2017-05-23"}, -{"geonameId":"5408076","name":"West Hollywood","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":36222,"modificationDate":"2018-04-18"}, -{"geonameId":"6295539","name":"Zürich (Kreis 10)","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":36216,"modificationDate":"2012-07-30"}, -{"geonameId":"5043193","name":"Richfield","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":36216,"modificationDate":"2017-05-23"}, -{"geonameId":"3445500","name":"Vargem Grande do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":36213,"modificationDate":"2012-08-03"}, -{"geonameId":"492162","name":"Slantsy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":36209,"modificationDate":"2016-12-17"}, -{"geonameId":"2992771","name":"Mont-de-Marsan","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":36205,"modificationDate":"2016-02-18"}, -{"geonameId":"5327298","name":"Bell","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":36205,"modificationDate":"2017-03-09"}, -{"geonameId":"287814","name":"Ziki","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":36203,"modificationDate":"2020-06-10"}, -{"geonameId":"4969398","name":"Lewiston","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36202,"modificationDate":"2017-08-09"}, -{"geonameId":"1626698","name":"Sofifi","countryName":"Indonesia","timeZoneName":"Asia/Jayapura","timeZoneOffsetNameWithoutDst":"Eastern Indonesia Time","population":36197,"modificationDate":"2016-06-04"}, -{"geonameId":"2743608","name":"Zutphen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":36188,"modificationDate":"2019-01-14"}, -{"geonameId":"743404","name":"Kestel","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":36185,"modificationDate":"2013-05-08"}, -{"geonameId":"3401992","name":"Coelho Neto","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":36184,"modificationDate":"2012-08-03"}, -{"geonameId":"1267361","name":"Kayalpattinam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36175,"modificationDate":"2014-10-14"}, -{"geonameId":"2754697","name":"Heemskerk","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":36170,"modificationDate":"2017-10-17"}, -{"geonameId":"1724106","name":"Bongabon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":36168,"modificationDate":"2017-12-13"}, -{"geonameId":"4153759","name":"Dunedin","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36164,"modificationDate":"2017-03-09"}, -{"geonameId":"4018582","name":"Ameca","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":36156,"modificationDate":"2018-11-03"}, -{"geonameId":"833260","name":"Butel","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":36154,"modificationDate":"2019-10-06"}, -{"geonameId":"7260327","name":"Kendall West","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36154,"modificationDate":"2011-05-14"}, -{"geonameId":"5520076","name":"Del Rio","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":36153,"modificationDate":"2017-03-09"}, -{"geonameId":"1177203","name":"Hangu","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":36150,"modificationDate":"2019-12-06"}, -{"geonameId":"2732773","name":"Viana do Castelo","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":36148,"modificationDate":"2018-04-30"}, -{"geonameId":"2508225","name":"La Fontaine","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":36146,"modificationDate":"2020-06-11"}, -{"geonameId":"173334","name":"Quneitra","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":36143,"modificationDate":"2020-06-10"}, -{"geonameId":"4401618","name":"Oakville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":36143,"modificationDate":"2017-05-23"}, -{"geonameId":"184433","name":"Nanyuki","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":36142,"modificationDate":"2018-09-05"}, -{"geonameId":"293783","name":"Ramat HaSharon","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":36137,"modificationDate":"2017-07-02"}, -{"geonameId":"6154383","name":"Spruce Grove","countryName":"Canada","timeZoneName":"America/Edmonton","timeZoneOffsetNameWithoutDst":"Mountain Time","population":36135,"modificationDate":"2019-08-08"}, -{"geonameId":"3408337","name":"Açu","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":36125,"modificationDate":"2012-08-03"}, -{"geonameId":"5113412","name":"Commack","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36124,"modificationDate":"2017-05-23"}, -{"geonameId":"281109","name":"Nuseirat","countryName":"Palestinian Territory","timeZoneName":"Asia/Gaza","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":36123,"modificationDate":"2020-06-10"}, -{"geonameId":"1860234","name":"Kanda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":36122,"modificationDate":"2017-04-09"}, -{"geonameId":"2986930","name":"Plaisir","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":36121,"modificationDate":"2016-02-18"}, -{"geonameId":"5262630","name":"Menomonee Falls","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":36119,"modificationDate":"2017-05-23"}, -{"geonameId":"1273043","name":"Dhāka","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36111,"modificationDate":"2014-10-14"}, -{"geonameId":"6158357","name":"St. Thomas","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36110,"modificationDate":"2013-10-06"}, -{"geonameId":"2653137","name":"Chipping Sodbury","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":36108,"modificationDate":"2011-03-03"}, -{"geonameId":"5374648","name":"Moorpark","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":36104,"modificationDate":"2017-03-09"}, -{"geonameId":"2646826","name":"Hitchin","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":36099,"modificationDate":"2017-06-12"}, -{"geonameId":"3165803","name":"Teramo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":36099,"modificationDate":"2018-03-16"}, -{"geonameId":"3455170","name":"Paracambi","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":36098,"modificationDate":"2012-12-05"}, -{"geonameId":"2881956","name":"Lage","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":36097,"modificationDate":"2015-09-04"}, -{"geonameId":"1257896","name":"Sadābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36093,"modificationDate":"2015-08-07"}, -{"geonameId":"3587587","name":"Zacapa","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":36088,"modificationDate":"2012-12-05"}, -{"geonameId":"4063619","name":"Gadsden","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":36084,"modificationDate":"2017-03-19"}, -{"geonameId":"1081790","name":"Amboasary","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":36082,"modificationDate":"2018-09-10"}, -{"geonameId":"5798487","name":"Issaquah","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":36081,"modificationDate":"2017-03-09"}, -{"geonameId":"1832015","name":"Heunghae","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":36080,"modificationDate":"2016-09-09"}, -{"geonameId":"3533269","name":"Agua Dulce","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":36079,"modificationDate":"2018-11-03"}, -{"geonameId":"2514984","name":"Llucmajor","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":36078,"modificationDate":"2011-07-31"}, -{"geonameId":"3863379","name":"Caleta Olivia","countryName":"Argentina","timeZoneName":"America/Argentina/Rio_Gallegos","timeZoneOffsetNameWithoutDst":"Argentina Time","population":36077,"modificationDate":"2016-01-30"}, -{"geonameId":"187896","name":"Mandera","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":36076,"modificationDate":"2013-06-27"}, -{"geonameId":"1852046","name":"Shinshiro","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":36069,"modificationDate":"2017-07-22"}, -{"geonameId":"1725804","name":"Bayawan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":36063,"modificationDate":"2017-12-13"}, -{"geonameId":"184379","name":"Narok","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":36061,"modificationDate":"2017-11-07"}, -{"geonameId":"1275572","name":"Bindki","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":36058,"modificationDate":"2014-10-14"}, -{"geonameId":"4659446","name":"Spring Hill","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":36055,"modificationDate":"2017-03-09"}, -{"geonameId":"3163995","name":"Voghera","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":36054,"modificationDate":"2015-08-10"}, -{"geonameId":"2875023","name":"Lurup","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":36053,"modificationDate":"2017-12-14"}, -{"geonameId":"3337408","name":"Gropiusstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":36052,"modificationDate":"2012-06-09"}, -{"geonameId":"878058","name":"Masasi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":36032,"modificationDate":"2016-07-26"}, -{"geonameId":"2542013","name":"Al Aaroui","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":36021,"modificationDate":"2017-12-06"}, -{"geonameId":"4844459","name":"Trumbull","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36018,"modificationDate":"2017-05-23"}, -{"geonameId":"483137","name":"Teykovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":36015,"modificationDate":"2012-01-17"}, -{"geonameId":"158597","name":"Kahama","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":36014,"modificationDate":"2017-06-17"}, -{"geonameId":"4439869","name":"Olive Branch","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":36010,"modificationDate":"2017-03-09"}, -{"geonameId":"4480125","name":"Mooresville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36009,"modificationDate":"2017-05-23"}, -{"geonameId":"3915350","name":"Guayaramerín","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":36008,"modificationDate":"2017-10-02"}, -{"geonameId":"3862981","name":"Ciudad Evita","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":36000,"modificationDate":"2020-06-10"}, -{"geonameId":"6945291","name":"Old City","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":36000,"modificationDate":"2016-02-22"}, -{"geonameId":"4845519","name":"West Torrington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":36000,"modificationDate":"2017-05-23"}, -{"geonameId":"3504765","name":"Hato Mayor del Rey","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":35999,"modificationDate":"2016-06-05"}, -{"geonameId":"3451261","name":"Rio Bonito","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":35997,"modificationDate":"2012-08-03"}, -{"geonameId":"576172","name":"Blagodarnyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":35995,"modificationDate":"2012-01-17"}, -{"geonameId":"1852385","name":"Nishishinminato","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":35994,"modificationDate":"2017-04-09"}, -{"geonameId":"11549815","name":"el Guinardó","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":35991,"modificationDate":"2017-05-24"}, -{"geonameId":"707244","name":"Kakhovka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":35983,"modificationDate":"2020-05-20"}, -{"geonameId":"5409768","name":"Willowbrook","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":35983,"modificationDate":"2011-05-14"}, -{"geonameId":"7284888","name":"Marseille 07","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":35981,"modificationDate":"2018-08-19"}, -{"geonameId":"4274305","name":"Leavenworth","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35980,"modificationDate":"2017-05-23"}, -{"geonameId":"709900","name":"Dobropillya","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":35977,"modificationDate":"2014-07-08"}, -{"geonameId":"1513017","name":"Parkent","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":35973,"modificationDate":"2016-03-10"}, -{"geonameId":"2293107","name":"Akupe","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":35970,"modificationDate":"2020-06-10"}, -{"geonameId":"4351871","name":"Clinton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35970,"modificationDate":"2011-05-14"}, -{"geonameId":"2511994","name":"Realejo Alto","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":35963,"modificationDate":"2012-01-19"}, -{"geonameId":"1185108","name":"Shibganj","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":35961,"modificationDate":"2016-11-09"}, -{"geonameId":"146214","name":"Paphos","countryName":"Cyprus","timeZoneName":"Asia/Nicosia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":35961,"modificationDate":"2014-06-04"}, -{"geonameId":"647751","name":"Lohja","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":35960,"modificationDate":"2014-09-25"}, -{"geonameId":"157826","name":"Kidodi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":35953,"modificationDate":"2016-07-26"}, -{"geonameId":"3172154","name":"Nuoro","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":35948,"modificationDate":"2015-08-10"}, -{"geonameId":"568608","name":"Chernushka","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":35942,"modificationDate":"2012-01-17"}, -{"geonameId":"2634887","name":"Walkden","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":35937,"modificationDate":"2012-01-17"}, -{"geonameId":"2635281","name":"Tyldesley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":35932,"modificationDate":"2011-03-03"}, -{"geonameId":"2515562","name":"La Rinconada","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":35928,"modificationDate":"2014-02-09"}, -{"geonameId":"5022134","name":"Cottage Grove","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35918,"modificationDate":"2017-05-23"}, -{"geonameId":"3655446","name":"Jipijapa","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":35901,"modificationDate":"2017-02-07"}, -{"geonameId":"2135171","name":"Port-Vila","countryName":"Vanuatu","timeZoneName":"Pacific/Efate","timeZoneOffsetNameWithoutDst":"Vanuatu Time","population":35901,"modificationDate":"2018-10-23"}, -{"geonameId":"4414749","name":"Wildwood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35899,"modificationDate":"2017-05-23"}, -{"geonameId":"2784068","name":"Waregem","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":35896,"modificationDate":"2012-01-18"}, -{"geonameId":"3467362","name":"Capão da Canoa","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":35896,"modificationDate":"2012-08-03"}, -{"geonameId":"2494554","name":"Hammam Bou Hadjar","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":35896,"modificationDate":"2019-08-18"}, -{"geonameId":"878549","name":"Zvishavane","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":35896,"modificationDate":"2019-04-02"}, -{"geonameId":"1486468","name":"Yalutorovsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":35892,"modificationDate":"2014-06-26"}, -{"geonameId":"477192","name":"Valuyki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":35887,"modificationDate":"2019-01-17"}, -{"geonameId":"3856022","name":"Esperanza","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":35885,"modificationDate":"2016-01-30"}, -{"geonameId":"1516789","name":"Novokazalinsk","countryName":"Kazakhstan","timeZoneName":"Asia/Qyzylorda","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":35883,"modificationDate":"2020-03-07"}, -{"geonameId":"3883214","name":"Limache","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":35876,"modificationDate":"2012-05-03"}, -{"geonameId":"2995750","name":"Marignane","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":35873,"modificationDate":"2019-06-05"}, -{"geonameId":"316795","name":"Develi","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":35868,"modificationDate":"2012-01-18"}, -{"geonameId":"4263681","name":"Richmond","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35854,"modificationDate":"2017-06-22"}, -{"geonameId":"1272140","name":"Dwārka","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35837,"modificationDate":"2014-10-13"}, -{"geonameId":"767623","name":"Kraśnik","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":35834,"modificationDate":"2010-10-11"}, -{"geonameId":"5744253","name":"Oregon City","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":35831,"modificationDate":"2017-03-09"}, -{"geonameId":"1257237","name":"Sārangpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35827,"modificationDate":"2015-09-06"}, -{"geonameId":"631077","name":"Vuosaari","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":35826,"modificationDate":"2018-10-28"}, -{"geonameId":"713122","name":"Avdiyivka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":35826,"modificationDate":"2018-06-30"}, -{"geonameId":"4468261","name":"Goldsboro","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35826,"modificationDate":"2017-05-23"}, -{"geonameId":"3106180","name":"El Vendrell","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":35821,"modificationDate":"2012-04-29"}, -{"geonameId":"5370082","name":"Manhattan Beach","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":35818,"modificationDate":"2017-03-09"}, -{"geonameId":"5806253","name":"Parkland","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":35803,"modificationDate":"2011-05-14"}, -{"geonameId":"2653144","name":"Chippenham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":35800,"modificationDate":"2017-06-12"}, -{"geonameId":"4207981","name":"Martinez","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35795,"modificationDate":"2011-05-14"}, -{"geonameId":"1651103","name":"Atambua","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":35793,"modificationDate":"2016-01-07"}, -{"geonameId":"2518820","name":"Don Benito","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":35791,"modificationDate":"2012-03-04"}, -{"geonameId":"1684320","name":"Tagudin","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":35791,"modificationDate":"2017-12-13"}, -{"geonameId":"1273434","name":"Daryāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35782,"modificationDate":"2015-08-07"}, -{"geonameId":"2953568","name":"Backnang","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":35778,"modificationDate":"2013-02-16"}, -{"geonameId":"2438823","name":"Tessaoua","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":35775,"modificationDate":"2013-10-06"}, -{"geonameId":"1689498","name":"San Jose","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":35768,"modificationDate":"2017-12-13"}, -{"geonameId":"879431","name":"Victoria Falls","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":35761,"modificationDate":"2015-01-14"}, -{"geonameId":"1607725","name":"Phichit","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":35760,"modificationDate":"2012-01-16"}, -{"geonameId":"3470052","name":"Bertioga","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":35759,"modificationDate":"2012-03-10"}, -{"geonameId":"1258692","name":"Rāmganj Mandi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35754,"modificationDate":"2014-10-14"}, -{"geonameId":"3190813","name":"Sisak","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":35748,"modificationDate":"2019-09-05"}, -{"geonameId":"192900","name":"Kericho","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":35748,"modificationDate":"2017-11-07"}, -{"geonameId":"8334621","name":"Falkenhagener Feld","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":35742,"modificationDate":"2012-06-09"}, -{"geonameId":"4059870","name":"East Florence","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35733,"modificationDate":"2006-01-17"}, -{"geonameId":"4703811","name":"Kyle","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35733,"modificationDate":"2017-03-09"}, -{"geonameId":"5776727","name":"Kearns","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":35731,"modificationDate":"2011-05-14"}, -{"geonameId":"2855334","name":"Pasing","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":35728,"modificationDate":"2020-02-21"}, -{"geonameId":"4769667","name":"Linton Hall","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35725,"modificationDate":"2011-05-14"}, -{"geonameId":"2333451","name":"Kumo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":35712,"modificationDate":"2016-01-30"}, -{"geonameId":"2655664","name":"Billingham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":35708,"modificationDate":"2013-08-10"}, -{"geonameId":"3021411","name":"Dieppe","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":35707,"modificationDate":"2019-04-10"}, -{"geonameId":"4004159","name":"Xalisco","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":35702,"modificationDate":"2018-11-03"}, -{"geonameId":"4173497","name":"South Miami Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35696,"modificationDate":"2011-05-14"}, -{"geonameId":"1271533","name":"Gariadhar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35692,"modificationDate":"2014-10-13"}, -{"geonameId":"1268540","name":"Kakrāla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35690,"modificationDate":"2014-10-14"}, -{"geonameId":"2640106","name":"Pontypool","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":35686,"modificationDate":"2016-06-22"}, -{"geonameId":"4448903","name":"Tupelo","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35680,"modificationDate":"2019-02-22"}, -{"geonameId":"3530123","name":"Coyotepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":35677,"modificationDate":"2018-11-03"}, -{"geonameId":"617026","name":"Abovyan","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":35673,"modificationDate":"2016-04-10"}, -{"geonameId":"1610940","name":"Det Udom","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":35669,"modificationDate":"2012-01-16"}, -{"geonameId":"2512186","name":"Puerto del Rosario","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":35667,"modificationDate":"2012-03-04"}, -{"geonameId":"2810612","name":"Wesseling","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":35665,"modificationDate":"2015-09-04"}, -{"geonameId":"3622228","name":"Puntarenas","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":35650,"modificationDate":"2016-09-07"}, -{"geonameId":"3573840","name":"Rio Claro","countryName":"Trinidad and Tobago","timeZoneName":"America/Port_of_Spain","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":35650,"modificationDate":"2017-10-04"}, -{"geonameId":"2510116","name":"Úbeda","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":35649,"modificationDate":"2012-03-04"}, -{"geonameId":"159386","name":"Igunga","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":35644,"modificationDate":"2016-07-26"}, -{"geonameId":"1876873","name":"Koshyu","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":35641,"modificationDate":"2020-06-11"}, -{"geonameId":"3530592","name":"Ciudad Mendoza","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":35641,"modificationDate":"2018-11-03"}, -{"geonameId":"2992703","name":"Montélimar","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":35637,"modificationDate":"2019-06-05"}, -{"geonameId":"4115412","name":"Hot Springs","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35635,"modificationDate":"2017-05-23"}, -{"geonameId":"1639304","name":"Kualakapuas","countryName":"Indonesia","timeZoneName":"Asia/Pontianak","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":35632,"modificationDate":"2010-12-22"}, -{"geonameId":"5409260","name":"Wildomar","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":35632,"modificationDate":"2017-03-09"}, -{"geonameId":"1278448","name":"Arantāngi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35621,"modificationDate":"2014-10-14"}, -{"geonameId":"1257566","name":"Samālkha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35620,"modificationDate":"2015-06-07"}, -{"geonameId":"2042987","name":"Kyŏngsŏng","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":35604,"modificationDate":"2012-01-19"}, -{"geonameId":"576697","name":"Beslan","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":35604,"modificationDate":"2016-11-25"}, -{"geonameId":"4414001","name":"Wentzville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35603,"modificationDate":"2017-05-23"}, -{"geonameId":"1265888","name":"Kovūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35600,"modificationDate":"2017-01-04"}, -{"geonameId":"1254111","name":"Tuljāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35596,"modificationDate":"2014-10-13"}, -{"geonameId":"2112409","name":"Kaminoyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":35593,"modificationDate":"2017-07-22"}, -{"geonameId":"2971874","name":"Tremblay-en-France","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":35591,"modificationDate":"2016-02-18"}, -{"geonameId":"3025055","name":"Choisy-le-Roi","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":35590,"modificationDate":"2019-03-26"}, -{"geonameId":"2221530","name":"Tibati","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":35589,"modificationDate":"2014-02-06"}, -{"geonameId":"789923","name":"Jagodina","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":35589,"modificationDate":"2013-10-21"}, -{"geonameId":"651943","name":"Kokkola","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":35586,"modificationDate":"2014-12-29"}, -{"geonameId":"3101321","name":"Cieszyn","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":35586,"modificationDate":"2019-09-05"}, -{"geonameId":"1614455","name":"Ban Phai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":35583,"modificationDate":"2012-01-16"}, -{"geonameId":"2930449","name":"Emsdetten","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":35582,"modificationDate":"2015-09-04"}, -{"geonameId":"3393471","name":"Oriximiná","countryName":"Brazil","timeZoneName":"America/Santarem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":35581,"modificationDate":"2016-12-03"}, -{"geonameId":"5043799","name":"Roseville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35580,"modificationDate":"2017-05-23"}, -{"geonameId":"3406160","name":"Barreiros","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":35565,"modificationDate":"2012-08-03"}, -{"geonameId":"3401283","name":"Currais Novos","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":35560,"modificationDate":"2012-08-03"}, -{"geonameId":"1262740","name":"Morsi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35554,"modificationDate":"2018-12-04"}, -{"geonameId":"4176318","name":"Valrico","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35545,"modificationDate":"2011-05-14"}, -{"geonameId":"1278058","name":"Babīna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35538,"modificationDate":"2015-08-07"}, -{"geonameId":"1161991","name":"Pir Jo Goth","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":35537,"modificationDate":"2019-12-06"}, -{"geonameId":"203717","name":"Yangambi","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":35531,"modificationDate":"2016-11-29"}, -{"geonameId":"1622090","name":"Wangon","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":35530,"modificationDate":"2012-01-17"}, -{"geonameId":"153759","name":"Misungwi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":35530,"modificationDate":"2016-07-26"}, -{"geonameId":"2978317","name":"Saint-Martin","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":35528,"modificationDate":"2020-06-10"}, -{"geonameId":"5221637","name":"Coventry","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35525,"modificationDate":"2017-05-23"}, -{"geonameId":"3467197","name":"Capivari","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":35518,"modificationDate":"2012-08-03"}, -{"geonameId":"3455141","name":"Paraíba do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":35517,"modificationDate":"2014-12-28"}, -{"geonameId":"602913","name":"Skellefteå","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":35516,"modificationDate":"2017-03-18"}, -{"geonameId":"1513072","name":"Ohangaron","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":35516,"modificationDate":"2012-01-17"}, -{"geonameId":"3566054","name":"Camajuaní","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":35515,"modificationDate":"2006-01-17"}, -{"geonameId":"2480618","name":"Sidi ech Chahmi","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":35512,"modificationDate":"2012-01-19"}, -{"geonameId":"4723914","name":"Rosenberg","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35510,"modificationDate":"2017-03-09"}, -{"geonameId":"951650","name":"Stutterheim","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":35510,"modificationDate":"2012-07-12"}, -{"geonameId":"1272396","name":"Dongargarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35508,"modificationDate":"2015-09-06"}, -{"geonameId":"1732354","name":"Abucay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":35508,"modificationDate":"2017-12-13"}, -{"geonameId":"4848489","name":"Bettendorf","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35505,"modificationDate":"2017-05-23"}, -{"geonameId":"6126305","name":"Rock Forest","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35500,"modificationDate":"2016-06-22"}, -{"geonameId":"1061605","name":"Manakara","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":35499,"modificationDate":"2018-09-07"}, -{"geonameId":"1278296","name":"Ashta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35497,"modificationDate":"2014-10-13"}, -{"geonameId":"668995","name":"Reghin-Sat","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":35490,"modificationDate":"2016-02-07"}, -{"geonameId":"2996882","name":"Mâcon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":35484,"modificationDate":"2019-01-04"}, -{"geonameId":"312114","name":"Hınıs","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":35472,"modificationDate":"2015-04-08"}, -{"geonameId":"4192674","name":"East Point","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35467,"modificationDate":"2017-03-09"}, -{"geonameId":"2426240","name":"Pala","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":35466,"modificationDate":"2012-01-18"}, -{"geonameId":"1269810","name":"Igatpuri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35461,"modificationDate":"2014-10-13"}, -{"geonameId":"1259069","name":"Rādhanpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35457,"modificationDate":"2014-10-13"}, -{"geonameId":"1526970","name":"Abay","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":35454,"modificationDate":"2017-03-04"}, -{"geonameId":"2459775","name":"Bougouni","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":35450,"modificationDate":"2012-06-08"}, -{"geonameId":"2147914","name":"Sunbury","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":35449,"modificationDate":"2019-07-18"}, -{"geonameId":"2497988","name":"El Kala","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":35449,"modificationDate":"2016-09-18"}, -{"geonameId":"693581","name":"Slavuta","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":35444,"modificationDate":"2020-05-12"}, -{"geonameId":"1275152","name":"Budhāna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35442,"modificationDate":"2015-04-08"}, -{"geonameId":"3444823","name":"Xique Xique","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":35433,"modificationDate":"2014-10-24"}, -{"geonameId":"2745088","name":"Wageningen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":35433,"modificationDate":"2019-04-24"}, -{"geonameId":"1264700","name":"Lūnāvāda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35431,"modificationDate":"2018-05-28"}, -{"geonameId":"585152","name":"Shamkhor","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":35421,"modificationDate":"2020-01-03"}, -{"geonameId":"4084796","name":"Prattville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35420,"modificationDate":"2017-03-09"}, -{"geonameId":"2111530","name":"Ōfunato","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":35418,"modificationDate":"2017-07-22"}, -{"geonameId":"1276416","name":"Betamcherla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35417,"modificationDate":"2018-12-04"}, -{"geonameId":"2881279","name":"Langen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":35416,"modificationDate":"2019-09-05"}, -{"geonameId":"3923154","name":"Bermejo","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":35411,"modificationDate":"2017-12-14"}, -{"geonameId":"1172682","name":"Kundian","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":35406,"modificationDate":"2019-12-06"}, -{"geonameId":"4169060","name":"Ponte Vedra Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35400,"modificationDate":"2010-06-07"}, -{"geonameId":"3108126","name":"Teruel","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":35396,"modificationDate":"2019-09-05"}, -{"geonameId":"3982616","name":"Tala","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":35396,"modificationDate":"2018-11-03"}, -{"geonameId":"1258819","name":"Rājpīpla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35392,"modificationDate":"2014-10-13"}, -{"geonameId":"8858092","name":"San Martín Azcatepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":35390,"modificationDate":"2014-04-11"}, -{"geonameId":"707758","name":"Hlukhiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":35387,"modificationDate":"2019-09-05"}, -{"geonameId":"5147784","name":"Boardman","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35376,"modificationDate":"2017-05-23"}, -{"geonameId":"654899","name":"Kajaani","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":35375,"modificationDate":"2014-09-25"}, -{"geonameId":"2525450","name":"Caltagirone","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":35371,"modificationDate":"2015-08-10"}, -{"geonameId":"110314","name":"Ad Dilam","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":35371,"modificationDate":"2014-09-30"}, -{"geonameId":"3466429","name":"Cerquilho","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":35367,"modificationDate":"2012-08-03"}, -{"geonameId":"724627","name":"Humenné","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":35367,"modificationDate":"2019-06-09"}, -{"geonameId":"4151824","name":"Cooper City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35364,"modificationDate":"2017-03-09"}, -{"geonameId":"316634","name":"Dinar","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":35359,"modificationDate":"2012-04-05"}, -{"geonameId":"551891","name":"Kasimov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":35355,"modificationDate":"2019-09-05"}, -{"geonameId":"7258432","name":"Oxon Hill-Glassmanor","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35355,"modificationDate":"2017-12-14"}, -{"geonameId":"586427","name":"Geoktschai","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":35348,"modificationDate":"2014-06-27"}, -{"geonameId":"1167873","name":"Pir Mahal","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":35343,"modificationDate":"2019-12-06"}, -{"geonameId":"3515386","name":"Tlapacoyan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":35338,"modificationDate":"2018-11-03"}, -{"geonameId":"3816721","name":"Tonalá","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":35322,"modificationDate":"2018-11-03"}, -{"geonameId":"2657770","name":"Accrington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":35318,"modificationDate":"2010-05-24"}, -{"geonameId":"2112913","name":"Funaishikawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":35318,"modificationDate":"2017-04-09"}, -{"geonameId":"2649723","name":"Falkirk","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":35310,"modificationDate":"2017-06-15"}, -{"geonameId":"935267","name":"Saint-Benoît","countryName":"Reunion","timeZoneName":"Indian/Reunion","timeZoneOffsetNameWithoutDst":"Réunion Time","population":35310,"modificationDate":"2018-06-08"}, -{"geonameId":"3471896","name":"Aquidauana","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":35303,"modificationDate":"2012-08-03"}, -{"geonameId":"3665973","name":"Villamaría","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":35302,"modificationDate":"2018-07-04"}, -{"geonameId":"2130421","name":"Date","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":35301,"modificationDate":"2017-07-22"}, -{"geonameId":"296895","name":"Yerköy","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":35294,"modificationDate":"2012-01-18"}, -{"geonameId":"2864820","name":"Neu Isenburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":35293,"modificationDate":"2017-09-20"}, -{"geonameId":"1173692","name":"Khurrianwala","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":35292,"modificationDate":"2019-12-06"}, -{"geonameId":"1605677","name":"Tha Bo","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":35292,"modificationDate":"2012-01-16"}, -{"geonameId":"1626134","name":"Sumberpucung","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":35285,"modificationDate":"2007-11-09"}, -{"geonameId":"4154280","name":"Egypt Lake-Leto","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35282,"modificationDate":"2011-05-14"}, -{"geonameId":"7302849","name":"Barpeta Road","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35281,"modificationDate":"2014-10-13"}, -{"geonameId":"3061344","name":"Znojmo","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":35280,"modificationDate":"2019-09-05"}, -{"geonameId":"1256572","name":"Sherghāti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35279,"modificationDate":"2015-12-05"}, -{"geonameId":"4903940","name":"North Lawndale","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35276,"modificationDate":"2017-12-14"}, -{"geonameId":"1609071","name":"Loei","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":35273,"modificationDate":"2012-01-16"}, -{"geonameId":"1253861","name":"Umarkhed","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35265,"modificationDate":"2014-10-13"}, -{"geonameId":"1170564","name":"Mehrabpur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":35263,"modificationDate":"2019-12-06"}, -{"geonameId":"3449529","name":"Santo Antônio da Platina","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":35260,"modificationDate":"2012-08-03"}, -{"geonameId":"3401109","name":"Delmiro Gouveia","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":35259,"modificationDate":"2012-08-03"}, -{"geonameId":"745664","name":"Hendek","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":35257,"modificationDate":"2012-05-06"}, -{"geonameId":"2757991","name":"Castricum","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":35256,"modificationDate":"2017-10-17"}, -{"geonameId":"3453337","name":"Poções","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":35254,"modificationDate":"2012-08-03"}, -{"geonameId":"3067542","name":"Příbram","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":35251,"modificationDate":"2019-03-20"}, -{"geonameId":"3175173","name":"Lanciano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":35251,"modificationDate":"2019-11-29"}, -{"geonameId":"1252930","name":"Wāris Alīganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35243,"modificationDate":"2014-10-14"}, -{"geonameId":"5265228","name":"Oak Creek","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35243,"modificationDate":"2017-05-23"}, -{"geonameId":"740430","name":"Safranbolu","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":35242,"modificationDate":"2019-09-05"}, -{"geonameId":"3536724","name":"Santiago de las Vegas","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":35241,"modificationDate":"2016-11-23"}, -{"geonameId":"186731","name":"Migori","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":35240,"modificationDate":"2016-12-10"}, -{"geonameId":"4215110","name":"Peachtree City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35240,"modificationDate":"2017-03-09"}, -{"geonameId":"2800448","name":"Châtelet","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":35238,"modificationDate":"2011-07-21"}, -{"geonameId":"1259272","name":"Pulgaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35238,"modificationDate":"2015-08-07"}, -{"geonameId":"1267369","name":"Kawardha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35238,"modificationDate":"2019-01-23"}, -{"geonameId":"3181931","name":"Bollate","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":35235,"modificationDate":"2014-01-16"}, -{"geonameId":"2873356","name":"Märkisches Viertel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":35230,"modificationDate":"2014-04-12"}, -{"geonameId":"4923482","name":"Merrillville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35224,"modificationDate":"2017-05-23"}, -{"geonameId":"2509463","name":"Villena","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":35222,"modificationDate":"2012-03-04"}, -{"geonameId":"2803620","name":"Two Bridges","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":35221,"modificationDate":"2020-06-10"}, -{"geonameId":"2513983","name":"Mazarrón","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":35221,"modificationDate":"2012-03-04"}, -{"geonameId":"493463","name":"Shumerlya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":35220,"modificationDate":"2019-09-05"}, -{"geonameId":"2831872","name":"Sinsheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":35219,"modificationDate":"2013-02-16"}, -{"geonameId":"4003526","name":"La Barca","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":35219,"modificationDate":"2018-11-03"}, -{"geonameId":"2519425","name":"Cieza","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":35200,"modificationDate":"2012-03-04"}, -{"geonameId":"694864","name":"Sambir","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":35197,"modificationDate":"2019-09-05"}, -{"geonameId":"2550806","name":"Aioun Sidi Mellouk","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":35196,"modificationDate":"2020-06-11"}, -{"geonameId":"8605040","name":"Hot Springs National Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35193,"modificationDate":"2017-05-23"}, -{"geonameId":"1275389","name":"Buddh Gaya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35188,"modificationDate":"2015-12-05"}, -{"geonameId":"210939","name":"Luebo","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":35183,"modificationDate":"2016-11-22"}, -{"geonameId":"1630662","name":"Praya","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":35183,"modificationDate":"2014-08-19"}, -{"geonameId":"4170965","name":"Saint Cloud","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35183,"modificationDate":"2011-05-14"}, -{"geonameId":"2654668","name":"Briton Ferry","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":35179,"modificationDate":"2011-03-03"}, -{"geonameId":"2646807","name":"Hoddesdon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":35174,"modificationDate":"2010-08-03"}, -{"geonameId":"3178738","name":"Ciampino","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":35174,"modificationDate":"2015-07-15"}, -{"geonameId":"1527299","name":"Talas","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":35172,"modificationDate":"2018-03-27"}, -{"geonameId":"3465748","name":"Conceição do Coité","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":35171,"modificationDate":"2012-08-03"}, -{"geonameId":"11101616","name":"N’diareme limamoulaye","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":35171,"modificationDate":"2016-03-15"}, -{"geonameId":"220448","name":"Aketi","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":35161,"modificationDate":"2016-11-22"}, -{"geonameId":"3093739","name":"Lębork","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":35161,"modificationDate":"2011-07-31"}, -{"geonameId":"2295840","name":"Prestea","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":35155,"modificationDate":"2019-12-06"}, -{"geonameId":"2654728","name":"Bridlington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":35154,"modificationDate":"2017-06-12"}, -{"geonameId":"2526452","name":"Zagora","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":35154,"modificationDate":"2016-11-02"}, -{"geonameId":"752584","name":"Diospolis","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":35151,"modificationDate":"2020-06-10"}, -{"geonameId":"4704108","name":"La Porte","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35148,"modificationDate":"2017-03-09"}, -{"geonameId":"3107677","name":"Tortosa","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":35143,"modificationDate":"2012-03-04"}, -{"geonameId":"3518138","name":"San Pablo Autopan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":35141,"modificationDate":"2018-11-03"}, -{"geonameId":"1265201","name":"Lakshmeshwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35140,"modificationDate":"2014-10-14"}, -{"geonameId":"1278201","name":"Atmakūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35137,"modificationDate":"2014-10-10"}, -{"geonameId":"1256814","name":"Seram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35134,"modificationDate":"2014-10-14"}, -{"geonameId":"2521986","name":"Alhaurín de la Torre","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":35114,"modificationDate":"2014-12-23"}, -{"geonameId":"1261614","name":"Niwai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35114,"modificationDate":"2014-10-14"}, -{"geonameId":"1732857","name":"Tangkak","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":35109,"modificationDate":"2012-01-17"}, -{"geonameId":"3043293","name":"Vác","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":35108,"modificationDate":"2015-06-17"}, -{"geonameId":"997751","name":"Harrismith","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":35108,"modificationDate":"2013-11-03"}, -{"geonameId":"3864331","name":"Bell Ville","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":35105,"modificationDate":"2016-01-30"}, -{"geonameId":"6113335","name":"Prince Albert","countryName":"Canada","timeZoneName":"America/Regina","timeZoneOffsetNameWithoutDst":"Central Time","population":35102,"modificationDate":"2019-08-08"}, -{"geonameId":"2150717","name":"Saint Albans","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":35091,"modificationDate":"2015-01-20"}, -{"geonameId":"2124286","name":"Korsakov","countryName":"Russia","timeZoneName":"Asia/Sakhalin","timeZoneOffsetNameWithoutDst":"Sakhalin Time","population":35091,"modificationDate":"2019-09-05"}, -{"geonameId":"3460362","name":"Jacarezinho","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":35090,"modificationDate":"2012-08-03"}, -{"geonameId":"2280761","name":"Tiassalé","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":35090,"modificationDate":"2016-12-03"}, -{"geonameId":"2795100","name":"Ieper","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":35089,"modificationDate":"2019-09-05"}, -{"geonameId":"2508297","name":"Aïn Arnat","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":35088,"modificationDate":"2013-05-11"}, -{"geonameId":"1168021","name":"Pindi Bhattian","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":35088,"modificationDate":"2019-12-06"}, -{"geonameId":"1272320","name":"Dubrājpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35087,"modificationDate":"2014-10-14"}, -{"geonameId":"1220798","name":"Panjakent","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":35085,"modificationDate":"2012-02-28"}, -{"geonameId":"3480908","name":"La Asunción","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":35084,"modificationDate":"2016-01-22"}, -{"geonameId":"2525350","name":"Carini","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":35082,"modificationDate":"2015-08-10"}, -{"geonameId":"2917544","name":"Greven","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":35080,"modificationDate":"2015-09-04"}, -{"geonameId":"559320","name":"Goryachevodskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":35075,"modificationDate":"2012-01-17"}, -{"geonameId":"3188244","name":"Velika Gorica","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":35072,"modificationDate":"2016-05-08"}, -{"geonameId":"1606586","name":"Samut Songkhram","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":35065,"modificationDate":"2012-01-16"}, -{"geonameId":"1214488","name":"Meulaboh","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":35062,"modificationDate":"2014-08-19"}, -{"geonameId":"3996271","name":"Muzquiz","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":35060,"modificationDate":"2020-06-10"}, -{"geonameId":"4412697","name":"University City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":35058,"modificationDate":"2017-05-23"}, -{"geonameId":"12156903","name":"Downsview-Roding-CFB","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":35052,"modificationDate":"2020-05-02"}, -{"geonameId":"1269447","name":"Jalālābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35051,"modificationDate":"2015-08-07"}, -{"geonameId":"2620473","name":"Helsingør","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":35048,"modificationDate":"2019-09-05"}, -{"geonameId":"2775479","name":"Hötting","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":35043,"modificationDate":"2018-07-31"}, -{"geonameId":"3376762","name":"New Amsterdam","countryName":"Guyana","timeZoneName":"America/Guyana","timeZoneOffsetNameWithoutDst":"Guyana Time","population":35039,"modificationDate":"2019-09-05"}, -{"geonameId":"2111277","name":"Rifu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":35037,"modificationDate":"2017-04-09"}, -{"geonameId":"229911","name":"Lugazi","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":35036,"modificationDate":"2016-12-03"}, -{"geonameId":"1257486","name":"Sānand","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35033,"modificationDate":"2014-10-13"}, -{"geonameId":"2509402","name":"Yecla","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":35025,"modificationDate":"2012-03-04"}, -{"geonameId":"1266425","name":"Kodaikānāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":35021,"modificationDate":"2014-10-14"}, -{"geonameId":"3620170","name":"Diriamba","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":35008,"modificationDate":"2018-08-08"}, -{"geonameId":"2983011","name":"Romans","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":35002,"modificationDate":"2020-06-10"}, -{"geonameId":"1849094","name":"Usuki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":35001,"modificationDate":"2017-07-22"}, -{"geonameId":"123485","name":"Mohr","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":35000,"modificationDate":"2017-03-04"}, -{"geonameId":"1848055","name":"Gero","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":35000,"modificationDate":"2017-07-22"}, -{"geonameId":"2327233","name":"Oke Ila","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":35000,"modificationDate":"2013-05-18"}, -{"geonameId":"6457378","name":"Malakwal City","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":35000,"modificationDate":"2019-12-06"}, -{"geonameId":"2265464","name":"Oeiras","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":35000,"modificationDate":"2018-03-09"}, -{"geonameId":"489226","name":"Staraya Derevnya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":35000,"modificationDate":"2013-03-29"}, -{"geonameId":"3575051","name":"Arima","countryName":"Trinidad and Tobago","timeZoneName":"America/Port_of_Spain","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":35000,"modificationDate":"2017-10-04"}, -{"geonameId":"785485","name":"Shtime","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":35000,"modificationDate":"2015-02-22"}, -{"geonameId":"786950","name":"Podujeva","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":35000,"modificationDate":"2015-02-22"}, -{"geonameId":"791122","name":"Dragash","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":35000,"modificationDate":"2015-02-22"}, -{"geonameId":"2820456","name":"Uelzen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":34996,"modificationDate":"2015-09-05"}, -{"geonameId":"598818","name":"Jonava","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34993,"modificationDate":"2019-09-05"}, -{"geonameId":"3364346","name":"Malmesbury","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":34991,"modificationDate":"2012-07-12"}, -{"geonameId":"587384","name":"Agdzhabedy","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":34989,"modificationDate":"2014-06-27"}, -{"geonameId":"2479916","name":"Sidi Okba","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":34985,"modificationDate":"2012-01-19"}, -{"geonameId":"1274218","name":"Chikodi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34984,"modificationDate":"2014-10-14"}, -{"geonameId":"153384","name":"Mlimba","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":34970,"modificationDate":"2016-07-26"}, -{"geonameId":"354105","name":"Kafr Şaqr","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34967,"modificationDate":"2012-01-19"}, -{"geonameId":"1256753","name":"Shāhābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34962,"modificationDate":"2014-10-14"}, -{"geonameId":"155405","name":"Mafinga","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":34958,"modificationDate":"2018-12-04"}, -{"geonameId":"558066","name":"Gul’kevichi","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":34953,"modificationDate":"2010-10-07"}, -{"geonameId":"281161","name":"Al Burayj","countryName":"Palestinian Territory","timeZoneName":"Asia/Gaza","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34951,"modificationDate":"2019-05-03"}, -{"geonameId":"2753666","name":"Hoogvliet","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":34950,"modificationDate":"2019-12-24"}, -{"geonameId":"3397936","name":"Itapecuru Mirim","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34943,"modificationDate":"2012-08-03"}, -{"geonameId":"2464648","name":"Tozeur","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":34943,"modificationDate":"2018-08-31"}, -{"geonameId":"2294768","name":"Tarkwa","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":34941,"modificationDate":"2019-12-06"}, -{"geonameId":"1254858","name":"Tāsgaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34933,"modificationDate":"2014-10-13"}, -{"geonameId":"3182765","name":"Arzano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":34933,"modificationDate":"2015-08-10"}, -{"geonameId":"1266397","name":"Korinar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34930,"modificationDate":"2020-06-10"}, -{"geonameId":"1695462","name":"Pandi","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":34927,"modificationDate":"2017-12-13"}, -{"geonameId":"2511250","name":"San Pedro de Alcántara","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":34922,"modificationDate":"2015-11-12"}, -{"geonameId":"198476","name":"Embu","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":34922,"modificationDate":"2018-03-06"}, -{"geonameId":"2977246","name":"Saint-Raphaël","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":34918,"modificationDate":"2018-08-13"}, -{"geonameId":"300791","name":"Simav","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":34909,"modificationDate":"2013-08-06"}, -{"geonameId":"4526993","name":"Upper Arlington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34907,"modificationDate":"2017-05-23"}, -{"geonameId":"4844309","name":"Torrington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34906,"modificationDate":"2017-05-23"}, -{"geonameId":"1266575","name":"Kichha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34904,"modificationDate":"2015-10-04"}, -{"geonameId":"1259177","name":"Pūrna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34888,"modificationDate":"2015-08-07"}, -{"geonameId":"3621889","name":"San Isidro","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":34877,"modificationDate":"2018-07-19"}, -{"geonameId":"3660434","name":"Azogues","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":34877,"modificationDate":"2017-02-07"}, -{"geonameId":"5328041","name":"Beverly Hills","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":34869,"modificationDate":"2019-09-11"}, -{"geonameId":"2950096","name":"Bernau bei Berlin","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":34866,"modificationDate":"2015-09-05"}, -{"geonameId":"5031412","name":"Inver Grove Heights","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":34857,"modificationDate":"2017-05-23"}, -{"geonameId":"2820693","name":"Tuttlingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":34847,"modificationDate":"2019-09-05"}, -{"geonameId":"5221703","name":"Cumberland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34843,"modificationDate":"2017-05-23"}, -{"geonameId":"1153035","name":"Kathu","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":34835,"modificationDate":"2017-03-22"}, -{"geonameId":"3695466","name":"La Unión","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":34834,"modificationDate":"2018-12-05"}, -{"geonameId":"739600","name":"Sinop","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":34834,"modificationDate":"2016-11-16"}, -{"geonameId":"2610319","name":"Viborg","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":34831,"modificationDate":"2017-10-18"}, -{"geonameId":"2655882","name":"Bentley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":34821,"modificationDate":"2013-08-05"}, -{"geonameId":"3526708","name":"Ixmiquilpan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":34814,"modificationDate":"2018-11-03"}, -{"geonameId":"3460148","name":"Januária","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34811,"modificationDate":"2017-08-15"}, -{"geonameId":"5383720","name":"Pleasant Hill","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":34810,"modificationDate":"2017-03-09"}, -{"geonameId":"12156818","name":"Parkwoods-Donalda","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34805,"modificationDate":"2020-05-02"}, -{"geonameId":"610613","name":"Aqsay","countryName":"Kazakhstan","timeZoneName":"Asia/Oral","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":34799,"modificationDate":"2018-08-07"}, -{"geonameId":"3024195","name":"Pontault-Combault","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":34798,"modificationDate":"2016-02-18"}, -{"geonameId":"1526038","name":"Atbasar","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":34797,"modificationDate":"2012-06-05"}, -{"geonameId":"5173171","name":"Stow","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34797,"modificationDate":"2017-05-23"}, -{"geonameId":"361495","name":"Ayat","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34796,"modificationDate":"2020-06-11"}, -{"geonameId":"4161616","name":"Lauderdale Lakes","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34796,"modificationDate":"2017-03-09"}, -{"geonameId":"2790114","name":"Ninove","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":34795,"modificationDate":"2012-01-18"}, -{"geonameId":"4635031","name":"La Vergne","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":34794,"modificationDate":"2017-03-09"}, -{"geonameId":"4178573","name":"Winter Springs","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34789,"modificationDate":"2017-03-09"}, -{"geonameId":"638936","name":"Rovaniemi","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34781,"modificationDate":"2014-09-25"}, -{"geonameId":"2666670","name":"Uddevalla","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":34781,"modificationDate":"2017-03-18"}, -{"geonameId":"2871736","name":"Merseburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":34780,"modificationDate":"2015-09-05"}, -{"geonameId":"154654","name":"Masumbwe","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":34780,"modificationDate":"2018-12-04"}, -{"geonameId":"2974427","name":"Six-Fours-les-Plages","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":34779,"modificationDate":"2019-08-07"}, -{"geonameId":"1169334","name":"Narang Mandi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":34778,"modificationDate":"2019-12-06"}, -{"geonameId":"2659099","name":"Rapperswil","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":34776,"modificationDate":"2018-11-21"}, -{"geonameId":"1269379","name":"Jāmadoba","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34774,"modificationDate":"2014-10-14"}, -{"geonameId":"5987650","name":"Joliette","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34772,"modificationDate":"2016-06-20"}, -{"geonameId":"2987967","name":"Périgueux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":34770,"modificationDate":"2019-11-06"}, -{"geonameId":"1621060","name":"Amnat Charoen","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":34769,"modificationDate":"2012-01-16"}, -{"geonameId":"726872","name":"Dupnitsa","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34764,"modificationDate":"2012-01-18"}, -{"geonameId":"2270985","name":"Beja","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":34760,"modificationDate":"2018-04-30"}, -{"geonameId":"688860","name":"Voznesensk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34757,"modificationDate":"2020-04-23"}, -{"geonameId":"1219392","name":"Gowurdak","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":34745,"modificationDate":"2012-01-17"}, -{"geonameId":"1689171","name":"San Leonardo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":34743,"modificationDate":"2017-12-13"}, -{"geonameId":"4164092","name":"Merritt Island","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34743,"modificationDate":"2011-05-14"}, -{"geonameId":"2755434","name":"Gorinchem","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":34736,"modificationDate":"2017-10-17"}, -{"geonameId":"3446232","name":"Tramandaí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34734,"modificationDate":"2012-08-03"}, -{"geonameId":"283506","name":"Jinin","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34730,"modificationDate":"2020-06-10"}, -{"geonameId":"1349357","name":"Nabagrām","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34728,"modificationDate":"2014-10-14"}, -{"geonameId":"633591","name":"Tuusula","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34725,"modificationDate":"2014-09-25"}, -{"geonameId":"3036016","name":"Aurillac","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":34724,"modificationDate":"2019-04-10"}, -{"geonameId":"5119383","name":"Greenpoint","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34719,"modificationDate":"2017-12-06"}, -{"geonameId":"3842881","name":"Nueve de Julio","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":34718,"modificationDate":"2015-04-22"}, -{"geonameId":"3460071","name":"Jardinópolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34718,"modificationDate":"2012-08-03"}, -{"geonameId":"949282","name":"Theunissen","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":34718,"modificationDate":"2012-07-12"}, -{"geonameId":"3107418","name":"Tudela","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":34717,"modificationDate":"2012-03-04"}, -{"geonameId":"1682478","name":"Teresa","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":34716,"modificationDate":"2017-12-13"}, -{"geonameId":"3455908","name":"Oliveira","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34710,"modificationDate":"2012-08-03"}, -{"geonameId":"3101076","name":"Czechowice-Dziedzice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":34703,"modificationDate":"2011-07-31"}, -{"geonameId":"622739","name":"Rahachow","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":34700,"modificationDate":"2019-09-05"}, -{"geonameId":"4177865","name":"West Little River","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34699,"modificationDate":"2011-05-14"}, -{"geonameId":"2797779","name":"Geel","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":34697,"modificationDate":"2011-02-10"}, -{"geonameId":"361702","name":"Aga","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34692,"modificationDate":"2020-06-11"}, -{"geonameId":"5148480","name":"Brunswick","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34689,"modificationDate":"2017-05-23"}, -{"geonameId":"163811","name":"Teft","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34670,"modificationDate":"2020-06-10"}, -{"geonameId":"584441","name":"Abinsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":34668,"modificationDate":"2019-09-05"}, -{"geonameId":"1243936","name":"Homagama","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":34664,"modificationDate":"2018-12-16"}, -{"geonameId":"3740016","name":"Ti Port-de-Paix","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34657,"modificationDate":"2016-01-30"}, -{"geonameId":"1258795","name":"Rājula","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34652,"modificationDate":"2014-10-13"}, -{"geonameId":"1256532","name":"Shikārpūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34649,"modificationDate":"2015-09-06"}, -{"geonameId":"3175986","name":"Gorizia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":34646,"modificationDate":"2014-01-11"}, -{"geonameId":"361103","name":"Ibrahimiyyah","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34638,"modificationDate":"2020-06-11"}, -{"geonameId":"1855694","name":"Namerikawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":34638,"modificationDate":"2017-07-27"}, -{"geonameId":"8858093","name":"Fraccionamiento Real Palmas","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":34636,"modificationDate":"2014-04-11"}, -{"geonameId":"3633677","name":"Los Rastrojos","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":34636,"modificationDate":"2012-01-18"}, -{"geonameId":"3460629","name":"Itaqui","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34631,"modificationDate":"2012-08-03"}, -{"geonameId":"711515","name":"Boyarka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34631,"modificationDate":"2014-01-12"}, -{"geonameId":"1259608","name":"Pīpār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34630,"modificationDate":"2014-10-14"}, -{"geonameId":"5391891","name":"San Dimas","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":34630,"modificationDate":"2017-03-09"}, -{"geonameId":"3455769","name":"Osório","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34628,"modificationDate":"2012-08-03"}, -{"geonameId":"2111441","name":"Okunoya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":34627,"modificationDate":"2017-04-09"}, -{"geonameId":"6067494","name":"Mascouche","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34626,"modificationDate":"2016-06-22"}, -{"geonameId":"6075061","name":"Mirabel","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34626,"modificationDate":"2016-06-22"}, -{"geonameId":"2739848","name":"Esposende","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":34625,"modificationDate":"2014-04-06"}, -{"geonameId":"4479946","name":"Monroe","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34623,"modificationDate":"2019-09-19"}, -{"geonameId":"4903858","name":"North Center","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":34623,"modificationDate":"2017-12-14"}, -{"geonameId":"1257830","name":"Sagauli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34622,"modificationDate":"2015-10-04"}, -{"geonameId":"5310193","name":"Queen Creek","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":34614,"modificationDate":"2017-03-09"}, -{"geonameId":"1337239","name":"Pīrgaaj","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":34606,"modificationDate":"2016-11-09"}, -{"geonameId":"3181258","name":"Caivano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":34604,"modificationDate":"2014-04-13"}, -{"geonameId":"3515259","name":"San Miguel Topilejo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":34603,"modificationDate":"2018-11-03"}, -{"geonameId":"3537840","name":"Santa Cruz del Sur","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":34601,"modificationDate":"2016-01-07"}, -{"geonameId":"2828105","name":"Steinfurt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":34601,"modificationDate":"2019-09-05"}, -{"geonameId":"2746005","name":"Uden","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":34601,"modificationDate":"2017-10-17"}, -{"geonameId":"2525597","name":"Barcellona Pozzo di Gotto","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":34598,"modificationDate":"2015-08-10"}, -{"geonameId":"5848189","name":"Kaneohe","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":34597,"modificationDate":"2019-10-21"}, -{"geonameId":"1267433","name":"Kattivākkam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34595,"modificationDate":"2014-10-14"}, -{"geonameId":"1608531","name":"Nakhon Phanom","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":34595,"modificationDate":"2012-01-16"}, -{"geonameId":"624034","name":"Asipovichy","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":34591,"modificationDate":"2014-06-27"}, -{"geonameId":"5155393","name":"Gahanna","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34590,"modificationDate":"2017-05-23"}, -{"geonameId":"2413876","name":"Banjul","countryName":"Gambia","timeZoneName":"Africa/Banjul","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":34589,"modificationDate":"2019-09-05"}, -{"geonameId":"1171376","name":"Malakwal","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":34589,"modificationDate":"2019-12-06"}, -{"geonameId":"3861953","name":"Chacabuco","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":34587,"modificationDate":"2015-04-22"}, -{"geonameId":"3623977","name":"Curridabat","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":34586,"modificationDate":"2016-09-07"}, -{"geonameId":"3387115","name":"Surubim","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34580,"modificationDate":"2012-08-03"}, -{"geonameId":"4274317","name":"Leawood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":34579,"modificationDate":"2017-05-23"}, -{"geonameId":"566181","name":"Dinskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":34573,"modificationDate":"2019-08-26"}, -{"geonameId":"692818","name":"Starokostyantyniv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34571,"modificationDate":"2020-05-12"}, -{"geonameId":"1629380","name":"Ruteng","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":34569,"modificationDate":"2018-01-02"}, -{"geonameId":"2520709","name":"Burriana","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":34565,"modificationDate":"2012-03-04"}, -{"geonameId":"1185276","name":"Bajutpur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":34560,"modificationDate":"2020-06-10"}, -{"geonameId":"1855891","name":"Nakamura","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":34559,"modificationDate":"2017-04-09"}, -{"geonameId":"3176923","name":"Fiumicino-Isola Sacra","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":34556,"modificationDate":"2015-08-10"}, -{"geonameId":"1267742","name":"Karjat","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34554,"modificationDate":"2014-10-13"}, -{"geonameId":"3460671","name":"Itápolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34552,"modificationDate":"2012-08-03"}, -{"geonameId":"1257369","name":"Sankeshwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34549,"modificationDate":"2014-10-14"}, -{"geonameId":"330491","name":"Mojo","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":34547,"modificationDate":"2014-11-16"}, -{"geonameId":"3174358","name":"Maddaloni","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":34546,"modificationDate":"2014-04-13"}, -{"geonameId":"1606376","name":"Satun","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":34544,"modificationDate":"2012-01-16"}, -{"geonameId":"4547407","name":"Owasso","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":34542,"modificationDate":"2017-03-09"}, -{"geonameId":"2609906","name":"Baltiysk","countryName":"Russia","timeZoneName":"Europe/Kaliningrad","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34540,"modificationDate":"2019-02-16"}, -{"geonameId":"5085382","name":"Derry Village","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34539,"modificationDate":"2017-05-23"}, -{"geonameId":"8436351","name":"Sighișoara","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34537,"modificationDate":"2019-09-05"}, -{"geonameId":"2522333","name":"Águilas","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":34533,"modificationDate":"2015-07-03"}, -{"geonameId":"1277684","name":"Bakhtiyārpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34533,"modificationDate":"2016-01-07"}, -{"geonameId":"1279299","name":"Agar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34532,"modificationDate":"2018-05-28"}, -{"geonameId":"2670879","name":"Sundbyberg","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":34529,"modificationDate":"2011-12-20"}, -{"geonameId":"1636426","name":"Manggar","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":34520,"modificationDate":"2016-01-07"}, -{"geonameId":"2490297","name":"Makouda","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":34515,"modificationDate":"2012-01-19"}, -{"geonameId":"552951","name":"Karabulak","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":34511,"modificationDate":"2019-09-05"}, -{"geonameId":"7290252","name":"Spandau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":34506,"modificationDate":"2017-09-19"}, -{"geonameId":"830844","name":"Trëkhgornyy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":34500,"modificationDate":"2012-01-19"}, -{"geonameId":"687116","name":"Zhmerynka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34498,"modificationDate":"2020-05-13"}, -{"geonameId":"618456","name":"Cahul","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34492,"modificationDate":"2019-09-05"}, -{"geonameId":"3145375","name":"Moss","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":34492,"modificationDate":"2019-12-12"}, -{"geonameId":"1261396","name":"Nilanga","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34491,"modificationDate":"2014-10-13"}, -{"geonameId":"2796696","name":"Halle","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":34479,"modificationDate":"2011-02-12"}, -{"geonameId":"1163414","name":"Thul","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":34472,"modificationDate":"2019-12-06"}, -{"geonameId":"2990612","name":"Neuilly-sur-Marne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":34465,"modificationDate":"2016-02-18"}, -{"geonameId":"2810808","name":"Wernigerode","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":34463,"modificationDate":"2019-09-05"}, -{"geonameId":"2166143","name":"Frankston East","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":34457,"modificationDate":"2012-01-18"}, -{"geonameId":"5102213","name":"Orange","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34457,"modificationDate":"2017-05-23"}, -{"geonameId":"516716","name":"Nurlat","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":34451,"modificationDate":"2019-09-05"}, -{"geonameId":"5112078","name":"Central Islip","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34450,"modificationDate":"2017-05-23"}, -{"geonameId":"3621505","name":"San Vicente","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":34447,"modificationDate":"2018-12-05"}, -{"geonameId":"6612154","name":"San Vicente de Moravia","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":34447,"modificationDate":"2016-09-07"}, -{"geonameId":"2525769","name":"Adrano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":34446,"modificationDate":"2015-08-10"}, -{"geonameId":"2795730","name":"Hoboken","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":34443,"modificationDate":"2011-02-07"}, -{"geonameId":"1257060","name":"Satānā","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34440,"modificationDate":"2015-09-06"}, -{"geonameId":"2279172","name":"Zuénoula","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":34435,"modificationDate":"2016-12-03"}, -{"geonameId":"2649800","name":"Exmouth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":34432,"modificationDate":"2018-07-03"}, -{"geonameId":"6174151","name":"Victoriaville","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34426,"modificationDate":"2016-04-12"}, -{"geonameId":"1862034","name":"Ibara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":34424,"modificationDate":"2017-07-22"}, -{"geonameId":"1207047","name":"Char Bhadrāsan","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":34423,"modificationDate":"2016-11-09"}, -{"geonameId":"1520253","name":"Zharkent","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":34422,"modificationDate":"2017-04-06"}, -{"geonameId":"617180","name":"Ungheni","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34422,"modificationDate":"2015-12-07"}, -{"geonameId":"3546882","name":"Minas de Matahambre","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":34419,"modificationDate":"2015-12-06"}, -{"geonameId":"5907983","name":"Brant","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34415,"modificationDate":"2010-09-22"}, -{"geonameId":"2953089","name":"Balingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":34414,"modificationDate":"2014-01-18"}, -{"geonameId":"2508010","name":"Rabelais","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":34413,"modificationDate":"2020-06-11"}, -{"geonameId":"5203506","name":"Norristown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34412,"modificationDate":"2017-05-23"}, -{"geonameId":"4900611","name":"Lower West Side","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":34410,"modificationDate":"2017-12-14"}, -{"geonameId":"978895","name":"Margate","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":34407,"modificationDate":"2012-07-12"}, -{"geonameId":"2633406","name":"Yate","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":34406,"modificationDate":"2017-06-12"}, -{"geonameId":"2291113","name":"Bongouanou","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":34405,"modificationDate":"2018-01-05"}, -{"geonameId":"514198","name":"Ostrogozhsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":34403,"modificationDate":"2019-09-05"}, -{"geonameId":"1608269","name":"Nong Bua Lamphu","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":34401,"modificationDate":"2012-01-16"}, -{"geonameId":"1260178","name":"Patamudai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34400,"modificationDate":"2020-06-10"}, -{"geonameId":"1278602","name":"Angamally","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34399,"modificationDate":"2020-06-10"}, -{"geonameId":"5115614","name":"Dyker Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34399,"modificationDate":"2017-04-16"}, -{"geonameId":"3648540","name":"Barinitas","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":34397,"modificationDate":"2018-08-08"}, -{"geonameId":"3177400","name":"Empoli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":34394,"modificationDate":"2015-08-10"}, -{"geonameId":"5118670","name":"Glendale","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34389,"modificationDate":"2017-04-16"}, -{"geonameId":"1693870","name":"Pila","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":34383,"modificationDate":"2017-12-13"}, -{"geonameId":"3996626","name":"Maravatío de Ocampo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":34381,"modificationDate":"2018-11-03"}, -{"geonameId":"3142657","name":"Porsgrunn","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":34377,"modificationDate":"2019-12-12"}, -{"geonameId":"2742027","name":"Bragança","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":34375,"modificationDate":"2018-08-19"}, -{"geonameId":"2147357","name":"Tarneit","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":34372,"modificationDate":"2019-07-18"}, -{"geonameId":"1271050","name":"Golāghāt","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34372,"modificationDate":"2014-10-13"}, -{"geonameId":"2998431","name":"Liévin","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":34370,"modificationDate":"2016-02-18"}, -{"geonameId":"1263707","name":"Manipal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34370,"modificationDate":"2018-11-21"}, -{"geonameId":"336350","name":"Goba","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":34369,"modificationDate":"2020-02-22"}, -{"geonameId":"3038634","name":"Agen","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":34367,"modificationDate":"2020-01-08"}, -{"geonameId":"3455553","name":"Paiçandu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34365,"modificationDate":"2012-08-03"}, -{"geonameId":"545626","name":"Kondopoga","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":34360,"modificationDate":"2019-09-05"}, -{"geonameId":"1255265","name":"Tādepalle","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34357,"modificationDate":"2014-10-10"}, -{"geonameId":"3697033","name":"Ferreñafe","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":34357,"modificationDate":"2012-07-19"}, -{"geonameId":"11549791","name":"el Camp d'en Grassot i Gràcia Nova","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":34356,"modificationDate":"2017-05-24"}, -{"geonameId":"2649578","name":"Felling","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":34355,"modificationDate":"2011-03-03"}, -{"geonameId":"1862505","name":"Hirara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":34354,"modificationDate":"2018-02-23"}, -{"geonameId":"1014489","name":"Butterworth","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":34353,"modificationDate":"2012-07-12"}, -{"geonameId":"3088461","name":"Police","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":34350,"modificationDate":"2010-09-21"}, -{"geonameId":"1269488","name":"Jaito","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34346,"modificationDate":"2018-12-04"}, -{"geonameId":"5773304","name":"Cottonwood Heights","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":34343,"modificationDate":"2017-03-09"}, -{"geonameId":"1863592","name":"Gojō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":34342,"modificationDate":"2017-07-22"}, -{"geonameId":"548625","name":"Kinel’","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":34336,"modificationDate":"2012-02-28"}, -{"geonameId":"160660","name":"Chalinze","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":34335,"modificationDate":"2016-07-26"}, -{"geonameId":"4624180","name":"Gallatin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":34334,"modificationDate":"2017-03-09"}, -{"geonameId":"3595069","name":"Jutiapa","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":34332,"modificationDate":"2018-04-23"}, -{"geonameId":"3472338","name":"Américo Brasiliense","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34331,"modificationDate":"2012-08-03"}, -{"geonameId":"3390901","name":"Quixeramobim","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34321,"modificationDate":"2012-08-03"}, -{"geonameId":"1849647","name":"Tsuma","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":34318,"modificationDate":"2017-04-09"}, -{"geonameId":"186180","name":"Moyale","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":34314,"modificationDate":"2018-11-09"}, -{"geonameId":"1702077","name":"Manapla","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":34312,"modificationDate":"2017-12-13"}, -{"geonameId":"3101057","name":"Czeladź","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":34308,"modificationDate":"2011-07-31"}, -{"geonameId":"1271363","name":"Gharaunda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34307,"modificationDate":"2015-01-07"}, -{"geonameId":"489088","name":"Staraya Russa","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":34303,"modificationDate":"2012-01-17"}, -{"geonameId":"2836809","name":"Schönebeck","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":34301,"modificationDate":"2015-12-11"}, -{"geonameId":"1168015","name":"Pindi Gheb","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":34301,"modificationDate":"2019-12-06"}, -{"geonameId":"1842016","name":"Kunwi","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":34293,"modificationDate":"2012-01-18"}, -{"geonameId":"161312","name":"Babati","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":34291,"modificationDate":"2016-07-26"}, -{"geonameId":"2823708","name":"Tegel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":34287,"modificationDate":"2020-04-01"}, -{"geonameId":"4328010","name":"Houma","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":34287,"modificationDate":"2017-03-09"}, -{"geonameId":"3017341","name":"Franconville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":34284,"modificationDate":"2019-03-26"}, -{"geonameId":"2652513","name":"Colwyn Bay","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":34284,"modificationDate":"2017-06-12"}, -{"geonameId":"3068873","name":"Orlová","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":34282,"modificationDate":"2019-03-20"}, -{"geonameId":"4013710","name":"José Mariano Jiménez","countryName":"Mexico","timeZoneName":"America/Chihuahua","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":34281,"modificationDate":"2018-11-03"}, -{"geonameId":"5389213","name":"Rubidoux","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":34280,"modificationDate":"2011-05-14"}, -{"geonameId":"2206854","name":"Gisborne","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":34274,"modificationDate":"2011-08-01"}, -{"geonameId":"2383119","name":"Sibut","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":34267,"modificationDate":"2016-06-22"}, -{"geonameId":"3183284","name":"Alghero","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":34261,"modificationDate":"2015-08-10"}, -{"geonameId":"789403","name":"Kochani","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":34258,"modificationDate":"2011-08-15"}, -{"geonameId":"3450206","name":"Santa Helena de Goiás","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34254,"modificationDate":"2012-08-03"}, -{"geonameId":"1249931","name":"Beruwala","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":34250,"modificationDate":"2018-12-31"}, -{"geonameId":"2045311","name":"Aoji","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":34248,"modificationDate":"2019-09-05"}, -{"geonameId":"2664996","name":"Varberg","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":34248,"modificationDate":"2019-09-05"}, -{"geonameId":"314188","name":"Göksun","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":34243,"modificationDate":"2012-01-18"}, -{"geonameId":"6691227","name":"Radcliffe","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":34239,"modificationDate":"2012-04-30"}, -{"geonameId":"1863426","name":"Katsuren-haebaru","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":34239,"modificationDate":"2017-04-09"}, -{"geonameId":"576116","name":"Blagoveshchensk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":34238,"modificationDate":"2019-09-05"}, -{"geonameId":"3471949","name":"Aparecida","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34237,"modificationDate":"2012-08-03"}, -{"geonameId":"1688859","name":"San Nicolas","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":34237,"modificationDate":"2017-12-13"}, -{"geonameId":"8858094","name":"Pórticos de San Antonio","countryName":"Mexico","timeZoneName":"America/Tijuana","timeZoneOffsetNameWithoutDst":"Pacific Time","population":34234,"modificationDate":"2014-04-11"}, -{"geonameId":"3172472","name":"Mugnano di Napoli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":34231,"modificationDate":"2014-04-13"}, -{"geonameId":"164816","name":"Seraqib","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34231,"modificationDate":"2020-06-10"}, -{"geonameId":"1850834","name":"Takeo","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":34230,"modificationDate":"2020-05-09"}, -{"geonameId":"5150792","name":"Collinwood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34220,"modificationDate":"2017-12-14"}, -{"geonameId":"1690321","name":"San Antonio","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":34217,"modificationDate":"2017-12-13"}, -{"geonameId":"319104","name":"Çay","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":34215,"modificationDate":"2013-08-06"}, -{"geonameId":"1266385","name":"Methala","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34210,"modificationDate":"2020-06-10"}, -{"geonameId":"4832038","name":"Glendale Heights","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":34208,"modificationDate":"2017-05-23"}, -{"geonameId":"235715","name":"Karonga","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":34207,"modificationDate":"2011-04-25"}, -{"geonameId":"3653873","name":"Naranjito","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":34206,"modificationDate":"2018-07-04"}, -{"geonameId":"3175298","name":"Ladispoli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":34204,"modificationDate":"2015-08-10"}, -{"geonameId":"76991","name":"Beit Faqih","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":34204,"modificationDate":"2020-06-10"}, -{"geonameId":"3170676","name":"Pioltello","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":34203,"modificationDate":"2015-08-10"}, -{"geonameId":"2871845","name":"Meppen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":34198,"modificationDate":"2015-09-05"}, -{"geonameId":"5642934","name":"Butte","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":34190,"modificationDate":"2011-03-02"}, -{"geonameId":"1632859","name":"Pandaan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":34184,"modificationDate":"2013-06-05"}, -{"geonameId":"5341483","name":"Dana Point","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":34181,"modificationDate":"2017-03-09"}, -{"geonameId":"147982","name":"Imishli","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":34178,"modificationDate":"2013-06-26"}, -{"geonameId":"1185218","name":"Gafargaon","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":34177,"modificationDate":"2020-02-12"}, -{"geonameId":"4101241","name":"Benton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":34177,"modificationDate":"2017-05-23"}, -{"geonameId":"3044760","name":"Szekszárd","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":34174,"modificationDate":"2019-09-05"}, -{"geonameId":"4095415","name":"Vestavia Hills","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":34174,"modificationDate":"2017-03-09"}, -{"geonameId":"3670475","name":"Sabaneta","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":34172,"modificationDate":"2016-01-28"}, -{"geonameId":"2635603","name":"Totton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":34169,"modificationDate":"2018-07-03"}, -{"geonameId":"5364059","name":"La Presa","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":34169,"modificationDate":"2011-05-14"}, -{"geonameId":"8358563","name":"Ágioi Anárgyroi","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34168,"modificationDate":"2019-10-23"}, -{"geonameId":"3099828","name":"Dzierżoniów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":34168,"modificationDate":"2016-09-01"}, -{"geonameId":"2483968","name":"Ras el Ayoun","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":34167,"modificationDate":"2020-06-11"}, -{"geonameId":"4776970","name":"Oakton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34166,"modificationDate":"2011-05-14"}, -{"geonameId":"1278139","name":"Ausa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34161,"modificationDate":"2014-10-13"}, -{"geonameId":"3168854","name":"Rovereto","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":34152,"modificationDate":"2015-08-10"}, -{"geonameId":"3515887","name":"Tepeji","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":34151,"modificationDate":"2020-06-10"}, -{"geonameId":"3449053","name":"São Gotardo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34145,"modificationDate":"2012-08-03"}, -{"geonameId":"1270455","name":"Hamīrpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34144,"modificationDate":"2015-10-04"}, -{"geonameId":"3456735","name":"Morrinhos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34143,"modificationDate":"2012-08-03"}, -{"geonameId":"1491706","name":"Slavgorod","countryName":"Russia","timeZoneName":"Asia/Barnaul","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":34141,"modificationDate":"2019-09-05"}, -{"geonameId":"2503654","name":"Bordj Ghdir","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":34136,"modificationDate":"2018-10-01"}, -{"geonameId":"1269053","name":"Jhābua","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34135,"modificationDate":"2015-10-04"}, -{"geonameId":"1261639","name":"Nawābganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34134,"modificationDate":"2015-10-04"}, -{"geonameId":"3401703","name":"Coroatá","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34129,"modificationDate":"2012-08-03"}, -{"geonameId":"1162275","name":"Zahir Pir","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":34121,"modificationDate":"2019-12-06"}, -{"geonameId":"3925075","name":"Guajará Mirim","countryName":"Brazil","timeZoneName":"America/Porto_Velho","timeZoneOffsetNameWithoutDst":"Amazon Time","population":34119,"modificationDate":"2017-10-02"}, -{"geonameId":"2855525","name":"Papenburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":34117,"modificationDate":"2015-09-05"}, -{"geonameId":"1071296","name":"Antalaha","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":34112,"modificationDate":"2018-09-10"}, -{"geonameId":"3542455","name":"Remedios","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":34108,"modificationDate":"2016-01-07"}, -{"geonameId":"3587426","name":"Ahuachapán","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":34102,"modificationDate":"2018-03-17"}, -{"geonameId":"264516","name":"Argyroúpoli","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":34097,"modificationDate":"2019-10-23"}, -{"geonameId":"134602","name":"Fereidun Kenar","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":34097,"modificationDate":"2020-06-10"}, -{"geonameId":"1256119","name":"Sinnar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34095,"modificationDate":"2014-10-13"}, -{"geonameId":"3461995","name":"Guaíra","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34092,"modificationDate":"2012-08-03"}, -{"geonameId":"1259931","name":"Pen","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34092,"modificationDate":"2014-10-13"}, -{"geonameId":"4557137","name":"Chester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34092,"modificationDate":"2017-05-23"}, -{"geonameId":"3595248","name":"Jacaltenango","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":34084,"modificationDate":"2017-03-04"}, -{"geonameId":"328716","name":"Shakiso","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":34078,"modificationDate":"2017-09-13"}, -{"geonameId":"1269751","name":"Indi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34075,"modificationDate":"2014-10-14"}, -{"geonameId":"3160881","name":"Bodø","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":34073,"modificationDate":"2019-09-05"}, -{"geonameId":"3457359","name":"Medianeira","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34069,"modificationDate":"2012-08-03"}, -{"geonameId":"4564946","name":"Fajardo","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":34068,"modificationDate":"2015-08-03"}, -{"geonameId":"538340","name":"Kushva","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":34058,"modificationDate":"2019-09-05"}, -{"geonameId":"2042498","name":"Ranam","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":34055,"modificationDate":"2020-01-09"}, -{"geonameId":"3386279","name":"Tomé Açu","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34053,"modificationDate":"2012-08-03"}, -{"geonameId":"5804127","name":"Mount Vernon","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":34053,"modificationDate":"2017-03-09"}, -{"geonameId":"1179450","name":"Dunyapur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":34044,"modificationDate":"2019-12-06"}, -{"geonameId":"161154","name":"Biharamulo","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":34038,"modificationDate":"2016-07-26"}, -{"geonameId":"3530513","name":"Coatzintla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":34036,"modificationDate":"2018-11-03"}, -{"geonameId":"5399438","name":"Studio City","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":34034,"modificationDate":"2018-06-08"}, -{"geonameId":"1631637","name":"Pemangkat","countryName":"Indonesia","timeZoneName":"Asia/Pontianak","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":34029,"modificationDate":"2013-10-29"}, -{"geonameId":"3452320","name":"Presidente Venceslau","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":34026,"modificationDate":"2012-08-03"}, -{"geonameId":"1260406","name":"Pāppinisshēri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34025,"modificationDate":"2015-11-08"}, -{"geonameId":"1262843","name":"Mokokshung","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34021,"modificationDate":"2020-06-10"}, -{"geonameId":"1731528","name":"Aliaga","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":34020,"modificationDate":"2017-12-13"}, -{"geonameId":"4489985","name":"Salisbury","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34017,"modificationDate":"2017-05-23"}, -{"geonameId":"2921528","name":"Geldern","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":34013,"modificationDate":"2020-05-25"}, -{"geonameId":"1256989","name":"Sathyamangalam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34011,"modificationDate":"2014-10-14"}, -{"geonameId":"1271911","name":"Fatehpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":34010,"modificationDate":"2015-09-06"}, -{"geonameId":"2891951","name":"Kehl","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":34009,"modificationDate":"2013-02-16"}, -{"geonameId":"2271961","name":"Almada","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":34008,"modificationDate":"2014-04-06"}, -{"geonameId":"1179061","name":"Gambat","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":34005,"modificationDate":"2019-12-06"}, -{"geonameId":"4170174","name":"Riviera Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":34005,"modificationDate":"2017-03-09"}, -{"geonameId":"478130","name":"Uste Dzhegutinskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":34001,"modificationDate":"2020-06-10"}, -{"geonameId":"6693230","name":"Villa Santa Rita","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":34000,"modificationDate":"2017-05-08"}, -{"geonameId":"2817783","name":"Vegesack","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":34000,"modificationDate":"2018-11-24"}, -{"geonameId":"8299649","name":"Pandan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":34000,"modificationDate":"2017-12-13"}, -{"geonameId":"2802960","name":"Auderghem","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":33984,"modificationDate":"2020-05-25"}, -{"geonameId":"3671540","name":"Puerto Berrío","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":33983,"modificationDate":"2018-06-08"}, -{"geonameId":"6074409","name":"Mimico","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33964,"modificationDate":"2020-05-02"}, -{"geonameId":"5379566","name":"Orangevale","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":33960,"modificationDate":"2011-05-14"}, -{"geonameId":"4904996","name":"Oswego","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":33955,"modificationDate":"2017-05-23"}, -{"geonameId":"2471637","name":"Dar Chabanne","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":33953,"modificationDate":"2018-08-05"}, -{"geonameId":"2276086","name":"Kakata","countryName":"Liberia","timeZoneName":"Africa/Monrovia","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33945,"modificationDate":"2015-05-06"}, -{"geonameId":"3406442","name":"Barbalha","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":33943,"modificationDate":"2012-08-03"}, -{"geonameId":"5293996","name":"El Mirage","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":33935,"modificationDate":"2017-03-09"}, -{"geonameId":"149792","name":"Somanda","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":33932,"modificationDate":"2016-07-26"}, -{"geonameId":"5815538","name":"West Lake Sammamish","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":33929,"modificationDate":"2006-01-17"}, -{"geonameId":"3617448","name":"Ocotal","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":33928,"modificationDate":"2012-01-14"}, -{"geonameId":"3442727","name":"Durazno","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":33926,"modificationDate":"2015-10-05"}, -{"geonameId":"4363836","name":"North Bel Air","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33925,"modificationDate":"2010-09-05"}, -{"geonameId":"4932869","name":"Chelmsford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33925,"modificationDate":"2017-05-23"}, -{"geonameId":"4985180","name":"Bay City","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33917,"modificationDate":"2017-05-23"}, -{"geonameId":"2894553","name":"Jülich","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":33911,"modificationDate":"2015-09-05"}, -{"geonameId":"2360886","name":"Fada N'gourma","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33910,"modificationDate":"2013-05-18"}, -{"geonameId":"3472609","name":"Além Paraíba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":33907,"modificationDate":"2012-08-03"}, -{"geonameId":"627905","name":"Horki","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":33897,"modificationDate":"2019-09-05"}, -{"geonameId":"4713735","name":"Nacogdoches","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":33894,"modificationDate":"2017-03-09"}, -{"geonameId":"4950898","name":"Shrewsbury","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33893,"modificationDate":"2017-05-23"}, -{"geonameId":"5739936","name":"McMinnville","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":33892,"modificationDate":"2017-03-09"}, -{"geonameId":"2484846","name":"Ouled Mimoun","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":33888,"modificationDate":"2012-07-24"}, -{"geonameId":"2653086","name":"Chorley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33888,"modificationDate":"2012-08-10"}, -{"geonameId":"2879697","name":"Leer","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":33886,"modificationDate":"2015-09-05"}, -{"geonameId":"2753355","name":"IJsselstein","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":33886,"modificationDate":"2017-10-17"}, -{"geonameId":"2618415","name":"Køge","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":33885,"modificationDate":"2017-10-18"}, -{"geonameId":"4885565","name":"Bridgeport","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":33878,"modificationDate":"2017-12-14"}, -{"geonameId":"100926","name":"Umluj","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":33874,"modificationDate":"2020-02-07"}, -{"geonameId":"161218","name":"Bariadi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":33865,"modificationDate":"2016-07-26"}, -{"geonameId":"2658761","name":"Schaffhausen","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":33863,"modificationDate":"2014-03-06"}, -{"geonameId":"3496021","name":"Nagua","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":33862,"modificationDate":"2016-06-05"}, -{"geonameId":"62691","name":"Ceerigaabo","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":33853,"modificationDate":"2012-01-16"}, -{"geonameId":"4190581","name":"Dalton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33853,"modificationDate":"2017-03-09"}, -{"geonameId":"1270750","name":"Guledagudda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33851,"modificationDate":"2014-10-14"}, -{"geonameId":"2655729","name":"Bicester","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33846,"modificationDate":"2018-07-03"}, -{"geonameId":"2647248","name":"Haywards Heath","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33845,"modificationDate":"2018-07-03"}, -{"geonameId":"1701124","name":"Maramag","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":33844,"modificationDate":"2017-12-13"}, -{"geonameId":"4364537","name":"Olney","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33844,"modificationDate":"2011-05-14"}, -{"geonameId":"3469932","name":"Boa Esperança","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":33840,"modificationDate":"2012-08-03"}, -{"geonameId":"1263151","name":"Melur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33839,"modificationDate":"2014-10-14"}, -{"geonameId":"3676720","name":"La Virginia","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":33835,"modificationDate":"2018-09-05"}, -{"geonameId":"5223681","name":"North Providence","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33835,"modificationDate":"2013-08-25"}, -{"geonameId":"2470579","name":"Hammam Sousse","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":33834,"modificationDate":"2018-08-05"}, -{"geonameId":"201865","name":"Nzega","countryName":"Rwanda","timeZoneName":"Africa/Kigali","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":33832,"modificationDate":"2016-07-06"}, -{"geonameId":"7279747","name":"Bhiwadi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33831,"modificationDate":"2014-10-14"}, -{"geonameId":"6295548","name":"Zürich (Kreis 7)","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":33820,"modificationDate":"2012-07-30"}, -{"geonameId":"2877648","name":"Limburg an der Lahn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":33820,"modificationDate":"2019-09-05"}, -{"geonameId":"54715","name":"Luuq","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":33820,"modificationDate":"2014-11-02"}, -{"geonameId":"3993335","name":"Parras de la Fuente","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":33817,"modificationDate":"2018-11-03"}, -{"geonameId":"4143861","name":"Newark","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33817,"modificationDate":"2017-03-09"}, -{"geonameId":"8097131","name":"Oak Hill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33811,"modificationDate":"2012-05-23"}, -{"geonameId":"4685737","name":"Deer Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":33806,"modificationDate":"2017-03-09"}, -{"geonameId":"3548529","name":"Madruga","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":33798,"modificationDate":"2015-12-06"}, -{"geonameId":"2509588","name":"Villajoyosa","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":33797,"modificationDate":"2013-07-22"}, -{"geonameId":"3180224","name":"Casalecchio di Reno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":33789,"modificationDate":"2014-04-13"}, -{"geonameId":"2265432","name":"Olivais","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":33788,"modificationDate":"2018-03-15"}, -{"geonameId":"2794210","name":"Knokke-Heist","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":33781,"modificationDate":"2012-01-18"}, -{"geonameId":"1270598","name":"Guskhara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33780,"modificationDate":"2014-10-14"}, -{"geonameId":"1256214","name":"Sindgi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33770,"modificationDate":"2015-08-07"}, -{"geonameId":"3587362","name":"Antiguo Cuscatlán","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":33767,"modificationDate":"2014-07-20"}, -{"geonameId":"3446465","name":"Timbó","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":33765,"modificationDate":"2012-08-03"}, -{"geonameId":"763523","name":"Nowy Targ","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":33763,"modificationDate":"2010-10-30"}, -{"geonameId":"3110921","name":"Sant Adrià de Besòs","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":33761,"modificationDate":"2010-04-22"}, -{"geonameId":"682747","name":"Caracal","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":33761,"modificationDate":"2012-06-12"}, -{"geonameId":"1261748","name":"Narsīpatnam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33755,"modificationDate":"2015-09-06"}, -{"geonameId":"1269827","name":"Ichekapuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33754,"modificationDate":"2020-06-10"}, -{"geonameId":"1277808","name":"Bahjoi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33752,"modificationDate":"2015-08-07"}, -{"geonameId":"1254133","name":"Tuensang","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33748,"modificationDate":"2014-10-14"}, -{"geonameId":"2473470","name":"Gremda","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":33744,"modificationDate":"2018-03-22"}, -{"geonameId":"4996248","name":"Holland","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33742,"modificationDate":"2017-05-23"}, -{"geonameId":"2646032","name":"Irvine","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33740,"modificationDate":"2017-06-15"}, -{"geonameId":"3166917","name":"Schio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":33740,"modificationDate":"2014-04-13"}, -{"geonameId":"8858095","name":"San Isidro","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":33737,"modificationDate":"2014-04-11"}, -{"geonameId":"3514148","name":"Zacatlan de las Manzanas","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":33736,"modificationDate":"2020-06-10"}, -{"geonameId":"1231410","name":"Panadura","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":33735,"modificationDate":"2018-12-30"}, -{"geonameId":"1174653","name":"Kashmor","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":33732,"modificationDate":"2019-12-06"}, -{"geonameId":"304782","name":"Marmaris","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":33731,"modificationDate":"2015-02-07"}, -{"geonameId":"2633936","name":"Wigston Magna","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33720,"modificationDate":"2015-04-24"}, -{"geonameId":"1272874","name":"Dharangaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33718,"modificationDate":"2015-09-06"}, -{"geonameId":"1711829","name":"Hermosa","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":33714,"modificationDate":"2017-12-13"}, -{"geonameId":"3450188","name":"Santa Isabel","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":33709,"modificationDate":"2012-09-27"}, -{"geonameId":"2919625","name":"Goch","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":33706,"modificationDate":"2017-09-20"}, -{"geonameId":"129512","name":"Kalāleh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":33700,"modificationDate":"2017-02-08"}, -{"geonameId":"1511368","name":"Yegorshinskiye Kopi","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":33700,"modificationDate":"2020-06-10"}, -{"geonameId":"6417459","name":"Krasnoznamensk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":33700,"modificationDate":"2019-01-18"}, -{"geonameId":"935227","name":"Saint-Joseph","countryName":"Reunion","timeZoneName":"Indian/Reunion","timeZoneOffsetNameWithoutDst":"Réunion Time","population":33694,"modificationDate":"2018-06-08"}, -{"geonameId":"3175121","name":"L'Aquila","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":33691,"modificationDate":"2017-09-28"}, -{"geonameId":"2980558","name":"Sainte-Geneviève-des-Bois","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":33689,"modificationDate":"2016-02-18"}, -{"geonameId":"3608503","name":"Juticalpa","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":33686,"modificationDate":"2019-05-23"}, -{"geonameId":"2995150","name":"Maubeuge","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":33684,"modificationDate":"2016-02-18"}, -{"geonameId":"1639286","name":"Kuala Tungkal","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":33683,"modificationDate":"2016-01-07"}, -{"geonameId":"5140945","name":"Throgs Neck","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33683,"modificationDate":"2017-04-16"}, -{"geonameId":"3178004","name":"Corsico","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":33669,"modificationDate":"2014-01-16"}, -{"geonameId":"1625708","name":"Tabanan","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":33667,"modificationDate":"2007-11-09"}, -{"geonameId":"4904056","name":"Northbrook","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":33663,"modificationDate":"2017-05-23"}, -{"geonameId":"3462535","name":"Gaspar","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":33658,"modificationDate":"2012-08-03"}, -{"geonameId":"2077963","name":"Albany","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":33650,"modificationDate":"2019-07-21"}, -{"geonameId":"5157588","name":"Hilliard","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33649,"modificationDate":"2017-05-23"}, -{"geonameId":"3534761","name":"Union Reyes","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":33646,"modificationDate":"2020-06-10"}, -{"geonameId":"6545114","name":"el Poblenou","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":33642,"modificationDate":"2017-05-26"}, -{"geonameId":"5815342","name":"Wenatchee","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":33636,"modificationDate":"2017-12-31"}, -{"geonameId":"3617154","name":"Puerto Cabezas","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":33635,"modificationDate":"2014-10-17"}, -{"geonameId":"418723","name":"Kelīshād va Sūdarjān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":33630,"modificationDate":"2014-10-02"}, -{"geonameId":"2090409","name":"Mount Hagen","countryName":"Papua New Guinea","timeZoneName":"Pacific/Port_Moresby","timeZoneOffsetNameWithoutDst":"Papua New Guinea Time","population":33623,"modificationDate":"2019-02-27"}, -{"geonameId":"2786963","name":"Schoten","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":33622,"modificationDate":"2011-02-11"}, -{"geonameId":"509987","name":"Petrovsk","countryName":"Russia","timeZoneName":"Europe/Saratov","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":33622,"modificationDate":"2019-09-05"}, -{"geonameId":"3354021","name":"Oshakati","countryName":"Namibia","timeZoneName":"Africa/Windhoek","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":33618,"modificationDate":"2017-08-18"}, -{"geonameId":"1259264","name":"Pulivendla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33615,"modificationDate":"2018-12-04"}, -{"geonameId":"2504703","name":"Beni Douala","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":33611,"modificationDate":"2012-01-19"}, -{"geonameId":"3862240","name":"Caucete","countryName":"Argentina","timeZoneName":"America/Argentina/San_Juan","timeZoneOffsetNameWithoutDst":"Argentina Time","population":33609,"modificationDate":"2016-01-30"}, -{"geonameId":"418868","name":"Dowlatābād","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":33607,"modificationDate":"2014-09-06"}, -{"geonameId":"1638217","name":"Lebaksiu","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":33606,"modificationDate":"2012-01-17"}, -{"geonameId":"1732602","name":"Jerantut","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":33606,"modificationDate":"2012-01-17"}, -{"geonameId":"1184655","name":"Alipur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":33601,"modificationDate":"2019-12-06"}, -{"geonameId":"3336892","name":"Ostfildern","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":33598,"modificationDate":"2011-04-25"}, -{"geonameId":"5062458","name":"West Fargo","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":33597,"modificationDate":"2017-05-23"}, -{"geonameId":"5097773","name":"Fair Lawn","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33597,"modificationDate":"2017-05-23"}, -{"geonameId":"1702763","name":"Malilipot","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":33593,"modificationDate":"2017-12-13"}, -{"geonameId":"3669808","name":"San Gil","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":33592,"modificationDate":"2015-01-13"}, -{"geonameId":"2467920","name":"Korba","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":33589,"modificationDate":"2018-08-05"}, -{"geonameId":"2521893","name":"Almendralejo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":33588,"modificationDate":"2012-03-04"}, -{"geonameId":"3448545","name":"São Manuel","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":33587,"modificationDate":"2012-08-03"}, -{"geonameId":"4203696","name":"Kennesaw","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33584,"modificationDate":"2017-03-09"}, -{"geonameId":"1259961","name":"Peddapalli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33582,"modificationDate":"2018-05-28"}, -{"geonameId":"1638870","name":"Labuan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":33576,"modificationDate":"2012-01-17"}, -{"geonameId":"2110893","name":"Takahagi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":33576,"modificationDate":"2017-07-22"}, -{"geonameId":"3928679","name":"Sicuani","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":33575,"modificationDate":"2018-04-28"}, -{"geonameId":"264888","name":"Áno Liósia","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":33565,"modificationDate":"2019-10-23"}, -{"geonameId":"1857651","name":"Maruoka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":33563,"modificationDate":"2017-04-09"}, -{"geonameId":"3167419","name":"Sant'Antimo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":33561,"modificationDate":"2014-04-13"}, -{"geonameId":"1725991","name":"Bauan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":33560,"modificationDate":"2017-12-13"}, -{"geonameId":"5128481","name":"New City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33559,"modificationDate":"2017-05-23"}, -{"geonameId":"295328","name":"Dimona","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":33558,"modificationDate":"2017-07-05"}, -{"geonameId":"2634616","name":"Wednesfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33555,"modificationDate":"2015-02-17"}, -{"geonameId":"5125086","name":"Long Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33550,"modificationDate":"2017-05-23"}, -{"geonameId":"1725919","name":"Bay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":33547,"modificationDate":"2017-12-13"}, -{"geonameId":"1635164","name":"Mlonggo","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":33542,"modificationDate":"2018-12-04"}, -{"geonameId":"1264540","name":"Madikeri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33540,"modificationDate":"2014-10-14"}, -{"geonameId":"1234378","name":"Mulleriyawa","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":33540,"modificationDate":"2018-12-30"}, -{"geonameId":"2923588","name":"Fürstenwalde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":33539,"modificationDate":"2015-09-05"}, -{"geonameId":"1266164","name":"Kopāganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33539,"modificationDate":"2015-09-06"}, -{"geonameId":"2110460","name":"Yuzawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":33536,"modificationDate":"2017-07-22"}, -{"geonameId":"3712455","name":"Chilibre","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33536,"modificationDate":"2015-04-08"}, -{"geonameId":"7091912","name":"Ban Ratsada","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":33534,"modificationDate":"2010-06-08"}, -{"geonameId":"2923625","name":"Fürstenfeldbruck","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":33533,"modificationDate":"2019-09-05"}, -{"geonameId":"4305974","name":"Richmond","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33533,"modificationDate":"2017-03-09"}, -{"geonameId":"3164617","name":"Venaria Reale","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":33531,"modificationDate":"2014-04-13"}, -{"geonameId":"3467530","name":"Canela","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":33528,"modificationDate":"2014-10-24"}, -{"geonameId":"3115093","name":"Olot","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":33524,"modificationDate":"2012-03-04"}, -{"geonameId":"1268266","name":"Kāman","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33524,"modificationDate":"2014-10-14"}, -{"geonameId":"3089779","name":"Ostróda","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":33524,"modificationDate":"2010-10-16"}, -{"geonameId":"378271","name":"Es Suki","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":33524,"modificationDate":"2020-06-11"}, -{"geonameId":"1151074","name":"Prachuap Khiri Khan","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":33521,"modificationDate":"2015-03-04"}, -{"geonameId":"2929715","name":"Erding","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":33519,"modificationDate":"2017-12-28"}, -{"geonameId":"3429902","name":"Pontevedra","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":33515,"modificationDate":"2016-05-07"}, -{"geonameId":"7259061","name":"Suitland-Silver Hill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33515,"modificationDate":"2017-12-14"}, -{"geonameId":"4351383","name":"Chillum","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33513,"modificationDate":"2018-10-12"}, -{"geonameId":"136399","name":"Delījān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":33508,"modificationDate":"2014-09-04"}, -{"geonameId":"3035403","name":"Bagnolet","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":33504,"modificationDate":"2016-02-18"}, -{"geonameId":"496275","name":"Petropavlovskoye","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":33500,"modificationDate":"2020-06-10"}, -{"geonameId":"1254673","name":"Thāna Bhawan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33498,"modificationDate":"2015-04-08"}, -{"geonameId":"1253698","name":"Uravakonda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33495,"modificationDate":"2017-09-05"}, -{"geonameId":"3672093","name":"Pivijay","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":33492,"modificationDate":"2018-08-08"}, -{"geonameId":"1516788","name":"Zhangatas","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":33492,"modificationDate":"2015-08-07"}, -{"geonameId":"1525988","name":"Ayaguz","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":33479,"modificationDate":"2020-04-08"}, -{"geonameId":"2269514","name":"Castelo Branco","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":33479,"modificationDate":"2012-01-17"}, -{"geonameId":"5350159","name":"Foster City","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":33477,"modificationDate":"2017-03-09"}, -{"geonameId":"1276621","name":"Begamganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33467,"modificationDate":"2015-04-08"}, -{"geonameId":"1689129","name":"San Luis","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":33467,"modificationDate":"2017-12-13"}, -{"geonameId":"1169187","name":"Naudero","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":33455,"modificationDate":"2019-12-06"}, -{"geonameId":"3116527","name":"Montcada i Reixac","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":33453,"modificationDate":"2010-04-22"}, -{"geonameId":"3173577","name":"Merano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":33453,"modificationDate":"2017-09-19"}, -{"geonameId":"4511263","name":"Fairborn","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33452,"modificationDate":"2017-05-23"}, -{"geonameId":"5372223","name":"Menlo Park","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":33449,"modificationDate":"2017-03-09"}, -{"geonameId":"3115177","name":"Oleiros","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":33443,"modificationDate":"2012-03-04"}, -{"geonameId":"8436065","name":"Chicago Loop","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":33442,"modificationDate":"2017-12-14"}, -{"geonameId":"2964661","name":"Drogheda","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33441,"modificationDate":"2012-02-28"}, -{"geonameId":"469844","name":"Yablonovskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":33431,"modificationDate":"2019-02-21"}, -{"geonameId":"5914132","name":"Campbell River","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":33430,"modificationDate":"2019-02-26"}, -{"geonameId":"5365603","name":"Lawndale","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":33430,"modificationDate":"2017-03-09"}, -{"geonameId":"337853","name":"Felege Neway","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":33429,"modificationDate":"2018-03-21"}, -{"geonameId":"2964540","name":"Dundalk","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33428,"modificationDate":"2012-03-01"}, -{"geonameId":"1241750","name":"Kandana","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":33424,"modificationDate":"2018-12-31"}, -{"geonameId":"2467521","name":"La Sebala du Mornag","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":33421,"modificationDate":"2019-04-11"}, -{"geonameId":"2779674","name":"Feldkirch","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":33420,"modificationDate":"2018-07-28"}, -{"geonameId":"1273448","name":"Darsi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33418,"modificationDate":"2017-12-14"}, -{"geonameId":"3176603","name":"Francavilla Fontana","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":33415,"modificationDate":"2014-04-13"}, -{"geonameId":"547849","name":"Kizilyurt","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":33411,"modificationDate":"2019-01-09"}, -{"geonameId":"1272022","name":"Eratupeta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33408,"modificationDate":"2020-06-10"}, -{"geonameId":"2885397","name":"Korschenbroich","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":33406,"modificationDate":"2015-09-05"}, -{"geonameId":"1261800","name":"Nargund","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33403,"modificationDate":"2014-10-14"}, -{"geonameId":"4200671","name":"Hinesville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33398,"modificationDate":"2017-07-14"}, -{"geonameId":"1252698","name":"Zaidpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33397,"modificationDate":"2015-08-07"}, -{"geonameId":"523405","name":"Nartkala","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":33390,"modificationDate":"2019-09-05"}, -{"geonameId":"555746","name":"Istra","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":33390,"modificationDate":"2012-01-17"}, -{"geonameId":"2756059","name":"Epe","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":33385,"modificationDate":"2017-10-17"}, -{"geonameId":"4740328","name":"Waxahachie","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":33384,"modificationDate":"2017-03-09"}, -{"geonameId":"2636619","name":"Strood","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33381,"modificationDate":"2015-07-12"}, -{"geonameId":"2301400","name":"Dunkwa","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33379,"modificationDate":"2019-12-06"}, -{"geonameId":"7259034","name":"St. Charles","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33379,"modificationDate":"2017-12-14"}, -{"geonameId":"4917089","name":"Woodridge","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":33370,"modificationDate":"2017-05-23"}, -{"geonameId":"1278768","name":"Āmli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33369,"modificationDate":"2020-05-14"}, -{"geonameId":"4150115","name":"Carrollwood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33365,"modificationDate":"2011-05-15"}, -{"geonameId":"1255870","name":"Sohna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33361,"modificationDate":"2014-10-13"}, -{"geonameId":"3471683","name":"Arcos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":33355,"modificationDate":"2012-08-03"}, -{"geonameId":"497927","name":"Segezha","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":33354,"modificationDate":"2015-12-12"}, -{"geonameId":"2514097","name":"Marratxí","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":33348,"modificationDate":"2015-10-27"}, -{"geonameId":"2633842","name":"Windsor","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33348,"modificationDate":"2017-06-12"}, -{"geonameId":"3936952","name":"La Oroya","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":33345,"modificationDate":"2012-07-19"}, -{"geonameId":"2367164","name":"Dapaong","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33324,"modificationDate":"2019-11-03"}, -{"geonameId":"2012484","name":"Zima","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":33323,"modificationDate":"2019-09-05"}, -{"geonameId":"1512501","name":"Uchkurgan","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":33323,"modificationDate":"2020-06-10"}, -{"geonameId":"3635325","name":"Tejerias","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":33320,"modificationDate":"2020-06-10"}, -{"geonameId":"1623424","name":"Tondano","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":33317,"modificationDate":"2016-01-07"}, -{"geonameId":"7932386","name":"Farmsen-Berne","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":33315,"modificationDate":"2017-08-14"}, -{"geonameId":"2272215","name":"Alcabideche","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":33315,"modificationDate":"2012-01-17"}, -{"geonameId":"3187719","name":"Vinkovci","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":33314,"modificationDate":"2016-06-06"}, -{"geonameId":"12156823","name":"West Humber-Clairville","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33312,"modificationDate":"2020-05-02"}, -{"geonameId":"3589105","name":"Santiago Atitlán","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":33309,"modificationDate":"2008-03-05"}, -{"geonameId":"1278510","name":"Anūpgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33309,"modificationDate":"2014-10-14"}, -{"geonameId":"984087","name":"Lebowakgomo","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":33308,"modificationDate":"2012-07-12"}, -{"geonameId":"1268855","name":"Jogbani","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33300,"modificationDate":"2016-02-11"}, -{"geonameId":"565778","name":"Dobryanka","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":33291,"modificationDate":"2015-07-07"}, -{"geonameId":"3871616","name":"Santa Cruz","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":33283,"modificationDate":"2013-01-11"}, -{"geonameId":"2650798","name":"Dumfries","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33280,"modificationDate":"2019-09-05"}, -{"geonameId":"3346015","name":"Sumbe","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":33277,"modificationDate":"2012-01-17"}, -{"geonameId":"1256537","name":"Shikārpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33273,"modificationDate":"2014-10-14"}, -{"geonameId":"1256705","name":"Shāhpura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33273,"modificationDate":"2014-10-14"}, -{"geonameId":"1265591","name":"Kunigal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33273,"modificationDate":"2014-10-14"}, -{"geonameId":"3091217","name":"Myszków","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":33273,"modificationDate":"2011-07-31"}, -{"geonameId":"2792397","name":"Lier","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":33272,"modificationDate":"2011-02-10"}, -{"geonameId":"1855363","name":"Nirasaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":33263,"modificationDate":"2017-07-22"}, -{"geonameId":"3531784","name":"Calpulalpan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":33263,"modificationDate":"2018-11-03"}, -{"geonameId":"6075292","name":"Mission","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":33261,"modificationDate":"2019-08-08"}, -{"geonameId":"2937040","name":"Dietzenbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":33256,"modificationDate":"2015-09-04"}, -{"geonameId":"3080231","name":"Zgorzelec","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":33247,"modificationDate":"2019-10-06"}, -{"geonameId":"1487394","name":"Verkhniy Ufaley","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":33245,"modificationDate":"2012-02-28"}, -{"geonameId":"2648405","name":"Glossop","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33243,"modificationDate":"2011-03-03"}, -{"geonameId":"3077835","name":"Cheb","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":33242,"modificationDate":"2019-09-05"}, -{"geonameId":"1219002","name":"Atamyrat","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":33242,"modificationDate":"2012-01-17"}, -{"geonameId":"593672","name":"Utena","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":33240,"modificationDate":"2019-09-05"}, -{"geonameId":"4890925","name":"Elk Grove Village","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":33238,"modificationDate":"2017-05-23"}, -{"geonameId":"8285452","name":"Ancaster","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33232,"modificationDate":"2012-05-07"}, -{"geonameId":"3468327","name":"Caeté","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":33231,"modificationDate":"2012-08-03"}, -{"geonameId":"1831133","name":"Kampong Speu","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":33231,"modificationDate":"2013-04-04"}, -{"geonameId":"1730398","name":"Aparri","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":33230,"modificationDate":"2017-12-13"}, -{"geonameId":"2975758","name":"Saumur","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":33229,"modificationDate":"2019-09-05"}, -{"geonameId":"4905599","name":"Pekin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":33223,"modificationDate":"2017-05-23"}, -{"geonameId":"5530932","name":"Socorro","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":33222,"modificationDate":"2017-03-09"}, -{"geonameId":"1266087","name":"Kosamba","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33221,"modificationDate":"2014-10-13"}, -{"geonameId":"2112455","name":"Kakuda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":33221,"modificationDate":"2017-07-22"}, -{"geonameId":"889942","name":"Hwange","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":33210,"modificationDate":"2014-11-16"}, -{"geonameId":"196231","name":"Isiolo","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":33207,"modificationDate":"2013-06-27"}, -{"geonameId":"563822","name":"Djatkowa","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":33200,"modificationDate":"2020-06-10"}, -{"geonameId":"5116508","name":"Elmont","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33198,"modificationDate":"2017-05-23"}, -{"geonameId":"882599","name":"Redcliff","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":33197,"modificationDate":"2013-03-12"}, -{"geonameId":"1862098","name":"Hotaka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":33195,"modificationDate":"2017-04-09"}, -{"geonameId":"1634266","name":"Negara","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":33191,"modificationDate":"2014-06-11"}, -{"geonameId":"3032797","name":"Biarritz","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":33188,"modificationDate":"2020-02-07"}, -{"geonameId":"2278682","name":"Bensonville","countryName":"Liberia","timeZoneName":"Africa/Monrovia","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33188,"modificationDate":"2015-07-03"}, -{"geonameId":"1262626","name":"Muhammadābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33186,"modificationDate":"2015-08-07"}, -{"geonameId":"689487","name":"Vyshneve","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":33183,"modificationDate":"2014-06-27"}, -{"geonameId":"2652095","name":"Cramlington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33180,"modificationDate":"2017-06-12"}, -{"geonameId":"3188893","name":"Trebinje","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":33178,"modificationDate":"2016-06-05"}, -{"geonameId":"1526979","name":"Quva","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":33167,"modificationDate":"2015-09-06"}, -{"geonameId":"5322400","name":"Adelanto","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":33166,"modificationDate":"2017-03-09"}, -{"geonameId":"1265220","name":"Lakhyabad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33162,"modificationDate":"2014-10-14"}, -{"geonameId":"174875","name":"Kapan","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":33160,"modificationDate":"2016-10-07"}, -{"geonameId":"2150894","name":"Rowville","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":33160,"modificationDate":"2019-07-18"}, -{"geonameId":"5783695","name":"Tooele","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":33157,"modificationDate":"2017-03-09"}, -{"geonameId":"343593","name":"Areka Ancheto","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":33150,"modificationDate":"2020-06-11"}, -{"geonameId":"2156492","name":"Mount Waverley","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":33149,"modificationDate":"2019-07-18"}, -{"geonameId":"2112940","name":"Fujishiro","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":33148,"modificationDate":"2017-04-09"}, -{"geonameId":"4156931","name":"Golden Glades","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33145,"modificationDate":"2011-05-14"}, -{"geonameId":"4332628","name":"Marrero","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":33141,"modificationDate":"2011-05-14"}, -{"geonameId":"3491948","name":"Villa Bisonó","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":33137,"modificationDate":"2016-06-05"}, -{"geonameId":"3620390","name":"Chichigalpa","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":33137,"modificationDate":"2018-08-08"}, -{"geonameId":"1830468","name":"Koh Kong","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":33134,"modificationDate":"2017-02-11"}, -{"geonameId":"4997384","name":"Jackson","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33133,"modificationDate":"2017-05-23"}, -{"geonameId":"1269020","name":"Jhālrapātan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33121,"modificationDate":"2014-10-14"}, -{"geonameId":"5349803","name":"Foothill Farms","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":33121,"modificationDate":"2011-05-14"}, -{"geonameId":"3433663","name":"Gualeguay","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":33120,"modificationDate":"2015-04-22"}, -{"geonameId":"3010025","name":"La Ciotat","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":33113,"modificationDate":"2016-02-18"}, -{"geonameId":"157107","name":"Kirando","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":33111,"modificationDate":"2018-12-04"}, -{"geonameId":"2176632","name":"Bathurst","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":33110,"modificationDate":"2019-07-20"}, -{"geonameId":"1168312","name":"Pasni","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":33110,"modificationDate":"2019-12-06"}, -{"geonameId":"2639866","name":"Pudsey","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33109,"modificationDate":"2013-07-11"}, -{"geonameId":"672486","name":"Năvodari","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":33106,"modificationDate":"2012-06-12"}, -{"geonameId":"505259","name":"Primorsko-Akhtarsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":33102,"modificationDate":"2019-09-05"}, -{"geonameId":"1256075","name":"Sīrkāzhi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33100,"modificationDate":"2014-10-14"}, -{"geonameId":"3175755","name":"Grugliasco","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":33100,"modificationDate":"2015-08-09"}, -{"geonameId":"1274532","name":"Chaksu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33098,"modificationDate":"2014-10-14"}, -{"geonameId":"149581","name":"Tarime","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":33094,"modificationDate":"2016-07-26"}, -{"geonameId":"3020495","name":"Échirolles","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":33088,"modificationDate":"2019-06-05"}, -{"geonameId":"5421250","name":"Englewood","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":33082,"modificationDate":"2018-07-03"}, -{"geonameId":"4683244","name":"Copperas Cove","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":33081,"modificationDate":"2017-03-09"}, -{"geonameId":"5108111","name":"Bath Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33080,"modificationDate":"2017-04-16"}, -{"geonameId":"1822610","name":"Prey Veng","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":33079,"modificationDate":"2013-08-04"}, -{"geonameId":"543605","name":"Kotovsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":33077,"modificationDate":"2019-09-05"}, -{"geonameId":"3449519","name":"Santo Antônio de Pádua","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":33076,"modificationDate":"2012-08-03"}, -{"geonameId":"2650285","name":"Ebbw Vale","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33068,"modificationDate":"2017-06-12"}, -{"geonameId":"3988327","name":"Ciudad Sabinas Hidalgo","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":33068,"modificationDate":"2018-11-03"}, -{"geonameId":"2641689","name":"Newbury","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":33065,"modificationDate":"2015-01-01"}, -{"geonameId":"2312249","name":"Mushie","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":33062,"modificationDate":"2018-12-04"}, -{"geonameId":"3181495","name":"Brugherio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":33061,"modificationDate":"2014-01-16"}, -{"geonameId":"1282884","name":"Rājbirāj","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":33061,"modificationDate":"2019-10-19"}, -{"geonameId":"1465622","name":"Porur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33060,"modificationDate":"2014-10-14"}, -{"geonameId":"725168","name":"Bardejov","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":33060,"modificationDate":"2019-09-05"}, -{"geonameId":"10062599","name":"Pašilaičiai","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":33056,"modificationDate":"2015-02-12"}, -{"geonameId":"2444489","name":"Gaya","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":33051,"modificationDate":"2013-10-06"}, -{"geonameId":"69559","name":"Yerim","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":33050,"modificationDate":"2020-06-10"}, -{"geonameId":"2895569","name":"Itzehoe","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":33047,"modificationDate":"2015-09-04"}, -{"geonameId":"3646869","name":"Cantaura","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":33040,"modificationDate":"2012-01-03"}, -{"geonameId":"3449176","name":"São Francisco","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":33033,"modificationDate":"2012-08-03"}, -{"geonameId":"5121650","name":"Huntington Station","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33029,"modificationDate":"2017-05-23"}, -{"geonameId":"5394136","name":"Seaside","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":33025,"modificationDate":"2015-06-15"}, -{"geonameId":"5071348","name":"Kearney","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":33021,"modificationDate":"2017-03-09"}, -{"geonameId":"1526265","name":"Aral","countryName":"Kazakhstan","timeZoneName":"Asia/Qyzylorda","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":33017,"modificationDate":"2020-03-07"}, -{"geonameId":"4218165","name":"Redan","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33015,"modificationDate":"2011-05-14"}, -{"geonameId":"5261585","name":"Manitowoc","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":33010,"modificationDate":"2017-05-23"}, -{"geonameId":"1276355","name":"Bhādāsar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":33006,"modificationDate":"2015-02-06"}, -{"geonameId":"580660","name":"Asha","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":33006,"modificationDate":"2012-01-17"}, -{"geonameId":"3458211","name":"Machado","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":33002,"modificationDate":"2012-08-03"}, -{"geonameId":"12070065","name":"Avvocata","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":33001,"modificationDate":"2019-07-22"}, -{"geonameId":"11594317","name":"Burglesum","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":33000,"modificationDate":"2017-09-20"}, -{"geonameId":"6698360","name":"BABOR - VILLE","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":33000,"modificationDate":"2019-03-13"}, -{"geonameId":"2514042","name":"Maspalomas","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":33000,"modificationDate":"2013-11-20"}, -{"geonameId":"2218963","name":"Zintan","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":33000,"modificationDate":"2016-04-15"}, -{"geonameId":"5144580","name":"Williamsburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":33000,"modificationDate":"2018-07-04"}, -{"geonameId":"341877","name":"Bodity","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":32997,"modificationDate":"2020-06-11"}, -{"geonameId":"1523741","name":"Esik","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":32995,"modificationDate":"2010-10-07"}, -{"geonameId":"2968748","name":"Villefranche","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":32994,"modificationDate":"2020-06-10"}, -{"geonameId":"1568770","name":"Kwang Ngai","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":32992,"modificationDate":"2020-06-09"}, -{"geonameId":"6051122","name":"Leamington","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32991,"modificationDate":"2019-08-08"}, -{"geonameId":"3046686","name":"Pápa","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":32990,"modificationDate":"2015-06-17"}, -{"geonameId":"2392108","name":"Pobé","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":32983,"modificationDate":"2018-10-10"}, -{"geonameId":"4920808","name":"Goshen","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32983,"modificationDate":"2019-09-17"}, -{"geonameId":"2486825","name":"Mouzaïa","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":32981,"modificationDate":"2012-01-19"}, -{"geonameId":"295130","name":"Tayibeh","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":32978,"modificationDate":"2020-06-10"}, -{"geonameId":"2633976","name":"Wickford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32975,"modificationDate":"2010-05-24"}, -{"geonameId":"2483761","name":"Reggane","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":32974,"modificationDate":"2019-08-12"}, -{"geonameId":"4908737","name":"Saint Charles","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":32974,"modificationDate":"2013-05-31"}, -{"geonameId":"2498667","name":"El Aouinet","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":32971,"modificationDate":"2012-01-19"}, -{"geonameId":"2148928","name":"Southport","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":32965,"modificationDate":"2019-07-18"}, -{"geonameId":"2993458","name":"Monaco","countryName":"Monaco","timeZoneName":"Europe/Monaco","timeZoneOffsetNameWithoutDst":"Central European Time","population":32965,"modificationDate":"2018-08-17"}, -{"geonameId":"4157467","name":"Greenacres City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32963,"modificationDate":"2006-01-17"}, -{"geonameId":"3444848","name":"Xanxerê","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":32957,"modificationDate":"2017-07-06"}, -{"geonameId":"3669218","name":"San Onofre","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":32957,"modificationDate":"2018-09-05"}, -{"geonameId":"1253013","name":"Wai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32957,"modificationDate":"2014-10-13"}, -{"geonameId":"12156853","name":"Mount Olive-Silverstone-Jamestown","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32954,"modificationDate":"2020-05-02"}, -{"geonameId":"1150732","name":"San Kamphaeng","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":32950,"modificationDate":"2012-01-16"}, -{"geonameId":"1269581","name":"Jagatsinghapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32945,"modificationDate":"2014-10-14"}, -{"geonameId":"358620","name":"Safaga","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32944,"modificationDate":"2017-04-21"}, -{"geonameId":"1277924","name":"Bagasra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32944,"modificationDate":"2014-10-13"}, -{"geonameId":"3988594","name":"Río Grande","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":32944,"modificationDate":"2018-11-03"}, -{"geonameId":"3052040","name":"Gyöngyös","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":32938,"modificationDate":"2015-06-17"}, -{"geonameId":"2157698","name":"Mildura","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":32936,"modificationDate":"2019-07-18"}, -{"geonameId":"1268662","name":"Kadūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32935,"modificationDate":"2015-11-08"}, -{"geonameId":"1699755","name":"Midsayap","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":32932,"modificationDate":"2017-12-13"}, -{"geonameId":"529073","name":"Marks","countryName":"Russia","timeZoneName":"Europe/Saratov","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":32929,"modificationDate":"2019-09-05"}, -{"geonameId":"3129877","name":"Aranda de Duero","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":32928,"modificationDate":"2012-03-04"}, -{"geonameId":"12076699","name":"Washwood Heath","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32921,"modificationDate":"2019-09-30"}, -{"geonameId":"649630","name":"Kirkkonummi","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32920,"modificationDate":"2014-09-25"}, -{"geonameId":"2525405","name":"Canicattì","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":32918,"modificationDate":"2014-04-13"}, -{"geonameId":"11903637","name":"Jakomini","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":32912,"modificationDate":"2018-07-29"}, -{"geonameId":"1272852","name":"Dharmanagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32912,"modificationDate":"2014-10-14"}, -{"geonameId":"149418","name":"Tumbi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":32900,"modificationDate":"2016-07-26"}, -{"geonameId":"2833641","name":"Seelze","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32899,"modificationDate":"2015-09-04"}, -{"geonameId":"4368711","name":"Salisbury","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32899,"modificationDate":"2017-03-09"}, -{"geonameId":"1012600","name":"Cradock","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":32898,"modificationDate":"2012-07-12"}, -{"geonameId":"4191955","name":"Douglasville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32897,"modificationDate":"2017-03-09"}, -{"geonameId":"1854849","name":"Obama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":32896,"modificationDate":"2017-07-22"}, -{"geonameId":"3461425","name":"Ilhabela","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":32892,"modificationDate":"2012-03-10"}, -{"geonameId":"10104153","name":"Silver Lake","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":32890,"modificationDate":"2015-02-18"}, -{"geonameId":"2878102","name":"Lichtenberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32888,"modificationDate":"2014-04-12"}, -{"geonameId":"1265311","name":"Lahār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32886,"modificationDate":"2014-10-14"}, -{"geonameId":"7262349","name":"Security-Widefield","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":32882,"modificationDate":"2011-05-14"}, -{"geonameId":"1252773","name":"Yāval","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32881,"modificationDate":"2016-01-07"}, -{"geonameId":"3173385","name":"Mira Taglio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":32881,"modificationDate":"2015-08-09"}, -{"geonameId":"2644531","name":"Lichfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32877,"modificationDate":"2018-07-03"}, -{"geonameId":"1713018","name":"General Tinio","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":32875,"modificationDate":"2017-12-13"}, -{"geonameId":"2654715","name":"Brighouse","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32872,"modificationDate":"2011-03-03"}, -{"geonameId":"3181018","name":"Campi Bisenzio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":32871,"modificationDate":"2015-08-09"}, -{"geonameId":"1863541","name":"Gose","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":32870,"modificationDate":"2017-07-22"}, -{"geonameId":"1625067","name":"Tanggulangin","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":32866,"modificationDate":"2007-11-09"}, -{"geonameId":"678306","name":"Feteşti","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32866,"modificationDate":"2012-06-12"}, -{"geonameId":"1268616","name":"Kaimganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32858,"modificationDate":"2015-08-07"}, -{"geonameId":"5814450","name":"University Place","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":32842,"modificationDate":"2017-03-09"}, -{"geonameId":"1164419","name":"Sukheke Mandi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":32836,"modificationDate":"2019-12-06"}, -{"geonameId":"3171703","name":"Pagani","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":32835,"modificationDate":"2015-08-09"}, -{"geonameId":"1269239","name":"Jānjgīr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32833,"modificationDate":"2015-09-06"}, -{"geonameId":"1272101","name":"Egra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32832,"modificationDate":"2014-10-14"}, -{"geonameId":"2660718","name":"Fribourg","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":32827,"modificationDate":"2019-10-08"}, -{"geonameId":"3168429","name":"San Donà di Piave","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":32819,"modificationDate":"2016-08-12"}, -{"geonameId":"5807540","name":"Pullman","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":32816,"modificationDate":"2017-03-09"}, -{"geonameId":"2747063","name":"Sneek","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":32811,"modificationDate":"2017-10-17"}, -{"geonameId":"1275719","name":"Bihārīganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32805,"modificationDate":"2014-10-14"}, -{"geonameId":"1253805","name":"Umreth","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32802,"modificationDate":"2014-10-13"}, -{"geonameId":"2530155","name":"Taounate","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":32802,"modificationDate":"2016-11-02"}, -{"geonameId":"3515665","name":"Ticul","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":32796,"modificationDate":"2018-11-03"}, -{"geonameId":"5930890","name":"Courtenay","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":32793,"modificationDate":"2019-02-26"}, -{"geonameId":"731233","name":"Gorna Oryahovitsa","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32792,"modificationDate":"2018-12-05"}, -{"geonameId":"3446295","name":"Torres","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":32791,"modificationDate":"2012-08-03"}, -{"geonameId":"2755616","name":"Geleen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":32790,"modificationDate":"2017-10-17"}, -{"geonameId":"260989","name":"Kardítsa","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32789,"modificationDate":"2015-02-07"}, -{"geonameId":"2739868","name":"Espinho","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":32786,"modificationDate":"2018-04-30"}, -{"geonameId":"2751285","name":"Maassluis","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":32780,"modificationDate":"2017-10-17"}, -{"geonameId":"1834885","name":"Tangjin","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":32778,"modificationDate":"2012-01-18"}, -{"geonameId":"3526593","name":"Jáltipan de Morelos","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":32778,"modificationDate":"2018-11-03"}, -{"geonameId":"301539","name":"Şarkîkaraağaç","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":32771,"modificationDate":"2012-02-28"}, -{"geonameId":"558118","name":"Gudermes","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":32769,"modificationDate":"2019-09-05"}, -{"geonameId":"3877739","name":"Paine","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":32766,"modificationDate":"2013-01-11"}, -{"geonameId":"1860648","name":"Kameda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":32765,"modificationDate":"2020-06-11"}, -{"geonameId":"1253251","name":"Venkatagiri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32761,"modificationDate":"2017-01-04"}, -{"geonameId":"1262382","name":"Musabani","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32761,"modificationDate":"2020-06-10"}, -{"geonameId":"3453014","name":"Porangatu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":32758,"modificationDate":"2012-08-03"}, -{"geonameId":"2856075","name":"Ottensen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32757,"modificationDate":"2017-12-14"}, -{"geonameId":"1580541","name":"Hoi An","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":32757,"modificationDate":"2020-06-15"}, -{"geonameId":"5554072","name":"Juneau","countryName":"United States","timeZoneName":"America/Juneau","timeZoneOffsetNameWithoutDst":"Alaska Time","population":32756,"modificationDate":"2017-03-09"}, -{"geonameId":"3272460","name":"Mörfelden-Walldorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32753,"modificationDate":"2019-09-05"}, -{"geonameId":"4916028","name":"West Lawn","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":32749,"modificationDate":"2017-12-14"}, -{"geonameId":"3129046","name":"Azuqueca de Henares","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":32744,"modificationDate":"2015-06-16"}, -{"geonameId":"3169424","name":"Riccione","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":32744,"modificationDate":"2016-07-28"}, -{"geonameId":"1700179","name":"Mauban","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":32739,"modificationDate":"2017-12-13"}, -{"geonameId":"5202215","name":"Mount Lebanon","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32730,"modificationDate":"2017-05-23"}, -{"geonameId":"4016132","name":"Víctor Rosales","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":32721,"modificationDate":"2013-08-01"}, -{"geonameId":"3026108","name":"Châtenay-Malabry","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":32715,"modificationDate":"2016-02-18"}, -{"geonameId":"2898321","name":"Höxter","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32713,"modificationDate":"2011-11-07"}, -{"geonameId":"4829762","name":"Alabaster","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":32707,"modificationDate":"2017-03-09"}, -{"geonameId":"6698333","name":"Casal Palocco","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":32706,"modificationDate":"2018-12-11"}, -{"geonameId":"3403127","name":"Capitão Poço","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":32704,"modificationDate":"2012-08-03"}, -{"geonameId":"1264457","name":"Mahālingpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32699,"modificationDate":"2014-10-14"}, -{"geonameId":"2167279","name":"Epping","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":32696,"modificationDate":"2019-07-18"}, -{"geonameId":"2744514","name":"Wijchen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":32693,"modificationDate":"2017-10-17"}, -{"geonameId":"1261342","name":"Neem ka Thana","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32690,"modificationDate":"2014-10-14"}, -{"geonameId":"1581349","name":"Hà Giang","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":32690,"modificationDate":"2019-01-09"}, -{"geonameId":"3465209","name":"Cravinhos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":32689,"modificationDate":"2012-08-03"}, -{"geonameId":"4690198","name":"Farmers Branch","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":32689,"modificationDate":"2017-03-09"}, -{"geonameId":"5378870","name":"Oildale","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":32684,"modificationDate":"2011-05-14"}, -{"geonameId":"2124615","name":"Kholmsk","countryName":"Russia","timeZoneName":"Asia/Sakhalin","timeZoneOffsetNameWithoutDst":"Sakhalin Time","population":32681,"modificationDate":"2012-10-06"}, -{"geonameId":"5364134","name":"La Verne","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":32681,"modificationDate":"2017-03-09"}, -{"geonameId":"530849","name":"Maloyaroslavets","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":32669,"modificationDate":"2019-09-05"}, -{"geonameId":"3402360","name":"Ceará Mirim","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":32667,"modificationDate":"2012-08-03"}, -{"geonameId":"2920757","name":"Gevelsberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32664,"modificationDate":"2015-09-04"}, -{"geonameId":"2807845","name":"Winsen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32662,"modificationDate":"2019-10-29"}, -{"geonameId":"4517698","name":"Mason","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32662,"modificationDate":"2017-05-23"}, -{"geonameId":"9034728","name":"Néa Ionía","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32661,"modificationDate":"2015-09-09"}, -{"geonameId":"2276492","name":"Harper","countryName":"Liberia","timeZoneName":"Africa/Monrovia","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32661,"modificationDate":"2015-07-03"}, -{"geonameId":"2791067","name":"Mol","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":32659,"modificationDate":"2011-02-10"}, -{"geonameId":"339686","name":"Debre Tabor","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":32659,"modificationDate":"2012-01-19"}, -{"geonameId":"1850472","name":"Tawaramoto","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":32659,"modificationDate":"2017-04-09"}, -{"geonameId":"2727234","name":"Åkersberga","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":32659,"modificationDate":"2017-03-18"}, -{"geonameId":"4991735","name":"Eastpointe","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32657,"modificationDate":"2017-05-23"}, -{"geonameId":"2110518","name":"Yōkaichiba","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":32651,"modificationDate":"2017-04-09"}, -{"geonameId":"1412008","name":"Setharja Old","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":32651,"modificationDate":"2019-12-06"}, -{"geonameId":"5826027","name":"Gillette","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":32649,"modificationDate":"2017-03-09"}, -{"geonameId":"3722124","name":"Lenbe","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32645,"modificationDate":"2017-05-08"}, -{"geonameId":"2851077","name":"Radebeul","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32643,"modificationDate":"2015-09-05"}, -{"geonameId":"1838508","name":"Buyeo","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":32642,"modificationDate":"2019-02-21"}, -{"geonameId":"476062","name":"Velikiy Ustyug","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":32642,"modificationDate":"2017-04-07"}, -{"geonameId":"1512342","name":"Yangiyer","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":32636,"modificationDate":"2012-01-17"}, -{"geonameId":"2862620","name":"Nienburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32629,"modificationDate":"2019-09-05"}, -{"geonameId":"4927537","name":"Valparaiso","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":32626,"modificationDate":"2017-05-23"}, -{"geonameId":"2817324","name":"Viernheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32620,"modificationDate":"2019-09-05"}, -{"geonameId":"1173920","name":"Khewra","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":32620,"modificationDate":"2019-12-06"}, -{"geonameId":"5778244","name":"Midvale","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":32613,"modificationDate":"2017-03-09"}, -{"geonameId":"1261517","name":"Nepa Nagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32611,"modificationDate":"2020-06-10"}, -{"geonameId":"2930043","name":"Ennepetal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32607,"modificationDate":"2015-09-04"}, -{"geonameId":"2973841","name":"Stains","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":32601,"modificationDate":"2016-02-18"}, -{"geonameId":"1185283","name":"Badarganj","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":32600,"modificationDate":"2016-11-09"}, -{"geonameId":"2966022","name":"Bray","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32600,"modificationDate":"2019-10-23"}, -{"geonameId":"1607280","name":"Prachin Buri","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":32600,"modificationDate":"2012-01-16"}, -{"geonameId":"5139301","name":"Spring Valley","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32598,"modificationDate":"2017-05-23"}, -{"geonameId":"1854492","name":"Ōiso","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":32595,"modificationDate":"2017-04-09"}, -{"geonameId":"7302631","name":"Canning Vale","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":32593,"modificationDate":"2019-07-18"}, -{"geonameId":"2768442","name":"Pradl","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":32588,"modificationDate":"2018-07-31"}, -{"geonameId":"1852915","name":"Sasaguri","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":32588,"modificationDate":"2017-04-09"}, -{"geonameId":"1261672","name":"Nautanwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32587,"modificationDate":"2014-10-14"}, -{"geonameId":"1858249","name":"Kuroda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":32586,"modificationDate":"2017-04-09"}, -{"geonameId":"1253482","name":"Vallabh Vidyanagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32581,"modificationDate":"2014-10-13"}, -{"geonameId":"2921242","name":"Georgsmarienhütte","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32580,"modificationDate":"2015-09-05"}, -{"geonameId":"2478226","name":"Tamalous","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":32579,"modificationDate":"2019-08-04"}, -{"geonameId":"3515956","name":"Tenosique","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":32579,"modificationDate":"2018-11-03"}, -{"geonameId":"5134295","name":"Rome","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32573,"modificationDate":"2017-09-12"}, -{"geonameId":"3453171","name":"Pontal","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":32566,"modificationDate":"2012-08-03"}, -{"geonameId":"2651495","name":"Darwen","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32566,"modificationDate":"2011-03-03"}, -{"geonameId":"1710378","name":"Jagna","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":32566,"modificationDate":"2017-12-13"}, -{"geonameId":"89087","name":"Al Abyār","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32563,"modificationDate":"2013-10-29"}, -{"geonameId":"687997","name":"Yuzhne","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32563,"modificationDate":"2020-04-08"}, -{"geonameId":"3097902","name":"Iława","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":32557,"modificationDate":"2010-09-28"}, -{"geonameId":"1274755","name":"Chanderi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32549,"modificationDate":"2015-08-07"}, -{"geonameId":"240604","name":"Bambari","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":32547,"modificationDate":"2016-06-22"}, -{"geonameId":"5598538","name":"Lewiston","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":32544,"modificationDate":"2017-03-09"}, -{"geonameId":"7302836","name":"Manuguru","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32539,"modificationDate":"2019-10-11"}, -{"geonameId":"2847639","name":"Rheinfelden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32535,"modificationDate":"2019-04-26"}, -{"geonameId":"1185270","name":"Bardarban","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":32523,"modificationDate":"2020-06-10"}, -{"geonameId":"2525764","name":"Agrigento","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":32514,"modificationDate":"2015-07-12"}, -{"geonameId":"2885732","name":"Königs Wusterhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32513,"modificationDate":"2015-09-05"}, -{"geonameId":"536206","name":"Yubileyny","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":32508,"modificationDate":"2019-09-05"}, -{"geonameId":"2825422","name":"Stuhr","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32507,"modificationDate":"2011-07-31"}, -{"geonameId":"1264398","name":"Mahemdāvād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32504,"modificationDate":"2014-10-13"}, -{"geonameId":"2152558","name":"Preston","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":32499,"modificationDate":"2019-07-18"}, -{"geonameId":"2508059","name":"Aïn Kercha","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":32497,"modificationDate":"2012-01-19"}, -{"geonameId":"3650186","name":"Vinces","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":32497,"modificationDate":"2017-02-07"}, -{"geonameId":"3866496","name":"Aguilares","countryName":"Argentina","timeZoneName":"America/Argentina/Tucuman","timeZoneOffsetNameWithoutDst":"Argentina Time","population":32494,"modificationDate":"2016-01-30"}, -{"geonameId":"161023","name":"Bugarama","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":32494,"modificationDate":"2018-12-04"}, -{"geonameId":"2686469","name":"Örnsköldsvik","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":32493,"modificationDate":"2019-09-05"}, -{"geonameId":"2633771","name":"Wisbech","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32489,"modificationDate":"2018-07-03"}, -{"geonameId":"3166404","name":"Somma Vesuviana","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":32484,"modificationDate":"2015-08-09"}, -{"geonameId":"5164903","name":"North Ridgeville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32483,"modificationDate":"2017-05-23"}, -{"geonameId":"4778626","name":"Petersburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32477,"modificationDate":"2017-03-09"}, -{"geonameId":"254352","name":"Rethymno","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32468,"modificationDate":"2015-11-27"}, -{"geonameId":"3994674","name":"Nueva Italia de Ruiz","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":32467,"modificationDate":"2018-11-03"}, -{"geonameId":"2449067","name":"Timbuktu","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32460,"modificationDate":"2012-06-01"}, -{"geonameId":"3628549","name":"San Antonio","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":32458,"modificationDate":"2020-06-10"}, -{"geonameId":"566384","name":"Desnogorsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":32451,"modificationDate":"2019-09-05"}, -{"geonameId":"703656","name":"Kupjansk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32449,"modificationDate":"2018-12-22"}, -{"geonameId":"1271459","name":"Gauibidanur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32447,"modificationDate":"2020-06-10"}, -{"geonameId":"962330","name":"Richmond","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":32445,"modificationDate":"2012-07-12"}, -{"geonameId":"1278974","name":"Almora","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32442,"modificationDate":"2015-10-04"}, -{"geonameId":"5427207","name":"Ken Caryl","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":32438,"modificationDate":"2014-10-08"}, -{"geonameId":"320871","name":"Bor","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":32435,"modificationDate":"2012-01-18"}, -{"geonameId":"4366476","name":"Randallstown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32430,"modificationDate":"2011-05-14"}, -{"geonameId":"2661169","name":"Chur","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":32429,"modificationDate":"2020-05-09"}, -{"geonameId":"5176517","name":"Westlake","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32428,"modificationDate":"2017-05-23"}, -{"geonameId":"3854895","name":"Granadero Baigorria","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":32427,"modificationDate":"2016-01-30"}, -{"geonameId":"3126888","name":"Cambrils","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":32422,"modificationDate":"2015-08-24"}, -{"geonameId":"3688071","name":"Caicedonia","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":32417,"modificationDate":"2018-09-05"}, -{"geonameId":"108841","name":"Al-`Ula","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":32413,"modificationDate":"2020-03-23"}, -{"geonameId":"1859941","name":"Kashima","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":32410,"modificationDate":"2017-07-22"}, -{"geonameId":"1262097","name":"Nakodar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32405,"modificationDate":"2015-09-06"}, -{"geonameId":"2176947","name":"Bankstown","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":32399,"modificationDate":"2019-07-18"}, -{"geonameId":"719311","name":"Kazincbarcika","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":32396,"modificationDate":"2015-06-17"}, -{"geonameId":"250461","name":"El Quweisme","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32396,"modificationDate":"2020-06-10"}, -{"geonameId":"1865661","name":"Aioi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":32394,"modificationDate":"2017-08-07"}, -{"geonameId":"1736458","name":"Kudat","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":32393,"modificationDate":"2015-08-15"}, -{"geonameId":"120678","name":"Farrokh Shahr","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":32391,"modificationDate":"2012-01-16"}, -{"geonameId":"4957280","name":"Bangor","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32391,"modificationDate":"2017-05-23"}, -{"geonameId":"4151352","name":"Clermont","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32390,"modificationDate":"2017-03-09"}, -{"geonameId":"533543","name":"Lukhovitsy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":32387,"modificationDate":"2012-01-17"}, -{"geonameId":"3026083","name":"Châtillon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":32383,"modificationDate":"2016-02-18"}, -{"geonameId":"1267862","name":"Karamsad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32380,"modificationDate":"2014-10-13"}, -{"geonameId":"1642754","name":"Jaten","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":32378,"modificationDate":"2012-01-17"}, -{"geonameId":"3979717","name":"Zapotlanejo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":32376,"modificationDate":"2018-11-03"}, -{"geonameId":"3052236","name":"Gödöllő","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":32374,"modificationDate":"2015-06-17"}, -{"geonameId":"1064234","name":"Ikongo","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":32374,"modificationDate":"2018-09-10"}, -{"geonameId":"452949","name":"Udomlya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":32373,"modificationDate":"2014-06-26"}, -{"geonameId":"3698194","name":"Chocope","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":32370,"modificationDate":"2012-07-19"}, -{"geonameId":"3681957","name":"Granada","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":32365,"modificationDate":"2018-08-08"}, -{"geonameId":"5275020","name":"Sun Prairie","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":32365,"modificationDate":"2017-05-23"}, -{"geonameId":"1263968","name":"Manali","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32363,"modificationDate":"2014-10-14"}, -{"geonameId":"491882","name":"Slobodskoy","countryName":"Russia","timeZoneName":"Europe/Kirov","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":32361,"modificationDate":"2012-01-17"}, -{"geonameId":"4292686","name":"Georgetown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32356,"modificationDate":"2017-03-09"}, -{"geonameId":"169113","name":"Jairud","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32352,"modificationDate":"2020-06-10"}, -{"geonameId":"1272857","name":"Dharmābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32351,"modificationDate":"2014-10-13"}, -{"geonameId":"8436083","name":"Greater Grand Crossing","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":32346,"modificationDate":"2017-12-14"}, -{"geonameId":"3466041","name":"Coaraci","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":32344,"modificationDate":"2012-08-03"}, -{"geonameId":"3934239","name":"Nuevo Imperial","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":32344,"modificationDate":"2012-07-19"}, -{"geonameId":"3938396","name":"Imperial","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":32344,"modificationDate":"2012-07-19"}, -{"geonameId":"2949423","name":"Biberach an der Riß","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32333,"modificationDate":"2014-01-09"}, -{"geonameId":"3653693","name":"Otavalo","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":32330,"modificationDate":"2017-02-07"}, -{"geonameId":"5861897","name":"Fairbanks","countryName":"United States","timeZoneName":"America/Anchorage","timeZoneOffsetNameWithoutDst":"Alaska Time","population":32325,"modificationDate":"2017-03-09"}, -{"geonameId":"1011632","name":"De Aar","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":32318,"modificationDate":"2019-09-24"}, -{"geonameId":"1712488","name":"Guimba","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":32306,"modificationDate":"2017-12-13"}, -{"geonameId":"4351977","name":"College Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32301,"modificationDate":"2018-10-08"}, -{"geonameId":"1848705","name":"Yamaga","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":32298,"modificationDate":"2017-07-22"}, -{"geonameId":"3182997","name":"Aosta","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":32295,"modificationDate":"2019-02-28"}, -{"geonameId":"2969284","name":"Vienne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":32293,"modificationDate":"2019-04-10"}, -{"geonameId":"2975446","name":"Schiltigheim","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":32289,"modificationDate":"2019-03-26"}, -{"geonameId":"8604596","name":"Retreat","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":32289,"modificationDate":"2013-08-18"}, -{"geonameId":"1648082","name":"Boyolangu","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":32287,"modificationDate":"2012-01-17"}, -{"geonameId":"2656867","name":"Aston","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32286,"modificationDate":"2018-03-02"}, -{"geonameId":"5781993","name":"Springville","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":32286,"modificationDate":"2017-03-09"}, -{"geonameId":"3658053","name":"El Triunfo","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":32282,"modificationDate":"2018-05-09"}, -{"geonameId":"3587086","name":"Chalchuapa","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":32282,"modificationDate":"2012-01-18"}, -{"geonameId":"4944994","name":"Natick","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32276,"modificationDate":"2017-05-23"}, -{"geonameId":"6089661","name":"North Cowichan","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":32272,"modificationDate":"2019-02-26"}, -{"geonameId":"1509888","name":"Bogdanovich","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":32270,"modificationDate":"2012-01-17"}, -{"geonameId":"720334","name":"Gyula","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":32269,"modificationDate":"2015-06-17"}, -{"geonameId":"2939797","name":"Crailsheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32262,"modificationDate":"2013-02-16"}, -{"geonameId":"167046","name":"Misiaf","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32262,"modificationDate":"2020-06-10"}, -{"geonameId":"726534","name":"Svishtov","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32256,"modificationDate":"2019-03-31"}, -{"geonameId":"5162097","name":"Massillon","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32252,"modificationDate":"2017-05-23"}, -{"geonameId":"746425","name":"Gumushkhane","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":32250,"modificationDate":"2016-05-19"}, -{"geonameId":"1253330","name":"Vedaraniyam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32245,"modificationDate":"2014-10-14"}, -{"geonameId":"5814916","name":"Walla Walla","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":32237,"modificationDate":"2018-01-01"}, -{"geonameId":"3442585","name":"Florida","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":32234,"modificationDate":"2012-02-17"}, -{"geonameId":"1848550","name":"Yanai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":32229,"modificationDate":"2017-07-22"}, -{"geonameId":"3191429","name":"Ruma","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":32229,"modificationDate":"2019-09-05"}, -{"geonameId":"2697720","name":"Landskrona","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":32229,"modificationDate":"2019-09-05"}, -{"geonameId":"3450563","name":"Salto de Pirapora","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":32227,"modificationDate":"2012-08-03"}, -{"geonameId":"4291945","name":"Florence","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32227,"modificationDate":"2017-03-09"}, -{"geonameId":"3523791","name":"Macuspana","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":32225,"modificationDate":"2018-11-03"}, -{"geonameId":"2871668","name":"Meschede","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32224,"modificationDate":"2015-09-05"}, -{"geonameId":"2687700","name":"Nyköping","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":32224,"modificationDate":"2019-09-05"}, -{"geonameId":"3174526","name":"Lucera","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":32222,"modificationDate":"2014-04-13"}, -{"geonameId":"2512196","name":"Puerto de la Cruz","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":32219,"modificationDate":"2012-03-04"}, -{"geonameId":"3455065","name":"Paranaíba","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":32217,"modificationDate":"2017-08-12"}, -{"geonameId":"1269102","name":"Jayamkondacholapuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32217,"modificationDate":"2017-07-04"}, -{"geonameId":"5016374","name":"Andover","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":32213,"modificationDate":"2017-05-23"}, -{"geonameId":"2270380","name":"Câmara de Lobos","countryName":"Portugal","timeZoneName":"Atlantic/Madeira","timeZoneOffsetNameWithoutDst":"Western European Time","population":32209,"modificationDate":"2018-02-09"}, -{"geonameId":"1268381","name":"Kālka","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32205,"modificationDate":"2015-09-06"}, -{"geonameId":"4295251","name":"Hopkinsville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":32205,"modificationDate":"2017-06-22"}, -{"geonameId":"3347353","name":"Menongue","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":32203,"modificationDate":"2014-06-23"}, -{"geonameId":"2532822","name":"Sidi Yahia El Gharb","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":32202,"modificationDate":"2016-11-29"}, -{"geonameId":"2847662","name":"Rheinberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32188,"modificationDate":"2015-09-04"}, -{"geonameId":"1253870","name":"Umarga","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32181,"modificationDate":"2014-10-13"}, -{"geonameId":"679907","name":"Curtea de Argeş","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32178,"modificationDate":"2013-12-01"}, -{"geonameId":"2655186","name":"Borehamwood","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32176,"modificationDate":"2018-07-03"}, -{"geonameId":"1242835","name":"Ja Ela","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":32175,"modificationDate":"2019-09-25"}, -{"geonameId":"742238","name":"Kumru","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":32174,"modificationDate":"2014-06-27"}, -{"geonameId":"3178818","name":"Chieri","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":32169,"modificationDate":"2014-04-13"}, -{"geonameId":"6078112","name":"Moose Jaw","countryName":"Canada","timeZoneName":"America/Regina","timeZoneOffsetNameWithoutDst":"Central Time","population":32166,"modificationDate":"2013-09-22"}, -{"geonameId":"167605","name":"Maarret Misrine","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32163,"modificationDate":"2020-06-10"}, -{"geonameId":"1259630","name":"Pinjaur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32162,"modificationDate":"2016-07-04"}, -{"geonameId":"8858096","name":"Centro Familiar la Soledad","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":32159,"modificationDate":"2014-04-11"}, -{"geonameId":"5830062","name":"Laramie","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":32158,"modificationDate":"2017-03-09"}, -{"geonameId":"4428475","name":"Greenville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":32156,"modificationDate":"2019-03-29"}, -{"geonameId":"4915989","name":"West Englewood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":32156,"modificationDate":"2017-12-14"}, -{"geonameId":"1275476","name":"Bisauli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32154,"modificationDate":"2015-08-07"}, -{"geonameId":"2810878","name":"Werl","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32149,"modificationDate":"2019-09-05"}, -{"geonameId":"637219","name":"Seinäjoki","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32149,"modificationDate":"2015-08-24"}, -{"geonameId":"3464974","name":"Curitibanos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":32141,"modificationDate":"2012-08-03"}, -{"geonameId":"3000192","name":"Les Mureaux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":32134,"modificationDate":"2016-02-18"}, -{"geonameId":"1254043","name":"Turalyur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32134,"modificationDate":"2020-06-10"}, -{"geonameId":"3079855","name":"Żywiec","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":32132,"modificationDate":"2011-07-31"}, -{"geonameId":"1860341","name":"Kamo","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":32129,"modificationDate":"2017-07-22"}, -{"geonameId":"2639897","name":"Prestwich","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32125,"modificationDate":"2013-08-05"}, -{"geonameId":"2642135","name":"Motherwell","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32120,"modificationDate":"2017-06-12"}, -{"geonameId":"5180199","name":"Bethel Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32118,"modificationDate":"2017-03-09"}, -{"geonameId":"932521","name":"Maputsoe","countryName":"Lesotho","timeZoneName":"Africa/Maseru","timeZoneOffsetNameWithoutDst":"South Africa Time","population":32117,"modificationDate":"2012-04-05"}, -{"geonameId":"2786743","name":"Sint-Amandsberg","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":32115,"modificationDate":"2020-05-25"}, -{"geonameId":"333750","name":"Jinka","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":32115,"modificationDate":"2012-01-19"}, -{"geonameId":"3469601","name":"Bocaiúva","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":32114,"modificationDate":"2012-08-03"}, -{"geonameId":"305532","name":"Kurtalan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":32114,"modificationDate":"2015-06-08"}, -{"geonameId":"324944","name":"Akcekale","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":32114,"modificationDate":"2020-06-10"}, -{"geonameId":"2950073","name":"Bernburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32113,"modificationDate":"2015-09-05"}, -{"geonameId":"4615145","name":"Cookeville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":32113,"modificationDate":"2017-03-09"}, -{"geonameId":"2783941","name":"Wavre","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":32112,"modificationDate":"2011-01-26"}, -{"geonameId":"4948403","name":"Randolph","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32112,"modificationDate":"2017-05-23"}, -{"geonameId":"2738785","name":"Guarda","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":32111,"modificationDate":"2013-08-05"}, -{"geonameId":"2524786","name":"Favara","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":32110,"modificationDate":"2014-01-11"}, -{"geonameId":"5129603","name":"Oceanside","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32109,"modificationDate":"2017-05-23"}, -{"geonameId":"4889426","name":"Danville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":32108,"modificationDate":"2017-05-23"}, -{"geonameId":"3451931","name":"Quirinópolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":32104,"modificationDate":"2012-08-03"}, -{"geonameId":"218680","name":"Boende","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":32091,"modificationDate":"2016-11-22"}, -{"geonameId":"3839490","name":"Quitilipi","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":32083,"modificationDate":"2015-04-22"}, -{"geonameId":"367927","name":"Rumbek","countryName":"South Sudan","timeZoneName":"Africa/Juba","timeZoneOffsetNameWithoutDst":"East Africa Time","population":32083,"modificationDate":"2017-06-09"}, -{"geonameId":"1068955","name":"Antsohimbondrona","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":32080,"modificationDate":"2018-09-10"}, -{"geonameId":"3466261","name":"Charqueadas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":32076,"modificationDate":"2012-08-03"}, -{"geonameId":"2620046","name":"Holstebro","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":32072,"modificationDate":"2017-10-18"}, -{"geonameId":"296832","name":"Yeşilli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":32072,"modificationDate":"2015-11-08"}, -{"geonameId":"727030","name":"Smolyan","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32069,"modificationDate":"2017-11-14"}, -{"geonameId":"1260014","name":"Pāvugada","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32063,"modificationDate":"2015-10-04"}, -{"geonameId":"3174719","name":"Limbiate","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":32062,"modificationDate":"2015-08-09"}, -{"geonameId":"3446539","name":"Tietê","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":32061,"modificationDate":"2012-08-03"}, -{"geonameId":"2358738","name":"Kupela","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32052,"modificationDate":"2020-06-10"}, -{"geonameId":"2931481","name":"Eisenhüttenstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":32052,"modificationDate":"2011-07-31"}, -{"geonameId":"3653882","name":"Naranjal","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":32045,"modificationDate":"2018-05-09"}, -{"geonameId":"3397941","name":"Itapagé","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":32043,"modificationDate":"2012-08-03"}, -{"geonameId":"3429777","name":"Puerto Iguazú","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":32038,"modificationDate":"2015-04-22"}, -{"geonameId":"3526855","name":"Huixtla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":32033,"modificationDate":"2018-11-03"}, -{"geonameId":"4362743","name":"Montgomery Village","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32032,"modificationDate":"2011-05-14"}, -{"geonameId":"2801922","name":"Binche","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":32030,"modificationDate":"2012-01-18"}, -{"geonameId":"3110519","name":"Sant Joan Despí","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":32030,"modificationDate":"2015-06-14"}, -{"geonameId":"2110541","name":"Yamoto","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":32028,"modificationDate":"2017-04-09"}, -{"geonameId":"3427428","name":"Villaguay","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":32027,"modificationDate":"2015-04-22"}, -{"geonameId":"1513331","name":"Quvasoy","countryName":"Uzbekistan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":32024,"modificationDate":"2015-11-07"}, -{"geonameId":"1278841","name":"Ambasamudram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32020,"modificationDate":"2014-10-14"}, -{"geonameId":"2652885","name":"Cleethorpes","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32017,"modificationDate":"2015-06-02"}, -{"geonameId":"3002965","name":"Le Perreux-sur-Marne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":32015,"modificationDate":"2016-02-18"}, -{"geonameId":"1252692","name":"Zaminia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32008,"modificationDate":"2020-06-10"}, -{"geonameId":"3530596","name":"Ciudad Fernández","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":32006,"modificationDate":"2018-11-03"}, -{"geonameId":"5164862","name":"North Olmsted","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":32004,"modificationDate":"2017-05-23"}, -{"geonameId":"3862351","name":"Casilda","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":32002,"modificationDate":"2016-01-30"}, -{"geonameId":"350207","name":"Ras Gharib","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":32000,"modificationDate":"2015-08-06"}, -{"geonameId":"7290015","name":"Lower Earley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32000,"modificationDate":"2011-03-03"}, -{"geonameId":"8224782","name":"Shirley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32000,"modificationDate":"2012-03-29"}, -{"geonameId":"8299616","name":"Deeside","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":32000,"modificationDate":"2012-06-01"}, -{"geonameId":"11185528","name":"Malkapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":32000,"modificationDate":"2016-06-21"}, -{"geonameId":"1527719","name":"Kyzyl-Kyya","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":32000,"modificationDate":"2015-11-08"}, -{"geonameId":"2468925","name":"Midoun","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":32000,"modificationDate":"2018-08-29"}, -{"geonameId":"2492920","name":"Djidiouia","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":31996,"modificationDate":"2012-01-19"}, -{"geonameId":"4161534","name":"Land O' Lakes","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31996,"modificationDate":"2011-05-14"}, -{"geonameId":"2813464","name":"Wedel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31995,"modificationDate":"2015-09-04"}, -{"geonameId":"2792179","name":"Lommel","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":31993,"modificationDate":"2012-01-18"}, -{"geonameId":"3014143","name":"Guyancourt","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":31989,"modificationDate":"2016-02-18"}, -{"geonameId":"2649715","name":"Falmouth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":31988,"modificationDate":"2017-06-12"}, -{"geonameId":"2988758","name":"Palaiseau","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":31987,"modificationDate":"2019-04-10"}, -{"geonameId":"2505651","name":"Barbacha","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":31983,"modificationDate":"2020-06-01"}, -{"geonameId":"598272","name":"Kėdainiai","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":31980,"modificationDate":"2019-09-05"}, -{"geonameId":"1256489","name":"Shirdi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31978,"modificationDate":"2017-06-17"}, -{"geonameId":"1277358","name":"Bandipura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31978,"modificationDate":"2014-12-03"}, -{"geonameId":"183027","name":"Nyahururu","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":31978,"modificationDate":"2018-09-05"}, -{"geonameId":"4170005","name":"Richmond West","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31973,"modificationDate":"2011-05-14"}, -{"geonameId":"1266330","name":"Kokrajhar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31971,"modificationDate":"2014-10-13"}, -{"geonameId":"188492","name":"Machakos","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":31971,"modificationDate":"2017-11-07"}, -{"geonameId":"565290","name":"Donskoy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":31968,"modificationDate":"2012-01-17"}, -{"geonameId":"1643920","name":"Gombong","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":31965,"modificationDate":"2012-01-17"}, -{"geonameId":"6690784","name":"Fort Pienc","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":31963,"modificationDate":"2017-05-26"}, -{"geonameId":"720292","name":"Hajdúböszörmény","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":31957,"modificationDate":"2014-11-05"}, -{"geonameId":"741240","name":"Of","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":31951,"modificationDate":"2015-02-07"}, -{"geonameId":"119730","name":"Qaraziadin","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":31947,"modificationDate":"2020-06-10"}, -{"geonameId":"548658","name":"Kimovsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":31947,"modificationDate":"2019-09-05"}, -{"geonameId":"212360","name":"Kongolo","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":31943,"modificationDate":"2016-11-22"}, -{"geonameId":"2665452","name":"Vallentuna","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":31937,"modificationDate":"2017-03-18"}, -{"geonameId":"1260697","name":"Palladam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31935,"modificationDate":"2014-10-14"}, -{"geonameId":"2646327","name":"Hyde","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":31926,"modificationDate":"2013-07-11"}, -{"geonameId":"2753376","name":"IJmuiden","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":31925,"modificationDate":"2020-03-15"}, -{"geonameId":"831130","name":"Znamensk","countryName":"Russia","timeZoneName":"Europe/Astrakhan","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":31922,"modificationDate":"2019-09-05"}, -{"geonameId":"6317824","name":"Ourilândia do Norte","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":31921,"modificationDate":"2019-07-21"}, -{"geonameId":"2980816","name":"Saint-Dizier","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":31918,"modificationDate":"2019-04-10"}, -{"geonameId":"2791343","name":"Menen","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":31916,"modificationDate":"2012-01-18"}, -{"geonameId":"2508184","name":"Fontaine des Chameaux","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":31916,"modificationDate":"2020-06-11"}, -{"geonameId":"311453","name":"İmamoğlu","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":31916,"modificationDate":"2012-01-18"}, -{"geonameId":"4954611","name":"Watertown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31915,"modificationDate":"2017-05-23"}, -{"geonameId":"1171198","name":"Mamu Kanjan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":31914,"modificationDate":"2019-12-06"}, -{"geonameId":"3070420","name":"Modřany","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":31901,"modificationDate":"2018-09-13"}, -{"geonameId":"2864276","name":"Neuruppin","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31901,"modificationDate":"2015-09-04"}, -{"geonameId":"95788","name":"Hit","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":31901,"modificationDate":"2020-06-10"}, -{"geonameId":"2613460","name":"Slagelse","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":31896,"modificationDate":"2019-09-05"}, -{"geonameId":"1262669","name":"Muddebihāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31895,"modificationDate":"2015-08-07"}, -{"geonameId":"2476412","name":"el hed","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":31890,"modificationDate":"2020-05-31"}, -{"geonameId":"1265170","name":"Lālganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31879,"modificationDate":"2016-01-07"}, -{"geonameId":"1258380","name":"Rasrā","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31876,"modificationDate":"2015-08-07"}, -{"geonameId":"4835003","name":"Glastonbury","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31876,"modificationDate":"2017-05-23"}, -{"geonameId":"1269666","name":"Islāmpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31875,"modificationDate":"2016-01-07"}, -{"geonameId":"1641301","name":"Amlapura","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":31869,"modificationDate":"2018-08-17"}, -{"geonameId":"11919949","name":"Amlapura city","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":31869,"modificationDate":"2018-08-27"}, -{"geonameId":"1854774","name":"Ōdachō-ōda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":31867,"modificationDate":"2017-04-09"}, -{"geonameId":"3022610","name":"Creil","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":31863,"modificationDate":"2016-02-18"}, -{"geonameId":"1271244","name":"Ghugus","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31859,"modificationDate":"2015-12-05"}, -{"geonameId":"71273","name":"Sahar","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":31859,"modificationDate":"2020-06-10"}, -{"geonameId":"1256995","name":"Sattur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31856,"modificationDate":"2014-10-14"}, -{"geonameId":"1165260","name":"Sharqpur Sharif","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":31855,"modificationDate":"2019-12-06"}, -{"geonameId":"5408431","name":"Westmont","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":31853,"modificationDate":"2011-05-14"}, -{"geonameId":"505057","name":"Privolzhskiy","countryName":"Russia","timeZoneName":"Europe/Saratov","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":31849,"modificationDate":"2012-02-28"}, -{"geonameId":"1879672","name":"Anbyŏn-ŭp","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":31845,"modificationDate":"2012-01-19"}, -{"geonameId":"6545261","name":"El Carmel","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":31843,"modificationDate":"2017-05-26"}, -{"geonameId":"1179837","name":"Digri","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":31842,"modificationDate":"2019-12-06"}, -{"geonameId":"1060673","name":"Manjakandriana","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":31840,"modificationDate":"2018-09-10"}, -{"geonameId":"2955936","name":"Ansbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31839,"modificationDate":"2019-09-05"}, -{"geonameId":"1276731","name":"Bāsudebpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31827,"modificationDate":"2014-10-14"}, -{"geonameId":"1734971","name":"Pekan","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":31826,"modificationDate":"2012-01-17"}, -{"geonameId":"1267203","name":"Khāchrod","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31825,"modificationDate":"2014-10-14"}, -{"geonameId":"3121766","name":"Galapagar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":31820,"modificationDate":"2012-03-04"}, -{"geonameId":"2491578","name":"Kolea","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":31816,"modificationDate":"2012-01-19"}, -{"geonameId":"6930162","name":"Alvalade","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":31813,"modificationDate":"2018-03-21"}, -{"geonameId":"3627186","name":"Santa Rita","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":31810,"modificationDate":"2012-01-11"}, -{"geonameId":"336496","name":"Gimbi","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":31809,"modificationDate":"2013-06-23"}, -{"geonameId":"5098343","name":"Garfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31802,"modificationDate":"2017-05-23"}, -{"geonameId":"1570449","name":"Phu-li","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":31801,"modificationDate":"2020-06-09"}, -{"geonameId":"3673398","name":"Belalcazar","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":31800,"modificationDate":"2020-06-11"}, -{"geonameId":"3448552","name":"São Luiz Gonzaga","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":31798,"modificationDate":"2012-08-03"}, -{"geonameId":"559678","name":"Gorodets","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":31788,"modificationDate":"2019-09-05"}, -{"geonameId":"2970797","name":"Vandœuvre-lès-Nancy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":31785,"modificationDate":"2016-02-21"}, -{"geonameId":"1182665","name":"Bhera","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":31781,"modificationDate":"2019-12-06"}, -{"geonameId":"293222","name":"Yavné","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":31774,"modificationDate":"2017-11-10"}, -{"geonameId":"2884050","name":"Kreuztal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31772,"modificationDate":"2015-09-04"}, -{"geonameId":"2524155","name":"Milazzo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":31771,"modificationDate":"2015-08-09"}, -{"geonameId":"1710011","name":"Kabacan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":31769,"modificationDate":"2017-12-13"}, -{"geonameId":"2445553","name":"Dogondoutchi","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":31767,"modificationDate":"2018-05-09"}, -{"geonameId":"2511102","name":"Santa Pola","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":31760,"modificationDate":"2012-03-04"}, -{"geonameId":"3433803","name":"Zapallar","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":31758,"modificationDate":"2020-06-10"}, -{"geonameId":"3071966","name":"Libeň","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":31756,"modificationDate":"2018-09-13"}, -{"geonameId":"1265964","name":"Kotma","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31756,"modificationDate":"2014-10-14"}, -{"geonameId":"173361","name":"Al Qaryatayn","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":31748,"modificationDate":"2017-01-11"}, -{"geonameId":"5364306","name":"Laguna Hills","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":31748,"modificationDate":"2017-03-09"}, -{"geonameId":"2785470","name":"Tienen","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":31743,"modificationDate":"2018-03-15"}, -{"geonameId":"3167561","name":"Santa Maria Capua Vetere","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":31743,"modificationDate":"2014-04-13"}, -{"geonameId":"3403566","name":"Campo Maior","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":31739,"modificationDate":"2012-08-03"}, -{"geonameId":"3592483","name":"Momostenango","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":31739,"modificationDate":"2017-03-04"}, -{"geonameId":"290215","name":"Jid Hafs","countryName":"Bahrain","timeZoneName":"Asia/Bahrain","timeZoneOffsetNameWithoutDst":"Arabian Time","population":31735,"modificationDate":"2020-06-10"}, -{"geonameId":"1276067","name":"Bhatkal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31735,"modificationDate":"2015-12-05"}, -{"geonameId":"3049885","name":"Kiskunfélegyháza","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":31720,"modificationDate":"2014-11-05"}, -{"geonameId":"3446194","name":"Tremembé","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":31719,"modificationDate":"2012-08-03"}, -{"geonameId":"3415212","name":"Kópavogur","countryName":"Iceland","timeZoneName":"Atlantic/Reykjavik","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":31719,"modificationDate":"2019-09-05"}, -{"geonameId":"3460200","name":"Jaguariúna","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":31717,"modificationDate":"2012-03-10"}, -{"geonameId":"1710470","name":"Isulan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":31717,"modificationDate":"2017-12-13"}, -{"geonameId":"523553","name":"Nakhabino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":31715,"modificationDate":"2012-01-17"}, -{"geonameId":"2488716","name":"Megarine","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":31711,"modificationDate":"2012-01-19"}, -{"geonameId":"1023287","name":"Allanridge","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":31700,"modificationDate":"2012-07-12"}, -{"geonameId":"5278422","name":"West Bend","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":31695,"modificationDate":"2017-05-23"}, -{"geonameId":"1849424","name":"Ueki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":31688,"modificationDate":"2020-06-11"}, -{"geonameId":"3532899","name":"Amecameca","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":31687,"modificationDate":"2018-11-03"}, -{"geonameId":"2972742","name":"Thonon-les-Bains","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":31684,"modificationDate":"2019-04-10"}, -{"geonameId":"1193823","name":"Nabīnagar","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":31671,"modificationDate":"2016-11-09"}, -{"geonameId":"3125621","name":"Castro-Urdiales","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":31670,"modificationDate":"2012-03-04"}, -{"geonameId":"5106453","name":"Willingboro","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31668,"modificationDate":"2017-05-23"}, -{"geonameId":"2653192","name":"Chichester","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":31654,"modificationDate":"2017-06-12"}, -{"geonameId":"10098279","name":"Barros Blancos","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":31650,"modificationDate":"2019-03-29"}, -{"geonameId":"1185167","name":"Morrelgonj","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":31647,"modificationDate":"2016-11-09"}, -{"geonameId":"935255","name":"Sainte-Marie","countryName":"Reunion","timeZoneName":"Indian/Reunion","timeZoneOffsetNameWithoutDst":"Réunion Time","population":31636,"modificationDate":"2018-06-08"}, -{"geonameId":"2881695","name":"Lampertheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31635,"modificationDate":"2019-09-05"}, -{"geonameId":"3183063","name":"Angri","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":31632,"modificationDate":"2015-08-09"}, -{"geonameId":"1491291","name":"Sosnovoborsk","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":31632,"modificationDate":"2019-09-05"}, -{"geonameId":"1166381","name":"Sakrand","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":31630,"modificationDate":"2019-12-06"}, -{"geonameId":"2748729","name":"Papendrecht","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":31621,"modificationDate":"2017-10-17"}, -{"geonameId":"1847947","name":"Shingū","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":31619,"modificationDate":"2017-07-22"}, -{"geonameId":"2656281","name":"Barnstaple","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":31616,"modificationDate":"2018-07-03"}, -{"geonameId":"2798551","name":"Evergem","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":31615,"modificationDate":"2019-01-06"}, -{"geonameId":"1266620","name":"Khurai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31613,"modificationDate":"2015-08-07"}, -{"geonameId":"1163958","name":"Tando Jam","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":31612,"modificationDate":"2019-12-06"}, -{"geonameId":"2896753","name":"Idar-Oberstein","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31610,"modificationDate":"2015-09-05"}, -{"geonameId":"1274032","name":"Chittur-Cochin","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31608,"modificationDate":"2020-06-10"}, -{"geonameId":"164898","name":"Silkin","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":31608,"modificationDate":"2020-06-10"}, -{"geonameId":"3868158","name":"Villarrica","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":31602,"modificationDate":"2019-09-05"}, -{"geonameId":"539817","name":"Kudymkar","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":31596,"modificationDate":"2019-09-05"}, -{"geonameId":"2516336","name":"Javea","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":31593,"modificationDate":"2019-10-03"}, -{"geonameId":"1167398","name":"Raiwind","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":31592,"modificationDate":"2019-12-06"}, -{"geonameId":"2637265","name":"Spalding","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":31588,"modificationDate":"2017-06-12"}, -{"geonameId":"4903184","name":"Mundelein","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":31582,"modificationDate":"2017-05-23"}, -{"geonameId":"5112035","name":"Centereach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31578,"modificationDate":"2017-05-23"}, -{"geonameId":"3600327","name":"Villanueva","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":31571,"modificationDate":"2013-04-04"}, -{"geonameId":"3033002","name":"Béthune","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":31568,"modificationDate":"2019-04-10"}, -{"geonameId":"4015700","name":"Cananea","countryName":"Mexico","timeZoneName":"America/Hermosillo","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":31560,"modificationDate":"2018-11-03"}, -{"geonameId":"1462711","name":"Vadigenhalli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31558,"modificationDate":"2016-09-09"}, -{"geonameId":"524712","name":"Mozhaysk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":31557,"modificationDate":"2019-09-05"}, -{"geonameId":"698782","name":"Obukhiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":31557,"modificationDate":"2019-02-06"}, -{"geonameId":"2305537","name":"Agogo","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":31554,"modificationDate":"2019-12-05"}, -{"geonameId":"4643336","name":"Mount Juliet","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":31540,"modificationDate":"2017-03-09"}, -{"geonameId":"4839222","name":"Naugatuck","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31538,"modificationDate":"2017-05-23"}, -{"geonameId":"1256335","name":"Sijua","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31537,"modificationDate":"2014-10-14"}, -{"geonameId":"3832132","name":"Zapala","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":31534,"modificationDate":"2015-04-22"}, -{"geonameId":"1253452","name":"Vandavāsi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31530,"modificationDate":"2014-10-14"}, -{"geonameId":"8334625","name":"Fennpfuhl","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31529,"modificationDate":"2012-06-09"}, -{"geonameId":"1056899","name":"Sambava","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":31522,"modificationDate":"2018-09-07"}, -{"geonameId":"5312913","name":"San Luis","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":31520,"modificationDate":"2017-03-09"}, -{"geonameId":"3872326","name":"San Carlos","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":31517,"modificationDate":"2018-11-28"}, -{"geonameId":"2325060","name":"Pankshin","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":31516,"modificationDate":"2016-01-30"}, -{"geonameId":"1510916","name":"Barabinsk","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":31508,"modificationDate":"2019-09-05"}, -{"geonameId":"2510271","name":"Torre-Pacheco","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":31495,"modificationDate":"2015-12-06"}, -{"geonameId":"1283161","name":"Lahān","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":31495,"modificationDate":"2019-10-19"}, -{"geonameId":"318668","name":"Raselain","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":31488,"modificationDate":"2020-06-10"}, -{"geonameId":"229362","name":"Masindi","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":31486,"modificationDate":"2016-06-22"}, -{"geonameId":"3824996","name":"Loma Bonita","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":31485,"modificationDate":"2018-11-03"}, -{"geonameId":"3177841","name":"Crema","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":31481,"modificationDate":"2014-04-13"}, -{"geonameId":"1265143","name":"Lālsot","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31480,"modificationDate":"2014-10-14"}, -{"geonameId":"5110161","name":"Brighton Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31462,"modificationDate":"2017-04-16"}, -{"geonameId":"4923531","name":"Michigan City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":31459,"modificationDate":"2017-05-23"}, -{"geonameId":"4152772","name":"Dania Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31446,"modificationDate":"2017-03-09"}, -{"geonameId":"1215498","name":"Bandar","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":31442,"modificationDate":"2018-12-04"}, -{"geonameId":"1065222","name":"Fandriana","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":31437,"modificationDate":"2018-09-10"}, -{"geonameId":"2511366","name":"San Javier","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":31432,"modificationDate":"2015-10-24"}, -{"geonameId":"3621841","name":"San José","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":31430,"modificationDate":"2018-12-05"}, -{"geonameId":"320448","name":"Bulanık","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":31430,"modificationDate":"2015-04-08"}, -{"geonameId":"3465329","name":"Coruripe","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":31427,"modificationDate":"2012-08-03"}, -{"geonameId":"1731686","name":"Alaminos","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":31427,"modificationDate":"2017-12-13"}, -{"geonameId":"1256722","name":"Shāhpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31422,"modificationDate":"2015-08-07"}, -{"geonameId":"5598542","name":"Lewiston Orchards","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":31422,"modificationDate":"2006-01-17"}, -{"geonameId":"7302808","name":"Chemmumiahpet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31416,"modificationDate":"2014-10-10"}, -{"geonameId":"1855380","name":"Ninomiya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":31412,"modificationDate":"2017-04-09"}, -{"geonameId":"2294086","name":"Wankyi","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":31411,"modificationDate":"2020-01-08"}, -{"geonameId":"2749644","name":"Oldenzaal","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":31410,"modificationDate":"2017-10-17"}, -{"geonameId":"3056357","name":"Ajka","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":31407,"modificationDate":"2015-06-17"}, -{"geonameId":"2856500","name":"Osterholz-Scharmbeck","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31405,"modificationDate":"2015-09-05"}, -{"geonameId":"1277836","name":"Bahādurganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31405,"modificationDate":"2015-12-05"}, -{"geonameId":"3126917","name":"Camargo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":31404,"modificationDate":"2012-01-19"}, -{"geonameId":"6058024","name":"Lloydminster","countryName":"Canada","timeZoneName":"America/Edmonton","timeZoneOffsetNameWithoutDst":"Mountain Time","population":31400,"modificationDate":"2019-08-08"}, -{"geonameId":"3063907","name":"Trutnov","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":31398,"modificationDate":"2019-09-05"}, -{"geonameId":"5928488","name":"Côte-Saint-Luc","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31395,"modificationDate":"2016-06-22"}, -{"geonameId":"1271005","name":"Gomoh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31395,"modificationDate":"2014-10-14"}, -{"geonameId":"2945474","name":"Bramsche","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31394,"modificationDate":"2015-09-05"}, -{"geonameId":"4941935","name":"Lexington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31394,"modificationDate":"2017-05-23"}, -{"geonameId":"4887284","name":"Chatham","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":31392,"modificationDate":"2017-12-14"}, -{"geonameId":"3671098","name":"Quimbaya","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":31391,"modificationDate":"2018-08-08"}, -{"geonameId":"1269435","name":"Jalālpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31388,"modificationDate":"2015-08-07"}, -{"geonameId":"2225726","name":"Muyuka","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":31384,"modificationDate":"2018-10-12"}, -{"geonameId":"6254843","name":"Birendranagar","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":31381,"modificationDate":"2020-06-12"}, -{"geonameId":"4165637","name":"Navarre","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":31378,"modificationDate":"2014-10-06"}, -{"geonameId":"4471641","name":"Holly Springs","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31377,"modificationDate":"2017-05-23"}, -{"geonameId":"1702425","name":"Maluso","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":31374,"modificationDate":"2017-12-13"}, -{"geonameId":"716736","name":"Orosháza","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":31373,"modificationDate":"2014-11-05"}, -{"geonameId":"1266622","name":"Khunti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31366,"modificationDate":"2017-08-02"}, -{"geonameId":"1268095","name":"Kangayam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31364,"modificationDate":"2014-10-14"}, -{"geonameId":"3024223","name":"Colomiers","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":31363,"modificationDate":"2016-02-18"}, -{"geonameId":"3896105","name":"Cauquenes","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":31362,"modificationDate":"2012-05-03"}, -{"geonameId":"1172295","name":"Lalian","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":31355,"modificationDate":"2019-12-06"}, -{"geonameId":"1638981","name":"Kutoarjo","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":31352,"modificationDate":"2012-01-17"}, -{"geonameId":"7645176","name":"Zira","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31350,"modificationDate":"2014-10-14"}, -{"geonameId":"653185","name":"Kerava","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":31347,"modificationDate":"2016-04-10"}, -{"geonameId":"12156882","name":"Church-Yonge Corridor","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31340,"modificationDate":"2020-05-02"}, -{"geonameId":"2876218","name":"Lohmar","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31339,"modificationDate":"2015-09-04"}, -{"geonameId":"2905826","name":"Herrenberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31338,"modificationDate":"2012-06-05"}, -{"geonameId":"1856434","name":"Murakami","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":31334,"modificationDate":"2017-07-22"}, -{"geonameId":"2758064","name":"Bussum","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":31334,"modificationDate":"2017-10-17"}, -{"geonameId":"10062602","name":"Šeškinė","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":31333,"modificationDate":"2015-02-12"}, -{"geonameId":"3591833","name":"Palín","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":31329,"modificationDate":"2019-04-10"}, -{"geonameId":"152403","name":"Mvomero","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":31324,"modificationDate":"2018-12-04"}, -{"geonameId":"3175773","name":"Grottaglie","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":31320,"modificationDate":"2014-04-13"}, -{"geonameId":"2511162","name":"Santa Eulària des Riu","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":31314,"modificationDate":"2012-10-17"}, -{"geonameId":"1845519","name":"Cheongsong gun","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":31313,"modificationDate":"2010-07-11"}, -{"geonameId":"3470718","name":"Barra do Bugres","countryName":"Brazil","timeZoneName":"America/Cuiaba","timeZoneOffsetNameWithoutDst":"Amazon Time","population":31311,"modificationDate":"2012-08-03"}, -{"geonameId":"3526993","name":"Huatusco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":31305,"modificationDate":"2018-11-03"}, -{"geonameId":"8858097","name":"San José Guadalupe Otzacatipan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":31299,"modificationDate":"2014-04-11"}, -{"geonameId":"1676242","name":"Hengchun","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":31288,"modificationDate":"2017-09-27"}, -{"geonameId":"4551177","name":"Shawnee","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":31286,"modificationDate":"2017-03-09"}, -{"geonameId":"1269012","name":"Jhanjhārpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31283,"modificationDate":"2014-10-14"}, -{"geonameId":"1257409","name":"Sāngola","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31279,"modificationDate":"2014-10-13"}, -{"geonameId":"4608418","name":"Brentwood Estates","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":31279,"modificationDate":"2006-01-17"}, -{"geonameId":"3180208","name":"Casale Monferrato","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":31275,"modificationDate":"2014-04-13"}, -{"geonameId":"1846114","name":"Jinan-gun","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":31273,"modificationDate":"2014-01-06"}, -{"geonameId":"1734839","name":"Bahau","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":31273,"modificationDate":"2012-01-17"}, -{"geonameId":"4893392","name":"Galesburg","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":31273,"modificationDate":"2017-05-23"}, -{"geonameId":"281148","name":"Bani Suheila","countryName":"Palestinian Territory","timeZoneName":"Asia/Gaza","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":31272,"modificationDate":"2020-06-10"}, -{"geonameId":"2659496","name":"Neuchâtel","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":31270,"modificationDate":"2019-09-10"}, -{"geonameId":"1853192","name":"Sakai-nakajima","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":31268,"modificationDate":"2017-04-09"}, -{"geonameId":"750938","name":"Bayburt","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":31258,"modificationDate":"2015-02-07"}, -{"geonameId":"1059507","name":"Marovoay","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":31253,"modificationDate":"2018-09-10"}, -{"geonameId":"2280045","name":"Vavoua","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":31250,"modificationDate":"2016-12-03"}, -{"geonameId":"163806","name":"Tafass","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":31249,"modificationDate":"2020-06-10"}, -{"geonameId":"5147968","name":"Bowling Green","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31246,"modificationDate":"2017-05-23"}, -{"geonameId":"1256184","name":"Singānallūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31239,"modificationDate":"2018-07-04"}, -{"geonameId":"2990265","name":"Nogent-sur-Marne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":31236,"modificationDate":"2019-04-10"}, -{"geonameId":"1641342","name":"Karangampel","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":31234,"modificationDate":"2012-01-17"}, -{"geonameId":"1853564","name":"Ōtsuki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":31226,"modificationDate":"2017-08-02"}, -{"geonameId":"3036460","name":"Athis-Mons","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":31225,"modificationDate":"2016-02-18"}, -{"geonameId":"2128975","name":"Nemuro","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":31223,"modificationDate":"2017-07-22"}, -{"geonameId":"5792244","name":"Des Moines","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":31221,"modificationDate":"2019-10-24"}, -{"geonameId":"1152633","name":"Krabi","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":31219,"modificationDate":"2015-03-04"}, -{"geonameId":"2913433","name":"Güstrow","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31217,"modificationDate":"2015-09-05"}, -{"geonameId":"142255","name":"Bāfq","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":31215,"modificationDate":"2014-09-04"}, -{"geonameId":"2521665","name":"Arcos de la Frontera","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":31210,"modificationDate":"2012-03-04"}, -{"geonameId":"3832647","name":"Villa Regina","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":31209,"modificationDate":"2016-01-30"}, -{"geonameId":"3664078","name":"Humaitá","countryName":"Brazil","timeZoneName":"America/Manaus","timeZoneOffsetNameWithoutDst":"Amazon Time","population":31206,"modificationDate":"2014-07-01"}, -{"geonameId":"3445983","name":"Tucano","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":31203,"modificationDate":"2015-06-23"}, -{"geonameId":"3461949","name":"Guapimirim","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":31202,"modificationDate":"2012-08-03"}, -{"geonameId":"3118554","name":"Leioa","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":31197,"modificationDate":"2018-02-20"}, -{"geonameId":"3059050","name":"Liptovský Mikuláš","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":31194,"modificationDate":"2020-01-18"}, -{"geonameId":"5443948","name":"Wheat Ridge","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":31192,"modificationDate":"2017-03-09"}, -{"geonameId":"1267869","name":"Kāramadai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31188,"modificationDate":"2014-10-14"}, -{"geonameId":"7870919","name":"Niagara","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31180,"modificationDate":"2020-05-02"}, -{"geonameId":"2638926","name":"Rutherglen","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":31180,"modificationDate":"2017-06-12"}, -{"geonameId":"1820491","name":"Kuala Belait","countryName":"Brunei","timeZoneName":"Asia/Brunei","timeZoneOffsetNameWithoutDst":"Brunei Darussalam Time","population":31178,"modificationDate":"2013-06-27"}, -{"geonameId":"2939969","name":"Cloppenburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31177,"modificationDate":"2015-09-05"}, -{"geonameId":"6620953","name":"Saint-Georges","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31173,"modificationDate":"2016-06-22"}, -{"geonameId":"1258726","name":"Rāmāpuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31169,"modificationDate":"2017-01-04"}, -{"geonameId":"8299615","name":"Thornton-Cleveleys","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":31157,"modificationDate":"2016-06-22"}, -{"geonameId":"3530886","name":"Chilapa de Alvarez","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":31157,"modificationDate":"2020-06-10"}, -{"geonameId":"712926","name":"Balakliya","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":31156,"modificationDate":"2014-07-08"}, -{"geonameId":"1604452","name":"Ban Khlong Bang Sao Thong","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":31153,"modificationDate":"2012-01-16"}, -{"geonameId":"2149645","name":"Shepparton","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":31148,"modificationDate":"2019-07-18"}, -{"geonameId":"11903638","name":"Lend","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":31147,"modificationDate":"2018-07-29"}, -{"geonameId":"2509982","name":"Valdepeñas","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":31147,"modificationDate":"2013-11-13"}, -{"geonameId":"3109804","name":"Barberà del Vallès","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":31144,"modificationDate":"2018-06-08"}, -{"geonameId":"303290","name":"Ortaköy","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":31144,"modificationDate":"2012-01-18"}, -{"geonameId":"2922731","name":"Ganderkesee","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31141,"modificationDate":"2011-07-31"}, -{"geonameId":"1862992","name":"Hayama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":31136,"modificationDate":"2018-05-01"}, -{"geonameId":"2657835","name":"Aberdare","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":31135,"modificationDate":"2020-06-20"}, -{"geonameId":"650859","name":"Kouvola","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":31133,"modificationDate":"2014-09-25"}, -{"geonameId":"512051","name":"Pavlovskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":31133,"modificationDate":"2013-05-07"}, -{"geonameId":"2967917","name":"Viry","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":31131,"modificationDate":"2020-06-10"}, -{"geonameId":"3188924","name":"Travnik","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":31127,"modificationDate":"2016-06-05"}, -{"geonameId":"789527","name":"Kičevo","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":31123,"modificationDate":"2014-11-06"}, -{"geonameId":"3013097","name":"Houilles","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":31121,"modificationDate":"2016-02-18"}, -{"geonameId":"1261598","name":"Nawanshahr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31121,"modificationDate":"2017-05-06"}, -{"geonameId":"2871675","name":"Merzig","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31118,"modificationDate":"2015-09-05"}, -{"geonameId":"1722032","name":"Cabadbaran","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":31114,"modificationDate":"2017-12-13"}, -{"geonameId":"3467877","name":"Campina Grande do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":31112,"modificationDate":"2012-08-03"}, -{"geonameId":"1604771","name":"Yaring","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":31111,"modificationDate":"2012-01-16"}, -{"geonameId":"5294902","name":"Florence","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":31110,"modificationDate":"2017-03-09"}, -{"geonameId":"3427761","name":"Tigre","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":31106,"modificationDate":"2015-04-22"}, -{"geonameId":"2508275","name":"Guyotville","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":31102,"modificationDate":"2020-06-11"}, -{"geonameId":"1066310","name":"Betioky","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":31102,"modificationDate":"2018-09-10"}, -{"geonameId":"2974389","name":"Soissons","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":31100,"modificationDate":"2016-02-18"}, -{"geonameId":"535243","name":"Likino-Dulevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":31100,"modificationDate":"2019-06-12"}, -{"geonameId":"305810","name":"Kula","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":31100,"modificationDate":"2013-08-06"}, -{"geonameId":"10062605","name":"Lazdynai","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":31097,"modificationDate":"2015-02-12"}, -{"geonameId":"3458406","name":"Louveira","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":31093,"modificationDate":"2012-08-03"}, -{"geonameId":"1263678","name":"Manikarchar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31091,"modificationDate":"2020-06-10"}, -{"geonameId":"1685230","name":"Surallah","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":31089,"modificationDate":"2019-02-10"}, -{"geonameId":"563719","name":"Dyurtyuli","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":31087,"modificationDate":"2012-01-17"}, -{"geonameId":"2938540","name":"Deggendorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31081,"modificationDate":"2019-09-05"}, -{"geonameId":"2481639","name":"Sfizef","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":31081,"modificationDate":"2020-03-17"}, -{"geonameId":"1258922","name":"Rāzampeta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31079,"modificationDate":"2017-01-04"}, -{"geonameId":"3473157","name":"Adamantina","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":31078,"modificationDate":"2012-08-03"}, -{"geonameId":"2147849","name":"Surfers Paradise","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":31073,"modificationDate":"2019-07-18"}, -{"geonameId":"2745860","name":"Valkenswaard","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":31071,"modificationDate":"2017-10-17"}, -{"geonameId":"6457398","name":"Verbania","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":31070,"modificationDate":"2012-12-18"}, -{"geonameId":"2496241","name":"Freha","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":31068,"modificationDate":"2012-01-19"}, -{"geonameId":"2654089","name":"Caerphilly","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":31060,"modificationDate":"2011-09-20"}, -{"geonameId":"3020810","name":"Dreux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":31058,"modificationDate":"2019-04-10"}, -{"geonameId":"4894861","name":"Gurnee","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":31056,"modificationDate":"2017-05-23"}, -{"geonameId":"4003938","name":"Jiménez","countryName":"Mexico","timeZoneName":"America/Chihuahua","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":31054,"modificationDate":"2018-07-04"}, -{"geonameId":"1696683","name":"Pagaluan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":31052,"modificationDate":"2020-06-10"}, -{"geonameId":"3168222","name":"San Giuliano Milanese","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":31050,"modificationDate":"2015-08-09"}, -{"geonameId":"3448219","name":"São Sebastião do Passé","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":31049,"modificationDate":"2012-08-03"}, -{"geonameId":"3165773","name":"Termoli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":31044,"modificationDate":"2015-06-02"}, -{"geonameId":"6317592","name":"Minaçu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":31041,"modificationDate":"2019-07-21"}, -{"geonameId":"2885408","name":"Kornwestheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":31040,"modificationDate":"2013-02-16"}, -{"geonameId":"1582886","name":"Kwang Binh","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":31040,"modificationDate":"2019-12-22"}, -{"geonameId":"501183","name":"Rostov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":31039,"modificationDate":"2019-09-05"}, -{"geonameId":"4588718","name":"Myrtle Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":31035,"modificationDate":"2017-03-09"}, -{"geonameId":"1257928","name":"Sabalgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31032,"modificationDate":"2014-10-14"}, -{"geonameId":"1270530","name":"Hylakandi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31031,"modificationDate":"2020-06-10"}, -{"geonameId":"1269573","name":"Jagdīspur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31029,"modificationDate":"2015-10-04"}, -{"geonameId":"1269574","name":"Jagdīshpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31029,"modificationDate":"2014-10-14"}, -{"geonameId":"2111781","name":"Nagai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":31026,"modificationDate":"2017-07-22"}, -{"geonameId":"1604654","name":"Na Klang","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":31024,"modificationDate":"2010-08-13"}, -{"geonameId":"1256025","name":"Ghodnadi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31018,"modificationDate":"2020-06-10"}, -{"geonameId":"2795800","name":"Heusden","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":31017,"modificationDate":"2011-02-23"}, -{"geonameId":"1258295","name":"Rāwatsār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31016,"modificationDate":"2014-10-14"}, -{"geonameId":"691469","name":"Tokmak","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":31016,"modificationDate":"2020-05-21"}, -{"geonameId":"1256660","name":"Shamsābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":31009,"modificationDate":"2015-08-07"}, -{"geonameId":"2469088","name":"Mateur","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":31005,"modificationDate":"2018-08-05"}, -{"geonameId":"741529","name":"Mimarsinan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":31002,"modificationDate":"2013-10-07"}, -{"geonameId":"2638976","name":"Ruislip","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":31000,"modificationDate":"2012-06-01"}, -{"geonameId":"233299","name":"Ibanda","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":31000,"modificationDate":"2016-12-01"}, -{"geonameId":"1705367","name":"Lucban","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":30992,"modificationDate":"2017-12-13"}, -{"geonameId":"1260228","name":"Partūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30991,"modificationDate":"2015-08-07"}, -{"geonameId":"4817641","name":"Parkersburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30991,"modificationDate":"2017-03-09"}, -{"geonameId":"3126369","name":"Carballo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":30990,"modificationDate":"2012-03-04"}, -{"geonameId":"1259123","name":"Puttūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30986,"modificationDate":"2014-10-10"}, -{"geonameId":"3165762","name":"Terracina","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":30980,"modificationDate":"2015-06-02"}, -{"geonameId":"2611828","name":"Taastrup","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":30977,"modificationDate":"2019-07-31"}, -{"geonameId":"2516797","name":"Hellín","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":30976,"modificationDate":"2014-08-22"}, -{"geonameId":"1270787","name":"Gūduvāncheri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30972,"modificationDate":"2014-10-14"}, -{"geonameId":"4164186","name":"Miami Lakes","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30972,"modificationDate":"2017-03-09"}, -{"geonameId":"5393485","name":"Saratoga","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":30968,"modificationDate":"2017-03-09"}, -{"geonameId":"1174355","name":"Khairpur Tamewah","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":30967,"modificationDate":"2019-12-06"}, -{"geonameId":"4154008","name":"East Lake","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30962,"modificationDate":"2011-05-14"}, -{"geonameId":"2783759","name":"Wevelgem","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":30954,"modificationDate":"2012-01-18"}, -{"geonameId":"3455416","name":"Palmeira das Missões","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30954,"modificationDate":"2012-08-03"}, -{"geonameId":"3855666","name":"Famaillá","countryName":"Argentina","timeZoneName":"America/Argentina/Tucuman","timeZoneOffsetNameWithoutDst":"Argentina Time","population":30951,"modificationDate":"2015-04-22"}, -{"geonameId":"2329451","name":"Nasarawa","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":30949,"modificationDate":"2016-01-30"}, -{"geonameId":"5326032","name":"Banning","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":30945,"modificationDate":"2017-03-09"}, -{"geonameId":"2690960","name":"Motala","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":30944,"modificationDate":"2017-03-18"}, -{"geonameId":"5352963","name":"Goleta","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":30944,"modificationDate":"2017-03-09"}, -{"geonameId":"4161461","name":"Lakeside","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30943,"modificationDate":"2011-05-14"}, -{"geonameId":"5100619","name":"Long Branch","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30941,"modificationDate":"2017-05-23"}, -{"geonameId":"3397969","name":"Itaitinga","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30938,"modificationDate":"2012-08-03"}, -{"geonameId":"1272025","name":"Erandol","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30931,"modificationDate":"2015-09-06"}, -{"geonameId":"1260210","name":"Pasān","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30928,"modificationDate":"2015-09-06"}, -{"geonameId":"1197895","name":"Kesabpur","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":30926,"modificationDate":"2016-11-09"}, -{"geonameId":"96309","name":"Haditha","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":30925,"modificationDate":"2020-06-10"}, -{"geonameId":"2155204","name":"Noble Park","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":30921,"modificationDate":"2019-07-18"}, -{"geonameId":"277130","name":"Baalbek","countryName":"Lebanon","timeZoneName":"Asia/Beirut","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30916,"modificationDate":"2019-09-05"}, -{"geonameId":"3162955","name":"Arendal","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":30916,"modificationDate":"2019-12-12"}, -{"geonameId":"5347287","name":"Fair Oaks","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":30912,"modificationDate":"2011-05-14"}, -{"geonameId":"3026637","name":"Charenton-le-Pont","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":30910,"modificationDate":"2019-03-26"}, -{"geonameId":"99434","name":"Nahiyat Ghammas","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":30909,"modificationDate":"2016-06-22"}, -{"geonameId":"3110880","name":"San Andrés del Rabanedo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":30906,"modificationDate":"2018-04-02"}, -{"geonameId":"160592","name":"Chanika","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":30905,"modificationDate":"2018-12-04"}, -{"geonameId":"1875107","name":"Kusŏng","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":30902,"modificationDate":"2012-01-19"}, -{"geonameId":"3090205","name":"Oława","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":30898,"modificationDate":"2015-09-02"}, -{"geonameId":"2861814","name":"Northeim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30894,"modificationDate":"2015-09-04"}, -{"geonameId":"2335798","name":"Kachia","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":30893,"modificationDate":"2016-06-22"}, -{"geonameId":"5218270","name":"Wayne","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30892,"modificationDate":"2017-05-23"}, -{"geonameId":"5800317","name":"Lake Stevens","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":30886,"modificationDate":"2017-03-09"}, -{"geonameId":"933521","name":"Lobatse","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":30883,"modificationDate":"2018-01-24"}, -{"geonameId":"3166740","name":"Senigallia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":30882,"modificationDate":"2014-04-13"}, -{"geonameId":"2968529","name":"Villeneuve-Saint-Georges","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":30881,"modificationDate":"2019-03-26"}, -{"geonameId":"3531177","name":"Champotón","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":30881,"modificationDate":"2018-11-03"}, -{"geonameId":"5085520","name":"Dover","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30880,"modificationDate":"2017-05-23"}, -{"geonameId":"1502725","name":"Yugorsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":30878,"modificationDate":"2014-06-26"}, -{"geonameId":"5207490","name":"Radnor","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30878,"modificationDate":"2017-05-23"}, -{"geonameId":"3173762","name":"Massafra","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":30875,"modificationDate":"2014-04-13"}, -{"geonameId":"1258012","name":"Rūdarpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30873,"modificationDate":"2015-09-06"}, -{"geonameId":"2396646","name":"Oyem","countryName":"Gabon","timeZoneName":"Africa/Libreville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":30870,"modificationDate":"2011-08-25"}, -{"geonameId":"3970972","name":"Miguel Alemán (La Doce)","countryName":"Mexico","timeZoneName":"America/Hermosillo","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":30869,"modificationDate":"2013-08-01"}, -{"geonameId":"3170694","name":"Pinerolo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":30866,"modificationDate":"2014-04-13"}, -{"geonameId":"1861285","name":"Itoigawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":30865,"modificationDate":"2017-07-22"}, -{"geonameId":"5776008","name":"Holladay","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":30864,"modificationDate":"2017-03-09"}, -{"geonameId":"1257855","name":"Safidon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30863,"modificationDate":"2015-01-07"}, -{"geonameId":"3674597","name":"Caserio Jaime","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":30861,"modificationDate":"2020-06-11"}, -{"geonameId":"3804949","name":"Guasdualito","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":30860,"modificationDate":"2018-08-08"}, -{"geonameId":"1270185","name":"Hatta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30854,"modificationDate":"2015-08-07"}, -{"geonameId":"1513245","name":"Manghit","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":30854,"modificationDate":"2012-01-17"}, -{"geonameId":"2620320","name":"Hillerød","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":30853,"modificationDate":"2017-10-18"}, -{"geonameId":"750605","name":"Biga","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":30852,"modificationDate":"2020-01-31"}, -{"geonameId":"3457393","name":"Matozinhos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30843,"modificationDate":"2012-08-03"}, -{"geonameId":"3174380","name":"Macerata","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":30842,"modificationDate":"2014-01-11"}, -{"geonameId":"1174062","name":"Kharan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":30841,"modificationDate":"2019-12-06"}, -{"geonameId":"259949","name":"Cholargós","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30840,"modificationDate":"2019-10-23"}, -{"geonameId":"5775782","name":"Herriman","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":30835,"modificationDate":"2017-03-09"}, -{"geonameId":"1272052","name":"Elūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30832,"modificationDate":"2014-10-13"}, -{"geonameId":"3020310","name":"Élancourt","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":30831,"modificationDate":"2016-02-18"}, -{"geonameId":"1276782","name":"Basavana Bāgevādi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30827,"modificationDate":"2014-10-14"}, -{"geonameId":"1860458","name":"Kaminokawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":30827,"modificationDate":"2017-04-09"}, -{"geonameId":"8436572","name":"South Kingstown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30826,"modificationDate":"2017-05-23"}, -{"geonameId":"3103476","name":"Bielawa","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":30824,"modificationDate":"2015-03-17"}, -{"geonameId":"3469425","name":"Bom Jesus do Itabapoana","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30821,"modificationDate":"2012-08-03"}, -{"geonameId":"2638717","name":"Saint Neots","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":30811,"modificationDate":"2018-07-03"}, -{"geonameId":"2810833","name":"Werne","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30810,"modificationDate":"2015-09-05"}, -{"geonameId":"2797638","name":"Geraardsbergen","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":30807,"modificationDate":"2012-01-18"}, -{"geonameId":"3472825","name":"Agudos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30807,"modificationDate":"2012-08-03"}, -{"geonameId":"3057789","name":"Rosenberg","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":30806,"modificationDate":"2020-06-10"}, -{"geonameId":"293962","name":"Or Yehuda","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":30802,"modificationDate":"2017-07-05"}, -{"geonameId":"1259896","name":"Perambalur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30799,"modificationDate":"2014-10-14"}, -{"geonameId":"4154568","name":"Estero","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30799,"modificationDate":"2017-03-09"}, -{"geonameId":"4006622","name":"Escuinapa","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":30790,"modificationDate":"2018-11-03"}, -{"geonameId":"5122432","name":"Ithaca","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30788,"modificationDate":"2017-05-23"}, -{"geonameId":"3038230","name":"Alençon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":30786,"modificationDate":"2018-02-06"}, -{"geonameId":"3600704","name":"Tocoa","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":30785,"modificationDate":"2012-01-18"}, -{"geonameId":"5129245","name":"North Tonawanda","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30785,"modificationDate":"2017-05-23"}, -{"geonameId":"679065","name":"Dorohoi","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30776,"modificationDate":"2012-06-12"}, -{"geonameId":"343402","name":"Asebe Tafari","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":30772,"modificationDate":"2020-06-11"}, -{"geonameId":"5019330","name":"Brooklyn Center","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":30770,"modificationDate":"2017-05-23"}, -{"geonameId":"3667991","name":"San Luis de Sincé","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":30768,"modificationDate":"2018-09-05"}, -{"geonameId":"3178197","name":"Conegliano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":30765,"modificationDate":"2015-08-08"}, -{"geonameId":"3590389","name":"San Benito","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":30764,"modificationDate":"2015-03-28"}, -{"geonameId":"4365387","name":"Pikesville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30764,"modificationDate":"2011-05-14"}, -{"geonameId":"1926006","name":"Iyo","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":30760,"modificationDate":"2017-07-22"}, -{"geonameId":"4334971","name":"New Iberia","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":30754,"modificationDate":"2017-03-09"}, -{"geonameId":"5454627","name":"Alamogordo","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":30753,"modificationDate":"2017-03-09"}, -{"geonameId":"1632903","name":"Panarukan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":30749,"modificationDate":"2007-11-09"}, -{"geonameId":"624785","name":"Novogrudok","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30748,"modificationDate":"2019-09-05"}, -{"geonameId":"744092","name":"Karasu","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":30746,"modificationDate":"2018-04-28"}, -{"geonameId":"226823","name":"Pallisa","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":30745,"modificationDate":"2016-06-22"}, -{"geonameId":"6324534","name":"Vrilissia","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30741,"modificationDate":"2019-10-23"}, -{"geonameId":"2953321","name":"Bad Vilbel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30736,"modificationDate":"2015-09-04"}, -{"geonameId":"6094201","name":"Orangeville","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30734,"modificationDate":"2019-08-08"}, -{"geonameId":"4364946","name":"Parkville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30734,"modificationDate":"2011-05-14"}, -{"geonameId":"490554","name":"Sorochinsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":30731,"modificationDate":"2012-01-17"}, -{"geonameId":"2953439","name":"Bad Hersfeld","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30725,"modificationDate":"2019-09-05"}, -{"geonameId":"1224085","name":"Wattala","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":30725,"modificationDate":"2018-12-30"}, -{"geonameId":"2525646","name":"Augusta","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":30723,"modificationDate":"2015-08-08"}, -{"geonameId":"4224413","name":"Statesboro","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30721,"modificationDate":"2017-03-09"}, -{"geonameId":"1230613","name":"Peliyagoda","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":30717,"modificationDate":"2018-12-17"}, -{"geonameId":"163915","name":"Souran","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30716,"modificationDate":"2013-09-06"}, -{"geonameId":"678499","name":"Făgăraș","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30714,"modificationDate":"2019-04-24"}, -{"geonameId":"4815352","name":"Morgantown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30708,"modificationDate":"2019-09-19"}, -{"geonameId":"5368518","name":"Los Gatos","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":30705,"modificationDate":"2017-03-09"}, -{"geonameId":"1271631","name":"Gangtok","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30700,"modificationDate":"2018-09-07"}, -{"geonameId":"704362","name":"Yany Kapu","countryName":"Ukraine","timeZoneName":"Europe/Simferopol","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30700,"modificationDate":"2020-03-08"}, -{"geonameId":"2750947","name":"Meppel","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":30697,"modificationDate":"2017-10-17"}, -{"geonameId":"585630","name":"Lokbatan","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":30694,"modificationDate":"2020-06-10"}, -{"geonameId":"2519466","name":"Xirivella","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":30691,"modificationDate":"2010-04-22"}, -{"geonameId":"156111","name":"Kyela","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":30684,"modificationDate":"2016-07-26"}, -{"geonameId":"4478334","name":"Matthews","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30678,"modificationDate":"2017-03-09"}, -{"geonameId":"1264010","name":"Mālūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30677,"modificationDate":"2015-10-04"}, -{"geonameId":"528109","name":"Mednogorsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":30676,"modificationDate":"2019-09-05"}, -{"geonameId":"2522131","name":"Alcázar de San Juan","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":30675,"modificationDate":"2019-12-15"}, -{"geonameId":"1253671","name":"Usilampatti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30675,"modificationDate":"2014-10-14"}, -{"geonameId":"1253786","name":"Un","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30671,"modificationDate":"2014-10-13"}, -{"geonameId":"5368335","name":"Los Altos","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":30671,"modificationDate":"2017-03-09"}, -{"geonameId":"3183573","name":"Abbiategrasso","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":30659,"modificationDate":"2014-01-16"}, -{"geonameId":"3435486","name":"Chajarí","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":30655,"modificationDate":"2016-01-30"}, -{"geonameId":"5772959","name":"Clearfield","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":30653,"modificationDate":"2017-03-09"}, -{"geonameId":"784097","name":"Vushtrri","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":30651,"modificationDate":"2015-02-22"}, -{"geonameId":"933182","name":"Palapye","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":30650,"modificationDate":"2018-05-20"}, -{"geonameId":"3430709","name":"Mercedes","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":30649,"modificationDate":"2015-06-15"}, -{"geonameId":"4937276","name":"Franklin","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30636,"modificationDate":"2017-05-23"}, -{"geonameId":"2654308","name":"Burgess Hill","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":30635,"modificationDate":"2018-07-03"}, -{"geonameId":"285663","name":"Bayān","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":30635,"modificationDate":"2016-09-13"}, -{"geonameId":"332746","name":"Korem","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":30633,"modificationDate":"2012-01-19"}, -{"geonameId":"1262672","name":"Mudabidri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30632,"modificationDate":"2020-06-10"}, -{"geonameId":"1258930","name":"Rājākhera","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30627,"modificationDate":"2014-10-14"}, -{"geonameId":"3460214","name":"Jaguariaíva","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30626,"modificationDate":"2014-10-24"}, -{"geonameId":"1263591","name":"Manwath","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30624,"modificationDate":"2020-06-10"}, -{"geonameId":"91812","name":"Nāḩīyat Saddat al Hindīyah","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":30622,"modificationDate":"2016-06-22"}, -{"geonameId":"4364727","name":"Owings Mills","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30622,"modificationDate":"2011-05-14"}, -{"geonameId":"1083724","name":"Ambanja","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":30621,"modificationDate":"2018-09-10"}, -{"geonameId":"2974153","name":"Sottville-les-Rouen","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":30619,"modificationDate":"2020-06-10"}, -{"geonameId":"3392126","name":"Pilar","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30617,"modificationDate":"2012-08-03"}, -{"geonameId":"3892892","name":"Curanilahue","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":30611,"modificationDate":"2013-01-11"}, -{"geonameId":"2491042","name":"Larbaa Nath Iraten","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":30609,"modificationDate":"2020-06-11"}, -{"geonameId":"4569067","name":"Aiken","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30604,"modificationDate":"2017-03-09"}, -{"geonameId":"1253041","name":"Wādi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30602,"modificationDate":"2015-08-07"}, -{"geonameId":"1854186","name":"Ōmachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":30599,"modificationDate":"2017-07-22"}, -{"geonameId":"1278532","name":"Anta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30598,"modificationDate":"2014-10-14"}, -{"geonameId":"2460546","name":"Banamba","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":30591,"modificationDate":"2013-11-09"}, -{"geonameId":"4263108","name":"Plainfield","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30590,"modificationDate":"2019-09-11"}, -{"geonameId":"700918","name":"Mohyliv-Podilskyy","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30589,"modificationDate":"2020-05-13"}, -{"geonameId":"2655785","name":"Beverley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":30587,"modificationDate":"2017-06-12"}, -{"geonameId":"3516271","name":"Tantoyuca","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":30587,"modificationDate":"2018-11-03"}, -{"geonameId":"5656882","name":"Helena","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":30581,"modificationDate":"2019-09-05"}, -{"geonameId":"3530177","name":"Cosamaloapan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":30577,"modificationDate":"2018-11-03"}, -{"geonameId":"4375663","name":"Ballwin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":30577,"modificationDate":"2017-05-23"}, -{"geonameId":"4838174","name":"Manchester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30577,"modificationDate":"2017-05-23"}, -{"geonameId":"1489394","name":"Topki","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":30572,"modificationDate":"2019-08-27"}, -{"geonameId":"3991219","name":"Puruándiro","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":30571,"modificationDate":"2018-11-03"}, -{"geonameId":"4883078","name":"Algonquin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":30571,"modificationDate":"2017-05-23"}, -{"geonameId":"7257991","name":"Bel Air North","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30568,"modificationDate":"2011-05-14"}, -{"geonameId":"548278","name":"Kirzhach","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30566,"modificationDate":"2019-09-05"}, -{"geonameId":"3653015","name":"Playas","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":30564,"modificationDate":"2017-02-07"}, -{"geonameId":"4839497","name":"Newington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30562,"modificationDate":"2017-05-23"}, -{"geonameId":"3445307","name":"Vera Cruz","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30556,"modificationDate":"2018-12-05"}, -{"geonameId":"693796","name":"Synelnykove","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30556,"modificationDate":"2020-05-24"}, -{"geonameId":"2651468","name":"Deal","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":30555,"modificationDate":"2018-07-03"}, -{"geonameId":"3579767","name":"Baie-Mahault","countryName":"Guadeloupe","timeZoneName":"America/Guadeloupe","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":30551,"modificationDate":"2019-02-26"}, -{"geonameId":"1264433","name":"Mahārāganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30548,"modificationDate":"2015-09-06"}, -{"geonameId":"1926101","name":"Masaki-chō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":30548,"modificationDate":"2017-04-09"}, -{"geonameId":"5106331","name":"Westfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30548,"modificationDate":"2017-05-23"}, -{"geonameId":"5393245","name":"Santa Paula","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":30546,"modificationDate":"2017-03-09"}, -{"geonameId":"3599582","name":"Barberena","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":30539,"modificationDate":"2019-07-10"}, -{"geonameId":"5347578","name":"Fallbrook","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":30534,"modificationDate":"2011-05-14"}, -{"geonameId":"2208285","name":"Randwick","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":30532,"modificationDate":"2019-07-18"}, -{"geonameId":"4354163","name":"Eldersburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30531,"modificationDate":"2011-05-14"}, -{"geonameId":"2989460","name":"Orange","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":30530,"modificationDate":"2019-06-05"}, -{"geonameId":"12156871","name":"Annex","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30526,"modificationDate":"2020-05-02"}, -{"geonameId":"744168","name":"Karamürsel","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":30525,"modificationDate":"2019-03-05"}, -{"geonameId":"1088155","name":"Mutuáli","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":30523,"modificationDate":"2018-12-05"}, -{"geonameId":"4828193","name":"Sherwood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":30517,"modificationDate":"2017-05-23"}, -{"geonameId":"5139287","name":"Springfield Gardens","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30515,"modificationDate":"2017-04-21"}, -{"geonameId":"343292","name":"Āsosa","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":30512,"modificationDate":"2018-01-12"}, -{"geonameId":"2633765","name":"Wishaw","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":30510,"modificationDate":"2017-06-12"}, -{"geonameId":"227528","name":"Nyachera","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":30509,"modificationDate":"2016-06-22"}, -{"geonameId":"2514197","name":"Manises","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":30508,"modificationDate":"2012-03-04"}, -{"geonameId":"1850860","name":"Takehara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":30506,"modificationDate":"2017-07-22"}, -{"geonameId":"2485572","name":"Oued Sly","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":30504,"modificationDate":"2019-10-04"}, -{"geonameId":"341297","name":"Buttagira","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":30502,"modificationDate":"2020-06-11"}, -{"geonameId":"1516048","name":"Khovd","countryName":"Mongolia","timeZoneName":"Asia/Hovd","timeZoneOffsetNameWithoutDst":"Hovd Time","population":30500,"modificationDate":"2017-06-22"}, -{"geonameId":"704737","name":"Kostopel","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30500,"modificationDate":"2020-06-10"}, -{"geonameId":"1694791","name":"Paraiso","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":30494,"modificationDate":"2017-12-13"}, -{"geonameId":"4205196","name":"Lawrenceville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30493,"modificationDate":"2017-03-09"}, -{"geonameId":"12156904","name":"Glenfield-Jane Heights","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30491,"modificationDate":"2020-05-02"}, -{"geonameId":"2165478","name":"Gladstone","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":30489,"modificationDate":"2019-07-20"}, -{"geonameId":"674295","name":"Lupeni","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30488,"modificationDate":"2016-02-07"}, -{"geonameId":"4787117","name":"Springfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30484,"modificationDate":"2011-05-14"}, -{"geonameId":"10294260","name":"Stella","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":30483,"modificationDate":"2019-07-22"}, -{"geonameId":"3910291","name":"Mizque","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":30481,"modificationDate":"2009-10-16"}, -{"geonameId":"11549793","name":"la Marina de Port","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":30479,"modificationDate":"2017-05-24"}, -{"geonameId":"1254912","name":"Tarakeswar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30475,"modificationDate":"2014-10-14"}, -{"geonameId":"4004647","name":"Huatabampo","countryName":"Mexico","timeZoneName":"America/Hermosillo","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":30475,"modificationDate":"2018-11-03"}, -{"geonameId":"8349017","name":"Baldivis","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":30472,"modificationDate":"2019-07-18"}, -{"geonameId":"5776715","name":"Kaysville","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":30472,"modificationDate":"2017-03-09"}, -{"geonameId":"181135","name":"Rongai","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":30471,"modificationDate":"2018-11-06"}, -{"geonameId":"1252646","name":"Keelakarai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30468,"modificationDate":"2014-10-14"}, -{"geonameId":"765749","name":"Łuków","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":30465,"modificationDate":"2011-07-31"}, -{"geonameId":"4920869","name":"Granger","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30465,"modificationDate":"2017-05-23"}, -{"geonameId":"3461824","name":"Guariba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30464,"modificationDate":"2012-08-03"}, -{"geonameId":"488742","name":"Starominskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30461,"modificationDate":"2013-05-07"}, -{"geonameId":"5331920","name":"Burlingame","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":30459,"modificationDate":"2017-03-09"}, -{"geonameId":"5604353","name":"Post Falls","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":30453,"modificationDate":"2017-03-09"}, -{"geonameId":"4395052","name":"Liberty","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":30450,"modificationDate":"2017-05-23"}, -{"geonameId":"2786559","name":"Sint-Pieters-Leeuw","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":30446,"modificationDate":"2012-01-18"}, -{"geonameId":"2483000","name":"Robbah","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":30446,"modificationDate":"2012-01-19"}, -{"geonameId":"2925910","name":"Forchheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30442,"modificationDate":"2014-01-09"}, -{"geonameId":"2068079","name":"Kwinana","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":30433,"modificationDate":"2013-06-25"}, -{"geonameId":"1170584","name":"Mehar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":30429,"modificationDate":"2019-12-06"}, -{"geonameId":"3988025","name":"Nicolás R Casillas","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":30424,"modificationDate":"2018-11-03"}, -{"geonameId":"2026126","name":"Borzya","countryName":"Russia","timeZoneName":"Asia/Chita","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":30421,"modificationDate":"2016-11-29"}, -{"geonameId":"2640104","name":"Pontypridd","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":30420,"modificationDate":"2011-03-03"}, -{"geonameId":"1268567","name":"Kakching","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30418,"modificationDate":"2018-05-26"}, -{"geonameId":"308224","name":"Nymphaeum","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":30411,"modificationDate":"2020-06-10"}, -{"geonameId":"3460107","name":"Jaraguá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30409,"modificationDate":"2012-08-03"}, -{"geonameId":"2857904","name":"Oer-Erkenschwick","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30409,"modificationDate":"2015-09-04"}, -{"geonameId":"1693778","name":"Pililla","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":30408,"modificationDate":"2017-12-13"}, -{"geonameId":"3455281","name":"Panambi","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30407,"modificationDate":"2012-08-03"}, -{"geonameId":"5392508","name":"San Pablo","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":30407,"modificationDate":"2017-03-09"}, -{"geonameId":"1271413","name":"Gevrai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30406,"modificationDate":"2014-10-13"}, -{"geonameId":"3085056","name":"Śrem","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":30404,"modificationDate":"2020-04-22"}, -{"geonameId":"2522297","name":"Alaquàs","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":30392,"modificationDate":"2012-03-04"}, -{"geonameId":"5046063","name":"Savage","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":30391,"modificationDate":"2017-05-23"}, -{"geonameId":"1684379","name":"Tagoloan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":30390,"modificationDate":"2017-12-13"}, -{"geonameId":"746565","name":"Philocalia","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":30381,"modificationDate":"2020-06-10"}, -{"geonameId":"5132143","name":"Poughkeepsie","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30371,"modificationDate":"2017-05-23"}, -{"geonameId":"1259701","name":"Pihānī","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30369,"modificationDate":"2016-02-06"}, -{"geonameId":"3164672","name":"Vasto","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":30367,"modificationDate":"2015-06-02"}, -{"geonameId":"1849367","name":"Ujiie","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":30366,"modificationDate":"2017-04-09"}, -{"geonameId":"3462557","name":"Garibaldi","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30364,"modificationDate":"2012-08-03"}, -{"geonameId":"1465828","name":"Perungudi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30363,"modificationDate":"2014-10-14"}, -{"geonameId":"3047896","name":"Moson","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":30359,"modificationDate":"2020-06-10"}, -{"geonameId":"171451","name":"Binnish","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30354,"modificationDate":"2013-09-06"}, -{"geonameId":"227904","name":"Nebbi","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":30354,"modificationDate":"2016-06-22"}, -{"geonameId":"1079088","name":"Ambositra","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":30353,"modificationDate":"2018-09-07"}, -{"geonameId":"4133367","name":"Texarkana","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":30353,"modificationDate":"2017-05-23"}, -{"geonameId":"2968620","name":"Villenave-d'Ornon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":30347,"modificationDate":"2020-01-08"}, -{"geonameId":"1257149","name":"Sarkhej","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30341,"modificationDate":"2014-10-13"}, -{"geonameId":"305680","name":"Beykonak","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":30339,"modificationDate":"2018-12-05"}, -{"geonameId":"2873589","name":"Marienfelde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30338,"modificationDate":"2017-09-19"}, -{"geonameId":"1610503","name":"Kaeng Khoi","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":30332,"modificationDate":"2012-01-16"}, -{"geonameId":"3391220","name":"Presidente Dutra","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30330,"modificationDate":"2017-07-21"}, -{"geonameId":"662476","name":"Voluntari","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30323,"modificationDate":"2013-09-29"}, -{"geonameId":"1258229","name":"Remuna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30319,"modificationDate":"2014-10-14"}, -{"geonameId":"1174217","name":"Khangah Dogran","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":30314,"modificationDate":"2019-12-06"}, -{"geonameId":"1627267","name":"Sidareja","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":30313,"modificationDate":"2012-01-17"}, -{"geonameId":"2414926","name":"Télimélé","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":30311,"modificationDate":"2012-07-07"}, -{"geonameId":"5164916","name":"North Royalton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30311,"modificationDate":"2017-05-23"}, -{"geonameId":"728288","name":"Petrich","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30308,"modificationDate":"2017-01-05"}, -{"geonameId":"2821899","name":"Tönisvorst","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30296,"modificationDate":"2015-09-04"}, -{"geonameId":"2953395","name":"Bad Nauheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30291,"modificationDate":"2015-09-04"}, -{"geonameId":"2986140","name":"Pontoise","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":30290,"modificationDate":"2016-02-18"}, -{"geonameId":"1174344","name":"Khairpur Nathan Shah","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":30286,"modificationDate":"2019-12-06"}, -{"geonameId":"4887442","name":"Chicago Heights","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":30284,"modificationDate":"2017-05-23"}, -{"geonameId":"165997","name":"Jasem","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30283,"modificationDate":"2020-06-10"}, -{"geonameId":"1255643","name":"Sri Mādhopur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30281,"modificationDate":"2014-10-14"}, -{"geonameId":"1732871","name":"Bakri","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":30280,"modificationDate":"2013-10-05"}, -{"geonameId":"3981467","name":"Tlajomulco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":30273,"modificationDate":"2020-06-10"}, -{"geonameId":"2502962","name":"Bouinan","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":30271,"modificationDate":"2018-10-01"}, -{"geonameId":"1705190","name":"Lumbang","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":30269,"modificationDate":"2017-12-13"}, -{"geonameId":"1253985","name":"Udaipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30264,"modificationDate":"2014-10-14"}, -{"geonameId":"4636045","name":"Lebanon","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":30262,"modificationDate":"2017-03-09"}, -{"geonameId":"2633810","name":"Winsford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":30259,"modificationDate":"2017-06-13"}, -{"geonameId":"906044","name":"Monze","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":30257,"modificationDate":"2012-01-17"}, -{"geonameId":"1252997","name":"Walajapet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30256,"modificationDate":"2014-10-14"}, -{"geonameId":"3901501","name":"Villazón","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":30253,"modificationDate":"2019-04-01"}, -{"geonameId":"2968142","name":"Villiers-sur-Marne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":30252,"modificationDate":"2016-02-18"}, -{"geonameId":"1259986","name":"Pedana","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30252,"modificationDate":"2014-10-10"}, -{"geonameId":"264445","name":"Asprópyrgos","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30251,"modificationDate":"2019-10-23"}, -{"geonameId":"3053476","name":"Dunakeszi","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":30246,"modificationDate":"2014-11-05"}, -{"geonameId":"2647451","name":"Harpenden","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":30240,"modificationDate":"2018-07-03"}, -{"geonameId":"5406976","name":"Walnut","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":30237,"modificationDate":"2017-03-09"}, -{"geonameId":"2834372","name":"Schwelm","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30235,"modificationDate":"2019-03-05"}, -{"geonameId":"6157977","name":"Stratford","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30233,"modificationDate":"2010-01-29"}, -{"geonameId":"1271888","name":"Ferokh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30229,"modificationDate":"2014-10-13"}, -{"geonameId":"6615444","name":"Oliver-Valdefierro","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":30228,"modificationDate":"2015-05-07"}, -{"geonameId":"1257638","name":"Salāya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30228,"modificationDate":"2014-10-13"}, -{"geonameId":"2158651","name":"Maroubra","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":30224,"modificationDate":"2019-07-18"}, -{"geonameId":"1718426","name":"Cardona","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":30222,"modificationDate":"2017-12-13"}, -{"geonameId":"2814362","name":"Waltrop","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30220,"modificationDate":"2015-09-04"}, -{"geonameId":"1477498","name":"Bhāndāria","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":30219,"modificationDate":"2016-11-09"}, -{"geonameId":"2941405","name":"Burgdorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30218,"modificationDate":"2015-03-04"}, -{"geonameId":"3398856","name":"Grajaú","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30217,"modificationDate":"2012-08-03"}, -{"geonameId":"575591","name":"Bogoroditsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30216,"modificationDate":"2019-09-05"}, -{"geonameId":"2794507","name":"Kessel-Lo","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":30215,"modificationDate":"2020-05-25"}, -{"geonameId":"2801824","name":"Blauwput","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":30215,"modificationDate":"2020-04-05"}, -{"geonameId":"3465228","name":"Coxim","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":30215,"modificationDate":"2012-08-03"}, -{"geonameId":"1633182","name":"Pakisaji","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":30213,"modificationDate":"2012-01-17"}, -{"geonameId":"1222396","name":"Kuah","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":30212,"modificationDate":"2015-12-20"}, -{"geonameId":"1262380","name":"Musiri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30209,"modificationDate":"2014-10-14"}, -{"geonameId":"3598128","name":"Ciudad Vieja","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":30203,"modificationDate":"2019-05-08"}, -{"geonameId":"710229","name":"Debalzewo","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30200,"modificationDate":"2020-06-10"}, -{"geonameId":"5000500","name":"Madison Heights","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30198,"modificationDate":"2017-05-23"}, -{"geonameId":"2639583","name":"Rayleigh","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":30196,"modificationDate":"2018-07-03"}, -{"geonameId":"2634021","name":"Whitstable","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":30195,"modificationDate":"2013-07-11"}, -{"geonameId":"4152890","name":"DeLand","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30195,"modificationDate":"2017-03-09"}, -{"geonameId":"2169460","name":"Dandenong","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":30193,"modificationDate":"2019-07-18"}, -{"geonameId":"3631507","name":"Nirgua","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":30188,"modificationDate":"2019-09-29"}, -{"geonameId":"2391895","name":"Savalou","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":30187,"modificationDate":"2012-01-18"}, -{"geonameId":"5536630","name":"Cedar City","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":30184,"modificationDate":"2017-03-09"}, -{"geonameId":"1627969","name":"Selogiri","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":30180,"modificationDate":"2018-12-04"}, -{"geonameId":"6094325","name":"Orillia","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30178,"modificationDate":"2009-07-31"}, -{"geonameId":"4167829","name":"Parkland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30177,"modificationDate":"2017-03-09"}, -{"geonameId":"259289","name":"Kórinthos","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30176,"modificationDate":"2016-06-21"}, -{"geonameId":"1267182","name":"Khair","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30173,"modificationDate":"2015-08-07"}, -{"geonameId":"3467550","name":"Candelária","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30171,"modificationDate":"2012-08-03"}, -{"geonameId":"157977","name":"Kibiti","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":30163,"modificationDate":"2016-07-26"}, -{"geonameId":"6107325","name":"Pointe-Claire","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30161,"modificationDate":"2019-02-26"}, -{"geonameId":"3456060","name":"Novo Horizonte","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30158,"modificationDate":"2012-08-03"}, -{"geonameId":"2271473","name":"Arrentela","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":30156,"modificationDate":"2018-02-09"}, -{"geonameId":"2653947","name":"Camberley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":30155,"modificationDate":"2015-11-21"}, -{"geonameId":"2398269","name":"Moanda","countryName":"Gabon","timeZoneName":"Africa/Libreville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":30151,"modificationDate":"2015-03-31"}, -{"geonameId":"1853662","name":"Ōtake","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":30151,"modificationDate":"2017-08-02"}, -{"geonameId":"5225627","name":"West Warwick","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30146,"modificationDate":"2017-05-23"}, -{"geonameId":"94298","name":"Sallahiyah","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":30143,"modificationDate":"2020-06-10"}, -{"geonameId":"1274077","name":"Chītāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30139,"modificationDate":"2014-10-14"}, -{"geonameId":"970341","name":"Nkowakowa","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":30138,"modificationDate":"2014-04-06"}, -{"geonameId":"2359227","name":"Kombissiri","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":30137,"modificationDate":"2018-12-04"}, -{"geonameId":"543899","name":"Kostomuksha","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30135,"modificationDate":"2015-12-12"}, -{"geonameId":"9972518","name":"Narre Warren South","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":30132,"modificationDate":"2019-07-18"}, -{"geonameId":"1258124","name":"Risod","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30131,"modificationDate":"2015-08-07"}, -{"geonameId":"1723166","name":"Buhi","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":30126,"modificationDate":"2017-12-13"}, -{"geonameId":"2392009","name":"Sakété","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":30111,"modificationDate":"2012-01-18"}, -{"geonameId":"2959083","name":"Ahrensburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30103,"modificationDate":"2015-09-04"}, -{"geonameId":"3170674","name":"Piombino","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":30103,"modificationDate":"2015-08-08"}, -{"geonameId":"7274677","name":"Eidelstedt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30100,"modificationDate":"2017-08-14"}, -{"geonameId":"6217081","name":"Ashburton","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":30100,"modificationDate":"2017-04-19"}, -{"geonameId":"593926","name":"Telsiai","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30098,"modificationDate":"2019-09-05"}, -{"geonameId":"1820187","name":"Seria","countryName":"Brunei","timeZoneName":"Asia/Brunei","timeZoneOffsetNameWithoutDst":"Brunei Darussalam Time","population":30097,"modificationDate":"2013-06-09"}, -{"geonameId":"2850954","name":"Radolfzell","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30096,"modificationDate":"2019-04-10"}, -{"geonameId":"3026033","name":"Chatou","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":30091,"modificationDate":"2016-02-18"}, -{"geonameId":"964363","name":"Postmasburg","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":30089,"modificationDate":"2018-07-24"}, -{"geonameId":"3445713","name":"Uruaçu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":30088,"modificationDate":"2012-08-03"}, -{"geonameId":"2658154","name":"Vernier","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":30086,"modificationDate":"2013-02-19"}, -{"geonameId":"5122534","name":"Jamestown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30075,"modificationDate":"2017-05-23"}, -{"geonameId":"2487805","name":"Meskiana","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":30071,"modificationDate":"2012-01-19"}, -{"geonameId":"1504343","name":"Karpinsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":30070,"modificationDate":"2019-09-05"}, -{"geonameId":"4481682","name":"New Bern","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30070,"modificationDate":"2017-05-23"}, -{"geonameId":"495518","name":"Shatura","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30069,"modificationDate":"2019-09-05"}, -{"geonameId":"924055","name":"Salima","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":30052,"modificationDate":"2011-04-25"}, -{"geonameId":"2795261","name":"Houthalen","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":30050,"modificationDate":"2011-02-23"}, -{"geonameId":"2796132","name":"Helchteren","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":30050,"modificationDate":"2011-02-23"}, -{"geonameId":"1272970","name":"Dhandhuka","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30049,"modificationDate":"2014-10-13"}, -{"geonameId":"2473257","name":"Ar Rudayyif","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":30048,"modificationDate":"2018-08-05"}, -{"geonameId":"3015490","name":"Goussainville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":30047,"modificationDate":"2016-02-18"}, -{"geonameId":"3180792","name":"Canosa di Puglia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":30046,"modificationDate":"2014-04-13"}, -{"geonameId":"734426","name":"Ptolemaḯda","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30045,"modificationDate":"2019-04-08"}, -{"geonameId":"5091872","name":"Rochester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":30038,"modificationDate":"2017-05-23"}, -{"geonameId":"3622217","name":"Purral","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":30034,"modificationDate":"2018-12-05"}, -{"geonameId":"2512232","name":"Puente-Genil","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":30033,"modificationDate":"2013-07-22"}, -{"geonameId":"3691530","name":"Tambo Grande","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":30033,"modificationDate":"2012-07-19"}, -{"geonameId":"1271900","name":"Fatehpur Sīkri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30026,"modificationDate":"2014-10-14"}, -{"geonameId":"4681976","name":"Cleburne","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":30020,"modificationDate":"2017-03-09"}, -{"geonameId":"1507379","name":"Divnogorsk","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":30018,"modificationDate":"2019-09-05"}, -{"geonameId":"1735287","name":"Bidur","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":30016,"modificationDate":"2012-01-17"}, -{"geonameId":"2959681","name":"Achim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30013,"modificationDate":"2011-03-15"}, -{"geonameId":"2223293","name":"Obala","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":30012,"modificationDate":"2012-01-16"}, -{"geonameId":"1639002","name":"Kuta","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":30012,"modificationDate":"2019-03-26"}, -{"geonameId":"2265788","name":"Montijo","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":30011,"modificationDate":"2014-04-06"}, -{"geonameId":"2129003","name":"Nanae","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":30008,"modificationDate":"2020-06-11"}, -{"geonameId":"2526435","name":"Zaïo","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":30008,"modificationDate":"2016-11-29"}, -{"geonameId":"3112154","name":"Redondela","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":30001,"modificationDate":"2012-01-19"}, -{"geonameId":"292231","name":"Dibba Al-Fujairah","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":30000,"modificationDate":"2014-08-12"}, -{"geonameId":"1141089","name":"Ghormach","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":30000,"modificationDate":"2018-02-13"}, -{"geonameId":"620181","name":"Vilyeyka","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2019-03-18"}, -{"geonameId":"6458708","name":"Las Animas","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":30000,"modificationDate":"2018-06-18"}, -{"geonameId":"1280517","name":"Nagqu","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":30000,"modificationDate":"2013-07-05"}, -{"geonameId":"2037330","name":"Fuyuan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":30000,"modificationDate":"2013-07-05"}, -{"geonameId":"7303020","name":"Wittenberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":30000,"modificationDate":"2018-04-01"}, -{"geonameId":"2614600","name":"Rødovre","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":30000,"modificationDate":"2017-10-18"}, -{"geonameId":"2624906","name":"Albertslund","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":30000,"modificationDate":"2017-10-18"}, -{"geonameId":"2479203","name":"Lardjem","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":30000,"modificationDate":"2015-03-01"}, -{"geonameId":"2521486","name":"Atamaría","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":30000,"modificationDate":"2018-06-08"}, -{"geonameId":"6324376","name":"Pinar de Chamartín","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":30000,"modificationDate":"2017-05-26"}, -{"geonameId":"6355013","name":"Puerto del Carmen","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":30000,"modificationDate":"2015-06-10"}, -{"geonameId":"2656295","name":"Barnet","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":30000,"modificationDate":"2012-06-01"}, -{"geonameId":"611403","name":"Stavinir","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":30000,"modificationDate":"2020-06-10"}, -{"geonameId":"1636029","name":"Maros","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":30000,"modificationDate":"2016-10-18"}, -{"geonameId":"7284803","name":"Birpara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30000,"modificationDate":"2014-10-14"}, -{"geonameId":"7302853","name":"Yanamalakuduru","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30000,"modificationDate":"2014-10-10"}, -{"geonameId":"8504418","name":"Cherpulassery","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":30000,"modificationDate":"2014-10-13"}, -{"geonameId":"1822019","name":"Suong","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":30000,"modificationDate":"2018-07-04"}, -{"geonameId":"1841976","name":"Kurye","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":30000,"modificationDate":"2012-01-18"}, -{"geonameId":"3617052","name":"Rivas","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":30000,"modificationDate":"2018-10-13"}, -{"geonameId":"6941548","name":"Ypenburg","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":30000,"modificationDate":"2009-09-06"}, -{"geonameId":"471456","name":"Vostryakovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2014-03-05"}, -{"geonameId":"472079","name":"Vorob’yovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2014-01-31"}, -{"geonameId":"506117","name":"Annino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2014-02-06"}, -{"geonameId":"509981","name":"Petrovskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2013-04-02"}, -{"geonameId":"521416","name":"Nikulino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2016-04-06"}, -{"geonameId":"527057","name":"Mikhalkovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2013-04-02"}, -{"geonameId":"528454","name":"Matveyevskoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2017-03-25"}, -{"geonameId":"533067","name":"Luzhniki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2013-04-02"}, -{"geonameId":"535966","name":"Leonovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2013-04-02"}, -{"geonameId":"536098","name":"Leninskiye Gory","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2014-01-31"}, -{"geonameId":"536625","name":"Lazarevskoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2012-12-24"}, -{"geonameId":"538321","name":"Kuskovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2013-04-02"}, -{"geonameId":"538472","name":"Kur’yanovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2016-08-01"}, -{"geonameId":"546244","name":"Kolomenskoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2013-04-02"}, -{"geonameId":"566976","name":"Davydkovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2013-04-02"}, -{"geonameId":"582266","name":"Amin’yevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2013-04-02"}, -{"geonameId":"819552","name":"Annino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2013-04-02"}, -{"geonameId":"6418201","name":"Zagor’ye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":30000,"modificationDate":"2015-01-07"}, -{"geonameId":"3058202","name":"Piešťany","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":30000,"modificationDate":"2019-09-05"}, -{"geonameId":"2253277","name":"Dara","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":30000,"modificationDate":"2010-01-29"}, -{"geonameId":"1221328","name":"Khorugh","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":30000,"modificationDate":"2012-02-28"}, -{"geonameId":"601608","name":"Kunya-Urgench","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":30000,"modificationDate":"2020-06-10"}, -{"geonameId":"697576","name":"Pervomayskiy","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":30000,"modificationDate":"2020-06-10"}, -{"geonameId":"1586052","name":"Cát Bà","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":30000,"modificationDate":"2014-01-07"}, -{"geonameId":"882009","name":"Ruwa","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":30000,"modificationDate":"2018-11-24"}, -{"geonameId":"3577154","name":"Oranjestad","countryName":"Aruba","timeZoneName":"America/Aruba","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":29998,"modificationDate":"2019-09-05"}, -{"geonameId":"1278775","name":"Amla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29995,"modificationDate":"2015-04-08"}, -{"geonameId":"3110983","name":"Salt","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":29985,"modificationDate":"2012-03-04"}, -{"geonameId":"3504158","name":"Jarabacoa","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":29983,"modificationDate":"2016-06-05"}, -{"geonameId":"2656031","name":"Bedworth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29981,"modificationDate":"2011-03-03"}, -{"geonameId":"1261752","name":"Narsinghgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29981,"modificationDate":"2014-10-14"}, -{"geonameId":"772195","name":"Giżycko","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":29972,"modificationDate":"2019-10-03"}, -{"geonameId":"5898265","name":"Bendale","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29960,"modificationDate":"2020-05-06"}, -{"geonameId":"6295550","name":"Zürich (Kreis 6)","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":29951,"modificationDate":"2012-07-30"}, -{"geonameId":"1255175","name":"Talāja","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29948,"modificationDate":"2014-10-13"}, -{"geonameId":"1272856","name":"Dharmadam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29943,"modificationDate":"2016-02-11"}, -{"geonameId":"4178560","name":"Winter Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29943,"modificationDate":"2017-03-09"}, -{"geonameId":"4350413","name":"Carney","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29941,"modificationDate":"2011-05-14"}, -{"geonameId":"4733313","name":"Southlake","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":29941,"modificationDate":"2017-03-09"}, -{"geonameId":"8201845","name":"Gérakas","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":29939,"modificationDate":"2019-10-23"}, -{"geonameId":"5391760","name":"San Carlos","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":29931,"modificationDate":"2017-03-09"}, -{"geonameId":"3896218","name":"Castro","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":29926,"modificationDate":"2012-05-03"}, -{"geonameId":"668314","name":"Săcele","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":29918,"modificationDate":"2013-02-05"}, -{"geonameId":"751971","name":"Iraklia","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":29917,"modificationDate":"2020-06-10"}, -{"geonameId":"538416","name":"Kuschtschewskaja","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":29915,"modificationDate":"2020-06-10"}, -{"geonameId":"2522077","name":"Aldaia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":29914,"modificationDate":"2012-03-04"}, -{"geonameId":"1275849","name":"Bhongaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29911,"modificationDate":"2015-08-07"}, -{"geonameId":"2524236","name":"Mascalucia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":29910,"modificationDate":"2015-08-08"}, -{"geonameId":"2288118","name":"Affery","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29909,"modificationDate":"2014-01-10"}, -{"geonameId":"2225457","name":"Nanga Eboko","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":29909,"modificationDate":"2012-01-16"}, -{"geonameId":"3173945","name":"Marigliano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":29901,"modificationDate":"2015-08-08"}, -{"geonameId":"4231874","name":"Woodstock","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29898,"modificationDate":"2017-03-09"}, -{"geonameId":"2997803","name":"Lomme","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29892,"modificationDate":"2016-02-18"}, -{"geonameId":"259128","name":"Metamórfosi","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":29891,"modificationDate":"2019-10-23"}, -{"geonameId":"3367513","name":"Grabouw","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":29885,"modificationDate":"2012-07-12"}, -{"geonameId":"2938389","name":"Delbrück","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29884,"modificationDate":"2019-09-05"}, -{"geonameId":"1702413","name":"Malvar","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":29880,"modificationDate":"2017-12-13"}, -{"geonameId":"7261759","name":"East Hill-Meridian","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":29878,"modificationDate":"2011-05-14"}, -{"geonameId":"2969257","name":"Vierzon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29876,"modificationDate":"2019-04-10"}, -{"geonameId":"4903730","name":"Niles","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":29876,"modificationDate":"2017-05-23"}, -{"geonameId":"1254390","name":"Tiruchchendur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29872,"modificationDate":"2014-10-14"}, -{"geonameId":"4330525","name":"Laplace","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":29872,"modificationDate":"2016-05-11"}, -{"geonameId":"3406429","name":"Barcarena","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":29871,"modificationDate":"2012-08-03"}, -{"geonameId":"1179757","name":"Upper Dir","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":29869,"modificationDate":"2019-12-06"}, -{"geonameId":"2413515","name":"Farafenni","countryName":"Gambia","timeZoneName":"Africa/Banjul","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29867,"modificationDate":"2012-01-18"}, -{"geonameId":"4177965","name":"Westchester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29862,"modificationDate":"2011-05-14"}, -{"geonameId":"1257066","name":"Sāsvad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29858,"modificationDate":"2014-10-13"}, -{"geonameId":"461699","name":"Sasovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":29858,"modificationDate":"2019-09-05"}, -{"geonameId":"4034561","name":"Faaa","countryName":"French Polynesia","timeZoneName":"Pacific/Tahiti","timeZoneOffsetNameWithoutDst":"Tahiti Time","population":29851,"modificationDate":"2014-08-19"}, -{"geonameId":"1486039","name":"Yemanzhelinsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":29849,"modificationDate":"2019-09-05"}, -{"geonameId":"1278871","name":"Ambad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29846,"modificationDate":"2018-07-04"}, -{"geonameId":"3616594","name":"San Rafael del Sur","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":29836,"modificationDate":"2018-08-08"}, -{"geonameId":"1258677","name":"Rāmgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29834,"modificationDate":"2014-10-14"}, -{"geonameId":"215668","name":"Kabalo","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":29833,"modificationDate":"2016-11-29"}, -{"geonameId":"1524801","name":"Chiili","countryName":"Kazakhstan","timeZoneName":"Asia/Qyzylorda","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":29832,"modificationDate":"2020-04-08"}, -{"geonameId":"2830035","name":"Springe","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29828,"modificationDate":"2015-09-04"}, -{"geonameId":"401202","name":"Pāsārgād","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":29825,"modificationDate":"2016-11-13"}, -{"geonameId":"1054500","name":"Tsiombe","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":29825,"modificationDate":"2018-09-10"}, -{"geonameId":"1730171","name":"Aringay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":29825,"modificationDate":"2017-12-13"}, -{"geonameId":"1269445","name":"Jalālābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29824,"modificationDate":"2014-10-14"}, -{"geonameId":"3176561","name":"Frattamaggiore","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":29822,"modificationDate":"2015-08-08"}, -{"geonameId":"1853433","name":"Otsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":29820,"modificationDate":"2020-06-11"}, -{"geonameId":"5325111","name":"Atascadero","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":29819,"modificationDate":"2017-03-09"}, -{"geonameId":"3390326","name":"Ribeirão","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":29818,"modificationDate":"2012-09-27"}, -{"geonameId":"2785389","name":"Tongeren","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":29816,"modificationDate":"2019-09-05"}, -{"geonameId":"2799746","name":"Deinze","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":29815,"modificationDate":"2019-01-17"}, -{"geonameId":"5159537","name":"Kent","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29810,"modificationDate":"2017-05-23"}, -{"geonameId":"3093066","name":"Łowicz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":29809,"modificationDate":"2013-07-23"}, -{"geonameId":"5889745","name":"Baie-Comeau","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29808,"modificationDate":"2019-03-18"}, -{"geonameId":"3460513","name":"Iturama","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":29805,"modificationDate":"2012-08-03"}, -{"geonameId":"156974","name":"Kisesa","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":29804,"modificationDate":"2018-07-04"}, -{"geonameId":"8948703","name":"San Paolo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":29800,"modificationDate":"2014-04-13"}, -{"geonameId":"495619","name":"Shar’ya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":29800,"modificationDate":"2012-01-17"}, -{"geonameId":"3515796","name":"Tequisquiapan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":29799,"modificationDate":"2013-08-03"}, -{"geonameId":"1255705","name":"Soro","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29797,"modificationDate":"2014-10-14"}, -{"geonameId":"3627382","name":"Santa Elena de Uairén","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":29795,"modificationDate":"2014-01-18"}, -{"geonameId":"2811899","name":"Weißenfels","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29792,"modificationDate":"2019-09-05"}, -{"geonameId":"2647026","name":"Heswall","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29789,"modificationDate":"2017-06-12"}, -{"geonameId":"93709","name":"Mendali","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":29785,"modificationDate":"2020-06-10"}, -{"geonameId":"1066514","name":"Betafo","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":29785,"modificationDate":"2018-09-10"}, -{"geonameId":"4566002","name":"Levittown","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":29785,"modificationDate":"2015-08-03"}, -{"geonameId":"1264890","name":"Lingsugūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29783,"modificationDate":"2015-08-07"}, -{"geonameId":"3671549","name":"Puerto Asís","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":29782,"modificationDate":"2018-08-08"}, -{"geonameId":"3518293","name":"San Miguel Ajusco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":29781,"modificationDate":"2018-11-03"}, -{"geonameId":"4937829","name":"Gloucester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29781,"modificationDate":"2019-04-02"}, -{"geonameId":"2783985","name":"Waterloo","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":29778,"modificationDate":"2013-11-23"}, -{"geonameId":"3068293","name":"Písek","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":29774,"modificationDate":"2019-03-19"}, -{"geonameId":"1178560","name":"Ghauspur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":29767,"modificationDate":"2019-12-06"}, -{"geonameId":"2269282","name":"Charneca de Caparica","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":29763,"modificationDate":"2018-02-22"}, -{"geonameId":"3129329","name":"Arteixo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":29762,"modificationDate":"2016-12-12"}, -{"geonameId":"1185173","name":"Mathba","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":29760,"modificationDate":"2016-11-09"}, -{"geonameId":"163533","name":"Tallkalakh","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":29754,"modificationDate":"2013-09-06"}, -{"geonameId":"4302561","name":"Nicholasville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29754,"modificationDate":"2017-03-09"}, -{"geonameId":"776597","name":"Augustów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":29752,"modificationDate":"2019-01-14"}, -{"geonameId":"5004188","name":"Oak Park","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29752,"modificationDate":"2017-05-23"}, -{"geonameId":"1271789","name":"Gajendragarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29749,"modificationDate":"2014-10-14"}, -{"geonameId":"2304548","name":"Anloga","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29748,"modificationDate":"2019-12-06"}, -{"geonameId":"9972762","name":"Hurstville","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":29744,"modificationDate":"2019-07-18"}, -{"geonameId":"1264520","name":"Madurāntakam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29743,"modificationDate":"2014-10-14"}, -{"geonameId":"4895876","name":"Highland Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":29743,"modificationDate":"2017-05-23"}, -{"geonameId":"2978072","name":"Saint-Médard-en-Jalles","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29742,"modificationDate":"2020-01-08"}, -{"geonameId":"3446400","name":"Tobias Barreto","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":29740,"modificationDate":"2012-08-03"}, -{"geonameId":"1253863","name":"Umaria","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29740,"modificationDate":"2016-07-28"}, -{"geonameId":"2121052","name":"Znamenskoye","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":29740,"modificationDate":"2020-06-10"}, -{"geonameId":"3463698","name":"Euclides da Cunha","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":29738,"modificationDate":"2012-08-03"}, -{"geonameId":"309663","name":"Tepe","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":29735,"modificationDate":"2020-06-10"}, -{"geonameId":"2481058","name":"Sidi Amrane","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":29734,"modificationDate":"2012-01-19"}, -{"geonameId":"2817812","name":"Vechta","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29729,"modificationDate":"2015-09-05"}, -{"geonameId":"1690664","name":"Samal","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":29729,"modificationDate":"2017-12-13"}, -{"geonameId":"2646460","name":"Hucknall","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29728,"modificationDate":"2012-03-29"}, -{"geonameId":"1273109","name":"Devarkonda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29726,"modificationDate":"2014-10-10"}, -{"geonameId":"2972893","name":"Thiais","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29724,"modificationDate":"2016-02-18"}, -{"geonameId":"2866906","name":"Naumburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29722,"modificationDate":"2019-09-05"}, -{"geonameId":"1683116","name":"Tangub","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":29721,"modificationDate":"2017-12-13"}, -{"geonameId":"1862010","name":"Ibusuki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":29710,"modificationDate":"2017-07-22"}, -{"geonameId":"3028542","name":"Carpentras","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29709,"modificationDate":"2019-04-10"}, -{"geonameId":"3534363","name":"Vertientes","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":29704,"modificationDate":"2016-01-07"}, -{"geonameId":"2998632","name":"L'Haÿ-les-Roses","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29703,"modificationDate":"2019-12-03"}, -{"geonameId":"878195","name":"Lukuledi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":29699,"modificationDate":"2018-12-04"}, -{"geonameId":"1833514","name":"Waegwan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":29691,"modificationDate":"2015-12-06"}, -{"geonameId":"3073371","name":"Kolín","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":29690,"modificationDate":"2019-03-19"}, -{"geonameId":"1512449","name":"Uychi","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":29683,"modificationDate":"2012-01-17"}, -{"geonameId":"1273006","name":"Dhāmnod","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29681,"modificationDate":"2014-10-14"}, -{"geonameId":"7626291","name":"La Rinconada","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":29678,"modificationDate":"2012-07-19"}, -{"geonameId":"4290988","name":"Elizabethtown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29678,"modificationDate":"2017-03-09"}, -{"geonameId":"5146256","name":"Austintown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29677,"modificationDate":"2017-05-23"}, -{"geonameId":"144443","name":"Ajabshahr","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":29675,"modificationDate":"2020-06-10"}, -{"geonameId":"4012605","name":"Coyula","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":29674,"modificationDate":"2018-11-03"}, -{"geonameId":"3172379","name":"Nardò","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":29668,"modificationDate":"2017-12-14"}, -{"geonameId":"3676623","name":"Leticia","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":29666,"modificationDate":"2016-03-01"}, -{"geonameId":"2520496","name":"Calp","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":29666,"modificationDate":"2010-04-22"}, -{"geonameId":"1275646","name":"Bilāri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29666,"modificationDate":"2015-08-07"}, -{"geonameId":"1262338","name":"Muvatupuzha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29664,"modificationDate":"2020-06-10"}, -{"geonameId":"2650188","name":"Egham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29663,"modificationDate":"2011-03-03"}, -{"geonameId":"5345032","name":"East Palo Alto","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":29662,"modificationDate":"2017-03-09"}, -{"geonameId":"12156828","name":"Mount Pleasant West","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29658,"modificationDate":"2020-05-02"}, -{"geonameId":"4369964","name":"South Gate","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29658,"modificationDate":"2018-02-18"}, -{"geonameId":"1279323","name":"Adūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29652,"modificationDate":"2017-04-06"}, -{"geonameId":"2994497","name":"Menton","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29649,"modificationDate":"2016-02-18"}, -{"geonameId":"330764","name":"Metu","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":29648,"modificationDate":"2012-01-19"}, -{"geonameId":"629454","name":"Byaroza","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":29645,"modificationDate":"2013-12-10"}, -{"geonameId":"1257307","name":"Saoner","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29638,"modificationDate":"2015-08-07"}, -{"geonameId":"5435477","name":"Pueblo West","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":29637,"modificationDate":"2011-05-14"}, -{"geonameId":"1258950","name":"Rāisinghnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29626,"modificationDate":"2014-10-14"}, -{"geonameId":"1263021","name":"Mīrānpur Katra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29626,"modificationDate":"2015-10-04"}, -{"geonameId":"2744332","name":"Winterswijk","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":29623,"modificationDate":"2017-10-17"}, -{"geonameId":"2801924","name":"Bilzen","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":29622,"modificationDate":"2011-02-28"}, -{"geonameId":"2813390","name":"Wegberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29622,"modificationDate":"2015-09-04"}, -{"geonameId":"5132002","name":"Port Chester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29620,"modificationDate":"2017-05-23"}, -{"geonameId":"3669454","name":"San Juan Nepomuceno","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":29619,"modificationDate":"2018-07-04"}, -{"geonameId":"3770718","name":"Morales","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":29617,"modificationDate":"2018-07-04"}, -{"geonameId":"1861454","name":"Isawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":29616,"modificationDate":"2017-04-09"}, -{"geonameId":"181501","name":"Pumwani","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":29616,"modificationDate":"2013-05-05"}, -{"geonameId":"656688","name":"Imatra","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":29615,"modificationDate":"2019-09-05"}, -{"geonameId":"3460232","name":"Jaguarão","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":29613,"modificationDate":"2012-08-03"}, -{"geonameId":"2824655","name":"Sundern","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29609,"modificationDate":"2015-09-05"}, -{"geonameId":"3712884","name":"Cativá","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29607,"modificationDate":"2016-08-16"}, -{"geonameId":"548391","name":"Kirovsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":29605,"modificationDate":"2019-09-05"}, -{"geonameId":"3516926","name":"Pinotepa Nacional","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":29604,"modificationDate":"2018-11-03"}, -{"geonameId":"1611635","name":"Betong","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":29604,"modificationDate":"2012-01-16"}, -{"geonameId":"5102922","name":"Princeton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29603,"modificationDate":"2017-03-09"}, -{"geonameId":"1268327","name":"Kalpatta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29602,"modificationDate":"2017-02-04"}, -{"geonameId":"2956206","name":"Andernach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29599,"modificationDate":"2015-09-05"}, -{"geonameId":"553034","name":"Kapotnya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":29594,"modificationDate":"2013-04-02"}, -{"geonameId":"1278455","name":"Ārangaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29591,"modificationDate":"2018-07-17"}, -{"geonameId":"7261291","name":"Fort Hood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":29589,"modificationDate":"2011-05-14"}, -{"geonameId":"4204230","name":"LaGrange","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29588,"modificationDate":"2020-02-08"}, -{"geonameId":"713513","name":"Alushta","countryName":"Ukraine","timeZoneName":"Europe/Simferopol","timeZoneOffsetNameWithoutDst":"Moscow Time","population":29586,"modificationDate":"2016-05-17"}, -{"geonameId":"3187047","name":"Vukovar","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":29584,"modificationDate":"2019-09-05"}, -{"geonameId":"678459","name":"Fălticeni","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":29576,"modificationDate":"2012-06-12"}, -{"geonameId":"10629189","name":"Kalavoor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29564,"modificationDate":"2015-08-21"}, -{"geonameId":"3871276","name":"San Vicente de Tagua Tagua","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":29560,"modificationDate":"2019-01-10"}, -{"geonameId":"3564084","name":"Ciro Redondo","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":29560,"modificationDate":"2014-08-07"}, -{"geonameId":"2488500","name":"Mekla","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":29560,"modificationDate":"2019-03-14"}, -{"geonameId":"1263623","name":"Mānsa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29551,"modificationDate":"2014-10-13"}, -{"geonameId":"3461625","name":"Ibaté","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":29550,"modificationDate":"2012-08-03"}, -{"geonameId":"172059","name":"Zebedani","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":29549,"modificationDate":"2020-06-10"}, -{"geonameId":"5092268","name":"Salem","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29549,"modificationDate":"2017-05-23"}, -{"geonameId":"2812636","name":"Weil am Rhein","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29548,"modificationDate":"2013-02-16"}, -{"geonameId":"1157683","name":"Bang Phae","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":29548,"modificationDate":"2012-01-16"}, -{"geonameId":"3082998","name":"Turek","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":29533,"modificationDate":"2014-06-26"}, -{"geonameId":"1626493","name":"Srandakan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":29529,"modificationDate":"2018-12-04"}, -{"geonameId":"4081644","name":"Opelika","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":29527,"modificationDate":"2017-03-09"}, -{"geonameId":"5884083","name":"Alma","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29526,"modificationDate":"2016-06-22"}, -{"geonameId":"2792073","name":"Louvain-la-Neuve","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":29521,"modificationDate":"2011-01-26"}, -{"geonameId":"2978891","name":"Saint-Laurent-du-Var","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29516,"modificationDate":"2019-08-07"}, -{"geonameId":"2303236","name":"Begoro","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29516,"modificationDate":"2019-12-06"}, -{"geonameId":"2980340","name":"Saintes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29512,"modificationDate":"2019-11-06"}, -{"geonameId":"2758460","name":"Boxtel","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":29511,"modificationDate":"2017-10-17"}, -{"geonameId":"2157995","name":"Merrylands","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":29508,"modificationDate":"2019-07-18"}, -{"geonameId":"5103055","name":"Rahway","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29508,"modificationDate":"2017-05-23"}, -{"geonameId":"3618926","name":"Jinotepe","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":29507,"modificationDate":"2012-01-14"}, -{"geonameId":"2638187","name":"Sevenoaks","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29506,"modificationDate":"2018-07-03"}, -{"geonameId":"306041","name":"Kozluk","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":29502,"modificationDate":"2015-02-07"}, -{"geonameId":"2823799","name":"Taunusstein","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29501,"modificationDate":"2019-09-05"}, -{"geonameId":"1252653","name":"Zunheboto","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29499,"modificationDate":"2016-06-08"}, -{"geonameId":"2923362","name":"Gaggenau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29496,"modificationDate":"2013-02-15"}, -{"geonameId":"3470912","name":"Bandeirantes","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":29494,"modificationDate":"2012-08-03"}, -{"geonameId":"4903862","name":"North Chicago","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":29491,"modificationDate":"2017-05-23"}, -{"geonameId":"5126827","name":"Middle Village","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29491,"modificationDate":"2017-04-16"}, -{"geonameId":"1640576","name":"Kefamenanu","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":29490,"modificationDate":"2016-01-07"}, -{"geonameId":"2922102","name":"Geesthacht","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29487,"modificationDate":"2015-09-04"}, -{"geonameId":"2508309","name":"’Aïn Abid","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":29486,"modificationDate":"2018-10-01"}, -{"geonameId":"3509363","name":"Constanza","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":29481,"modificationDate":"2017-08-25"}, -{"geonameId":"2645721","name":"Kidsgrove","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29480,"modificationDate":"2018-07-03"}, -{"geonameId":"3154084","name":"Hamar","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":29479,"modificationDate":"2019-12-12"}, -{"geonameId":"4642938","name":"Morristown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29478,"modificationDate":"2017-03-09"}, -{"geonameId":"2112343","name":"Kasama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":29477,"modificationDate":"2017-07-22"}, -{"geonameId":"3527795","name":"Escárcega","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":29477,"modificationDate":"2018-11-03"}, -{"geonameId":"3109041","name":"Sestao","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":29476,"modificationDate":"2012-03-04"}, -{"geonameId":"2157635","name":"Mill Park","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":29474,"modificationDate":"2019-07-18"}, -{"geonameId":"107312","name":"Abqaiq","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":29474,"modificationDate":"2017-10-03"}, -{"geonameId":"2800063","name":"Courcelles","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":29473,"modificationDate":"2011-07-21"}, -{"geonameId":"2781503","name":"Bregenz","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":29471,"modificationDate":"2019-09-05"}, -{"geonameId":"2804922","name":"Zeitz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29469,"modificationDate":"2015-09-04"}, -{"geonameId":"2508268","name":"Aïn Bessem","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":29461,"modificationDate":"2020-06-04"}, -{"geonameId":"1264301","name":"Maināguri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29459,"modificationDate":"2014-10-14"}, -{"geonameId":"3682108","name":"Garzón","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":29451,"modificationDate":"2018-08-08"}, -{"geonameId":"3396266","name":"Limoeiro do Norte","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":29449,"modificationDate":"2012-08-03"}, -{"geonameId":"3204674","name":"Bačka Palanka","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":29449,"modificationDate":"2020-01-28"}, -{"geonameId":"1163927","name":"Tangi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":29444,"modificationDate":"2019-12-06"}, -{"geonameId":"5283837","name":"Cheshire","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29443,"modificationDate":"2017-05-23"}, -{"geonameId":"1262230","name":"Nāgar Karnūl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29439,"modificationDate":"2018-05-28"}, -{"geonameId":"5283054","name":"Branford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29438,"modificationDate":"2017-05-23"}, -{"geonameId":"2913195","name":"Haan","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29431,"modificationDate":"2015-09-05"}, -{"geonameId":"1857208","name":"Minamata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":29428,"modificationDate":"2017-07-22"}, -{"geonameId":"2983276","name":"Rochefort","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29427,"modificationDate":"2019-11-06"}, -{"geonameId":"1162855","name":"Utmanzai","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":29423,"modificationDate":"2019-12-06"}, -{"geonameId":"2996514","name":"Malakoff","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29420,"modificationDate":"2016-02-18"}, -{"geonameId":"1626903","name":"Singojuruh","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":29418,"modificationDate":"2007-11-09"}, -{"geonameId":"746234","name":"Gürpınar","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":29411,"modificationDate":"2013-10-07"}, -{"geonameId":"585156","name":"Shamakhi","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":29403,"modificationDate":"2014-06-27"}, -{"geonameId":"1513087","name":"Nurota","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":29403,"modificationDate":"2012-01-17"}, -{"geonameId":"1266806","name":"Khedbrahma","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29402,"modificationDate":"2017-03-28"}, -{"geonameId":"4405188","name":"Raytown","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":29401,"modificationDate":"2017-05-23"}, -{"geonameId":"764634","name":"Mława","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":29398,"modificationDate":"2017-09-04"}, -{"geonameId":"153412","name":"Mlandizi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":29394,"modificationDate":"2018-12-04"}, -{"geonameId":"295571","name":"Gharbiya","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":29393,"modificationDate":"2020-06-10"}, -{"geonameId":"1254908","name":"Tārānagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29392,"modificationDate":"2014-10-14"}, -{"geonameId":"418571","name":"Qahderījān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":29392,"modificationDate":"2020-01-09"}, -{"geonameId":"289523","name":"Umm Slal Mohammed","countryName":"Qatar","timeZoneName":"Asia/Qatar","timeZoneOffsetNameWithoutDst":"Arabian Time","population":29391,"modificationDate":"2020-06-10"}, -{"geonameId":"2516345","name":"Xàtiva","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":29386,"modificationDate":"2015-05-29"}, -{"geonameId":"2263480","name":"Santarém","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":29385,"modificationDate":"2012-01-17"}, -{"geonameId":"3453060","name":"Pontes e Lacerda","countryName":"Brazil","timeZoneName":"America/Cuiaba","timeZoneOffsetNameWithoutDst":"Amazon Time","population":29381,"modificationDate":"2012-08-03"}, -{"geonameId":"1260702","name":"Palakonda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29378,"modificationDate":"2020-06-10"}, -{"geonameId":"3996595","name":"Marfil","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":29375,"modificationDate":"2018-11-03"}, -{"geonameId":"3580661","name":"George Town","countryName":"Cayman Islands","timeZoneName":"America/Cayman","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29370,"modificationDate":"2019-09-05"}, -{"geonameId":"1848482","name":"Yasugi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":29368,"modificationDate":"2020-06-11"}, -{"geonameId":"1850269","name":"Togitsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":29364,"modificationDate":"2017-04-09"}, -{"geonameId":"11903642","name":"Gries","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":29363,"modificationDate":"2018-07-29"}, -{"geonameId":"2641519","name":"Newtownards","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29363,"modificationDate":"2016-12-04"}, -{"geonameId":"4156331","name":"Fruit Cove","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29362,"modificationDate":"2011-05-14"}, -{"geonameId":"1729987","name":"Atimonan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":29356,"modificationDate":"2017-12-13"}, -{"geonameId":"3185211","name":"Kavajë","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":29354,"modificationDate":"2012-06-13"}, -{"geonameId":"3049880","name":"Kiskunhalas","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":29354,"modificationDate":"2014-11-05"}, -{"geonameId":"1272861","name":"Dhāri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29346,"modificationDate":"2014-10-13"}, -{"geonameId":"490391","name":"Sosnogorsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":29343,"modificationDate":"2019-09-05"}, -{"geonameId":"2651269","name":"Didcot","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29341,"modificationDate":"2018-07-03"}, -{"geonameId":"526346","name":"Mirnyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":29341,"modificationDate":"2012-01-17"}, -{"geonameId":"3472520","name":"Almenara","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":29333,"modificationDate":"2012-08-03"}, -{"geonameId":"1164076","name":"Thal","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":29331,"modificationDate":"2019-12-06"}, -{"geonameId":"5006233","name":"Port Huron","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29330,"modificationDate":"2017-05-23"}, -{"geonameId":"8740221","name":"Smach Mean Chey","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":29329,"modificationDate":"2014-04-08"}, -{"geonameId":"4952762","name":"Tewksbury","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29326,"modificationDate":"2017-05-23"}, -{"geonameId":"3600931","name":"Tela","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":29325,"modificationDate":"2014-07-02"}, -{"geonameId":"4568533","name":"Vega Baja","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":29325,"modificationDate":"2015-08-03"}, -{"geonameId":"5117891","name":"Franklin Square","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29320,"modificationDate":"2017-05-23"}, -{"geonameId":"2516443","name":"Ingenio","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":29319,"modificationDate":"2015-10-22"}, -{"geonameId":"3393452","name":"Ouricuri","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":29317,"modificationDate":"2012-08-03"}, -{"geonameId":"2641810","name":"Nelson","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29317,"modificationDate":"2018-07-03"}, -{"geonameId":"3020832","name":"Draveil","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29316,"modificationDate":"2016-02-18"}, -{"geonameId":"1269056","name":"Jewar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29316,"modificationDate":"2015-07-03"}, -{"geonameId":"2667402","name":"Trelleborg","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":29316,"modificationDate":"2017-03-18"}, -{"geonameId":"10227184","name":"Yehud-Monosson","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":29312,"modificationDate":"2017-12-14"}, -{"geonameId":"3979442","name":"Santa Isabel","countryName":"Mexico","timeZoneName":"America/Tijuana","timeZoneOffsetNameWithoutDst":"Pacific Time","population":29311,"modificationDate":"2018-11-03"}, -{"geonameId":"2295517","name":"Savelugu","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29310,"modificationDate":"2019-12-06"}, -{"geonameId":"2516452","name":"Inca","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":29308,"modificationDate":"2012-03-04"}, -{"geonameId":"4646571","name":"Oak Ridge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29302,"modificationDate":"2017-03-09"}, -{"geonameId":"2857943","name":"Oelde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29297,"modificationDate":"2015-09-04"}, -{"geonameId":"5010646","name":"Southgate","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29293,"modificationDate":"2017-05-23"}, -{"geonameId":"882100","name":"Rusape","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":29292,"modificationDate":"2012-01-17"}, -{"geonameId":"2930509","name":"Emmerich","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29289,"modificationDate":"2018-07-24"}, -{"geonameId":"1716858","name":"Cordova","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":29289,"modificationDate":"2017-12-15"}, -{"geonameId":"525162","name":"Morozovsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":29289,"modificationDate":"2019-09-05"}, -{"geonameId":"1735837","name":"Sarikei","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":29281,"modificationDate":"2012-01-17"}, -{"geonameId":"11549777","name":"el Putxet i el Farró","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":29278,"modificationDate":"2017-05-24"}, -{"geonameId":"2978771","name":"Saint-Leu","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29278,"modificationDate":"2019-03-26"}, -{"geonameId":"7932385","name":"Piton Saint-Leu","countryName":"Reunion","timeZoneName":"Indian/Reunion","timeZoneOffsetNameWithoutDst":"Réunion Time","population":29278,"modificationDate":"2016-06-22"}, -{"geonameId":"7302838","name":"Kalyandurg","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29272,"modificationDate":"2014-10-10"}, -{"geonameId":"1272610","name":"Digha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29270,"modificationDate":"2020-06-10"}, -{"geonameId":"463637","name":"Zernograd","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":29268,"modificationDate":"2019-09-05"}, -{"geonameId":"1125155","name":"Sabzawar","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":29264,"modificationDate":"2020-06-09"}, -{"geonameId":"1256706","name":"Shāhpura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29259,"modificationDate":"2014-10-14"}, -{"geonameId":"163270","name":"Tibet Iman","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":29259,"modificationDate":"2020-06-10"}, -{"geonameId":"4833425","name":"East Haven","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29257,"modificationDate":"2017-05-23"}, -{"geonameId":"2758174","name":"Brunssum","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":29254,"modificationDate":"2017-10-17"}, -{"geonameId":"6619708","name":"Majorna","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":29254,"modificationDate":"2007-11-22"}, -{"geonameId":"1170398","name":"Minchianabad","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":29253,"modificationDate":"2019-12-06"}, -{"geonameId":"4251841","name":"Upper Alton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":29251,"modificationDate":"2017-05-23"}, -{"geonameId":"3885273","name":"Lampa","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":29250,"modificationDate":"2018-04-08"}, -{"geonameId":"2511239","name":"San Roque","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":29249,"modificationDate":"2012-03-04"}, -{"geonameId":"8604682","name":"Johnston","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29247,"modificationDate":"2017-03-10"}, -{"geonameId":"7279735","name":"Muvattupuzha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29246,"modificationDate":"2014-10-13"}, -{"geonameId":"2654252","name":"Burntwood","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29244,"modificationDate":"2018-07-03"}, -{"geonameId":"1836208","name":"Seonghwan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":29239,"modificationDate":"2015-02-07"}, -{"geonameId":"2265447","name":"Olhão","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":29239,"modificationDate":"2020-02-05"}, -{"geonameId":"2976984","name":"Saint-Sébastien-sur-Loire","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29238,"modificationDate":"2016-02-18"}, -{"geonameId":"174506","name":"Bou Hardane","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":29237,"modificationDate":"2020-06-10"}, -{"geonameId":"5325187","name":"Atwater","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":29237,"modificationDate":"2017-03-09"}, -{"geonameId":"320533","name":"Bucak","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":29234,"modificationDate":"2012-02-28"}, -{"geonameId":"1278036","name":"Bachhraon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29232,"modificationDate":"2015-09-06"}, -{"geonameId":"3094625","name":"Krotoszyn","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":29231,"modificationDate":"2020-06-21"}, -{"geonameId":"3385088","name":"Vigia","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":29229,"modificationDate":"2012-08-03"}, -{"geonameId":"150453","name":"Rujewa","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":29228,"modificationDate":"2016-07-26"}, -{"geonameId":"3121751","name":"Galdakao","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":29226,"modificationDate":"2018-12-30"}, -{"geonameId":"3533389","name":"Actopan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":29223,"modificationDate":"2018-11-03"}, -{"geonameId":"697650","name":"Pereval’s’k","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":29220,"modificationDate":"2014-07-08"}, -{"geonameId":"6295540","name":"Zürich (Kreis 2)","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":29215,"modificationDate":"2012-07-19"}, -{"geonameId":"2751687","name":"Leusden","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":29215,"modificationDate":"2017-10-17"}, -{"geonameId":"1058532","name":"Moramanga","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":29212,"modificationDate":"2018-09-10"}, -{"geonameId":"2510224","name":"Totana","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":29211,"modificationDate":"2012-03-04"}, -{"geonameId":"1614336","name":"Ban Phan Don","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":29211,"modificationDate":"2012-01-16"}, -{"geonameId":"1148658","name":"Ankhoi","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":29208,"modificationDate":"2020-06-09"}, -{"geonameId":"2394824","name":"Comé","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":29208,"modificationDate":"2018-04-15"}, -{"geonameId":"2653680","name":"Carrickfergus","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29208,"modificationDate":"2016-12-04"}, -{"geonameId":"1269693","name":"Irinjālakuda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29208,"modificationDate":"2014-10-13"}, -{"geonameId":"7258780","name":"West Falls Church","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29207,"modificationDate":"2019-09-27"}, -{"geonameId":"3981885","name":"Tequila","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":29203,"modificationDate":"2018-11-03"}, -{"geonameId":"5219585","name":"Williamsport","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29201,"modificationDate":"2018-01-11"}, -{"geonameId":"1263744","name":"Mangrūl Pīr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29198,"modificationDate":"2015-08-07"}, -{"geonameId":"2941976","name":"Bühl","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29193,"modificationDate":"2015-03-04"}, -{"geonameId":"1621439","name":"Wongsorejo","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":29193,"modificationDate":"2011-02-06"}, -{"geonameId":"159179","name":"Ilula","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":29193,"modificationDate":"2016-07-26"}, -{"geonameId":"4192289","name":"Duluth","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29193,"modificationDate":"2017-03-09"}, -{"geonameId":"2924803","name":"Friedberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29189,"modificationDate":"2013-02-19"}, -{"geonameId":"3386567","name":"São João dos Inhamuns","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":29188,"modificationDate":"2012-08-03"}, -{"geonameId":"1767021","name":"Kampong Masjid Tanah","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":29185,"modificationDate":"2018-12-04"}, -{"geonameId":"775758","name":"Bochnia","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":29184,"modificationDate":"2010-10-17"}, -{"geonameId":"6941080","name":"Fort Bragg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29183,"modificationDate":"2017-05-23"}, -{"geonameId":"1216475","name":"Muborak","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":29180,"modificationDate":"2010-08-09"}, -{"geonameId":"2511700","name":"Rota","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":29179,"modificationDate":"2015-09-30"}, -{"geonameId":"2144528","name":"Warrnambool","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":29176,"modificationDate":"2019-07-18"}, -{"geonameId":"2649579","name":"Felixstowe","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29171,"modificationDate":"2018-07-03"}, -{"geonameId":"3483197","name":"San Fernando","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":29171,"modificationDate":"2018-11-09"}, -{"geonameId":"4129397","name":"Russellville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":29166,"modificationDate":"2017-05-23"}, -{"geonameId":"3694178","name":"Pacasmayo","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":29165,"modificationDate":"2012-07-19"}, -{"geonameId":"3124967","name":"Ciutadella","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":29160,"modificationDate":"2016-03-13"}, -{"geonameId":"3004630","name":"Le Chesnay","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29154,"modificationDate":"2016-02-18"}, -{"geonameId":"3995017","name":"Navolato","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":29153,"modificationDate":"2018-11-03"}, -{"geonameId":"1178841","name":"Garh Maharaja","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":29153,"modificationDate":"2019-12-06"}, -{"geonameId":"2645826","name":"Kendal","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29147,"modificationDate":"2018-07-03"}, -{"geonameId":"2809984","name":"Wetter (Ruhr)","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29146,"modificationDate":"2015-09-04"}, -{"geonameId":"1264524","name":"Madukkarai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29144,"modificationDate":"2017-04-06"}, -{"geonameId":"1269670","name":"Islāmnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29144,"modificationDate":"2015-08-07"}, -{"geonameId":"1278405","name":"Ariyalūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29144,"modificationDate":"2014-10-14"}, -{"geonameId":"138042","name":"Damāvand","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":29144,"modificationDate":"2014-09-04"}, -{"geonameId":"4490329","name":"Sanford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29144,"modificationDate":"2017-03-09"}, -{"geonameId":"4696202","name":"Harker Heights","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":29142,"modificationDate":"2017-03-09"}, -{"geonameId":"1260456","name":"Ponmana","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29139,"modificationDate":"2017-04-06"}, -{"geonameId":"2652437","name":"Consett","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29137,"modificationDate":"2017-06-12"}, -{"geonameId":"3119045","name":"La Sagrera","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":29134,"modificationDate":"2017-05-26"}, -{"geonameId":"5105860","name":"Voorhees","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29131,"modificationDate":"2017-05-23"}, -{"geonameId":"675892","name":"Huşi","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":29129,"modificationDate":"2012-06-12"}, -{"geonameId":"4885983","name":"Burbank","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":29128,"modificationDate":"2017-05-23"}, -{"geonameId":"3072649","name":"Kroměříž","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":29126,"modificationDate":"2019-03-20"}, -{"geonameId":"2514301","name":"Maó","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":29125,"modificationDate":"2019-02-26"}, -{"geonameId":"8948704","name":"Monterusciello","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":29125,"modificationDate":"2015-08-08"}, -{"geonameId":"2972237","name":"Tournefeuille","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29124,"modificationDate":"2016-02-18"}, -{"geonameId":"1856476","name":"Muikamachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":29123,"modificationDate":"2017-04-09"}, -{"geonameId":"2112297","name":"Kamogawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":29119,"modificationDate":"2017-07-22"}, -{"geonameId":"1735553","name":"Tanah Merah","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":29116,"modificationDate":"2012-01-17"}, -{"geonameId":"5882600","name":"Agincourt North","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29113,"modificationDate":"2020-05-02"}, -{"geonameId":"1263943","name":"Manawadar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29105,"modificationDate":"2020-06-10"}, -{"geonameId":"2633729","name":"Witney","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29103,"modificationDate":"2018-07-03"}, -{"geonameId":"301256","name":"Selçuk","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":29101,"modificationDate":"2010-08-03"}, -{"geonameId":"3667478","name":"Tame","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":29099,"modificationDate":"2018-07-04"}, -{"geonameId":"1176444","name":"Jahanian Shah","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":29095,"modificationDate":"2019-12-06"}, -{"geonameId":"1623251","name":"Trenggalek","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":29083,"modificationDate":"2013-03-03"}, -{"geonameId":"3175952","name":"Gragnano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":29082,"modificationDate":"2015-08-08"}, -{"geonameId":"1170706","name":"Mastung","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":29082,"modificationDate":"2019-12-06"}, -{"geonameId":"4923210","name":"Marion","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29081,"modificationDate":"2017-09-14"}, -{"geonameId":"3179066","name":"Cernusco sul Naviglio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":29078,"modificationDate":"2015-08-08"}, -{"geonameId":"2360615","name":"Garango","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29076,"modificationDate":"2012-01-18"}, -{"geonameId":"169375","name":"Inkhil","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":29076,"modificationDate":"2016-11-05"}, -{"geonameId":"2759040","name":"Best","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":29074,"modificationDate":"2017-10-17"}, -{"geonameId":"556230","name":"Ipatovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":29073,"modificationDate":"2019-09-05"}, -{"geonameId":"1850600","name":"Tarui","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":29070,"modificationDate":"2017-04-09"}, -{"geonameId":"1878389","name":"Chŏngju","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":29065,"modificationDate":"2012-01-19"}, -{"geonameId":"3024596","name":"Clichy-sous-Bois","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":29062,"modificationDate":"2016-02-18"}, -{"geonameId":"7733099","name":"Mioveni","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":29062,"modificationDate":"2013-04-21"}, -{"geonameId":"298846","name":"Tunceli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":29062,"modificationDate":"2015-02-07"}, -{"geonameId":"3461499","name":"Igarapava","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":29057,"modificationDate":"2012-08-03"}, -{"geonameId":"1610505","name":"Kaeng Khro","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":29056,"modificationDate":"2012-01-16"}, -{"geonameId":"2807360","name":"Wittenau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":29054,"modificationDate":"2012-06-09"}, -{"geonameId":"4239714","name":"Granite City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":29054,"modificationDate":"2017-05-23"}, -{"geonameId":"1688425","name":"San Simon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":29049,"modificationDate":"2017-12-13"}, -{"geonameId":"2357163","name":"Nouna","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29048,"modificationDate":"2013-02-08"}, -{"geonameId":"3620674","name":"Boaco","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":29046,"modificationDate":"2013-06-28"}, -{"geonameId":"2735787","name":"Póvoa de Varzim","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":29044,"modificationDate":"2014-04-06"}, -{"geonameId":"4362438","name":"Milford Mill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29042,"modificationDate":"2011-05-14"}, -{"geonameId":"1857751","name":"Maki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":29041,"modificationDate":"2018-12-05"}, -{"geonameId":"2656918","name":"Ashton in Makerfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":29039,"modificationDate":"2014-05-30"}, -{"geonameId":"4004293","name":"Ixtapa","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":29036,"modificationDate":"2018-11-03"}, -{"geonameId":"1256050","name":"Sirsāganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29034,"modificationDate":"2015-08-07"}, -{"geonameId":"3691324","name":"Tocache","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":29029,"modificationDate":"2014-07-04"}, -{"geonameId":"2130534","name":"Bibai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":29028,"modificationDate":"2017-07-22"}, -{"geonameId":"479028","name":"Unecha","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":29028,"modificationDate":"2012-01-17"}, -{"geonameId":"239899","name":"Bria","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":29027,"modificationDate":"2016-06-22"}, -{"geonameId":"2344854","name":"Dikwa","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":29026,"modificationDate":"2016-06-22"}, -{"geonameId":"4899184","name":"Lake in the Hills","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":29024,"modificationDate":"2017-05-23"}, -{"geonameId":"1257477","name":"Sānchor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29022,"modificationDate":"2016-08-03"}, -{"geonameId":"6137941","name":"Sainte-Julie","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29019,"modificationDate":"2016-06-22"}, -{"geonameId":"284315","name":"Bethlehem","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":29019,"modificationDate":"2019-03-24"}, -{"geonameId":"2752264","name":"Krimpen aan den IJssel","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":29017,"modificationDate":"2017-10-17"}, -{"geonameId":"1257456","name":"Sandūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29016,"modificationDate":"2014-10-14"}, -{"geonameId":"11549811","name":"la Verneda i la Pau","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":29013,"modificationDate":"2017-05-24"}, -{"geonameId":"1683302","name":"Tandag","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":29011,"modificationDate":"2017-12-13"}, -{"geonameId":"4193699","name":"Evans","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":29011,"modificationDate":"2011-05-14"}, -{"geonameId":"3084130","name":"Swarzędz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":29010,"modificationDate":"2020-04-21"}, -{"geonameId":"3444969","name":"Visconde do Rio Branco","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":29009,"modificationDate":"2012-08-03"}, -{"geonameId":"542461","name":"Krasnoarmeyskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":29009,"modificationDate":"2013-05-07"}, -{"geonameId":"4245926","name":"O'Fallon","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":29002,"modificationDate":"2017-05-23"}, -{"geonameId":"1274020","name":"Chodavaram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":29000,"modificationDate":"2015-09-06"}, -{"geonameId":"1255372","name":"Sūrandai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28989,"modificationDate":"2014-10-14"}, -{"geonameId":"2833073","name":"Senftenberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28988,"modificationDate":"2015-09-05"}, -{"geonameId":"3547600","name":"Mariel","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":28987,"modificationDate":"2015-12-06"}, -{"geonameId":"2803033","name":"Asse","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":28985,"modificationDate":"2012-01-18"}, -{"geonameId":"546672","name":"Kokhma","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":28984,"modificationDate":"2012-01-17"}, -{"geonameId":"3025892","name":"Chaumont","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28981,"modificationDate":"2016-02-18"}, -{"geonameId":"1277398","name":"Banda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28978,"modificationDate":"2015-08-07"}, -{"geonameId":"1731959","name":"Agoo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":28972,"modificationDate":"2017-12-13"}, -{"geonameId":"2507926","name":"Aïn Smara","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":28968,"modificationDate":"2019-11-11"}, -{"geonameId":"1259530","name":"Piro","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28967,"modificationDate":"2015-10-04"}, -{"geonameId":"5117663","name":"Fort Hamilton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28966,"modificationDate":"2017-04-16"}, -{"geonameId":"5460459","name":"Carlsbad","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":28957,"modificationDate":"2017-03-09"}, -{"geonameId":"3862144","name":"Centenario","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":28956,"modificationDate":"2015-12-09"}, -{"geonameId":"3621184","name":"Turrialba","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":28955,"modificationDate":"2016-09-07"}, -{"geonameId":"2980236","name":"Saint-Étienne-du-Rouvray","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28953,"modificationDate":"2016-02-18"}, -{"geonameId":"3934707","name":"Mollendo","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":28953,"modificationDate":"2012-07-19"}, -{"geonameId":"2653290","name":"Cheadle Hulme","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":28952,"modificationDate":"2013-07-11"}, -{"geonameId":"1638352","name":"Lasem","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":28948,"modificationDate":"2012-01-17"}, -{"geonameId":"3533753","name":"Yara","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":28944,"modificationDate":"2016-01-07"}, -{"geonameId":"11258605","name":"Düsseldorf-Pempelfort","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28941,"modificationDate":"2016-10-09"}, -{"geonameId":"1255597","name":"Suār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28941,"modificationDate":"2015-10-04"}, -{"geonameId":"2656490","name":"Ballymena","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":28932,"modificationDate":"2016-12-04"}, -{"geonameId":"2734140","name":"Senhora da Hora","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":28930,"modificationDate":"2012-08-04"}, -{"geonameId":"2994048","name":"Meyzieu","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28929,"modificationDate":"2019-06-05"}, -{"geonameId":"1263649","name":"Manoharpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28928,"modificationDate":"2014-10-14"}, -{"geonameId":"2522325","name":"Agüimes","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":28924,"modificationDate":"2013-07-29"}, -{"geonameId":"1876153","name":"Kangdong-ŭp","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":28922,"modificationDate":"2012-01-19"}, -{"geonameId":"4155017","name":"Ferry Pass","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28921,"modificationDate":"2011-05-14"}, -{"geonameId":"217637","name":"Businga","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":28919,"modificationDate":"2016-11-22"}, -{"geonameId":"2266703","name":"Marinha Grande","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":28916,"modificationDate":"2018-05-01"}, -{"geonameId":"5301067","name":"Kingman","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":28912,"modificationDate":"2017-03-09"}, -{"geonameId":"3175500","name":"Pallanza-Intra-Suna","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":28911,"modificationDate":"2014-05-20"}, -{"geonameId":"2510764","name":"Sueca","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":28908,"modificationDate":"2012-03-04"}, -{"geonameId":"3452623","name":"Porto União","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28907,"modificationDate":"2019-12-31"}, -{"geonameId":"170785","name":"Dayr Ḩāfir","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":28905,"modificationDate":"2012-01-17"}, -{"geonameId":"5379609","name":"Orcutt","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":28905,"modificationDate":"2011-05-14"}, -{"geonameId":"2264359","name":"Povoa de Martinho","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":28901,"modificationDate":"2020-06-10"}, -{"geonameId":"2967245","name":"Yerres","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28897,"modificationDate":"2016-02-18"}, -{"geonameId":"3591997","name":"Ostuncalco","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":28894,"modificationDate":"2018-12-05"}, -{"geonameId":"4294494","name":"Henderson","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28890,"modificationDate":"2017-03-09"}, -{"geonameId":"3583981","name":"Quezaltepeque","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":28886,"modificationDate":"2020-06-15"}, -{"geonameId":"4945055","name":"Needham","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28886,"modificationDate":"2017-05-23"}, -{"geonameId":"245338","name":"Am Timan","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":28885,"modificationDate":"2012-01-18"}, -{"geonameId":"1258786","name":"Rājūra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28881,"modificationDate":"2015-11-08"}, -{"geonameId":"562237","name":"Gagarin","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":28879,"modificationDate":"2020-03-07"}, -{"geonameId":"4919451","name":"Crown Point","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28879,"modificationDate":"2017-05-23"}, -{"geonameId":"662432","name":"Vulcan","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":28869,"modificationDate":"2016-02-07"}, -{"geonameId":"2817927","name":"Vaihingen an der Enz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28867,"modificationDate":"2013-02-16"}, -{"geonameId":"2992938","name":"Montoeliard","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28865,"modificationDate":"2020-06-10"}, -{"geonameId":"378459","name":"Ar Ruseris","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":28862,"modificationDate":"2012-01-19"}, -{"geonameId":"5517061","name":"Big Spring","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28862,"modificationDate":"2017-03-09"}, -{"geonameId":"2557055","name":"Asilah","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":28861,"modificationDate":"2016-11-04"}, -{"geonameId":"710400","name":"Chortkiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":28858,"modificationDate":"2020-05-09"}, -{"geonameId":"1266038","name":"Kotagiri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28848,"modificationDate":"2014-10-14"}, -{"geonameId":"1240622","name":"Kelaniya","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":28846,"modificationDate":"2018-12-17"}, -{"geonameId":"2555157","name":"Bouarfa","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":28846,"modificationDate":"2019-08-13"}, -{"geonameId":"2981041","name":"Saint-Cloud","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28839,"modificationDate":"2019-03-26"}, -{"geonameId":"3167116","name":"Sarno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":28837,"modificationDate":"2014-04-13"}, -{"geonameId":"174991","name":"Ararat","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":28832,"modificationDate":"2016-02-06"}, -{"geonameId":"4935038","name":"Dracut","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28831,"modificationDate":"2017-05-23"}, -{"geonameId":"8349381","name":"Bundoora","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":28828,"modificationDate":"2019-07-18"}, -{"geonameId":"3621753","name":"San Miguel","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":28827,"modificationDate":"2018-12-05"}, -{"geonameId":"3433836","name":"Garupá","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":28814,"modificationDate":"2016-01-30"}, -{"geonameId":"738064","name":"Yakuplu","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":28811,"modificationDate":"2010-01-11"}, -{"geonameId":"8468760","name":"Novoyavorivs'k","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":28807,"modificationDate":"2013-02-19"}, -{"geonameId":"3470825","name":"Bariri","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28801,"modificationDate":"2012-08-03"}, -{"geonameId":"3551608","name":"La Salud","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":28796,"modificationDate":"2015-12-06"}, -{"geonameId":"7281936","name":"West Kelowna","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":28793,"modificationDate":"2019-02-26"}, -{"geonameId":"4926170","name":"Schererville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28791,"modificationDate":"2017-03-09"}, -{"geonameId":"4987482","name":"Burton","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28788,"modificationDate":"2017-05-23"}, -{"geonameId":"3053163","name":"Esztergom","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":28785,"modificationDate":"2020-05-16"}, -{"geonameId":"664437","name":"Turnu Măgurele","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":28783,"modificationDate":"2019-02-28"}, -{"geonameId":"1257936","name":"Rusera","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28781,"modificationDate":"2018-12-04"}, -{"geonameId":"5387494","name":"Ridgecrest","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":28780,"modificationDate":"2017-03-09"}, -{"geonameId":"556320","name":"Inozemtsevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":28779,"modificationDate":"2018-03-26"}, -{"geonameId":"4845920","name":"Windsor","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28778,"modificationDate":"2017-05-23"}, -{"geonameId":"3879627","name":"Molina","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":28775,"modificationDate":"2013-01-11"}, -{"geonameId":"2173605","name":"Buderim","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":28774,"modificationDate":"2019-07-18"}, -{"geonameId":"477626","name":"Uvarovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":28771,"modificationDate":"2014-06-26"}, -{"geonameId":"3407797","name":"Altos","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28768,"modificationDate":"2012-08-03"}, -{"geonameId":"3064673","name":"Šumperk","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":28768,"modificationDate":"2019-03-20"}, -{"geonameId":"3449847","name":"Santa Rita do Sapucaí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28765,"modificationDate":"2012-08-03"}, -{"geonameId":"5520677","name":"Eagle Pass","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28765,"modificationDate":"2017-03-09"}, -{"geonameId":"3665559","name":"Zarzal","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":28761,"modificationDate":"2018-09-05"}, -{"geonameId":"4928788","name":"Agawam","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28761,"modificationDate":"2017-05-23"}, -{"geonameId":"3433753","name":"Gobernador Virasora","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":28756,"modificationDate":"2019-03-23"}, -{"geonameId":"612126","name":"Samtredia","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":28748,"modificationDate":"2014-06-27"}, -{"geonameId":"4740364","name":"Weatherford","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28742,"modificationDate":"2017-03-09"}, -{"geonameId":"3100974","name":"Czerwionka-Leszczyny","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":28740,"modificationDate":"2010-09-20"}, -{"geonameId":"2329920","name":"Moriki","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":28735,"modificationDate":"2018-12-04"}, -{"geonameId":"379427","name":"Al Hasaheisa","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":28735,"modificationDate":"2012-02-02"}, -{"geonameId":"4373104","name":"West Elkridge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28734,"modificationDate":"2010-02-15"}, -{"geonameId":"10924927","name":"Azhiyūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28731,"modificationDate":"2019-12-19"}, -{"geonameId":"370838","name":"Maiurno","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":28727,"modificationDate":"2018-12-05"}, -{"geonameId":"2637087","name":"Stanford-le-Hope","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":28725,"modificationDate":"2017-06-12"}, -{"geonameId":"995202","name":"Howick","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":28725,"modificationDate":"2012-07-12"}, -{"geonameId":"2498782","name":"El Abadia","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":28724,"modificationDate":"2012-01-19"}, -{"geonameId":"1850630","name":"Tanuma","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":28723,"modificationDate":"2017-04-09"}, -{"geonameId":"3437526","name":"Pilar","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":28716,"modificationDate":"2018-11-30"}, -{"geonameId":"2885237","name":"Koethen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28710,"modificationDate":"2020-06-10"}, -{"geonameId":"2523871","name":"Partinico","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":28708,"modificationDate":"2015-08-08"}, -{"geonameId":"3445459","name":"Várzea da Palma","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28706,"modificationDate":"2014-12-12"}, -{"geonameId":"538138","name":"Kuvandyk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":28706,"modificationDate":"2019-09-05"}, -{"geonameId":"3081324","name":"Września","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":28703,"modificationDate":"2019-09-05"}, -{"geonameId":"2975050","name":"Sens","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28700,"modificationDate":"2019-04-10"}, -{"geonameId":"235489","name":"Adjumani","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":28700,"modificationDate":"2016-06-22"}, -{"geonameId":"4919857","name":"East Chicago","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28699,"modificationDate":"2017-05-23"}, -{"geonameId":"3578978","name":"Le Gosier","countryName":"Guadeloupe","timeZoneName":"America/Guadeloupe","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":28698,"modificationDate":"2017-05-08"}, -{"geonameId":"1261539","name":"Nelamangala","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28697,"modificationDate":"2015-10-04"}, -{"geonameId":"557882","name":"Gusev","countryName":"Russia","timeZoneName":"Europe/Kaliningrad","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":28690,"modificationDate":"2019-09-05"}, -{"geonameId":"3007477","name":"Laon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28688,"modificationDate":"2019-09-05"}, -{"geonameId":"363533","name":"Zalingei","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":28687,"modificationDate":"2018-03-05"}, -{"geonameId":"1255704","name":"Soron","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28683,"modificationDate":"2015-08-07"}, -{"geonameId":"1948015","name":"Amphoe Sikhiu","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":28681,"modificationDate":"2006-01-17"}, -{"geonameId":"3461481","name":"Igrejinha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28679,"modificationDate":"2012-08-03"}, -{"geonameId":"3516188","name":"Tecamachalco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":28679,"modificationDate":"2018-11-03"}, -{"geonameId":"644450","name":"Nokia","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":28676,"modificationDate":"2014-09-25"}, -{"geonameId":"3684579","name":"El Charco","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":28673,"modificationDate":"2018-08-08"}, -{"geonameId":"2846843","name":"Rietberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28672,"modificationDate":"2015-09-05"}, -{"geonameId":"2655707","name":"Bideford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":28672,"modificationDate":"2018-07-03"}, -{"geonameId":"2639268","name":"Rochester","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":28671,"modificationDate":"2019-09-05"}, -{"geonameId":"2525643","name":"Avola","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":28666,"modificationDate":"2014-04-13"}, -{"geonameId":"3944179","name":"Chaupimarca","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":28666,"modificationDate":"2018-12-05"}, -{"geonameId":"157960","name":"Kibondo","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":28666,"modificationDate":"2018-12-04"}, -{"geonameId":"737611","name":"Yenişehir","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":28656,"modificationDate":"2013-05-09"}, -{"geonameId":"5747882","name":"Redmond","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":28654,"modificationDate":"2017-03-09"}, -{"geonameId":"2757340","name":"Delfzijl","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":28649,"modificationDate":"2017-10-17"}, -{"geonameId":"2684395","name":"Partille","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":28648,"modificationDate":"2011-12-20"}, -{"geonameId":"1262591","name":"Mukher","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28647,"modificationDate":"2018-12-04"}, -{"geonameId":"1647187","name":"Ceper","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":28646,"modificationDate":"2012-01-17"}, -{"geonameId":"1256435","name":"Sholinghur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28645,"modificationDate":"2014-10-14"}, -{"geonameId":"142000","name":"Bahār","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":28645,"modificationDate":"2014-09-04"}, -{"geonameId":"1728825","name":"Bah-Bah","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":28643,"modificationDate":"2017-12-13"}, -{"geonameId":"4116315","name":"Jacksonville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28643,"modificationDate":"2017-09-08"}, -{"geonameId":"2759407","name":"Barneveld","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":28640,"modificationDate":"2017-10-17"}, -{"geonameId":"5530937","name":"Socorro Mission Number 1 Colonia","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":28637,"modificationDate":"2006-01-17"}, -{"geonameId":"664963","name":"Târnăveni","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":28634,"modificationDate":"2013-04-21"}, -{"geonameId":"3993985","name":"Pabellón de Arteaga","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":28633,"modificationDate":"2018-11-03"}, -{"geonameId":"3491946","name":"Villa Consuelo","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":28621,"modificationDate":"2016-06-05"}, -{"geonameId":"3008218","name":"Lambersart","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28613,"modificationDate":"2016-02-18"}, -{"geonameId":"1271839","name":"Gadhada","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28611,"modificationDate":"2014-10-13"}, -{"geonameId":"2519110","name":"Crevillente","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":28609,"modificationDate":"2012-01-19"}, -{"geonameId":"771804","name":"Gorlice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":28609,"modificationDate":"2010-09-11"}, -{"geonameId":"310641","name":"Kaman","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":28605,"modificationDate":"2012-01-18"}, -{"geonameId":"1695583","name":"Pandacaqui","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":28603,"modificationDate":"2017-12-13"}, -{"geonameId":"4945952","name":"Norwood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28602,"modificationDate":"2017-05-23"}, -{"geonameId":"1264032","name":"Mālpura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28600,"modificationDate":"2014-10-14"}, -{"geonameId":"1504489","name":"Karasuk","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":28589,"modificationDate":"2019-09-05"}, -{"geonameId":"3470674","name":"Barra dos Coqueiros","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28586,"modificationDate":"2012-08-03"}, -{"geonameId":"746940","name":"Gerede","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":28582,"modificationDate":"2012-02-02"}, -{"geonameId":"2387926","name":"Bouar","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":28581,"modificationDate":"2016-06-22"}, -{"geonameId":"570563","name":"Buturlinovka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":28581,"modificationDate":"2020-02-07"}, -{"geonameId":"3515064","name":"Tula de Allende","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":28577,"modificationDate":"2018-11-03"}, -{"geonameId":"3062339","name":"Vsetín","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":28575,"modificationDate":"2019-03-20"}, -{"geonameId":"1237980","name":"Kurunegala","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":28571,"modificationDate":"2019-04-10"}, -{"geonameId":"1698839","name":"Naga","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":28571,"modificationDate":"2017-12-13"}, -{"geonameId":"6315399","name":"Isakogorka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":28571,"modificationDate":"2015-06-16"}, -{"geonameId":"367544","name":"Suakin","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":28570,"modificationDate":"2020-06-11"}, -{"geonameId":"1512658","name":"Toshbuloq","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":28562,"modificationDate":"2016-04-10"}, -{"geonameId":"1279058","name":"Ālangulam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28558,"modificationDate":"2014-10-14"}, -{"geonameId":"3530587","name":"Ciudad Sahagun","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":28556,"modificationDate":"2018-11-03"}, -{"geonameId":"1279356","name":"Addanki","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28547,"modificationDate":"2017-01-04"}, -{"geonameId":"191299","name":"Kisii","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":28547,"modificationDate":"2013-06-27"}, -{"geonameId":"2637958","name":"Shipley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":28544,"modificationDate":"2014-04-06"}, -{"geonameId":"3453467","name":"Pitangueiras","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28540,"modificationDate":"2012-08-03"}, -{"geonameId":"4945819","name":"Northampton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28540,"modificationDate":"2017-05-23"}, -{"geonameId":"5097672","name":"Englewood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28539,"modificationDate":"2017-05-23"}, -{"geonameId":"2494548","name":"Hammamet","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":28536,"modificationDate":"2012-01-19"}, -{"geonameId":"2814005","name":"Warstein","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28532,"modificationDate":"2015-09-04"}, -{"geonameId":"1630088","name":"Randudongkal","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":28532,"modificationDate":"2012-01-17"}, -{"geonameId":"1722985","name":"Bulan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":28529,"modificationDate":"2017-12-13"}, -{"geonameId":"3176738","name":"Formia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":28521,"modificationDate":"2015-08-08"}, -{"geonameId":"4161313","name":"Lake Magdalene","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28509,"modificationDate":"2011-05-14"}, -{"geonameId":"1263051","name":"Milak","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28505,"modificationDate":"2014-10-14"}, -{"geonameId":"1504317","name":"Kartaly","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":28503,"modificationDate":"2019-09-05"}, -{"geonameId":"2734106","name":"Sequeira","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":28502,"modificationDate":"2018-12-04"}, -{"geonameId":"1606807","name":"Sa Kaeo","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":28497,"modificationDate":"2012-01-16"}, -{"geonameId":"2872155","name":"Meissen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28492,"modificationDate":"2017-09-22"}, -{"geonameId":"3595714","name":"Fraijanes","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":28492,"modificationDate":"2015-02-06"}, -{"geonameId":"1273834","name":"Coondapoor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28491,"modificationDate":"2015-09-06"}, -{"geonameId":"841006","name":"Kochubeyevskoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":28491,"modificationDate":"2019-09-02"}, -{"geonameId":"3855974","name":"Esquel","countryName":"Argentina","timeZoneName":"America/Argentina/Catamarca","timeZoneOffsetNameWithoutDst":"Argentina Time","population":28486,"modificationDate":"2015-04-22"}, -{"geonameId":"1735148","name":"Serendah","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":28484,"modificationDate":"2012-01-17"}, -{"geonameId":"1650572","name":"Balapulang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":28483,"modificationDate":"2018-04-03"}, -{"geonameId":"4365227","name":"Perry Hall","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28474,"modificationDate":"2011-05-14"}, -{"geonameId":"4639848","name":"Maryville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28464,"modificationDate":"2017-03-09"}, -{"geonameId":"1265246","name":"Lākheri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28463,"modificationDate":"2014-10-14"}, -{"geonameId":"1082992","name":"Ambatolampy","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":28461,"modificationDate":"2018-09-10"}, -{"geonameId":"2012557","name":"Zheleznogorsk-Ilimskiy","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":28456,"modificationDate":"2012-01-17"}, -{"geonameId":"320552","name":"Bozyazı","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":28456,"modificationDate":"2008-04-21"}, -{"geonameId":"2513509","name":"Morón de la Frontera","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":28455,"modificationDate":"2013-06-16"}, -{"geonameId":"3987246","name":"San Felipe","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":28452,"modificationDate":"2018-11-03"}, -{"geonameId":"905846","name":"Mpika","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":28445,"modificationDate":"2016-06-04"}, -{"geonameId":"1265166","name":"Lalgola Ghat","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28442,"modificationDate":"2020-06-10"}, -{"geonameId":"1253638","name":"Utraula","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28437,"modificationDate":"2015-08-07"}, -{"geonameId":"1171165","name":"Mananwala","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":28432,"modificationDate":"2019-12-06"}, -{"geonameId":"3201047","name":"Dubrovnik","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":28428,"modificationDate":"2019-10-09"}, -{"geonameId":"706165","name":"Khust","countryName":"Ukraine","timeZoneName":"Europe/Uzhgorod","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":28424,"modificationDate":"2020-05-07"}, -{"geonameId":"1512350","name":"Yangikurgan","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":28422,"modificationDate":"2020-06-10"}, -{"geonameId":"2513145","name":"Oliva","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":28419,"modificationDate":"2012-03-04"}, -{"geonameId":"1710441","name":"Itogon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":28407,"modificationDate":"2017-12-13"}, -{"geonameId":"2222623","name":"Penja","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":28406,"modificationDate":"2012-01-16"}, -{"geonameId":"1254304","name":"Titlagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28405,"modificationDate":"2020-06-10"}, -{"geonameId":"129933","name":"Jūybār","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":28404,"modificationDate":"2020-03-07"}, -{"geonameId":"4921476","name":"Hobart","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28404,"modificationDate":"2017-05-23"}, -{"geonameId":"1515436","name":"Ölgii","countryName":"Mongolia","timeZoneName":"Asia/Hovd","timeZoneOffsetNameWithoutDst":"Hovd Time","population":28400,"modificationDate":"2016-12-11"}, -{"geonameId":"2504486","name":"Ben Mehidi","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":28398,"modificationDate":"2012-01-19"}, -{"geonameId":"149437","name":"Tukuyu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":28398,"modificationDate":"2016-07-26"}, -{"geonameId":"738803","name":"Terme","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":28397,"modificationDate":"2014-06-27"}, -{"geonameId":"5118005","name":"Fresh Meadows","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28397,"modificationDate":"2017-04-16"}, -{"geonameId":"2251007","name":"Kaffrine","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":28396,"modificationDate":"2013-08-06"}, -{"geonameId":"3408368","name":"Acaraú","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28389,"modificationDate":"2012-08-03"}, -{"geonameId":"4397962","name":"Mehlville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28380,"modificationDate":"2017-05-23"}, -{"geonameId":"1620919","name":"Bang Bo District","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":28376,"modificationDate":"2014-01-03"}, -{"geonameId":"3445853","name":"Ubaitaba","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28375,"modificationDate":"2012-08-03"}, -{"geonameId":"1622846","name":"Ubud","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":28373,"modificationDate":"2014-08-26"}, -{"geonameId":"2866070","name":"Neuburg an der Donau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28370,"modificationDate":"2014-01-16"}, -{"geonameId":"2972049","name":"Trappes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28367,"modificationDate":"2016-02-18"}, -{"geonameId":"4580599","name":"Greer","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28365,"modificationDate":"2017-03-09"}, -{"geonameId":"251780","name":"Voúla","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":28364,"modificationDate":"2019-10-23"}, -{"geonameId":"3456110","name":"Nova Venécia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28362,"modificationDate":"2012-08-03"}, -{"geonameId":"261249","name":"Kamaterón","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":28361,"modificationDate":"2019-10-23"}, -{"geonameId":"3110143","name":"Sant Pere de Ribes","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":28353,"modificationDate":"2015-06-14"}, -{"geonameId":"3168414","name":"San Donato Milanese","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":28351,"modificationDate":"2015-08-08"}, -{"geonameId":"772227","name":"Gierłoż","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":28351,"modificationDate":"2015-09-05"}, -{"geonameId":"4899340","name":"Lansing","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28349,"modificationDate":"2017-05-23"}, -{"geonameId":"593063","name":"Visaginas","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":28348,"modificationDate":"2016-11-28"}, -{"geonameId":"226853","name":"Paidha","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":28348,"modificationDate":"2016-06-22"}, -{"geonameId":"5120095","name":"Harrison","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28348,"modificationDate":"2017-05-23"}, -{"geonameId":"2520118","name":"Carmona","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":28344,"modificationDate":"2012-03-04"}, -{"geonameId":"1698103","name":"Narra","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":28342,"modificationDate":"2017-12-13"}, -{"geonameId":"686590","name":"Aiud","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":28341,"modificationDate":"2012-06-12"}, -{"geonameId":"229746","name":"Luwero","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":28338,"modificationDate":"2016-06-22"}, -{"geonameId":"5374361","name":"Monterey","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":28338,"modificationDate":"2017-03-09"}, -{"geonameId":"2983154","name":"Rodez","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28337,"modificationDate":"2016-02-18"}, -{"geonameId":"1254377","name":"Tirukkoyilur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28337,"modificationDate":"2014-10-14"}, -{"geonameId":"5143866","name":"West Islip","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28335,"modificationDate":"2017-05-23"}, -{"geonameId":"5342710","name":"Desert Hot Springs","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":28335,"modificationDate":"2017-03-09"}, -{"geonameId":"2921837","name":"Geilenkirchen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28334,"modificationDate":"2015-09-04"}, -{"geonameId":"2299233","name":"Kpandu","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":28334,"modificationDate":"2019-12-06"}, -{"geonameId":"1255792","name":"Sonāmukhi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28334,"modificationDate":"2014-10-14"}, -{"geonameId":"1256823","name":"Seoni Marwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28334,"modificationDate":"2020-06-10"}, -{"geonameId":"1864025","name":"Fukiage-fujimi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":28334,"modificationDate":"2017-04-09"}, -{"geonameId":"5844096","name":"American Fork","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":28326,"modificationDate":"2017-03-09"}, -{"geonameId":"3398379","name":"Icó","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28323,"modificationDate":"2012-08-03"}, -{"geonameId":"2848245","name":"Rendsburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28323,"modificationDate":"2015-09-04"}, -{"geonameId":"256866","name":"Mytilene","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":28322,"modificationDate":"2016-12-19"}, -{"geonameId":"694910","name":"Saki","countryName":"Ukraine","timeZoneName":"Europe/Simferopol","timeZoneOffsetNameWithoutDst":"Moscow Time","population":28322,"modificationDate":"2016-06-09"}, -{"geonameId":"3033391","name":"Bergerac","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28317,"modificationDate":"2019-11-06"}, -{"geonameId":"1278017","name":"Bādāmi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28314,"modificationDate":"2014-10-14"}, -{"geonameId":"2862888","name":"Niederschönhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28313,"modificationDate":"2012-06-09"}, -{"geonameId":"1263280","name":"Mavoor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28313,"modificationDate":"2014-10-13"}, -{"geonameId":"932438","name":"Mohale’s Hoek","countryName":"Lesotho","timeZoneName":"Africa/Maseru","timeZoneOffsetNameWithoutDst":"South Africa Time","population":28310,"modificationDate":"2012-01-18"}, -{"geonameId":"482260","name":"Tomilino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":28310,"modificationDate":"2012-01-17"}, -{"geonameId":"2522012","name":"Algemesí","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":28308,"modificationDate":"2015-06-01"}, -{"geonameId":"6295513","name":"Zürich (Kreis 9) / Altstetten","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":28307,"modificationDate":"2006-10-21"}, -{"geonameId":"1263285","name":"Mavalikara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28300,"modificationDate":"2020-06-10"}, -{"geonameId":"507624","name":"Pokhvistnevo","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":28300,"modificationDate":"2019-09-05"}, -{"geonameId":"2025159","name":"Dalnerechensk","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":28300,"modificationDate":"2017-11-19"}, -{"geonameId":"3166808","name":"Segrate","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":28296,"modificationDate":"2015-08-15"}, -{"geonameId":"1263293","name":"Maur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28295,"modificationDate":"2014-10-14"}, -{"geonameId":"4319435","name":"Central","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28295,"modificationDate":"2017-03-09"}, -{"geonameId":"5128654","name":"Newburgh","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28290,"modificationDate":"2017-05-23"}, -{"geonameId":"1269985","name":"Hole Narsipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28285,"modificationDate":"2018-08-07"}, -{"geonameId":"1272983","name":"Dhanaura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28285,"modificationDate":"2014-10-14"}, -{"geonameId":"2324960","name":"Patigi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":28285,"modificationDate":"2016-01-30"}, -{"geonameId":"1611453","name":"Buri Ram","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":28283,"modificationDate":"2017-09-15"}, -{"geonameId":"935225","name":"Saint-Leu","countryName":"Reunion","timeZoneName":"Indian/Reunion","timeZoneOffsetNameWithoutDst":"Réunion Time","population":28278,"modificationDate":"2017-09-06"}, -{"geonameId":"3548441","name":"Maisí","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":28276,"modificationDate":"2013-09-22"}, -{"geonameId":"3037538","name":"Annemasse","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28275,"modificationDate":"2016-02-18"}, -{"geonameId":"3203982","name":"Bjelovar","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":28275,"modificationDate":"2012-01-19"}, -{"geonameId":"3104584","name":"Vinaròs","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":28273,"modificationDate":"2012-03-04"}, -{"geonameId":"344661","name":"Āgaro","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":28268,"modificationDate":"2012-01-19"}, -{"geonameId":"10172104","name":"Adrogué","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":28265,"modificationDate":"2015-04-22"}, -{"geonameId":"3388270","name":"São Miguel do Guamá","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28265,"modificationDate":"2012-08-03"}, -{"geonameId":"3009223","name":"La Garde","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28257,"modificationDate":"2019-08-07"}, -{"geonameId":"3639107","name":"Juan Griego","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":28256,"modificationDate":"2012-01-11"}, -{"geonameId":"3461090","name":"Iporá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28254,"modificationDate":"2012-08-03"}, -{"geonameId":"1259541","name":"Piravam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28254,"modificationDate":"2014-10-13"}, -{"geonameId":"1639431","name":"Kraksaan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":28248,"modificationDate":"2007-11-09"}, -{"geonameId":"4187204","name":"Chamblee","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28244,"modificationDate":"2017-03-09"}, -{"geonameId":"1734738","name":"Tampin","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":28238,"modificationDate":"2018-04-11"}, -{"geonameId":"3451383","name":"Ribeira do Pombal","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28235,"modificationDate":"2012-08-03"}, -{"geonameId":"2835297","name":"Schwandorf in Bayern","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28235,"modificationDate":"2017-09-22"}, -{"geonameId":"3388318","name":"São Mateus do Maranhão","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28233,"modificationDate":"2012-08-03"}, -{"geonameId":"141349","name":"Bardaskan","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":28233,"modificationDate":"2017-12-14"}, -{"geonameId":"4503078","name":"Millville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28230,"modificationDate":"2017-05-23"}, -{"geonameId":"3662075","name":"Tabatinga","countryName":"Brazil","timeZoneName":"America/Manaus","timeZoneOffsetNameWithoutDst":"Amazon Time","population":28229,"modificationDate":"2014-07-24"}, -{"geonameId":"3123773","name":"Durango","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":28229,"modificationDate":"2012-11-09"}, -{"geonameId":"2960596","name":"Esch-sur-Alzette","countryName":"Luxembourg","timeZoneName":"Europe/Luxembourg","timeZoneOffsetNameWithoutDst":"Central European Time","population":28228,"modificationDate":"2019-10-24"}, -{"geonameId":"3124041","name":"Culleredo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":28227,"modificationDate":"2012-03-04"}, -{"geonameId":"2242001","name":"Caxito","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":28224,"modificationDate":"2011-10-28"}, -{"geonameId":"1150085","name":"Thung Song","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":28223,"modificationDate":"2012-01-16"}, -{"geonameId":"4832272","name":"North Andover","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28222,"modificationDate":"2017-05-23"}, -{"geonameId":"151986","name":"Namanyere","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":28218,"modificationDate":"2016-07-26"}, -{"geonameId":"1263862","name":"Mandi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28217,"modificationDate":"2015-09-06"}, -{"geonameId":"5809805","name":"SeaTac","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":28215,"modificationDate":"2017-03-09"}, -{"geonameId":"1179255","name":"Fazilpur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":28213,"modificationDate":"2019-12-06"}, -{"geonameId":"5116497","name":"Elmira","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28213,"modificationDate":"2017-05-23"}, -{"geonameId":"3676604","name":"Líbano","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":28211,"modificationDate":"2018-09-05"}, -{"geonameId":"1256426","name":"Shrīgonda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28208,"modificationDate":"2014-10-13"}, -{"geonameId":"2853209","name":"Plettenberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28206,"modificationDate":"2015-09-04"}, -{"geonameId":"1260527","name":"Pandua","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28205,"modificationDate":"2014-10-14"}, -{"geonameId":"3523303","name":"Metepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":28205,"modificationDate":"2018-11-03"}, -{"geonameId":"5398277","name":"Spring Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":28205,"modificationDate":"2011-05-14"}, -{"geonameId":"893485","name":"Chiredzi","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":28205,"modificationDate":"2013-05-08"}, -{"geonameId":"1620254","name":"Ban Chang","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":28204,"modificationDate":"2012-01-16"}, -{"geonameId":"4224681","name":"Stockbridge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28202,"modificationDate":"2017-03-09"}, -{"geonameId":"4893811","name":"Glen Ellyn","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28201,"modificationDate":"2017-05-23"}, -{"geonameId":"704204","name":"Lyman","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":28200,"modificationDate":"2020-03-08"}, -{"geonameId":"2088163","name":"Popondetta","countryName":"Papua New Guinea","timeZoneName":"Pacific/Port_Moresby","timeZoneOffsetNameWithoutDst":"Papua New Guinea Time","population":28198,"modificationDate":"2015-04-02"}, -{"geonameId":"1167718","name":"Poonch","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28197,"modificationDate":"2020-06-10"}, -{"geonameId":"608679","name":"Kandyagash","countryName":"Kazakhstan","timeZoneName":"Asia/Aqtobe","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":28196,"modificationDate":"2018-08-02"}, -{"geonameId":"6295523","name":"Zürich (Kreis 12)","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":28189,"modificationDate":"2012-07-30"}, -{"geonameId":"2783310","name":"Zaventem","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":28188,"modificationDate":"2011-02-03"}, -{"geonameId":"1722433","name":"Burgos","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":28178,"modificationDate":"2017-12-13"}, -{"geonameId":"697616","name":"Pershotravensk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":28178,"modificationDate":"2020-05-24"}, -{"geonameId":"5201734","name":"Monroeville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28176,"modificationDate":"2019-09-19"}, -{"geonameId":"2951923","name":"Baunatal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28173,"modificationDate":"2015-09-05"}, -{"geonameId":"769274","name":"Kętrzyn","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":28171,"modificationDate":"2010-09-09"}, -{"geonameId":"5327550","name":"Benicia","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":28167,"modificationDate":"2017-03-09"}, -{"geonameId":"3859828","name":"Cruz del Eje","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":28166,"modificationDate":"2015-04-22"}, -{"geonameId":"3058986","name":"Losoncz","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":28159,"modificationDate":"2020-06-10"}, -{"geonameId":"3680840","name":"Honda","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":28158,"modificationDate":"2018-09-05"}, -{"geonameId":"2745783","name":"Veendam","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":28155,"modificationDate":"2017-10-17"}, -{"geonameId":"1862471","name":"Hirata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":28154,"modificationDate":"2020-06-11"}, -{"geonameId":"1164064","name":"Talamba","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":28151,"modificationDate":"2019-12-06"}, -{"geonameId":"1259693","name":"Pilāni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28149,"modificationDate":"2015-08-07"}, -{"geonameId":"8593855","name":"Neustadt/Nord","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28146,"modificationDate":"2015-03-19"}, -{"geonameId":"3467542","name":"Cândido Mota","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28144,"modificationDate":"2012-08-03"}, -{"geonameId":"2944200","name":"Bretten","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28144,"modificationDate":"2013-02-15"}, -{"geonameId":"1271213","name":"Giddalūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28142,"modificationDate":"2019-02-21"}, -{"geonameId":"1264592","name":"Maddūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28141,"modificationDate":"2016-09-08"}, -{"geonameId":"3984790","name":"San Sebastian","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":28138,"modificationDate":"2020-06-10"}, -{"geonameId":"3994604","name":"Nuevo México","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":28135,"modificationDate":"2015-06-22"}, -{"geonameId":"3532254","name":"Berriozaba","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":28128,"modificationDate":"2020-06-10"}, -{"geonameId":"2471287","name":"Douz","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":28127,"modificationDate":"2018-08-05"}, -{"geonameId":"1008261","name":"Driefontein","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":28127,"modificationDate":"2019-09-23"}, -{"geonameId":"2550252","name":"El Hajeb","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":28126,"modificationDate":"2016-11-02"}, -{"geonameId":"1264553","name":"Maddagiri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28124,"modificationDate":"2015-10-04"}, -{"geonameId":"2755123","name":"Groot IJsselmonde","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":28120,"modificationDate":"2017-03-24"}, -{"geonameId":"4760059","name":"Fredericksburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28118,"modificationDate":"2017-03-09"}, -{"geonameId":"3019897","name":"Ermont","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28117,"modificationDate":"2019-03-26"}, -{"geonameId":"1642437","name":"Jogonalan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":28114,"modificationDate":"2012-01-17"}, -{"geonameId":"1271563","name":"Garhākota","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28114,"modificationDate":"2015-08-07"}, -{"geonameId":"576566","name":"Bezhetsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":28114,"modificationDate":"2019-09-05"}, -{"geonameId":"2266621","name":"Massamá","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":28112,"modificationDate":"2018-02-14"}, -{"geonameId":"5399629","name":"Suisun","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":28111,"modificationDate":"2014-02-14"}, -{"geonameId":"1172663","name":"Kunjah","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":28103,"modificationDate":"2020-01-08"}, -{"geonameId":"2878784","name":"Lennestadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28102,"modificationDate":"2015-09-05"}, -{"geonameId":"788654","name":"Lipkovo","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":28102,"modificationDate":"2017-09-05"}, -{"geonameId":"5225857","name":"Aberdeen","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28102,"modificationDate":"2017-05-23"}, -{"geonameId":"2519233","name":"Coria del Río","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":28100,"modificationDate":"2012-03-04"}, -{"geonameId":"581126","name":"Argun","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":28100,"modificationDate":"2019-09-05"}, -{"geonameId":"8643098","name":"Cranberry Township","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28098,"modificationDate":"2017-05-23"}, -{"geonameId":"5155499","name":"Garfield Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28097,"modificationDate":"2017-05-23"}, -{"geonameId":"4911863","name":"South Chicago","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28095,"modificationDate":"2017-12-14"}, -{"geonameId":"4563298","name":"Cataño","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":28093,"modificationDate":"2015-08-03"}, -{"geonameId":"1005544","name":"Empangeni","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":28093,"modificationDate":"2012-07-12"}, -{"geonameId":"4461941","name":"Cornelius","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28092,"modificationDate":"2017-03-09"}, -{"geonameId":"1265881","name":"Koynanagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":28091,"modificationDate":"2014-10-13"}, -{"geonameId":"1515029","name":"Ulaangom","countryName":"Mongolia","timeZoneName":"Asia/Hovd","timeZoneOffsetNameWithoutDst":"Hovd Time","population":28085,"modificationDate":"2012-01-17"}, -{"geonameId":"3673220","name":"Palmar de Varela","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":28084,"modificationDate":"2018-07-04"}, -{"geonameId":"3459785","name":"João Pinheiro","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":28080,"modificationDate":"2012-08-03"}, -{"geonameId":"1494276","name":"Poykovskiy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":28080,"modificationDate":"2012-01-17"}, -{"geonameId":"5039978","name":"Oakdale","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28080,"modificationDate":"2017-05-23"}, -{"geonameId":"1686728","name":"Sibulan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":28079,"modificationDate":"2017-12-13"}, -{"geonameId":"559317","name":"Goryachiy Klyuch","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":28078,"modificationDate":"2012-01-17"}, -{"geonameId":"314136","name":"Gölbaşı","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":28078,"modificationDate":"2012-01-18"}, -{"geonameId":"2983536","name":"Rillieux-la-Pape","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28076,"modificationDate":"2016-02-18"}, -{"geonameId":"585187","name":"Sabirabad","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":28075,"modificationDate":"2014-06-26"}, -{"geonameId":"4904286","name":"Oak Forest","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":28074,"modificationDate":"2017-05-23"}, -{"geonameId":"2756559","name":"Dronten","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":28073,"modificationDate":"2019-02-28"}, -{"geonameId":"2525083","name":"Castelvetrano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":28072,"modificationDate":"2014-04-13"}, -{"geonameId":"3845330","name":"Machagai","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":28070,"modificationDate":"2016-01-30"}, -{"geonameId":"2737824","name":"Matosinhos","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":28070,"modificationDate":"2020-02-07"}, -{"geonameId":"3911409","name":"Llallagua","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":28069,"modificationDate":"2013-01-11"}, -{"geonameId":"495260","name":"Shcherbinka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":28065,"modificationDate":"2015-08-23"}, -{"geonameId":"2891258","name":"Kevelaer","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28064,"modificationDate":"2019-09-05"}, -{"geonameId":"4467657","name":"Garner","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28053,"modificationDate":"2017-05-23"}, -{"geonameId":"2927043","name":"Stuttgart Feuerbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28046,"modificationDate":"2018-01-15"}, -{"geonameId":"2658576","name":"Sitten","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":28045,"modificationDate":"2019-09-05"}, -{"geonameId":"4557606","name":"Drexel Hill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28043,"modificationDate":"2017-05-23"}, -{"geonameId":"5223672","name":"North Kingstown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":28042,"modificationDate":"2017-07-08"}, -{"geonameId":"1700665","name":"Masinloc","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":28041,"modificationDate":"2017-12-13"}, -{"geonameId":"153482","name":"Mkuranga","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":28037,"modificationDate":"2016-07-26"}, -{"geonameId":"3533126","name":"Ajalpan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":28031,"modificationDate":"2018-11-03"}, -{"geonameId":"2508152","name":"Michelet","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":28029,"modificationDate":"2020-06-11"}, -{"geonameId":"1083968","name":"Ambalavao","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":28027,"modificationDate":"2018-09-10"}, -{"geonameId":"1634954","name":"Mranggen","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":28026,"modificationDate":"2012-01-17"}, -{"geonameId":"1494456","name":"Polysayevo","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":28026,"modificationDate":"2012-01-17"}, -{"geonameId":"1722818","name":"Buluan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":28025,"modificationDate":"2017-12-13"}, -{"geonameId":"6691235","name":"Heywood","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":28024,"modificationDate":"2010-04-01"}, -{"geonameId":"2842688","name":"Saalfeld","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":28023,"modificationDate":"2019-09-05"}, -{"geonameId":"3899695","name":"Ancud","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":28020,"modificationDate":"2013-01-11"}, -{"geonameId":"1511783","name":"Aleysk","countryName":"Russia","timeZoneName":"Asia/Barnaul","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":28019,"modificationDate":"2019-09-05"}, -{"geonameId":"3515042","name":"Tultitlán de Mariano Escobedo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":28017,"modificationDate":"2018-11-03"}, -{"geonameId":"2168605","name":"Doncaster East","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":28016,"modificationDate":"2019-07-18"}, -{"geonameId":"3925040","name":"Jaru","countryName":"Brazil","timeZoneName":"America/Porto_Velho","timeZoneOffsetNameWithoutDst":"Amazon Time","population":28015,"modificationDate":"2012-08-03"}, -{"geonameId":"2208329","name":"Papakura","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":28010,"modificationDate":"2011-08-01"}, -{"geonameId":"3832756","name":"Villa Dolores","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":28009,"modificationDate":"2016-01-30"}, -{"geonameId":"2181133","name":"Timaru","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":28007,"modificationDate":"2015-05-01"}, -{"geonameId":"582993","name":"Aleksandrovskoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":28006,"modificationDate":"2012-01-17"}, -{"geonameId":"1504769","name":"Kamyshlov","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":28006,"modificationDate":"2019-09-05"}, -{"geonameId":"1688017","name":"Santa Maria","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":28002,"modificationDate":"2017-12-13"}, -{"geonameId":"2968653","name":"Villemomble","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":28001,"modificationDate":"2019-03-26"}, -{"geonameId":"2654724","name":"Brierley Hill","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":28000,"modificationDate":"2012-03-29"}, -{"geonameId":"3042091","name":"Saint Helier","countryName":"Jersey","timeZoneName":"Europe/Jersey","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":28000,"modificationDate":"2018-08-17"}, -{"geonameId":"1057277","name":"Sahavato","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":28000,"modificationDate":"2018-09-10"}, -{"geonameId":"831129","name":"Mirnyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":28000,"modificationDate":"2012-01-19"}, -{"geonameId":"1265645","name":"Kumta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27999,"modificationDate":"2014-10-14"}, -{"geonameId":"4101114","name":"Bella Vista","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27999,"modificationDate":"2017-05-23"}, -{"geonameId":"4943677","name":"Melrose","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27997,"modificationDate":"2017-05-23"}, -{"geonameId":"5253219","name":"Fitchburg","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27996,"modificationDate":"2017-05-23"}, -{"geonameId":"3625346","name":"Villa Bruzual","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":27993,"modificationDate":"2018-08-08"}, -{"geonameId":"1926142","name":"Hōjō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":27992,"modificationDate":"2017-04-09"}, -{"geonameId":"4018404","name":"Apaseo el Alto","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":27991,"modificationDate":"2018-11-03"}, -{"geonameId":"3988651","name":"Rincon de Romos","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":27988,"modificationDate":"2020-06-10"}, -{"geonameId":"7184841","name":"Gramercy Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27988,"modificationDate":"2017-12-14"}, -{"geonameId":"4954738","name":"Wellesley","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27982,"modificationDate":"2017-05-23"}, -{"geonameId":"6324583","name":"Aso","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":27978,"modificationDate":"2017-07-22"}, -{"geonameId":"4060791","name":"Enterprise","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27978,"modificationDate":"2017-03-09"}, -{"geonameId":"5515345","name":"Winchester","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":27978,"modificationDate":"2011-05-14"}, -{"geonameId":"2475764","name":"Tizi Gheniff","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":27974,"modificationDate":"2012-01-19"}, -{"geonameId":"1264756","name":"Losal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27964,"modificationDate":"2014-10-14"}, -{"geonameId":"469178","name":"Yanaul","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":27963,"modificationDate":"2012-04-05"}, -{"geonameId":"2921653","name":"Geislingen an der Steige","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27962,"modificationDate":"2013-02-15"}, -{"geonameId":"3922414","name":"Camiri","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":27961,"modificationDate":"2013-01-11"}, -{"geonameId":"2315057","name":"Kasangulu","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":27961,"modificationDate":"2015-02-06"}, -{"geonameId":"3519290","name":"San Francisco Acuautla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":27960,"modificationDate":"2018-11-03"}, -{"geonameId":"2204582","name":"Labasa","countryName":"Fiji","timeZoneName":"Pacific/Fiji","timeZoneOffsetNameWithoutDst":"Fiji Summer Time","population":27949,"modificationDate":"2016-04-17"}, -{"geonameId":"2445704","name":"Diffa","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":27948,"modificationDate":"2012-01-18"}, -{"geonameId":"3650121","name":"Yaguachi Nuevo","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":27947,"modificationDate":"2017-02-07"}, -{"geonameId":"1270021","name":"Hisua","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27943,"modificationDate":"2020-06-10"}, -{"geonameId":"4341727","name":"Slidell","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27942,"modificationDate":"2017-03-09"}, -{"geonameId":"3096053","name":"Kłodzko","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":27941,"modificationDate":"2010-09-12"}, -{"geonameId":"1215199","name":"Deli Tua","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":27940,"modificationDate":"2012-01-17"}, -{"geonameId":"3519531","name":"Sanctorum","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":27936,"modificationDate":"2013-08-01"}, -{"geonameId":"2467856","name":"Ksour Essaf","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":27936,"modificationDate":"2018-08-05"}, -{"geonameId":"2789529","name":"Oudenaarde","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":27935,"modificationDate":"2013-03-05"}, -{"geonameId":"5141963","name":"University Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27935,"modificationDate":"2017-04-16"}, -{"geonameId":"2931804","name":"Einbeck","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27931,"modificationDate":"2015-09-04"}, -{"geonameId":"2746420","name":"Terneuzen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":27930,"modificationDate":"2017-10-17"}, -{"geonameId":"691628","name":"Ternivka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27929,"modificationDate":"2020-05-24"}, -{"geonameId":"1273416","name":"Dāsna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27926,"modificationDate":"2015-05-06"}, -{"geonameId":"2030474","name":"Hovd","countryName":"Mongolia","timeZoneName":"Asia/Ulaanbaatar","timeZoneOffsetNameWithoutDst":"Ulaanbaatar Time","population":27924,"modificationDate":"2010-01-29"}, -{"geonameId":"12156875","name":"Wexford/Maryvale","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27917,"modificationDate":"2020-05-02"}, -{"geonameId":"2987271","name":"Pierrefitte-sur-Seine","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":27914,"modificationDate":"2016-02-18"}, -{"geonameId":"3453926","name":"Piedade","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27912,"modificationDate":"2012-08-03"}, -{"geonameId":"4955089","name":"West Springfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27912,"modificationDate":"2017-05-23"}, -{"geonameId":"5445298","name":"Dodge City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27912,"modificationDate":"2017-05-23"}, -{"geonameId":"1620875","name":"Ban Bang Kadi Pathum Thani","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":27911,"modificationDate":"2008-07-21"}, -{"geonameId":"1278204","name":"Adirampattinam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27909,"modificationDate":"2014-10-14"}, -{"geonameId":"1037370","name":"Mocímboa","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":27909,"modificationDate":"2018-12-05"}, -{"geonameId":"1255122","name":"Talikoti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27902,"modificationDate":"2020-06-10"}, -{"geonameId":"1263807","name":"Maner","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27901,"modificationDate":"2015-10-04"}, -{"geonameId":"2755619","name":"Geldrop","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":27900,"modificationDate":"2017-10-17"}, -{"geonameId":"4125388","name":"Paragould","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27900,"modificationDate":"2017-05-23"}, -{"geonameId":"186315","name":"Molo","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":27896,"modificationDate":"2018-11-06"}, -{"geonameId":"1175870","name":"Jhawarian","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":27893,"modificationDate":"2020-01-08"}, -{"geonameId":"5371261","name":"Maywood","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":27888,"modificationDate":"2017-03-09"}, -{"geonameId":"1275506","name":"Birmitrapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27879,"modificationDate":"2018-12-04"}, -{"geonameId":"2151649","name":"Richmond","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":27878,"modificationDate":"2019-07-18"}, -{"geonameId":"12156820","name":"South Riverdale","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27876,"modificationDate":"2020-05-02"}, -{"geonameId":"1502862","name":"Kolpashevo","countryName":"Russia","timeZoneName":"Asia/Tomsk","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":27876,"modificationDate":"2012-01-17"}, -{"geonameId":"1272008","name":"Erraguntla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27874,"modificationDate":"2014-10-10"}, -{"geonameId":"160877","name":"Bungu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":27873,"modificationDate":"2016-07-26"}, -{"geonameId":"3003737","name":"Le Kremlin-Bicêtre","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":27867,"modificationDate":"2016-02-18"}, -{"geonameId":"1512986","name":"Piskent","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":27865,"modificationDate":"2012-01-17"}, -{"geonameId":"1862689","name":"Hiji","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":27864,"modificationDate":"2017-04-09"}, -{"geonameId":"4727756","name":"Seguin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27864,"modificationDate":"2017-03-09"}, -{"geonameId":"1735282","name":"Tapah Road","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":27863,"modificationDate":"2012-01-17"}, -{"geonameId":"2316748","name":"Bolobo","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":27862,"modificationDate":"2016-11-22"}, -{"geonameId":"1512549","name":"Tyurya-Kurgan","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":27862,"modificationDate":"2020-06-10"}, -{"geonameId":"1277442","name":"Bāmor Kalān","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27860,"modificationDate":"2015-08-07"}, -{"geonameId":"333103","name":"Kibre Mengist","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":27854,"modificationDate":"2012-01-19"}, -{"geonameId":"5138022","name":"Shirley","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27854,"modificationDate":"2018-09-07"}, -{"geonameId":"5100572","name":"Livingston","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27853,"modificationDate":"2017-05-23"}, -{"geonameId":"4908237","name":"Round Lake Beach","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27852,"modificationDate":"2017-05-23"}, -{"geonameId":"1268495","name":"Kalakad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27845,"modificationDate":"2020-06-10"}, -{"geonameId":"2156813","name":"Mosman","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":27844,"modificationDate":"2019-07-18"}, -{"geonameId":"1864652","name":"Chatan","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":27844,"modificationDate":"2018-01-18"}, -{"geonameId":"2846523","name":"Rinteln","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27843,"modificationDate":"2013-12-06"}, -{"geonameId":"1849407","name":"Uenohara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":27840,"modificationDate":"2017-07-22"}, -{"geonameId":"3834502","name":"Termas de Río Hondo","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":27838,"modificationDate":"2017-03-25"}, -{"geonameId":"1639850","name":"Klungkung","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":27836,"modificationDate":"2007-11-09"}, -{"geonameId":"2501465","name":"Cheraga","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":27835,"modificationDate":"2012-01-19"}, -{"geonameId":"3050907","name":"Jászberény","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":27835,"modificationDate":"2014-11-05"}, -{"geonameId":"567290","name":"Dagestanskiye Ogni","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":27835,"modificationDate":"2012-01-17"}, -{"geonameId":"2953302","name":"Baesweiler","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27834,"modificationDate":"2015-09-04"}, -{"geonameId":"1849817","name":"Toyoshina","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":27834,"modificationDate":"2017-04-09"}, -{"geonameId":"1258270","name":"Rāzām","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27832,"modificationDate":"2015-09-06"}, -{"geonameId":"2636713","name":"Stratford-upon-Avon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27830,"modificationDate":"2019-09-05"}, -{"geonameId":"4292188","name":"Frankfort","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27830,"modificationDate":"2019-09-05"}, -{"geonameId":"3459667","name":"José Bonifácio","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27828,"modificationDate":"2012-08-03"}, -{"geonameId":"2953391","name":"Bad Neuenahr-Ahrweiler","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27823,"modificationDate":"2015-09-05"}, -{"geonameId":"4787534","name":"Sterling","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27822,"modificationDate":"2011-05-14"}, -{"geonameId":"686875","name":"Zolotonosha","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27818,"modificationDate":"2020-05-16"}, -{"geonameId":"733776","name":"Giannitsá","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27817,"modificationDate":"2017-12-16"}, -{"geonameId":"293100","name":"Safed","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":27816,"modificationDate":"2017-07-02"}, -{"geonameId":"165060","name":"Satita","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27815,"modificationDate":"2017-02-03"}, -{"geonameId":"1636121","name":"Margasari","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":27814,"modificationDate":"2013-11-08"}, -{"geonameId":"3861678","name":"Charata","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":27813,"modificationDate":"2016-01-30"}, -{"geonameId":"1858283","name":"Kurihashi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":27813,"modificationDate":"2017-04-09"}, -{"geonameId":"5126842","name":"Middletown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27812,"modificationDate":"2017-05-23"}, -{"geonameId":"613988","name":"Khashuri","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":27811,"modificationDate":"2014-03-15"}, -{"geonameId":"1169254","name":"Nasirabad","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":27809,"modificationDate":"2019-12-06"}, -{"geonameId":"1267794","name":"Kareli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27808,"modificationDate":"2015-08-07"}, -{"geonameId":"2542866","name":"Mechraa Bel Ksiri","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":27802,"modificationDate":"2016-11-29"}, -{"geonameId":"3405380","name":"Bom Conselho","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27800,"modificationDate":"2012-08-03"}, -{"geonameId":"1269406","name":"Jalgaon Jamod","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27794,"modificationDate":"2014-10-13"}, -{"geonameId":"3449195","name":"São Fidélis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27793,"modificationDate":"2012-08-03"}, -{"geonameId":"1258891","name":"Rajaori","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27792,"modificationDate":"2019-03-16"}, -{"geonameId":"63571","name":"Buurhakaba","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":27792,"modificationDate":"2012-01-16"}, -{"geonameId":"1627185","name":"Sijunjung","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":27786,"modificationDate":"2013-07-04"}, -{"geonameId":"2636534","name":"Sunbury-on-Thames","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27784,"modificationDate":"2014-09-30"}, -{"geonameId":"2807872","name":"Winnenden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27783,"modificationDate":"2013-02-16"}, -{"geonameId":"3388441","name":"São José de Ribamar","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27777,"modificationDate":"2012-08-03"}, -{"geonameId":"1269158","name":"Jaswantnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27777,"modificationDate":"2015-08-07"}, -{"geonameId":"3027014","name":"Champs-sur-Marne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":27776,"modificationDate":"2016-02-18"}, -{"geonameId":"160552","name":"Chato","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":27776,"modificationDate":"2016-07-26"}, -{"geonameId":"3389673","name":"Santa Cruz","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27775,"modificationDate":"2012-08-03"}, -{"geonameId":"3449747","name":"Santa Vitória do Palmar","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27775,"modificationDate":"2017-07-03"}, -{"geonameId":"2434910","name":"Bongor","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":27770,"modificationDate":"2012-01-18"}, -{"geonameId":"5422191","name":"Fountain","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":27767,"modificationDate":"2017-03-09"}, -{"geonameId":"5136334","name":"Saratoga Springs","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27765,"modificationDate":"2017-05-23"}, -{"geonameId":"134441","name":"Fumen","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":27763,"modificationDate":"2020-06-10"}, -{"geonameId":"2427637","name":"Mongo","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":27763,"modificationDate":"2019-03-09"}, -{"geonameId":"1485445","name":"Zarechnyy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":27758,"modificationDate":"2012-01-17"}, -{"geonameId":"2641581","name":"Newry","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27757,"modificationDate":"2017-03-02"}, -{"geonameId":"1608191","name":"Nong Phai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":27756,"modificationDate":"2012-01-16"}, -{"geonameId":"3601494","name":"Santa Rosa","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":27753,"modificationDate":"2020-06-10"}, -{"geonameId":"1279307","name":"Afzalgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27753,"modificationDate":"2015-06-07"}, -{"geonameId":"612053","name":"Tskhakuya","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":27752,"modificationDate":"2020-06-10"}, -{"geonameId":"4393739","name":"Kirkwood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27750,"modificationDate":"2017-05-23"}, -{"geonameId":"1513567","name":"Qibray","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":27750,"modificationDate":"2012-01-17"}, -{"geonameId":"5293183","name":"Drexel Heights","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":27749,"modificationDate":"2011-05-14"}, -{"geonameId":"5114731","name":"Deer Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27745,"modificationDate":"2017-05-23"}, -{"geonameId":"2247813","name":"Ndibène Dahra","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27741,"modificationDate":"2006-01-17"}, -{"geonameId":"5427771","name":"Lafayette","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":27729,"modificationDate":"2017-03-09"}, -{"geonameId":"1581047","name":"Ha Tin","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":27728,"modificationDate":"2020-06-09"}, -{"geonameId":"1275016","name":"Byādgi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27719,"modificationDate":"2014-10-14"}, -{"geonameId":"1626703","name":"Soe","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":27717,"modificationDate":"2018-04-24"}, -{"geonameId":"750468","name":"Boyabat","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":27717,"modificationDate":"2012-01-18"}, -{"geonameId":"797781","name":"Neftekumsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":27716,"modificationDate":"2019-09-05"}, -{"geonameId":"3362349","name":"Robertson","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":27715,"modificationDate":"2019-09-23"}, -{"geonameId":"2862104","name":"Nordenham","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27714,"modificationDate":"2015-09-05"}, -{"geonameId":"5027482","name":"Fridley","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27713,"modificationDate":"2017-05-23"}, -{"geonameId":"706380","name":"Khmilnyk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27707,"modificationDate":"2020-05-13"}, -{"geonameId":"4982720","name":"West Scarborough","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27706,"modificationDate":"2017-05-23"}, -{"geonameId":"1258247","name":"Rehli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27705,"modificationDate":"2015-08-07"}, -{"geonameId":"3689759","name":"Aracataca","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":27704,"modificationDate":"2018-08-08"}, -{"geonameId":"1528717","name":"Bazar-Korgon","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":27704,"modificationDate":"2016-05-07"}, -{"geonameId":"5133279","name":"Queensbury","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27703,"modificationDate":"2017-05-23"}, -{"geonameId":"1258967","name":"Rāipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27702,"modificationDate":"2015-06-07"}, -{"geonameId":"3109442","name":"Sant Vicenç dels Horts","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":27701,"modificationDate":"2012-03-04"}, -{"geonameId":"144269","name":"Aleshtar","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":27701,"modificationDate":"2014-09-04"}, -{"geonameId":"2907585","name":"Heiligenhaus","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27700,"modificationDate":"2015-09-04"}, -{"geonameId":"2501767","name":"Charef","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":27700,"modificationDate":"2012-01-19"}, -{"geonameId":"1262484","name":"Mungeli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27698,"modificationDate":"2018-05-28"}, -{"geonameId":"2521847","name":"Almuñécar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":27696,"modificationDate":"2012-03-04"}, -{"geonameId":"12156824","name":"Banbury-Don Mills","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27695,"modificationDate":"2020-05-02"}, -{"geonameId":"613273","name":"Lebedyn","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27695,"modificationDate":"2014-07-08"}, -{"geonameId":"2738925","name":"Gondomar","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":27691,"modificationDate":"2018-04-30"}, -{"geonameId":"3592286","name":"Nahualá","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":27690,"modificationDate":"2018-12-05"}, -{"geonameId":"2029945","name":"Murun-kuren","countryName":"Mongolia","timeZoneName":"Asia/Ulaanbaatar","timeZoneOffsetNameWithoutDst":"Ulaanbaatar Time","population":27690,"modificationDate":"2012-01-17"}, -{"geonameId":"2476915","name":"Theniet el Had","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":27687,"modificationDate":"2012-01-19"}, -{"geonameId":"1061335","name":"Mananjary","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":27686,"modificationDate":"2018-09-10"}, -{"geonameId":"2743304","name":"Águas Santas","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":27686,"modificationDate":"2018-03-21"}, -{"geonameId":"1857403","name":"Menuma","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":27684,"modificationDate":"2017-04-09"}, -{"geonameId":"626450","name":"Krychaw","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":27681,"modificationDate":"2014-06-26"}, -{"geonameId":"501730","name":"Rodniki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":27681,"modificationDate":"2019-09-05"}, -{"geonameId":"158289","name":"Kasamwa","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":27681,"modificationDate":"2016-07-26"}, -{"geonameId":"1168749","name":"Nushki","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":27680,"modificationDate":"2019-12-06"}, -{"geonameId":"8347736","name":"Kellyville","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":27676,"modificationDate":"2019-07-18"}, -{"geonameId":"786690","name":"Prokuplje","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":27673,"modificationDate":"2012-04-17"}, -{"geonameId":"2656946","name":"Ashington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27670,"modificationDate":"2017-06-13"}, -{"geonameId":"3108877","name":"Sitges","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":27668,"modificationDate":"2019-10-21"}, -{"geonameId":"3458397","name":"Lucas","countryName":"Brazil","timeZoneName":"America/Cuiaba","timeZoneOffsetNameWithoutDst":"Amazon Time","population":27665,"modificationDate":"2012-08-03"}, -{"geonameId":"5605242","name":"Rexburg","countryName":"United States","timeZoneName":"America/Boise","timeZoneOffsetNameWithoutDst":"Mountain Time","population":27663,"modificationDate":"2017-03-09"}, -{"geonameId":"593959","name":"Taurage","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27662,"modificationDate":"2019-09-05"}, -{"geonameId":"2803429","name":"Aarschot","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":27656,"modificationDate":"2012-01-18"}, -{"geonameId":"3038350","name":"Aix-les-Bains","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":27651,"modificationDate":"2020-03-15"}, -{"geonameId":"5280854","name":"Wheeling","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27648,"modificationDate":"2017-03-09"}, -{"geonameId":"5171728","name":"Shaker Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27646,"modificationDate":"2017-05-23"}, -{"geonameId":"2732649","name":"Vila do Conde","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":27642,"modificationDate":"2018-04-30"}, -{"geonameId":"1263940","name":"Manāwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27637,"modificationDate":"2014-10-14"}, -{"geonameId":"1513900","name":"Iskandar","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":27636,"modificationDate":"2012-01-17"}, -{"geonameId":"763556","name":"Nowy Dwór Mazowiecki","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":27633,"modificationDate":"2011-07-31"}, -{"geonameId":"3933024","name":"Paramonga","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":27631,"modificationDate":"2012-07-19"}, -{"geonameId":"5851030","name":"Mililani Town","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":27629,"modificationDate":"2019-09-26"}, -{"geonameId":"1266216","name":"Kondagaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27626,"modificationDate":"2018-05-28"}, -{"geonameId":"1623446","name":"Tomohon","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":27624,"modificationDate":"2014-03-05"}, -{"geonameId":"5095611","name":"Bergenfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27621,"modificationDate":"2017-05-23"}, -{"geonameId":"4866371","name":"Marshalltown","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27620,"modificationDate":"2017-05-23"}, -{"geonameId":"284486","name":"El Dahaheriya","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27616,"modificationDate":"2020-06-10"}, -{"geonameId":"3531416","name":"Catemaco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":27615,"modificationDate":"2018-11-03"}, -{"geonameId":"6944296","name":"St. Pauli","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27612,"modificationDate":"2017-08-14"}, -{"geonameId":"1254808","name":"Tehri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27611,"modificationDate":"2014-10-14"}, -{"geonameId":"2653935","name":"Cambuslang","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27610,"modificationDate":"2017-06-12"}, -{"geonameId":"3530276","name":"Contla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":27610,"modificationDate":"2018-11-03"}, -{"geonameId":"519106","name":"Novoaleksandrovsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":27610,"modificationDate":"2019-09-05"}, -{"geonameId":"3395717","name":"Mamanguape","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27606,"modificationDate":"2012-08-03"}, -{"geonameId":"3558315","name":"Gibara","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":27603,"modificationDate":"2016-02-07"}, -{"geonameId":"1282950","name":"Panauti Village","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":27602,"modificationDate":"2020-06-10"}, -{"geonameId":"543737","name":"Kotel’nich","countryName":"Russia","timeZoneName":"Europe/Kirov","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":27600,"modificationDate":"2012-01-17"}, -{"geonameId":"3881102","name":"Machalí","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":27595,"modificationDate":"2013-04-04"}, -{"geonameId":"12156817","name":"York University Heights","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27593,"modificationDate":"2020-05-02"}, -{"geonameId":"2209055","name":"Uaddan","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27590,"modificationDate":"2020-06-10"}, -{"geonameId":"2111425","name":"Ōmiya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":27588,"modificationDate":"2017-04-09"}, -{"geonameId":"1164716","name":"Sīta Road","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":27587,"modificationDate":"2019-12-06"}, -{"geonameId":"1854868","name":"Nyūzen","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":27585,"modificationDate":"2017-04-09"}, -{"geonameId":"4227213","name":"Tucker","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27581,"modificationDate":"2011-05-14"}, -{"geonameId":"3080866","name":"Zakopane","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":27580,"modificationDate":"2019-09-05"}, -{"geonameId":"2503033","name":"Bou Hanifia el Hamamat","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":27576,"modificationDate":"2012-01-19"}, -{"geonameId":"5102076","name":"Nutley","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27572,"modificationDate":"2019-06-12"}, -{"geonameId":"3032824","name":"Bezons","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":27570,"modificationDate":"2016-02-18"}, -{"geonameId":"1848113","name":"Yugawara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":27567,"modificationDate":"2017-04-09"}, -{"geonameId":"3468157","name":"Cajati","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27565,"modificationDate":"2012-08-03"}, -{"geonameId":"2882588","name":"Kulmbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27565,"modificationDate":"2014-01-15"}, -{"geonameId":"3468894","name":"Brumadinho","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27563,"modificationDate":"2012-08-03"}, -{"geonameId":"3670644","name":"Roldanillo","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":27561,"modificationDate":"2018-09-05"}, -{"geonameId":"3461874","name":"Guararapes","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27557,"modificationDate":"2012-08-03"}, -{"geonameId":"580420","name":"Atkarsk","countryName":"Russia","timeZoneName":"Europe/Saratov","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":27554,"modificationDate":"2019-09-05"}, -{"geonameId":"2612045","name":"Svendborg","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":27553,"modificationDate":"2017-10-18"}, -{"geonameId":"2953310","name":"Bad Zwischenahn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27550,"modificationDate":"2011-07-31"}, -{"geonameId":"2494962","name":"Hadjout","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":27549,"modificationDate":"2012-01-19"}, -{"geonameId":"2159851","name":"Liverpool","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":27545,"modificationDate":"2019-07-18"}, -{"geonameId":"1253860","name":"Umarkot","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27545,"modificationDate":"2013-02-08"}, -{"geonameId":"1262151","name":"Nāhan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27544,"modificationDate":"2015-03-08"}, -{"geonameId":"3456285","name":"Niquelândia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27541,"modificationDate":"2017-08-08"}, -{"geonameId":"2833170","name":"Selm","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27540,"modificationDate":"2015-09-05"}, -{"geonameId":"2645309","name":"Kirkby in Ashfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27539,"modificationDate":"2011-03-03"}, -{"geonameId":"2872611","name":"Mechernich","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27537,"modificationDate":"2015-09-04"}, -{"geonameId":"3976775","name":"Leyva Solano","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":27536,"modificationDate":"2015-06-22"}, -{"geonameId":"3170631","name":"Piscinola","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":27534,"modificationDate":"2019-07-24"}, -{"geonameId":"4704628","name":"Lake Jackson","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27533,"modificationDate":"2017-03-09"}, -{"geonameId":"162199","name":"Annau","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":27526,"modificationDate":"2017-08-01"}, -{"geonameId":"1257354","name":"Shankrail","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27523,"modificationDate":"2020-06-10"}, -{"geonameId":"3980844","name":"Tuxpan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":27523,"modificationDate":"2018-11-03"}, -{"geonameId":"554397","name":"Kalach-na-Donu","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":27522,"modificationDate":"2019-09-05"}, -{"geonameId":"682729","name":"Caransebeş","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27521,"modificationDate":"2017-01-20"}, -{"geonameId":"1152194","name":"Mae Sai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":27520,"modificationDate":"2012-01-16"}, -{"geonameId":"3111807","name":"Ribeira","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":27518,"modificationDate":"2020-04-24"}, -{"geonameId":"6691072","name":"Altstadt Sud","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27515,"modificationDate":"2013-08-03"}, -{"geonameId":"6111962","name":"Port Moody","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":27512,"modificationDate":"2019-04-30"}, -{"geonameId":"1513962","name":"Gurlan","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":27506,"modificationDate":"2020-04-08"}, -{"geonameId":"5206606","name":"Plum","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27505,"modificationDate":"2017-05-23"}, -{"geonameId":"2280376","name":"Touba","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27504,"modificationDate":"2016-05-22"}, -{"geonameId":"3472969","name":"Aguaí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27503,"modificationDate":"2012-08-03"}, -{"geonameId":"2633912","name":"Willenhall","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27500,"modificationDate":"2015-02-17"}, -{"geonameId":"2879315","name":"Leichlingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27497,"modificationDate":"2015-09-04"}, -{"geonameId":"2885908","name":"Königsbrunn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27494,"modificationDate":"2013-02-19"}, -{"geonameId":"1263965","name":"Manamadurai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27493,"modificationDate":"2014-10-14"}, -{"geonameId":"1266975","name":"Kharagpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27492,"modificationDate":"2014-10-14"}, -{"geonameId":"2701715","name":"Karlskoga","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":27490,"modificationDate":"2019-09-05"}, -{"geonameId":"1276548","name":"Beldānga","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27489,"modificationDate":"2014-10-14"}, -{"geonameId":"2924802","name":"Friedberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27484,"modificationDate":"2019-09-05"}, -{"geonameId":"3063447","name":"Valašské Meziříčí","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":27481,"modificationDate":"2019-03-20"}, -{"geonameId":"11776857","name":"Burngreave","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27481,"modificationDate":"2017-11-21"}, -{"geonameId":"1865207","name":"Arai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":27481,"modificationDate":"2017-04-09"}, -{"geonameId":"3621717","name":"San Pedro","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":27477,"modificationDate":"2016-09-07"}, -{"geonameId":"1179834","name":"Dijkot","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":27469,"modificationDate":"2019-12-06"}, -{"geonameId":"1694075","name":"Peñaranda","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":27465,"modificationDate":"2017-12-13"}, -{"geonameId":"2651357","name":"Denton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27464,"modificationDate":"2013-07-11"}, -{"geonameId":"5410004","name":"Windsor","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":27464,"modificationDate":"2017-03-09"}, -{"geonameId":"1259034","name":"Rāhatgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27462,"modificationDate":"2015-08-07"}, -{"geonameId":"10062601","name":"Justiniškės","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27462,"modificationDate":"2015-02-12"}, -{"geonameId":"3515904","name":"Tepeaca","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":27449,"modificationDate":"2018-11-03"}, -{"geonameId":"4915963","name":"West Chicago","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27447,"modificationDate":"2017-05-23"}, -{"geonameId":"6161443","name":"Tam O'Shanter-Sullivan","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27446,"modificationDate":"2020-05-02"}, -{"geonameId":"2911051","name":"Hamminkeln","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27433,"modificationDate":"2015-09-04"}, -{"geonameId":"3626402","name":"Táriba","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":27432,"modificationDate":"2018-08-08"}, -{"geonameId":"1862136","name":"Hōryūji","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":27431,"modificationDate":"2018-01-13"}, -{"geonameId":"2388036","name":"Bossangoa","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":27428,"modificationDate":"2016-06-22"}, -{"geonameId":"741771","name":"Malkara","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":27427,"modificationDate":"2013-08-06"}, -{"geonameId":"4984016","name":"Allen Park","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27425,"modificationDate":"2017-05-23"}, -{"geonameId":"1260335","name":"Pārdi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27423,"modificationDate":"2014-10-13"}, -{"geonameId":"617367","name":"Soroca","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27423,"modificationDate":"2017-12-07"}, -{"geonameId":"311553","name":"Tyriaeum","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":27423,"modificationDate":"2020-06-10"}, -{"geonameId":"3621659","name":"San Rafael Abajo","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":27419,"modificationDate":"2016-09-07"}, -{"geonameId":"3123709","name":"Eibar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":27419,"modificationDate":"2019-08-18"}, -{"geonameId":"2091996","name":"Madang","countryName":"Papua New Guinea","timeZoneName":"Pacific/Port_Moresby","timeZoneOffsetNameWithoutDst":"Papua New Guinea Time","population":27419,"modificationDate":"2019-02-27"}, -{"geonameId":"491019","name":"Ilezk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":27419,"modificationDate":"2020-06-10"}, -{"geonameId":"668605","name":"Roșiorii de Vede","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27416,"modificationDate":"2018-04-29"}, -{"geonameId":"2866758","name":"Neckarsulm","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27413,"modificationDate":"2013-02-16"}, -{"geonameId":"4916732","name":"Wilmette","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27413,"modificationDate":"2017-05-23"}, -{"geonameId":"3174096","name":"Manduria","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":27411,"modificationDate":"2015-08-07"}, -{"geonameId":"5359054","name":"Imperial Beach","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":27408,"modificationDate":"2017-03-09"}, -{"geonameId":"3464100","name":"Entre Rios","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27405,"modificationDate":"2012-08-03"}, -{"geonameId":"5118626","name":"Glen Cove","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27400,"modificationDate":"2017-05-23"}, -{"geonameId":"3112866","name":"Premià de Mar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":27399,"modificationDate":"2012-03-04"}, -{"geonameId":"608359","name":"Shalqar","countryName":"Kazakhstan","timeZoneName":"Asia/Aqtobe","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":27399,"modificationDate":"2014-11-27"}, -{"geonameId":"5782391","name":"Syracuse","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":27395,"modificationDate":"2017-03-09"}, -{"geonameId":"2652890","name":"Cleckheaton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27393,"modificationDate":"2011-03-03"}, -{"geonameId":"6178999","name":"West Hill","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27392,"modificationDate":"2020-05-06"}, -{"geonameId":"3666939","name":"Santiago de Tolú","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":27390,"modificationDate":"2018-09-05"}, -{"geonameId":"1263022","name":"Mīrānpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27390,"modificationDate":"2015-05-06"}, -{"geonameId":"4019869","name":"Abasolo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":27389,"modificationDate":"2018-11-03"}, -{"geonameId":"4397340","name":"Maryland Heights","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27389,"modificationDate":"2017-05-23"}, -{"geonameId":"3404833","name":"Brejo Santo","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27384,"modificationDate":"2012-08-03"}, -{"geonameId":"2930523","name":"Emmendingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27383,"modificationDate":"2017-01-09"}, -{"geonameId":"2656954","name":"Ashford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27382,"modificationDate":"2017-04-05"}, -{"geonameId":"2270437","name":"Caldas da Rainha","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":27378,"modificationDate":"2018-02-08"}, -{"geonameId":"3404862","name":"Brejo da Madre de Deus","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27369,"modificationDate":"2012-08-03"}, -{"geonameId":"2176122","name":"Bentleigh East","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":27368,"modificationDate":"2019-07-18"}, -{"geonameId":"1647834","name":"Bulakamba","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":27367,"modificationDate":"2012-01-17"}, -{"geonameId":"2787387","name":"Saint-Josse-ten-Noode","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":27366,"modificationDate":"2020-05-25"}, -{"geonameId":"4866445","name":"Mason City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27366,"modificationDate":"2017-05-23"}, -{"geonameId":"1692489","name":"Pulupandan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":27363,"modificationDate":"2017-12-13"}, -{"geonameId":"3178631","name":"Cisterna di Latina","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":27362,"modificationDate":"2014-01-16"}, -{"geonameId":"1256259","name":"Silvassa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27359,"modificationDate":"2020-05-14"}, -{"geonameId":"1268469","name":"Kālānwāli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27355,"modificationDate":"2015-05-06"}, -{"geonameId":"637292","name":"Savonlinna","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27353,"modificationDate":"2015-03-12"}, -{"geonameId":"712969","name":"Bakhchysarai","countryName":"Ukraine","timeZoneName":"Europe/Simferopol","timeZoneOffsetNameWithoutDst":"Moscow Time","population":27351,"modificationDate":"2018-10-25"}, -{"geonameId":"4352539","name":"Crofton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27348,"modificationDate":"2011-05-14"}, -{"geonameId":"3526908","name":"Huimanguillo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":27344,"modificationDate":"2018-11-03"}, -{"geonameId":"1015504","name":"Bronkhorstspruit","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":27343,"modificationDate":"2012-07-12"}, -{"geonameId":"3102627","name":"Brodnica","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":27341,"modificationDate":"2010-09-14"}, -{"geonameId":"2656086","name":"Bearsden","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27340,"modificationDate":"2017-06-12"}, -{"geonameId":"4569298","name":"Anderson","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27335,"modificationDate":"2017-03-09"}, -{"geonameId":"5774215","name":"Eagle Mountain","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":27332,"modificationDate":"2017-03-09"}, -{"geonameId":"2040674","name":"Unggi-yu","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":27331,"modificationDate":"2020-06-11"}, -{"geonameId":"3453439","name":"Piuí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27327,"modificationDate":"2012-08-03"}, -{"geonameId":"1283401","name":"Gaur","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":27325,"modificationDate":"2019-10-19"}, -{"geonameId":"1348753","name":"Chakapara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27320,"modificationDate":"2016-07-28"}, -{"geonameId":"1735089","name":"Parit Buntar","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":27313,"modificationDate":"2012-01-17"}, -{"geonameId":"3671531","name":"Puerto Boyacá","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":27310,"modificationDate":"2018-06-08"}, -{"geonameId":"3622190","name":"Quesada","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":27310,"modificationDate":"2016-09-07"}, -{"geonameId":"5113302","name":"College Point","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27307,"modificationDate":"2017-04-16"}, -{"geonameId":"1718078","name":"Castillejos","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":27301,"modificationDate":"2017-12-13"}, -{"geonameId":"2803160","name":"Ans","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":27297,"modificationDate":"2011-03-14"}, -{"geonameId":"1504139","name":"Kayyerkan","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":27295,"modificationDate":"2012-08-04"}, -{"geonameId":"6691640","name":"Lancy","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":27291,"modificationDate":"2019-09-10"}, -{"geonameId":"1268484","name":"Kalamb","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27287,"modificationDate":"2014-10-13"}, -{"geonameId":"2970962","name":"Vallauris","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":27286,"modificationDate":"2016-02-18"}, -{"geonameId":"4794120","name":"Winchester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27284,"modificationDate":"2017-03-09"}, -{"geonameId":"2553751","name":"Bouznika","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":27283,"modificationDate":"2016-11-02"}, -{"geonameId":"3449467","name":"Santo Estêvão","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27279,"modificationDate":"2012-08-03"}, -{"geonameId":"1270059","name":"Hīrākud","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27277,"modificationDate":"2015-09-06"}, -{"geonameId":"5124497","name":"Lindenhurst","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27277,"modificationDate":"2017-05-23"}, -{"geonameId":"366426","name":"Tendelti","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":27275,"modificationDate":"2020-06-11"}, -{"geonameId":"2661666","name":"Zürich (Kreis 4) / Aussersihl","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":27273,"modificationDate":"2016-03-23"}, -{"geonameId":"2973258","name":"Taverny","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":27271,"modificationDate":"2019-03-26"}, -{"geonameId":"2645972","name":"Jarrow","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27264,"modificationDate":"2011-03-03"}, -{"geonameId":"3012834","name":"Illkirch-Graffenstaden","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":27261,"modificationDate":"2019-03-26"}, -{"geonameId":"1502060","name":"Krasnoural’sk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":27257,"modificationDate":"2012-01-17"}, -{"geonameId":"107744","name":"Badr Hunain","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":27257,"modificationDate":"2020-06-10"}, -{"geonameId":"3006283","name":"La Teste-de-Buch","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":27253,"modificationDate":"2020-01-08"}, -{"geonameId":"1645559","name":"Demak","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":27251,"modificationDate":"2016-01-07"}, -{"geonameId":"1704968","name":"Lupon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":27247,"modificationDate":"2017-12-13"}, -{"geonameId":"667526","name":"Sebeş","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27246,"modificationDate":"2019-02-17"}, -{"geonameId":"3201984","name":"Doboj","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":27235,"modificationDate":"2016-06-05"}, -{"geonameId":"5811581","name":"Spanaway","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":27227,"modificationDate":"2011-05-14"}, -{"geonameId":"116406","name":"Semīrom","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":27220,"modificationDate":"2017-10-27"}, -{"geonameId":"5327455","name":"Belmont","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":27218,"modificationDate":"2017-03-09"}, -{"geonameId":"3461124","name":"Ipirá","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27217,"modificationDate":"2012-08-03"}, -{"geonameId":"1264514","name":"Māgadi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27213,"modificationDate":"2016-09-08"}, -{"geonameId":"1692214","name":"Quezon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":27212,"modificationDate":"2017-12-13"}, -{"geonameId":"1735799","name":"Simanggang","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":27207,"modificationDate":"2013-03-09"}, -{"geonameId":"5121666","name":"Hunts Point","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27204,"modificationDate":"2018-11-24"}, -{"geonameId":"2855859","name":"Overath","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27203,"modificationDate":"2015-09-04"}, -{"geonameId":"1265613","name":"Kundarkhi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27197,"modificationDate":"2015-08-07"}, -{"geonameId":"1270686","name":"Gundalpet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27197,"modificationDate":"2020-06-10"}, -{"geonameId":"5120987","name":"Holbrook","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27195,"modificationDate":"2017-05-23"}, -{"geonameId":"1750500","name":"Permatang Kuching","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":27191,"modificationDate":"2012-01-17"}, -{"geonameId":"2879241","name":"Leimen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27190,"modificationDate":"2013-02-16"}, -{"geonameId":"3468317","name":"Caetité","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27187,"modificationDate":"2012-08-03"}, -{"geonameId":"331416","name":"Maitchew","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":27186,"modificationDate":"2020-06-11"}, -{"geonameId":"4839416","name":"New London","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27179,"modificationDate":"2020-02-29"}, -{"geonameId":"1275618","name":"Bilgrām","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27173,"modificationDate":"2016-02-06"}, -{"geonameId":"3124932","name":"el Clot","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":27170,"modificationDate":"2017-05-26"}, -{"geonameId":"1863614","name":"Gobō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":27169,"modificationDate":"2017-08-03"}, -{"geonameId":"3109897","name":"Santa Uxía de Ribeira","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":27159,"modificationDate":"2018-12-05"}, -{"geonameId":"2642763","name":"Melton Mowbray","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27158,"modificationDate":"2017-06-12"}, -{"geonameId":"1275732","name":"Bidhūna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27158,"modificationDate":"2014-10-14"}, -{"geonameId":"5381438","name":"Paso Robles","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":27157,"modificationDate":"2006-01-27"}, -{"geonameId":"5757506","name":"Tualatin","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":27154,"modificationDate":"2017-03-09"}, -{"geonameId":"2122850","name":"Nikolayevsk-on-Amure","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":27152,"modificationDate":"2014-04-26"}, -{"geonameId":"1732814","name":"Yong Peng","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":27138,"modificationDate":"2012-01-17"}, -{"geonameId":"3517231","name":"Moyotzingo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":27137,"modificationDate":"2018-11-03"}, -{"geonameId":"2319257","name":"Wamba","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":27137,"modificationDate":"2016-01-30"}, -{"geonameId":"2513195","name":"Novelda","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":27135,"modificationDate":"2012-03-04"}, -{"geonameId":"3534094","name":"Viñales","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":27129,"modificationDate":"2016-11-21"}, -{"geonameId":"4155594","name":"Fleming Island","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27126,"modificationDate":"2017-03-10"}, -{"geonameId":"2633553","name":"Workington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27120,"modificationDate":"2018-07-03"}, -{"geonameId":"98012","name":"Baynjiwayn","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":27116,"modificationDate":"2019-04-10"}, -{"geonameId":"3401845","name":"Conceição do Araguaia","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27115,"modificationDate":"2015-06-13"}, -{"geonameId":"2850213","name":"Rathenow","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27115,"modificationDate":"2015-09-04"}, -{"geonameId":"149929","name":"Sikonge","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":27113,"modificationDate":"2016-07-26"}, -{"geonameId":"3446783","name":"Taquari","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27107,"modificationDate":"2012-08-03"}, -{"geonameId":"1259857","name":"Perumpāvūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27105,"modificationDate":"2017-02-04"}, -{"geonameId":"3677010","name":"La Tebaida","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":27098,"modificationDate":"2018-04-18"}, -{"geonameId":"694792","name":"Sarny","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27097,"modificationDate":"2014-08-06"}, -{"geonameId":"5053156","name":"Winona","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27094,"modificationDate":"2017-05-23"}, -{"geonameId":"1276449","name":"Berasia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27091,"modificationDate":"2014-10-14"}, -{"geonameId":"2854655","name":"Petershagen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27090,"modificationDate":"2015-09-04"}, -{"geonameId":"1859765","name":"Katsuyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":27088,"modificationDate":"2017-07-22"}, -{"geonameId":"11747175","name":"Neapoli","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27084,"modificationDate":"2017-12-14"}, -{"geonameId":"3020062","name":"Épernay","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":27082,"modificationDate":"2019-04-10"}, -{"geonameId":"3980174","name":"El Guaje","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":27079,"modificationDate":"2020-06-10"}, -{"geonameId":"459283","name":"Jēkabpils","countryName":"Latvia","timeZoneName":"Europe/Riga","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27078,"modificationDate":"2019-02-26"}, -{"geonameId":"1215694","name":"Zomin Shaharchasi","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":27077,"modificationDate":"2020-02-07"}, -{"geonameId":"3795152","name":"La Fría","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":27077,"modificationDate":"2013-12-01"}, -{"geonameId":"1633442","name":"Paciran","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":27072,"modificationDate":"2007-11-09"}, -{"geonameId":"608362","name":"Shalkar","countryName":"Kazakhstan","timeZoneName":"Asia/Atyrau","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":27072,"modificationDate":"2013-05-07"}, -{"geonameId":"1511309","name":"Asino","countryName":"Russia","timeZoneName":"Asia/Tomsk","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":27070,"modificationDate":"2019-09-05"}, -{"geonameId":"3448403","name":"São Pedro","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27068,"modificationDate":"2012-08-03"}, -{"geonameId":"702116","name":"Malyn","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27068,"modificationDate":"2014-10-01"}, -{"geonameId":"1500933","name":"Labytnangi","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":27067,"modificationDate":"2019-09-05"}, -{"geonameId":"1271131","name":"Gobindpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27066,"modificationDate":"2014-10-14"}, -{"geonameId":"2649957","name":"Epsom","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27065,"modificationDate":"2011-02-06"}, -{"geonameId":"1701537","name":"Manolo Fortich","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":27064,"modificationDate":"2017-12-13"}, -{"geonameId":"4494942","name":"Thomasville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27061,"modificationDate":"2017-05-23"}, -{"geonameId":"3862738","name":"Villa Cassini","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":27060,"modificationDate":"2020-06-10"}, -{"geonameId":"1054463","name":"Tsiroanomandidy","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":27060,"modificationDate":"2018-09-07"}, -{"geonameId":"2877673","name":"Limbach-Oberfrohna","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27056,"modificationDate":"2015-09-05"}, -{"geonameId":"4150190","name":"Casselberry","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27056,"modificationDate":"2017-03-09"}, -{"geonameId":"2896514","name":"Ilmenau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27055,"modificationDate":"2015-09-05"}, -{"geonameId":"2313762","name":"Libenge","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":27053,"modificationDate":"2016-11-22"}, -{"geonameId":"307623","name":"Nacrasa","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":27053,"modificationDate":"2020-06-10"}, -{"geonameId":"12156901","name":"Don Valley Village","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27051,"modificationDate":"2020-05-02"}, -{"geonameId":"654706","name":"Kallio","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27051,"modificationDate":"2018-10-28"}, -{"geonameId":"1684803","name":"Tabuk","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":27048,"modificationDate":"2017-12-13"}, -{"geonameId":"248875","name":"Jarash","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27046,"modificationDate":"2018-12-03"}, -{"geonameId":"2814270","name":"Wangen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27045,"modificationDate":"2019-04-10"}, -{"geonameId":"3695675","name":"La Peca","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":27045,"modificationDate":"2012-07-19"}, -{"geonameId":"2647310","name":"Haverhill","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":27041,"modificationDate":"2018-07-03"}, -{"geonameId":"155016","name":"Malinyi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":27041,"modificationDate":"2018-12-04"}, -{"geonameId":"1650888","name":"Babat","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":27038,"modificationDate":"2010-01-29"}, -{"geonameId":"2519690","name":"Catarroja","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":27035,"modificationDate":"2018-06-08"}, -{"geonameId":"2692475","name":"Märsta","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":27034,"modificationDate":"2017-03-18"}, -{"geonameId":"2613102","name":"Sønderborg","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":27033,"modificationDate":"2020-04-16"}, -{"geonameId":"3452237","name":"Promissão","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27031,"modificationDate":"2012-08-03"}, -{"geonameId":"2944079","name":"Brilon","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27030,"modificationDate":"2015-09-05"}, -{"geonameId":"12047623","name":"Rejon placu Grunwaldzkiego","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":27030,"modificationDate":"2019-06-03"}, -{"geonameId":"2968176","name":"Villiers-le-Bel","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":27028,"modificationDate":"2016-02-18"}, -{"geonameId":"1164825","name":"Sillanwali","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":27023,"modificationDate":"2019-12-06"}, -{"geonameId":"3457991","name":"Mangaratiba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":27022,"modificationDate":"2012-08-03"}, -{"geonameId":"3071665","name":"Litvínov","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":27022,"modificationDate":"2019-03-20"}, -{"geonameId":"2969392","name":"Vichy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":27019,"modificationDate":"2019-09-05"}, -{"geonameId":"752278","name":"Alaca","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":27019,"modificationDate":"2012-01-18"}, -{"geonameId":"2881509","name":"Landsberg am Lech","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":27017,"modificationDate":"2014-01-16"}, -{"geonameId":"5563397","name":"Eureka","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":27017,"modificationDate":"2018-04-02"}, -{"geonameId":"1266014","name":"Kotdwāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27009,"modificationDate":"2015-08-07"}, -{"geonameId":"4237579","name":"East Saint Louis","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27006,"modificationDate":"2013-07-19"}, -{"geonameId":"3674292","name":"Mosquera","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":27005,"modificationDate":"2018-07-04"}, -{"geonameId":"5445439","name":"Garden City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27005,"modificationDate":"2017-05-23"}, -{"geonameId":"2463679","name":"Corfu","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27003,"modificationDate":"2019-10-11"}, -{"geonameId":"4232679","name":"Alton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":27003,"modificationDate":"2019-09-19"}, -{"geonameId":"4944193","name":"Milton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":27003,"modificationDate":"2017-05-23"}, -{"geonameId":"566854","name":"Dedovsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":27001,"modificationDate":"2019-09-05"}, -{"geonameId":"3860164","name":"Coronel Suárez","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":27000,"modificationDate":"2016-03-06"}, -{"geonameId":"733606","name":"Asparuhovo","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":27000,"modificationDate":"2019-07-31"}, -{"geonameId":"7626554","name":"Bhawanipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":27000,"modificationDate":"2014-10-14"}, -{"geonameId":"6765385","name":"‘Anah","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":27000,"modificationDate":"2018-12-06"}, -{"geonameId":"1053778","name":"Vohipaho","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":27000,"modificationDate":"2018-09-10"}, -{"geonameId":"1059059","name":"Miandrarivo","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":27000,"modificationDate":"2018-09-10"}, -{"geonameId":"785753","name":"Smederevska Palanka","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":27000,"modificationDate":"2012-04-17"}, -{"geonameId":"7117880","name":"Zarya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":27000,"modificationDate":"2013-01-04"}, -{"geonameId":"2012593","name":"Zeya","countryName":"Russia","timeZoneName":"Asia/Yakutsk","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":26999,"modificationDate":"2013-12-28"}, -{"geonameId":"3451102","name":"Rio Pardo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26998,"modificationDate":"2012-08-03"}, -{"geonameId":"2643198","name":"Maghull","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26997,"modificationDate":"2017-06-12"}, -{"geonameId":"4176217","name":"University Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26995,"modificationDate":"2011-05-14"}, -{"geonameId":"3169602","name":"Rapallo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26993,"modificationDate":"2014-01-11"}, -{"geonameId":"775922","name":"Biłgoraj","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":26987,"modificationDate":"2019-09-05"}, -{"geonameId":"1490140","name":"Tara","countryName":"Russia","timeZoneName":"Asia/Omsk","timeZoneOffsetNameWithoutDst":"Omsk Time","population":26986,"modificationDate":"2019-09-05"}, -{"geonameId":"5107505","name":"Auburn","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26985,"modificationDate":"2017-05-23"}, -{"geonameId":"12156899","name":"Clairlea-Birchmount","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26984,"modificationDate":"2020-05-02"}, -{"geonameId":"3665202","name":"Campina","countryName":"Brazil","timeZoneName":"America/Cuiaba","timeZoneOffsetNameWithoutDst":"Amazon Time","population":26983,"modificationDate":"2020-06-11"}, -{"geonameId":"3130155","name":"Amés","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":26983,"modificationDate":"2018-06-08"}, -{"geonameId":"3470428","name":"Barrinha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26981,"modificationDate":"2012-08-03"}, -{"geonameId":"543633","name":"Kotovo","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":26981,"modificationDate":"2019-09-05"}, -{"geonameId":"5692947","name":"Williston","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26977,"modificationDate":"2019-12-08"}, -{"geonameId":"5102387","name":"Paramus","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26974,"modificationDate":"2017-05-23"}, -{"geonameId":"5178800","name":"Back Mountain","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26973,"modificationDate":"2017-05-23"}, -{"geonameId":"2924770","name":"Friedenau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26972,"modificationDate":"2012-06-09"}, -{"geonameId":"5106279","name":"West Milford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26968,"modificationDate":"2017-05-23"}, -{"geonameId":"684156","name":"Borşa","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26966,"modificationDate":"2012-06-12"}, -{"geonameId":"453754","name":"Valmiera","countryName":"Latvia","timeZoneName":"Europe/Riga","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26963,"modificationDate":"2019-09-05"}, -{"geonameId":"2465030","name":"Siliana","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":26960,"modificationDate":"2018-08-31"}, -{"geonameId":"3944399","name":"Chancay","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":26958,"modificationDate":"2012-07-19"}, -{"geonameId":"3848687","name":"Las Breñas","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":26955,"modificationDate":"2016-01-30"}, -{"geonameId":"2874455","name":"Mahlsdorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26954,"modificationDate":"2017-09-19"}, -{"geonameId":"3875070","name":"Pucón","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":26953,"modificationDate":"2019-10-05"}, -{"geonameId":"1258869","name":"Rājgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26953,"modificationDate":"2014-10-14"}, -{"geonameId":"1512790","name":"Shovot","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":26950,"modificationDate":"2020-04-08"}, -{"geonameId":"2228028","name":"Mbandjok","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":26947,"modificationDate":"2012-01-16"}, -{"geonameId":"4296218","name":"Jeffersontown","countryName":"United States","timeZoneName":"America/Kentucky/Louisville","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26946,"modificationDate":"2017-03-09"}, -{"geonameId":"102451","name":"Samta","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":26945,"modificationDate":"2020-06-10"}, -{"geonameId":"2911710","name":"Hakenfelde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26940,"modificationDate":"2012-06-09"}, -{"geonameId":"1735199","name":"Sungai Besar","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":26939,"modificationDate":"2012-01-17"}, -{"geonameId":"1259108","name":"Kasba","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26937,"modificationDate":"2014-10-14"}, -{"geonameId":"1711437","name":"Iba","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":26935,"modificationDate":"2017-12-13"}, -{"geonameId":"2499193","name":"Douera","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":26926,"modificationDate":"2012-01-19"}, -{"geonameId":"2817599","name":"Verden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26924,"modificationDate":"2017-09-19"}, -{"geonameId":"3049512","name":"Komló","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":26924,"modificationDate":"2011-02-11"}, -{"geonameId":"4993659","name":"Garden City","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26920,"modificationDate":"2017-05-23"}, -{"geonameId":"1853193","name":"Sakai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26918,"modificationDate":"2017-04-09"}, -{"geonameId":"4430400","name":"Horn Lake","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26915,"modificationDate":"2017-03-09"}, -{"geonameId":"4952206","name":"Stoughton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26915,"modificationDate":"2017-05-23"}, -{"geonameId":"5188140","name":"Easton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26915,"modificationDate":"2017-05-23"}, -{"geonameId":"2696503","name":"Lerum","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":26913,"modificationDate":"2017-03-18"}, -{"geonameId":"7302855","name":"Naharlagun","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26912,"modificationDate":"2014-10-14"}, -{"geonameId":"3572375","name":"Freeport","countryName":"Bahamas","timeZoneName":"America/Nassau","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26910,"modificationDate":"2019-02-26"}, -{"geonameId":"2152329","name":"Quakers Hill","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":26904,"modificationDate":"2019-07-18"}, -{"geonameId":"3877146","name":"Parral","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":26904,"modificationDate":"2013-01-11"}, -{"geonameId":"2841463","name":"Sankt Wendel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26904,"modificationDate":"2015-09-05"}, -{"geonameId":"601432","name":"Yylanly","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":26901,"modificationDate":"2013-10-29"}, -{"geonameId":"2129163","name":"Mombetsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26895,"modificationDate":"2017-04-09"}, -{"geonameId":"4338012","name":"Prairieville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26895,"modificationDate":"2011-05-14"}, -{"geonameId":"1257545","name":"Sāmba","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26893,"modificationDate":"2015-09-06"}, -{"geonameId":"2524006","name":"Niscemi","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26893,"modificationDate":"2014-04-13"}, -{"geonameId":"4896728","name":"Hyde Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26893,"modificationDate":"2017-12-14"}, -{"geonameId":"5115107","name":"Dix Hills","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26892,"modificationDate":"2017-05-23"}, -{"geonameId":"2660911","name":"Emmen","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":26889,"modificationDate":"2020-04-12"}, -{"geonameId":"3168209","name":"San Giuseppe Vesuviano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26888,"modificationDate":"2015-08-07"}, -{"geonameId":"8198709","name":"Buzen","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26886,"modificationDate":"2017-07-22"}, -{"geonameId":"2358382","name":"Léo","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26884,"modificationDate":"2017-05-21"}, -{"geonameId":"1253242","name":"Vepagunta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26881,"modificationDate":"2014-10-10"}, -{"geonameId":"7281840","name":"Parramatta","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":26876,"modificationDate":"2019-07-18"}, -{"geonameId":"4017992","name":"Atotonilco el Alto","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":26874,"modificationDate":"2018-11-03"}, -{"geonameId":"2070998","name":"Geraldton","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":26872,"modificationDate":"2019-07-20"}, -{"geonameId":"2976179","name":"Sannois","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":26869,"modificationDate":"2016-02-18"}, -{"geonameId":"2844862","name":"Rösrath","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26868,"modificationDate":"2015-09-04"}, -{"geonameId":"935691","name":"La Possession","countryName":"Reunion","timeZoneName":"Indian/Reunion","timeZoneOffsetNameWithoutDst":"Réunion Time","population":26865,"modificationDate":"2018-06-08"}, -{"geonameId":"1213655","name":"Stabat","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":26862,"modificationDate":"2015-01-27"}, -{"geonameId":"3181683","name":"Boscoreale","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26861,"modificationDate":"2015-08-07"}, -{"geonameId":"4387990","name":"Gladstone","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26861,"modificationDate":"2017-05-23"}, -{"geonameId":"3457817","name":"Marau","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26860,"modificationDate":"2012-08-03"}, -{"geonameId":"3990040","name":"Rancho La Gloria","countryName":"Mexico","timeZoneName":"America/Tijuana","timeZoneOffsetNameWithoutDst":"Pacific Time","population":26860,"modificationDate":"2018-11-03"}, -{"geonameId":"1696718","name":"Paete","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":26855,"modificationDate":"2017-12-13"}, -{"geonameId":"3669469","name":"San Juan del Cesar","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":26848,"modificationDate":"2018-07-04"}, -{"geonameId":"2745973","name":"Uithoorn","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":26846,"modificationDate":"2017-10-17"}, -{"geonameId":"3398343","name":"Igarapé Miri","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26837,"modificationDate":"2012-08-03"}, -{"geonameId":"4152574","name":"Cutler Ridge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26831,"modificationDate":"2006-01-17"}, -{"geonameId":"1645220","name":"Driyorejo","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":26827,"modificationDate":"2012-01-17"}, -{"geonameId":"3523141","name":"Misantla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":26827,"modificationDate":"2018-11-03"}, -{"geonameId":"2757872","name":"Culemborg","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":26826,"modificationDate":"2017-10-17"}, -{"geonameId":"3853510","name":"Jesús María","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":26825,"modificationDate":"2019-03-25"}, -{"geonameId":"2460755","name":"Bafulabe","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26823,"modificationDate":"2020-06-10"}, -{"geonameId":"1265723","name":"Kulittalai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26822,"modificationDate":"2014-10-14"}, -{"geonameId":"2347592","name":"Baro","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":26821,"modificationDate":"2018-10-20"}, -{"geonameId":"4295776","name":"Independence","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26819,"modificationDate":"2017-03-09"}, -{"geonameId":"1512770","name":"Sirdaryo","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":26816,"modificationDate":"2012-01-17"}, -{"geonameId":"1217658","name":"Rostovtsevo","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":26815,"modificationDate":"2020-06-10"}, -{"geonameId":"2891832","name":"Kelkheim (Taunus)","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26814,"modificationDate":"2015-09-04"}, -{"geonameId":"326206","name":"Werota","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":26813,"modificationDate":"2012-01-19"}, -{"geonameId":"3165178","name":"Triggiano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26811,"modificationDate":"2014-04-13"}, -{"geonameId":"2383827","name":"Nola","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":26809,"modificationDate":"2018-09-29"}, -{"geonameId":"3416706","name":"Hafnarfjörður","countryName":"Iceland","timeZoneName":"Atlantic/Reykjavik","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26808,"modificationDate":"2019-09-05"}, -{"geonameId":"1175010","name":"Kandiaro","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":26807,"modificationDate":"2019-12-06"}, -{"geonameId":"3584772","name":"La Unión","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":26807,"modificationDate":"2013-06-30"}, -{"geonameId":"1277263","name":"Banmankhi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26806,"modificationDate":"2015-12-05"}, -{"geonameId":"1256598","name":"Sheoganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26804,"modificationDate":"2014-10-14"}, -{"geonameId":"1717960","name":"Catanauan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":26804,"modificationDate":"2017-12-13"}, -{"geonameId":"587261","name":"Amirdzhan","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":26798,"modificationDate":"2012-01-17"}, -{"geonameId":"1720793","name":"Calabanga","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":26798,"modificationDate":"2017-12-13"}, -{"geonameId":"3983216","name":"Sayula","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":26789,"modificationDate":"2018-11-03"}, -{"geonameId":"1162261","name":"Zaida","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":26787,"modificationDate":"2019-12-06"}, -{"geonameId":"377241","name":"Bor","countryName":"South Sudan","timeZoneName":"Africa/Juba","timeZoneOffsetNameWithoutDst":"East Africa Time","population":26782,"modificationDate":"2017-06-09"}, -{"geonameId":"2110735","name":"Tōno","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26781,"modificationDate":"2017-07-22"}, -{"geonameId":"5143396","name":"Watertown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26780,"modificationDate":"2017-05-23"}, -{"geonameId":"3456593","name":"Mucuri","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26775,"modificationDate":"2017-08-31"}, -{"geonameId":"1172657","name":"Kunri","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":26773,"modificationDate":"2019-12-24"}, -{"geonameId":"3472254","name":"Andradas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26772,"modificationDate":"2012-08-03"}, -{"geonameId":"148106","name":"Fizuli","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":26765,"modificationDate":"2013-08-02"}, -{"geonameId":"727462","name":"Samokov","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26765,"modificationDate":"2018-03-22"}, -{"geonameId":"3544607","name":"Pedro Betancourt","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":26761,"modificationDate":"2015-12-06"}, -{"geonameId":"457065","name":"Ogre","countryName":"Latvia","timeZoneName":"Europe/Riga","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26760,"modificationDate":"2016-12-02"}, -{"geonameId":"3015689","name":"Gonesse","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":26758,"modificationDate":"2016-02-18"}, -{"geonameId":"1269761","name":"Indapuri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26752,"modificationDate":"2020-06-10"}, -{"geonameId":"5177358","name":"Wooster","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26749,"modificationDate":"2017-05-23"}, -{"geonameId":"339448","name":"Saio","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":26748,"modificationDate":"2020-06-11"}, -{"geonameId":"3181125","name":"Camaiore","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26746,"modificationDate":"2015-08-07"}, -{"geonameId":"1150246","name":"Tha Muang","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":26746,"modificationDate":"2012-01-16"}, -{"geonameId":"3433901","name":"Fontana","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":26745,"modificationDate":"2016-01-30"}, -{"geonameId":"4048023","name":"Bessemer","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26730,"modificationDate":"2017-03-09"}, -{"geonameId":"1267297","name":"Kemri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26726,"modificationDate":"2020-06-10"}, -{"geonameId":"5089478","name":"Merrimack","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26726,"modificationDate":"2017-05-23"}, -{"geonameId":"152781","name":"Mtinko","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":26725,"modificationDate":"2016-07-26"}, -{"geonameId":"751371","name":"Babaeski","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":26724,"modificationDate":"2013-08-06"}, -{"geonameId":"3047651","name":"Nagykőrös","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":26711,"modificationDate":"2014-11-05"}, -{"geonameId":"1634678","name":"Muntok","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":26709,"modificationDate":"2014-04-06"}, -{"geonameId":"5365893","name":"Lemon Grove","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":26709,"modificationDate":"2017-03-09"}, -{"geonameId":"3173153","name":"Monfalcone","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26706,"modificationDate":"2015-08-07"}, -{"geonameId":"1256974","name":"Sausar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26704,"modificationDate":"2015-04-08"}, -{"geonameId":"1852357","name":"Shimoda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26704,"modificationDate":"2017-07-27"}, -{"geonameId":"1842518","name":"Goseong","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":26704,"modificationDate":"2012-01-18"}, -{"geonameId":"146412","name":"Kyrenia","countryName":"Cyprus","timeZoneName":"Asia/Famagusta","timeZoneOffsetNameWithoutDst":"GMT+02:00","population":26701,"modificationDate":"2014-09-30"}, -{"geonameId":"1267669","name":"Kartārpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26701,"modificationDate":"2020-04-02"}, -{"geonameId":"1175296","name":"Kalat","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":26701,"modificationDate":"2019-12-06"}, -{"geonameId":"3574194","name":"Marabella","countryName":"Trinidad and Tobago","timeZoneName":"America/Port_of_Spain","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":26700,"modificationDate":"2016-05-11"}, -{"geonameId":"3678405","name":"La Mesa","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":26699,"modificationDate":"2018-05-09"}, -{"geonameId":"1267772","name":"Karhal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26693,"modificationDate":"2015-08-07"}, -{"geonameId":"2969109","name":"Vigneux-sur-Seine","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":26692,"modificationDate":"2016-02-18"}, -{"geonameId":"3385122","name":"Viana","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26689,"modificationDate":"2012-08-03"}, -{"geonameId":"3028134","name":"Cavaillon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":26689,"modificationDate":"2016-02-18"}, -{"geonameId":"1265053","name":"Lar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26688,"modificationDate":"2017-12-28"}, -{"geonameId":"1273136","name":"Deūlgaon Rāja","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26688,"modificationDate":"2014-10-13"}, -{"geonameId":"3455689","name":"Ouro Branco","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26687,"modificationDate":"2014-10-22"}, -{"geonameId":"1512568","name":"Toshloq","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":26686,"modificationDate":"2015-09-06"}, -{"geonameId":"3457133","name":"Miracema","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26684,"modificationDate":"2012-08-03"}, -{"geonameId":"3183356","name":"Albano Laziale","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26684,"modificationDate":"2015-07-21"}, -{"geonameId":"771401","name":"Grodzisk Mazowiecki","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":26684,"modificationDate":"2010-10-28"}, -{"geonameId":"3924948","name":"Ouro Preto do Oeste","countryName":"Brazil","timeZoneName":"America/Porto_Velho","timeZoneOffsetNameWithoutDst":"Amazon Time","population":26683,"modificationDate":"2012-08-03"}, -{"geonameId":"2803010","name":"Ath","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":26681,"modificationDate":"2009-01-18"}, -{"geonameId":"3117331","name":"Martorell","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":26681,"modificationDate":"2012-03-04"}, -{"geonameId":"3457528","name":"Mata de São João","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26679,"modificationDate":"2012-08-03"}, -{"geonameId":"3398112","name":"Ipu","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26678,"modificationDate":"2012-08-03"}, -{"geonameId":"1518296","name":"Tekeli","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":26678,"modificationDate":"2013-07-05"}, -{"geonameId":"1859492","name":"Kikuchi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26677,"modificationDate":"2017-07-22"}, -{"geonameId":"3120637","name":"Horta","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":26676,"modificationDate":"2017-05-26"}, -{"geonameId":"4898182","name":"Kankakee","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26676,"modificationDate":"2017-05-23"}, -{"geonameId":"2984513","name":"Rambouillet","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":26674,"modificationDate":"2019-04-10"}, -{"geonameId":"2171085","name":"Coffs Harbour","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":26672,"modificationDate":"2019-07-18"}, -{"geonameId":"3173029","name":"Montebelluna","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26670,"modificationDate":"2014-04-13"}, -{"geonameId":"3623394","name":"Ipís","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":26669,"modificationDate":"2018-12-05"}, -{"geonameId":"4845612","name":"Wethersfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26668,"modificationDate":"2017-05-23"}, -{"geonameId":"4608657","name":"Bristol","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26666,"modificationDate":"2017-11-09"}, -{"geonameId":"1264489","name":"Mahād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26665,"modificationDate":"2014-10-13"}, -{"geonameId":"2502924","name":"Boukadir","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":26662,"modificationDate":"2013-10-27"}, -{"geonameId":"3939761","name":"Hualmay","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":26658,"modificationDate":"2012-07-19"}, -{"geonameId":"4901663","name":"McHenry","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26657,"modificationDate":"2017-05-23"}, -{"geonameId":"3128273","name":"Benicarló","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":26655,"modificationDate":"2012-03-04"}, -{"geonameId":"3025466","name":"Cherbourg-Octeville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":26655,"modificationDate":"2019-09-05"}, -{"geonameId":"1279023","name":"Alīganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26652,"modificationDate":"2015-08-07"}, -{"geonameId":"2826082","name":"Strausberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26649,"modificationDate":"2015-09-05"}, -{"geonameId":"3110986","name":"Salou","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":26649,"modificationDate":"2010-04-22"}, -{"geonameId":"3036903","name":"Armentières","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":26646,"modificationDate":"2016-02-18"}, -{"geonameId":"2509491","name":"Villarrobledo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":26642,"modificationDate":"2012-03-04"}, -{"geonameId":"3532815","name":"Apan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":26642,"modificationDate":"2018-11-03"}, -{"geonameId":"2652730","name":"Clydebank","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26640,"modificationDate":"2017-06-12"}, -{"geonameId":"4681462","name":"Cibolo","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26637,"modificationDate":"2017-03-09"}, -{"geonameId":"615912","name":"Stantsiya Novyy Afon","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":26636,"modificationDate":"2013-10-29"}, -{"geonameId":"1863997","name":"Hukue","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26636,"modificationDate":"2020-06-11"}, -{"geonameId":"108773","name":"Al Wajh","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":26636,"modificationDate":"2017-08-31"}, -{"geonameId":"2657703","name":"Acocks Green","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26635,"modificationDate":"2017-06-05"}, -{"geonameId":"1258307","name":"Rāver","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26635,"modificationDate":"2015-08-07"}, -{"geonameId":"3176843","name":"Fondi","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26634,"modificationDate":"2020-05-27"}, -{"geonameId":"4006194","name":"Francisco I. Madero","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":26632,"modificationDate":"2018-11-03"}, -{"geonameId":"754454","name":"Wyszków","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":26628,"modificationDate":"2014-06-27"}, -{"geonameId":"4950267","name":"Saugus","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26628,"modificationDate":"2017-05-23"}, -{"geonameId":"1150921","name":"Ron Phibun","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":26621,"modificationDate":"2016-11-08"}, -{"geonameId":"1260612","name":"Panagar Bazar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26619,"modificationDate":"2020-06-10"}, -{"geonameId":"3060346","name":"Dubnica nad Váhom","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":26617,"modificationDate":"2019-09-05"}, -{"geonameId":"3701917","name":"Río Abajo","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26607,"modificationDate":"2017-08-15"}, -{"geonameId":"3996893","name":"Magdalena de Kino","countryName":"Mexico","timeZoneName":"America/Hermosillo","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":26605,"modificationDate":"2018-11-03"}, -{"geonameId":"558209","name":"Gubakha","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":26605,"modificationDate":"2019-09-05"}, -{"geonameId":"1270435","name":"Hāngal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26604,"modificationDate":"2014-10-14"}, -{"geonameId":"5274644","name":"Stevens Point","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26604,"modificationDate":"2017-05-23"}, -{"geonameId":"691179","name":"Truskawiec","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26600,"modificationDate":"2020-06-10"}, -{"geonameId":"729581","name":"Lom","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26594,"modificationDate":"2019-03-01"}, -{"geonameId":"3624370","name":"Cartago","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":26594,"modificationDate":"2016-09-07"}, -{"geonameId":"2273312","name":"Voinjama","countryName":"Liberia","timeZoneName":"Africa/Monrovia","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26594,"modificationDate":"2012-01-17"}, -{"geonameId":"5760009","name":"West Linn","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":26593,"modificationDate":"2017-03-09"}, -{"geonameId":"2326811","name":"Okuta","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":26589,"modificationDate":"2018-12-04"}, -{"geonameId":"2997116","name":"Lunel","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":26588,"modificationDate":"2016-02-18"}, -{"geonameId":"3919998","name":"Cobija","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":26585,"modificationDate":"2010-08-21"}, -{"geonameId":"150930","name":"Nzega","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":26584,"modificationDate":"2016-07-26"}, -{"geonameId":"3659578","name":"Cayambe","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":26582,"modificationDate":"2017-02-07"}, -{"geonameId":"5275191","name":"Superior","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26579,"modificationDate":"2017-05-23"}, -{"geonameId":"2757850","name":"Dalfsen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":26575,"modificationDate":"2017-10-17"}, -{"geonameId":"6074143","name":"Milliken","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26572,"modificationDate":"2020-05-02"}, -{"geonameId":"3178832","name":"Chiavari","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26572,"modificationDate":"2014-01-11"}, -{"geonameId":"305750","name":"Kulp","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":26569,"modificationDate":"2015-02-07"}, -{"geonameId":"2347057","name":"Birnin Kudu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":26565,"modificationDate":"2016-06-22"}, -{"geonameId":"512053","name":"Pavlovsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":26565,"modificationDate":"2019-09-05"}, -{"geonameId":"62788","name":"Ceeldheer","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":26562,"modificationDate":"2018-04-04"}, -{"geonameId":"252601","name":"Tripolizza","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26561,"modificationDate":"2020-06-10"}, -{"geonameId":"2122614","name":"Okha","countryName":"Russia","timeZoneName":"Asia/Sakhalin","timeZoneOffsetNameWithoutDst":"Sakhalin Time","population":26560,"modificationDate":"2012-10-06"}, -{"geonameId":"2481207","name":"Sidi Akkacha","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":26558,"modificationDate":"2012-01-19"}, -{"geonameId":"264111","name":"Agía Varvára","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26550,"modificationDate":"2019-10-23"}, -{"geonameId":"7279739","name":"Perumbavoor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26550,"modificationDate":"2014-10-13"}, -{"geonameId":"6243926","name":"Blenheim","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":26550,"modificationDate":"2020-05-21"}, -{"geonameId":"3516210","name":"Teapa","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":26548,"modificationDate":"2018-11-03"}, -{"geonameId":"3069305","name":"Nový Jičín","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":26547,"modificationDate":"2018-09-08"}, -{"geonameId":"3460734","name":"Itaperuçu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26546,"modificationDate":"2012-08-03"}, -{"geonameId":"2411585","name":"Gibraltar","countryName":"Gibraltar","timeZoneName":"Europe/Gibraltar","timeZoneOffsetNameWithoutDst":"Central European Time","population":26544,"modificationDate":"2019-11-18"}, -{"geonameId":"3029276","name":"Cachan","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":26540,"modificationDate":"2016-02-18"}, -{"geonameId":"3466902","name":"Carmo do Paranaíba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26537,"modificationDate":"2012-08-03"}, -{"geonameId":"154780","name":"Maramba","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":26531,"modificationDate":"2018-12-04"}, -{"geonameId":"3562895","name":"Cueto","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":26527,"modificationDate":"2015-11-02"}, -{"geonameId":"5403767","name":"Tujunga","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":26527,"modificationDate":"2018-04-18"}, -{"geonameId":"1512838","name":"Shofirkon Shahri","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":26527,"modificationDate":"2020-02-07"}, -{"geonameId":"2964506","name":"Dún Laoghaire","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26525,"modificationDate":"2019-10-23"}, -{"geonameId":"1258347","name":"Ratia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26524,"modificationDate":"2015-06-07"}, -{"geonameId":"6534275","name":"Gravina di Catania","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26524,"modificationDate":"2014-01-11"}, -{"geonameId":"2650435","name":"East Grinstead","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26523,"modificationDate":"2018-07-03"}, -{"geonameId":"3003952","name":"Le Grand-Quevilly","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":26522,"modificationDate":"2016-02-18"}, -{"geonameId":"1724088","name":"Bongao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":26518,"modificationDate":"2017-12-13"}, -{"geonameId":"2513222","name":"Níjar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":26516,"modificationDate":"2018-06-08"}, -{"geonameId":"4695066","name":"Greenville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26515,"modificationDate":"2017-03-09"}, -{"geonameId":"1260016","name":"Pauri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26514,"modificationDate":"2015-09-06"}, -{"geonameId":"2520447","name":"El Campello","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":26511,"modificationDate":"2016-07-25"}, -{"geonameId":"1256735","name":"Jaunpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26510,"modificationDate":"2020-06-10"}, -{"geonameId":"5777793","name":"Magna","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":26505,"modificationDate":"2011-05-14"}, -{"geonameId":"2169867","name":"Croydon","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":26502,"modificationDate":"2019-07-18"}, -{"geonameId":"3802739","name":"Río de Teapa","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":26500,"modificationDate":"2017-01-05"}, -{"geonameId":"8858098","name":"Las Pintitas","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":26500,"modificationDate":"2014-04-11"}, -{"geonameId":"3173537","name":"Mesagne","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26497,"modificationDate":"2019-06-07"}, -{"geonameId":"1272699","name":"Dhrol","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26496,"modificationDate":"2014-10-13"}, -{"geonameId":"4884192","name":"Batavia","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26495,"modificationDate":"2017-05-23"}, -{"geonameId":"1512934","name":"Salor","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":26494,"modificationDate":"2012-01-17"}, -{"geonameId":"775986","name":"Bielsk Podlaski","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":26493,"modificationDate":"2019-09-05"}, -{"geonameId":"4149956","name":"Cantonment","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26493,"modificationDate":"2012-09-30"}, -{"geonameId":"4934500","name":"Danvers","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26493,"modificationDate":"2017-05-23"}, -{"geonameId":"1260681","name":"Pallippatti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26492,"modificationDate":"2018-12-04"}, -{"geonameId":"570508","name":"Buy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":26486,"modificationDate":"2012-02-28"}, -{"geonameId":"3393972","name":"Nazaré da Mata","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26485,"modificationDate":"2012-08-03"}, -{"geonameId":"2867985","name":"Mühlheim am Main","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26485,"modificationDate":"2017-09-20"}, -{"geonameId":"5905132","name":"Boisbriand","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26483,"modificationDate":"2016-06-22"}, -{"geonameId":"2263284","name":"São Martinho","countryName":"Portugal","timeZoneName":"Atlantic/Madeira","timeZoneOffsetNameWithoutDst":"Western European Time","population":26482,"modificationDate":"2018-02-09"}, -{"geonameId":"515938","name":"Batrak Zernosovkhoz","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":26478,"modificationDate":"2020-06-10"}, -{"geonameId":"5047234","name":"Shoreview","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26477,"modificationDate":"2017-05-23"}, -{"geonameId":"5381002","name":"Paradise","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":26476,"modificationDate":"2017-07-16"}, -{"geonameId":"3104703","name":"Villaviciosa de Odón","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":26475,"modificationDate":"2018-12-29"}, -{"geonameId":"5068725","name":"Fremont","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26474,"modificationDate":"2017-05-23"}, -{"geonameId":"2920020","name":"Glauchau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26473,"modificationDate":"2015-09-05"}, -{"geonameId":"5138539","name":"Smithtown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26470,"modificationDate":"2017-05-23"}, -{"geonameId":"1270763","name":"Gulābpura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26467,"modificationDate":"2014-10-14"}, -{"geonameId":"1846355","name":"Changsu","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":26463,"modificationDate":"2012-01-18"}, -{"geonameId":"4440559","name":"Pearl","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26462,"modificationDate":"2017-03-09"}, -{"geonameId":"3038789","name":"Abbeville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":26461,"modificationDate":"2019-04-10"}, -{"geonameId":"727447","name":"Sandanski","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26459,"modificationDate":"2018-01-06"}, -{"geonameId":"3469984","name":"Biritiba Mirim","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26459,"modificationDate":"2012-09-27"}, -{"geonameId":"895269","name":"Beitbridge","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":26459,"modificationDate":"2013-03-12"}, -{"geonameId":"2128983","name":"Nayoro","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26457,"modificationDate":"2017-07-22"}, -{"geonameId":"1688363","name":"Santa Catalina","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":26457,"modificationDate":"2017-12-13"}, -{"geonameId":"681865","name":"Câmpia Turzii","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26457,"modificationDate":"2014-06-04"}, -{"geonameId":"2128382","name":"Rumoi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26454,"modificationDate":"2017-07-22"}, -{"geonameId":"639406","name":"Riihimäki","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26451,"modificationDate":"2014-09-25"}, -{"geonameId":"1270554","name":"Hadgāon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26451,"modificationDate":"2015-08-07"}, -{"geonameId":"148842","name":"Wete","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":26450,"modificationDate":"2016-07-26"}, -{"geonameId":"1271834","name":"Gadhinglaj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26449,"modificationDate":"2014-10-13"}, -{"geonameId":"1258815","name":"Rajpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26443,"modificationDate":"2015-09-06"}, -{"geonameId":"2649301","name":"Flint","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26442,"modificationDate":"2017-06-12"}, -{"geonameId":"3451242","name":"Rio Branco do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26441,"modificationDate":"2012-08-03"}, -{"geonameId":"4838204","name":"Mansfield City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26439,"modificationDate":"2017-05-23"}, -{"geonameId":"289915","name":"Al Wakrah","countryName":"Qatar","timeZoneName":"Asia/Qatar","timeZoneOffsetNameWithoutDst":"Arabian Time","population":26436,"modificationDate":"2012-01-18"}, -{"geonameId":"2515096","name":"Lebrija","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":26434,"modificationDate":"2012-03-04"}, -{"geonameId":"3092856","name":"Luboń","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":26431,"modificationDate":"2011-07-31"}, -{"geonameId":"2741551","name":"Canidelo","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":26431,"modificationDate":"2018-02-07"}, -{"geonameId":"3525424","name":"Magdalena Atlicpac","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":26429,"modificationDate":"2018-11-03"}, -{"geonameId":"1688232","name":"Santa Cruz","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":26429,"modificationDate":"2017-12-13"}, -{"geonameId":"2957185","name":"Altglienicke","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26426,"modificationDate":"2012-06-09"}, -{"geonameId":"3063739","name":"Uherské Hradiště","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":26421,"modificationDate":"2019-03-20"}, -{"geonameId":"7258271","name":"Mercerville-Hamilton Square","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26419,"modificationDate":"2017-12-14"}, -{"geonameId":"2520171","name":"Caravaca","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":26415,"modificationDate":"2018-12-05"}, -{"geonameId":"655143","name":"Kaarela","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26414,"modificationDate":"2018-10-28"}, -{"geonameId":"1624545","name":"Tayu","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":26413,"modificationDate":"2012-01-17"}, -{"geonameId":"1254727","name":"Terdāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26411,"modificationDate":"2014-10-14"}, -{"geonameId":"2794730","name":"Kapellen","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":26410,"modificationDate":"2011-02-11"}, -{"geonameId":"5804953","name":"North Creek","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":26410,"modificationDate":"2006-01-17"}, -{"geonameId":"2498704","name":"El Amria","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":26407,"modificationDate":"2019-08-18"}, -{"geonameId":"2880144","name":"Lauf an der Pegnitz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26403,"modificationDate":"2014-01-16"}, -{"geonameId":"3110885","name":"Sant Andreu de la Barca","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":26401,"modificationDate":"2010-04-22"}, -{"geonameId":"2829998","name":"Sprockhövel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26400,"modificationDate":"2015-09-04"}, -{"geonameId":"3434095","name":"Esquina","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":26399,"modificationDate":"2018-11-30"}, -{"geonameId":"4235193","name":"Carbondale","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26399,"modificationDate":"2018-01-02"}, -{"geonameId":"292239","name":"Dibba Al-Hisn","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":26395,"modificationDate":"2014-04-21"}, -{"geonameId":"1180419","name":"Daud Khel","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":26395,"modificationDate":"2019-12-06"}, -{"geonameId":"1861400","name":"Ishii","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26394,"modificationDate":"2017-04-09"}, -{"geonameId":"4845585","name":"Westport","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26391,"modificationDate":"2017-05-23"}, -{"geonameId":"1170222","name":"Mitha Tiwana","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":26390,"modificationDate":"2019-12-06"}, -{"geonameId":"2155718","name":"Narre Warren","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":26389,"modificationDate":"2019-07-18"}, -{"geonameId":"1258492","name":"Rangia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26388,"modificationDate":"2014-10-13"}, -{"geonameId":"2150767","name":"Ryde","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":26385,"modificationDate":"2019-07-18"}, -{"geonameId":"3009169","name":"La Garenne-Colombes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":26385,"modificationDate":"2016-02-18"}, -{"geonameId":"2500583","name":"Dellys","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":26384,"modificationDate":"2016-09-17"}, -{"geonameId":"2348395","name":"Badagry","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":26383,"modificationDate":"2016-01-30"}, -{"geonameId":"2744102","name":"Zaltbommel","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":26383,"modificationDate":"2017-10-17"}, -{"geonameId":"2795009","name":"Izegem","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":26382,"modificationDate":"2012-01-18"}, -{"geonameId":"1514396","name":"Bektemir","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":26380,"modificationDate":"2012-01-17"}, -{"geonameId":"2928874","name":"Espelkamp","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26378,"modificationDate":"2015-09-04"}, -{"geonameId":"3467577","name":"Canavieiras","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26375,"modificationDate":"2012-08-03"}, -{"geonameId":"2868788","name":"Mühlacker","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26375,"modificationDate":"2015-03-04"}, -{"geonameId":"289174","name":"Liwá","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":26372,"modificationDate":"2017-12-07"}, -{"geonameId":"338554","name":"Dubti","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":26370,"modificationDate":"2013-12-07"}, -{"geonameId":"261678","name":"Kaisarianí","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26370,"modificationDate":"2019-10-23"}, -{"geonameId":"2992402","name":"Montigny","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":26369,"modificationDate":"2020-06-10"}, -{"geonameId":"3167954","name":"San Miniato Basso","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26365,"modificationDate":"2015-08-07"}, -{"geonameId":"3171484","name":"Parabiago","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26364,"modificationDate":"2015-08-07"}, -{"geonameId":"2043677","name":"Kunsen","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":26364,"modificationDate":"2020-06-11"}, -{"geonameId":"2732265","name":"Viseu","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":26364,"modificationDate":"2018-04-30"}, -{"geonameId":"99759","name":"Ad Dujayl","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":26362,"modificationDate":"2016-06-22"}, -{"geonameId":"2744827","name":"Werkendam","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":26362,"modificationDate":"2019-01-20"}, -{"geonameId":"527361","name":"Metallostroy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":26361,"modificationDate":"2016-12-20"}, -{"geonameId":"4033936","name":"Papeete","countryName":"French Polynesia","timeZoneName":"Pacific/Tahiti","timeZoneOffsetNameWithoutDst":"Tahiti Time","population":26357,"modificationDate":"2019-09-05"}, -{"geonameId":"671832","name":"Oltenitao","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26356,"modificationDate":"2020-06-10"}, -{"geonameId":"3624288","name":"Chacarita","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":26354,"modificationDate":"2016-09-07"}, -{"geonameId":"3380965","name":"Matoury","countryName":"French Guiana","timeZoneName":"America/Cayenne","timeZoneOffsetNameWithoutDst":"French Guiana Time","population":26350,"modificationDate":"2018-10-05"}, -{"geonameId":"2110891","name":"Takahata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26347,"modificationDate":"2017-04-09"}, -{"geonameId":"3075654","name":"Hodonín","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":26345,"modificationDate":"2018-09-08"}, -{"geonameId":"2172832","name":"Caboolture","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":26341,"modificationDate":"2019-07-18"}, -{"geonameId":"5162512","name":"Medina","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26339,"modificationDate":"2017-05-23"}, -{"geonameId":"2359142","name":"Kongoussi","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26338,"modificationDate":"2012-06-05"}, -{"geonameId":"1268823","name":"Jora","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26338,"modificationDate":"2014-10-14"}, -{"geonameId":"5108169","name":"Bay Shore","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26337,"modificationDate":"2017-05-23"}, -{"geonameId":"5847411","name":"Kahului","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":26337,"modificationDate":"2017-12-13"}, -{"geonameId":"3839307","name":"Rawson","countryName":"Argentina","timeZoneName":"America/Argentina/Catamarca","timeZoneOffsetNameWithoutDst":"Argentina Time","population":26335,"modificationDate":"2015-04-22"}, -{"geonameId":"2726756","name":"Alingsås","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":26329,"modificationDate":"2017-03-18"}, -{"geonameId":"1266762","name":"Kheri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26327,"modificationDate":"2015-09-06"}, -{"geonameId":"3176733","name":"Formigine","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26324,"modificationDate":"2015-08-07"}, -{"geonameId":"1275590","name":"Bilsi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26320,"modificationDate":"2015-08-07"}, -{"geonameId":"296852","name":"Erzin","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":26316,"modificationDate":"2014-11-05"}, -{"geonameId":"4914738","name":"Vernon Hills","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26314,"modificationDate":"2017-05-23"}, -{"geonameId":"2875626","name":"Lübbecke","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26310,"modificationDate":"2015-09-04"}, -{"geonameId":"1176948","name":"Hazro City","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":26309,"modificationDate":"2019-12-06"}, -{"geonameId":"3883629","name":"Ciudad La Union","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":26298,"modificationDate":"2020-06-10"}, -{"geonameId":"2524955","name":"Comiso","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26298,"modificationDate":"2015-07-12"}, -{"geonameId":"1633986","name":"Ngunut","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":26297,"modificationDate":"2007-11-09"}, -{"geonameId":"4267336","name":"Zionsville","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26296,"modificationDate":"2017-05-23"}, -{"geonameId":"11549776","name":"la Prosperitat","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":26295,"modificationDate":"2017-05-24"}, -{"geonameId":"1255104","name":"Taloda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26293,"modificationDate":"2018-12-04"}, -{"geonameId":"2809517","name":"Wiehl","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26291,"modificationDate":"2015-09-04"}, -{"geonameId":"3407980","name":"Alenquer","countryName":"Brazil","timeZoneName":"America/Santarem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26290,"modificationDate":"2012-08-03"}, -{"geonameId":"1259434","name":"Polūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26290,"modificationDate":"2014-10-14"}, -{"geonameId":"2447416","name":"Ayorou","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":26290,"modificationDate":"2012-01-18"}, -{"geonameId":"5377199","name":"Norco","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":26289,"modificationDate":"2017-03-09"}, -{"geonameId":"1268450","name":"Kālāvad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26287,"modificationDate":"2014-10-13"}, -{"geonameId":"3825011","name":"Isla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":26287,"modificationDate":"2018-11-03"}, -{"geonameId":"2782067","name":"Baden","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":26286,"modificationDate":"2018-07-28"}, -{"geonameId":"3519076","name":"Chicahualco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":26281,"modificationDate":"2020-06-10"}, -{"geonameId":"631707","name":"Vihti","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26280,"modificationDate":"2014-09-25"}, -{"geonameId":"5550368","name":"Wasco","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":26279,"modificationDate":"2017-03-09"}, -{"geonameId":"12156877","name":"Westminster-Branson","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26274,"modificationDate":"2020-05-02"}, -{"geonameId":"1645978","name":"Colomadu","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":26274,"modificationDate":"2013-10-30"}, -{"geonameId":"2093685","name":"Kokopo","countryName":"Papua New Guinea","timeZoneName":"Pacific/Port_Moresby","timeZoneOffsetNameWithoutDst":"Papua New Guinea Time","population":26273,"modificationDate":"2018-10-19"}, -{"geonameId":"378493","name":"Ar Rahad","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":26273,"modificationDate":"2012-01-19"}, -{"geonameId":"8478941","name":"Mount Pleasant","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26272,"modificationDate":"2017-05-23"}, -{"geonameId":"3617522","name":"Nagarote","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":26270,"modificationDate":"2018-08-08"}, -{"geonameId":"5295143","name":"Fortuna Foothills","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":26265,"modificationDate":"2011-05-14"}, -{"geonameId":"2847666","name":"Rheinbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26262,"modificationDate":"2015-09-04"}, -{"geonameId":"2475921","name":"Tirmitine","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":26261,"modificationDate":"2019-03-14"}, -{"geonameId":"2634387","name":"Westhoughton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26260,"modificationDate":"2017-06-12"}, -{"geonameId":"1258598","name":"Rāmpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26257,"modificationDate":"2015-04-08"}, -{"geonameId":"3520407","name":"Reforma","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":26257,"modificationDate":"2018-11-03"}, -{"geonameId":"497206","name":"Semiluki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":26257,"modificationDate":"2020-02-07"}, -{"geonameId":"1513655","name":"Haqqulobod","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":26257,"modificationDate":"2010-08-09"}, -{"geonameId":"2214433","name":"Nālūt","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26256,"modificationDate":"2012-01-16"}, -{"geonameId":"2032533","name":"Bayanhongor","countryName":"Mongolia","timeZoneName":"Asia/Ulaanbaatar","timeZoneOffsetNameWithoutDst":"Ulaanbaatar Time","population":26252,"modificationDate":"2020-02-01"}, -{"geonameId":"2090990","name":"Mendi","countryName":"Papua New Guinea","timeZoneName":"Pacific/Port_Moresby","timeZoneOffsetNameWithoutDst":"Papua New Guinea Time","population":26252,"modificationDate":"2018-03-14"}, -{"geonameId":"3080944","name":"Żagań","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":26251,"modificationDate":"2019-02-21"}, -{"geonameId":"1690313","name":"San Antonio","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":26247,"modificationDate":"2017-12-13"}, -{"geonameId":"790015","name":"Inđija","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":26247,"modificationDate":"2016-05-18"}, -{"geonameId":"3689589","name":"Ariguaní","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":26246,"modificationDate":"2018-07-04"}, -{"geonameId":"3667158","name":"Tierralta","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":26242,"modificationDate":"2018-07-04"}, -{"geonameId":"1622138","name":"Wanaraja","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":26240,"modificationDate":"2012-01-17"}, -{"geonameId":"2253901","name":"Bignona","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26237,"modificationDate":"2012-01-17"}, -{"geonameId":"955313","name":"Siyabuswa","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":26236,"modificationDate":"2012-07-12"}, -{"geonameId":"5907896","name":"Brandon","countryName":"Canada","timeZoneName":"America/Winnipeg","timeZoneOffsetNameWithoutDst":"Central Time","population":26234,"modificationDate":"2010-01-29"}, -{"geonameId":"5146491","name":"Barberton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26234,"modificationDate":"2017-05-23"}, -{"geonameId":"372386","name":"Kenana","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":26233,"modificationDate":"2020-06-11"}, -{"geonameId":"973139","name":"Mpophomeni","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":26229,"modificationDate":"2014-04-06"}, -{"geonameId":"1259060","name":"Rafiganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26228,"modificationDate":"2015-10-04"}, -{"geonameId":"3671497","name":"Puerto Colombia","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":26227,"modificationDate":"2018-07-04"}, -{"geonameId":"4703384","name":"Kingsville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26225,"modificationDate":"2017-03-09"}, -{"geonameId":"3430513","name":"Muñiz","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":26221,"modificationDate":"2019-08-07"}, -{"geonameId":"4493316","name":"Statesville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26221,"modificationDate":"2017-05-23"}, -{"geonameId":"3042237","name":"Douglas","countryName":"Isle of Man","timeZoneName":"Europe/Isle_of_Man","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26218,"modificationDate":"2019-09-05"}, -{"geonameId":"295064","name":"Gedera","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":26217,"modificationDate":"2017-07-02"}, -{"geonameId":"5131638","name":"Plainview","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26217,"modificationDate":"2017-05-23"}, -{"geonameId":"4360369","name":"Laurel","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26215,"modificationDate":"2017-03-09"}, -{"geonameId":"1267786","name":"Karera","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26212,"modificationDate":"2015-08-07"}, -{"geonameId":"1270466","name":"Halvad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26205,"modificationDate":"2014-10-13"}, -{"geonameId":"3113526","name":"Pineda de Mar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":26203,"modificationDate":"2012-03-04"}, -{"geonameId":"2649024","name":"Frome","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26203,"modificationDate":"2018-07-03"}, -{"geonameId":"4186416","name":"Carrollton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26203,"modificationDate":"2017-03-09"}, -{"geonameId":"1691606","name":"Rizal","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":26201,"modificationDate":"2017-12-13"}, -{"geonameId":"749795","name":"Pazarkoy","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":26201,"modificationDate":"2020-06-10"}, -{"geonameId":"1528283","name":"Iradan","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":26200,"modificationDate":"2015-05-25"}, -{"geonameId":"1737714","name":"Limbang","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":26199,"modificationDate":"2018-01-01"}, -{"geonameId":"6690839","name":"Sant Martí de Provençals","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":26196,"modificationDate":"2017-05-26"}, -{"geonameId":"1851390","name":"Susaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26195,"modificationDate":"2017-07-22"}, -{"geonameId":"2262912","name":"Sintra","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":26193,"modificationDate":"2018-02-10"}, -{"geonameId":"1854028","name":"Hama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26190,"modificationDate":"2020-06-11"}, -{"geonameId":"3526696","name":"Ixtaczoquitlán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":26187,"modificationDate":"2018-11-03"}, -{"geonameId":"1269862","name":"Jopla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26184,"modificationDate":"2020-06-10"}, -{"geonameId":"1255484","name":"Sulur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26183,"modificationDate":"2014-10-14"}, -{"geonameId":"1265752","name":"Kukshi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26183,"modificationDate":"2015-09-06"}, -{"geonameId":"3177438","name":"Eboli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26183,"modificationDate":"2015-08-07"}, -{"geonameId":"2803073","name":"Arlon","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":26179,"modificationDate":"2019-09-05"}, -{"geonameId":"3168234","name":"San Giovanni Rotondo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26179,"modificationDate":"2014-01-16"}, -{"geonameId":"2652464","name":"Congleton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26178,"modificationDate":"2017-06-12"}, -{"geonameId":"1272084","name":"Elamanchili","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26176,"modificationDate":"2015-09-06"}, -{"geonameId":"2812145","name":"Weinstadt-Endersbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26166,"modificationDate":"2013-02-16"}, -{"geonameId":"1258875","name":"Rājgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26164,"modificationDate":"2014-10-14"}, -{"geonameId":"3471451","name":"Arraial do Cabo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26163,"modificationDate":"2012-08-03"}, -{"geonameId":"1621659","name":"Welahan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":26163,"modificationDate":"2018-12-04"}, -{"geonameId":"8948705","name":"Romano Banco","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26163,"modificationDate":"2015-08-07"}, -{"geonameId":"1857560","name":"Matsubase","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26163,"modificationDate":"2018-02-23"}, -{"geonameId":"1060007","name":"Marolambo","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":26160,"modificationDate":"2018-09-10"}, -{"geonameId":"3559416","name":"Encrucijada","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":26155,"modificationDate":"2016-01-07"}, -{"geonameId":"2130332","name":"Fukagawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26152,"modificationDate":"2017-07-22"}, -{"geonameId":"5397717","name":"South Pasadena","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":26151,"modificationDate":"2017-03-09"}, -{"geonameId":"5121407","name":"Howard Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26148,"modificationDate":"2017-04-16"}, -{"geonameId":"3389384","name":"Santana do Ipanema","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26146,"modificationDate":"2012-08-03"}, -{"geonameId":"2502239","name":"Bou Tlelis","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":26144,"modificationDate":"2018-10-05"}, -{"geonameId":"1861586","name":"Innoshima","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26141,"modificationDate":"2018-02-23"}, -{"geonameId":"2158626","name":"Marrickville","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":26140,"modificationDate":"2019-07-18"}, -{"geonameId":"1263528","name":"Marhaura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26138,"modificationDate":"2015-10-04"}, -{"geonameId":"3464809","name":"Descalvado","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26137,"modificationDate":"2012-08-03"}, -{"geonameId":"2327513","name":"Ogwashi-Uku","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":26137,"modificationDate":"2016-01-30"}, -{"geonameId":"2838053","name":"Schmallenberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26132,"modificationDate":"2015-09-05"}, -{"geonameId":"155310","name":"Magugu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":26131,"modificationDate":"2016-07-26"}, -{"geonameId":"2906331","name":"Hennigsdorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26122,"modificationDate":"2015-09-05"}, -{"geonameId":"3345437","name":"Camden Town","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26122,"modificationDate":"2015-10-05"}, -{"geonameId":"295525","name":"Bir Jacob","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":26122,"modificationDate":"2020-06-10"}, -{"geonameId":"3983631","name":"Santiago Papasquiaro","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":26121,"modificationDate":"2013-07-31"}, -{"geonameId":"4018403","name":"Apaseo el Grande","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":26121,"modificationDate":"2018-11-03"}, -{"geonameId":"4891176","name":"Englewood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26121,"modificationDate":"2017-12-14"}, -{"geonameId":"1256539","name":"Shiggaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26118,"modificationDate":"2014-10-14"}, -{"geonameId":"7259780","name":"Four Corners","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26116,"modificationDate":"2011-05-14"}, -{"geonameId":"1525462","name":"Belyye Vody","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":26115,"modificationDate":"2016-04-10"}, -{"geonameId":"1258993","name":"Rāikot","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26114,"modificationDate":"2014-10-14"}, -{"geonameId":"1620442","name":"Ban Talat Bueng","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":26113,"modificationDate":"2012-01-16"}, -{"geonameId":"4369978","name":"South Laurel","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26112,"modificationDate":"2011-05-14"}, -{"geonameId":"2867993","name":"Stuttgart Mühlhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26111,"modificationDate":"2020-02-27"}, -{"geonameId":"304916","name":"Malazgirt","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":26108,"modificationDate":"2015-02-07"}, -{"geonameId":"2214827","name":"Mizdah","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":26107,"modificationDate":"2017-10-03"}, -{"geonameId":"4453035","name":"Asheboro","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26103,"modificationDate":"2017-05-23"}, -{"geonameId":"2932924","name":"Ehingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26097,"modificationDate":"2017-09-22"}, -{"geonameId":"3866242","name":"Allen","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":26083,"modificationDate":"2015-12-09"}, -{"geonameId":"2638911","name":"Ryde","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26082,"modificationDate":"2017-06-12"}, -{"geonameId":"4149269","name":"Buenaventura Lakes","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26079,"modificationDate":"2011-05-14"}, -{"geonameId":"3173160","name":"Mondragone","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":26076,"modificationDate":"2015-08-07"}, -{"geonameId":"3453661","name":"Piracaia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26075,"modificationDate":"2012-08-03"}, -{"geonameId":"2970761","name":"Vanves","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":26068,"modificationDate":"2019-03-26"}, -{"geonameId":"4018762","name":"Ciudad de Allende","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":26065,"modificationDate":"2018-11-03"}, -{"geonameId":"4852022","name":"Clinton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26064,"modificationDate":"2017-05-23"}, -{"geonameId":"3599069","name":"Cantel","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":26063,"modificationDate":"2019-01-09"}, -{"geonameId":"2743949","name":"Zevenaar","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":26063,"modificationDate":"2017-10-17"}, -{"geonameId":"5002714","name":"Mount Pleasant","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26060,"modificationDate":"2017-05-23"}, -{"geonameId":"2785778","name":"Temse","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":26054,"modificationDate":"2012-01-18"}, -{"geonameId":"2497796","name":"El Kseur","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":26050,"modificationDate":"2012-01-19"}, -{"geonameId":"2655583","name":"Bishop Auckland","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26050,"modificationDate":"2017-06-12"}, -{"geonameId":"3621819","name":"San Juan","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":26047,"modificationDate":"2018-12-05"}, -{"geonameId":"2111999","name":"Mashiko","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":26045,"modificationDate":"2017-04-09"}, -{"geonameId":"1734757","name":"Sungai Udang","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":26044,"modificationDate":"2012-01-17"}, -{"geonameId":"757357","name":"Szczytno","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":26044,"modificationDate":"2013-05-11"}, -{"geonameId":"2969766","name":"Vernon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":26037,"modificationDate":"2019-03-26"}, -{"geonameId":"5404198","name":"Twentynine Palms","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":26025,"modificationDate":"2017-03-09"}, -{"geonameId":"3489227","name":"Old Harbour","countryName":"Jamaica","timeZoneName":"America/Jamaica","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26024,"modificationDate":"2019-02-28"}, -{"geonameId":"2922530","name":"Garmisch-Partenkirchen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":26022,"modificationDate":"2014-01-15"}, -{"geonameId":"7281850","name":"Ferntree Gully","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":26019,"modificationDate":"2019-07-18"}, -{"geonameId":"2520477","name":"Camas","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":26015,"modificationDate":"2012-03-04"}, -{"geonameId":"3522445","name":"Ocoyoacac","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":26015,"modificationDate":"2018-11-03"}, -{"geonameId":"2361373","name":"Diapaga","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26013,"modificationDate":"2012-06-05"}, -{"geonameId":"1258534","name":"Rānāvāv","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":26011,"modificationDate":"2014-10-13"}, -{"geonameId":"3622881","name":"Mercedes","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":26007,"modificationDate":"2016-09-07"}, -{"geonameId":"3623593","name":"Guadalupe","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":26005,"modificationDate":"2016-09-07"}, -{"geonameId":"4896691","name":"Huntley","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":26005,"modificationDate":"2017-05-23"}, -{"geonameId":"3457741","name":"Marialva","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":26000,"modificationDate":"2012-08-03"}, -{"geonameId":"2641290","name":"Northolt","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":26000,"modificationDate":"2012-06-01"}, -{"geonameId":"97825","name":"Batifa","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":26000,"modificationDate":"2019-05-28"}, -{"geonameId":"1221614","name":"Ishqoshim","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":26000,"modificationDate":"2012-02-28"}, -{"geonameId":"297090","name":"Didim","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":26000,"modificationDate":"2015-04-08"}, -{"geonameId":"4560303","name":"Pennsport","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":26000,"modificationDate":"2018-01-16"}, -{"geonameId":"1268761","name":"Junnar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25997,"modificationDate":"2018-03-16"}, -{"geonameId":"1083239","name":"Ambatofinandrahana","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":25997,"modificationDate":"2018-09-07"}, -{"geonameId":"3396601","name":"Lago da Pedra","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25996,"modificationDate":"2013-01-11"}, -{"geonameId":"1852109","name":"Shingū","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25991,"modificationDate":"2017-04-09"}, -{"geonameId":"1268031","name":"Kānker","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25984,"modificationDate":"2015-09-06"}, -{"geonameId":"3674885","name":"Melgar","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":25980,"modificationDate":"2018-09-05"}, -{"geonameId":"2749680","name":"Oisterwijk","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":25980,"modificationDate":"2017-10-17"}, -{"geonameId":"2796542","name":"Harelbeke","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":25978,"modificationDate":"2012-01-18"}, -{"geonameId":"3096003","name":"Kluczbork","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":25978,"modificationDate":"2010-09-25"}, -{"geonameId":"4528810","name":"Xenia","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25976,"modificationDate":"2017-05-23"}, -{"geonameId":"3176322","name":"Garbagnate Milanese","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":25974,"modificationDate":"2014-04-13"}, -{"geonameId":"2265326","name":"Paço de Arcos","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":25974,"modificationDate":"2011-08-28"}, -{"geonameId":"3082704","name":"Wałcz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":25971,"modificationDate":"2019-09-05"}, -{"geonameId":"3117409","name":"Marín","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":25969,"modificationDate":"2018-12-03"}, -{"geonameId":"3604251","name":"Olanchito","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":25969,"modificationDate":"2013-12-15"}, -{"geonameId":"4366647","name":"Reisterstown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25968,"modificationDate":"2015-05-15"}, -{"geonameId":"2751771","name":"Leiderdorp","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":25966,"modificationDate":"2017-10-17"}, -{"geonameId":"2641555","name":"Newton Aycliffe","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25964,"modificationDate":"2017-06-12"}, -{"geonameId":"616631","name":"Armavir","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":25963,"modificationDate":"2016-10-07"}, -{"geonameId":"1072879","name":"Ankazoabo","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":25961,"modificationDate":"2018-09-10"}, -{"geonameId":"2899101","name":"Horb am Neckar","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25960,"modificationDate":"2014-07-07"}, -{"geonameId":"2359317","name":"Kokologo","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25958,"modificationDate":"2018-08-07"}, -{"geonameId":"3172170","name":"Novi Ligure","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":25957,"modificationDate":"2015-08-07"}, -{"geonameId":"1266518","name":"Kinwat","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25956,"modificationDate":"2015-08-07"}, -{"geonameId":"3177250","name":"Falconara Marittima","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":25948,"modificationDate":"2015-08-06"}, -{"geonameId":"3724233","name":"Gressier","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25947,"modificationDate":"2017-04-07"}, -{"geonameId":"540030","name":"Kubinka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":25942,"modificationDate":"2019-09-05"}, -{"geonameId":"1150624","name":"Si Satchanalai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":25942,"modificationDate":"2017-03-22"}, -{"geonameId":"2734434","name":"São Mamede de Infesta","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":25940,"modificationDate":"2018-02-07"}, -{"geonameId":"2129324","name":"Makubetsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25935,"modificationDate":"2018-02-23"}, -{"geonameId":"1682537","name":"Telabastagan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":25935,"modificationDate":"2017-12-13"}, -{"geonameId":"1262240","name":"Nagari","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25933,"modificationDate":"2014-10-10"}, -{"geonameId":"1268339","name":"Kālol","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25929,"modificationDate":"2014-10-13"}, -{"geonameId":"3462371","name":"Goiatuba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25925,"modificationDate":"2012-08-03"}, -{"geonameId":"2975536","name":"Savigny-le-Temple","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":25925,"modificationDate":"2016-02-18"}, -{"geonameId":"1853280","name":"Sagara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25922,"modificationDate":"2017-04-09"}, -{"geonameId":"164328","name":"Chikh Meskine","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25920,"modificationDate":"2020-06-10"}, -{"geonameId":"293426","name":"Tamra","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":25917,"modificationDate":"2019-03-30"}, -{"geonameId":"2796009","name":"Herentals","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":25912,"modificationDate":"2012-01-18"}, -{"geonameId":"3187297","name":"Vrbas","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":25907,"modificationDate":"2020-01-28"}, -{"geonameId":"1504972","name":"Kaltan","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":25903,"modificationDate":"2019-08-27"}, -{"geonameId":"3520994","name":"Puerto Escondido","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25902,"modificationDate":"2018-11-03"}, -{"geonameId":"513378","name":"Ozeri","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":25900,"modificationDate":"2020-06-10"}, -{"geonameId":"1497795","name":"Nev’yansk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":25900,"modificationDate":"2012-01-17"}, -{"geonameId":"1274116","name":"Chīpurupalle","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25898,"modificationDate":"2015-09-06"}, -{"geonameId":"5156371","name":"Green","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25898,"modificationDate":"2017-03-09"}, -{"geonameId":"5330567","name":"Brawley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":25897,"modificationDate":"2017-03-09"}, -{"geonameId":"1258213","name":"Renigunta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25895,"modificationDate":"2017-01-04"}, -{"geonameId":"1179463","name":"Dunga Bunga","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":25893,"modificationDate":"2019-12-06"}, -{"geonameId":"4556165","name":"Yukon","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25892,"modificationDate":"2017-03-09"}, -{"geonameId":"610864","name":"Zistafoni","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":25891,"modificationDate":"2020-06-10"}, -{"geonameId":"2515072","name":"Lepe","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":25886,"modificationDate":"2012-03-04"}, -{"geonameId":"593733","name":"Ukmerge","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25886,"modificationDate":"2019-09-05"}, -{"geonameId":"3398706","name":"Granja","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25879,"modificationDate":"2012-08-03"}, -{"geonameId":"3021263","name":"Dole","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":25878,"modificationDate":"2019-04-10"}, -{"geonameId":"1262065","name":"Nalhāti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25878,"modificationDate":"2016-01-07"}, -{"geonameId":"5805782","name":"Opportunity","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":25877,"modificationDate":"2011-10-27"}, -{"geonameId":"3624848","name":"Aseri","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":25874,"modificationDate":"2020-06-10"}, -{"geonameId":"2639409","name":"Rhyl","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25874,"modificationDate":"2014-12-30"}, -{"geonameId":"2128147","name":"Shimo-furano","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25872,"modificationDate":"2017-04-09"}, -{"geonameId":"2968515","name":"Villeneuve-sur-Lot","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":25869,"modificationDate":"2016-02-18"}, -{"geonameId":"4993125","name":"Forest Hills","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25867,"modificationDate":"2017-05-23"}, -{"geonameId":"1513364","name":"Kyzyl-Tepa","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":25861,"modificationDate":"2020-06-10"}, -{"geonameId":"1271064","name":"Gokarna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25851,"modificationDate":"2019-09-05"}, -{"geonameId":"3668332","name":"Santo Tomás","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":25847,"modificationDate":"2018-07-04"}, -{"geonameId":"2647044","name":"Hertford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25847,"modificationDate":"2010-10-16"}, -{"geonameId":"2171168","name":"Coburg","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":25846,"modificationDate":"2019-07-18"}, -{"geonameId":"1266116","name":"Koregaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25846,"modificationDate":"2014-10-13"}, -{"geonameId":"1268124","name":"Kundla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25845,"modificationDate":"2020-06-10"}, -{"geonameId":"3084074","name":"Świecie","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":25843,"modificationDate":"2010-09-13"}, -{"geonameId":"5364226","name":"Lafayette","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":25843,"modificationDate":"2017-03-09"}, -{"geonameId":"542464","name":"Krasnoarmeysk","countryName":"Russia","timeZoneName":"Europe/Saratov","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":25841,"modificationDate":"2019-09-05"}, -{"geonameId":"2509553","name":"Villanueva de la Serena","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":25838,"modificationDate":"2012-03-04"}, -{"geonameId":"1704781","name":"Maao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":25837,"modificationDate":"2017-12-13"}, -{"geonameId":"5042561","name":"Ramsey","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25828,"modificationDate":"2017-05-23"}, -{"geonameId":"2015310","name":"Fokino","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":25827,"modificationDate":"2019-09-05"}, -{"geonameId":"313331","name":"Güroymak","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":25826,"modificationDate":"2015-08-07"}, -{"geonameId":"2507169","name":"Amizour","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":25825,"modificationDate":"2020-05-31"}, -{"geonameId":"4370616","name":"Suitland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25825,"modificationDate":"2011-05-14"}, -{"geonameId":"149812","name":"Sokoni","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":25821,"modificationDate":"2016-07-26"}, -{"geonameId":"739209","name":"Endiryas","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":25820,"modificationDate":"2020-06-10"}, -{"geonameId":"1276589","name":"Behror","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25815,"modificationDate":"2014-10-14"}, -{"geonameId":"4304713","name":"Pleasure Ridge Park","countryName":"United States","timeZoneName":"America/Kentucky/Louisville","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25813,"modificationDate":"2006-01-17"}, -{"geonameId":"5134395","name":"Rosedale","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25812,"modificationDate":"2017-04-16"}, -{"geonameId":"3165788","name":"Terlizzi","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":25811,"modificationDate":"2014-04-13"}, -{"geonameId":"3533433","name":"Acatzingo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25811,"modificationDate":"2018-11-03"}, -{"geonameId":"1151211","name":"Tha Kham","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":25810,"modificationDate":"2017-03-22"}, -{"geonameId":"3450232","name":"Santa Fé do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25802,"modificationDate":"2017-08-13"}, -{"geonameId":"1707324","name":"La Paz","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":25801,"modificationDate":"2017-12-13"}, -{"geonameId":"3450283","name":"Santa Cruz das Palmeiras","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25800,"modificationDate":"2012-08-03"}, -{"geonameId":"2016910","name":"Severobaykal’sk","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":25800,"modificationDate":"2016-11-23"}, -{"geonameId":"4903535","name":"New Lenox","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25800,"modificationDate":"2017-05-23"}, -{"geonameId":"4434663","name":"Madison","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25799,"modificationDate":"2017-03-09"}, -{"geonameId":"12156887","name":"Bay Street Corridor","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25797,"modificationDate":"2020-05-02"}, -{"geonameId":"3461628","name":"Ibaiti","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25796,"modificationDate":"2012-08-03"}, -{"geonameId":"1215350","name":"Bireun","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":25793,"modificationDate":"2018-04-25"}, -{"geonameId":"5264223","name":"Neenah","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25792,"modificationDate":"2017-05-23"}, -{"geonameId":"2112555","name":"Itako","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25791,"modificationDate":"2017-07-22"}, -{"geonameId":"4670592","name":"Alvin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25791,"modificationDate":"2017-03-09"}, -{"geonameId":"6173570","name":"Vaudreuil-Dorion","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25789,"modificationDate":"2016-06-22"}, -{"geonameId":"3078773","name":"Břeclav","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":25789,"modificationDate":"2018-09-28"}, -{"geonameId":"2804008","name":"Zittau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25785,"modificationDate":"2015-09-05"}, -{"geonameId":"6615536","name":"Les Ulis","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":25785,"modificationDate":"2016-02-18"}, -{"geonameId":"1851462","name":"Sukumo","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25784,"modificationDate":"2017-07-22"}, -{"geonameId":"7284883","name":"Marseille 02","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":25779,"modificationDate":"2018-08-19"}, -{"geonameId":"1232783","name":"Nuwara Eliya","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":25775,"modificationDate":"2018-12-17"}, -{"geonameId":"792814","name":"Bečej","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":25774,"modificationDate":"2020-01-28"}, -{"geonameId":"2148088","name":"Strathfield","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":25769,"modificationDate":"2019-07-18"}, -{"geonameId":"6615442","name":"Almozara","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":25767,"modificationDate":"2010-01-29"}, -{"geonameId":"11549774","name":"el Baix Guinardó","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":25766,"modificationDate":"2017-05-24"}, -{"geonameId":"2500401","name":"Didouche Mourad","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":25764,"modificationDate":"2012-01-19"}, -{"geonameId":"2111429","name":"Omigawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25763,"modificationDate":"2017-04-09"}, -{"geonameId":"3924908","name":"Pimenta Bueno","countryName":"Brazil","timeZoneName":"America/Porto_Velho","timeZoneOffsetNameWithoutDst":"Amazon Time","population":25762,"modificationDate":"2012-08-03"}, -{"geonameId":"1278122","name":"Avanigadda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25761,"modificationDate":"2014-10-10"}, -{"geonameId":"2531480","name":"Tahla","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":25761,"modificationDate":"2016-11-29"}, -{"geonameId":"1255631","name":"Srīnivāspur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25760,"modificationDate":"2016-10-08"}, -{"geonameId":"337771","name":"Fitche","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":25758,"modificationDate":"2020-06-11"}, -{"geonameId":"1261205","name":"Nongstoin","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25758,"modificationDate":"2014-10-14"}, -{"geonameId":"4160812","name":"Key West","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25755,"modificationDate":"2019-09-05"}, -{"geonameId":"3542137","name":"Río Guayabal de Yateras","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":25753,"modificationDate":"2006-01-17"}, -{"geonameId":"1262374","name":"Mussoorie","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25753,"modificationDate":"2015-06-07"}, -{"geonameId":"1278540","name":"Annigeri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25753,"modificationDate":"2014-10-14"}, -{"geonameId":"1705572","name":"Lopez","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":25752,"modificationDate":"2017-12-13"}, -{"geonameId":"3516076","name":"Tecax","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":25751,"modificationDate":"2018-11-03"}, -{"geonameId":"3077882","name":"Český Těšín","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":25750,"modificationDate":"2019-09-05"}, -{"geonameId":"4033779","name":"Punaauia","countryName":"French Polynesia","timeZoneName":"Pacific/Tahiti","timeZoneOffsetNameWithoutDst":"Tahiti Time","population":25750,"modificationDate":"2013-11-02"}, -{"geonameId":"3126577","name":"Cangas do Morrazo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":25748,"modificationDate":"2015-06-16"}, -{"geonameId":"3450671","name":"Salinas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25746,"modificationDate":"2012-08-03"}, -{"geonameId":"3455756","name":"Osvaldo Cruz","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25746,"modificationDate":"2012-08-03"}, -{"geonameId":"1858041","name":"Kushikino","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25744,"modificationDate":"2018-02-23"}, -{"geonameId":"3527639","name":"Felipe Carrillo Puerto","countryName":"Mexico","timeZoneName":"America/Cancun","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25744,"modificationDate":"2018-11-03"}, -{"geonameId":"3654536","name":"Machachi","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":25742,"modificationDate":"2017-02-07"}, -{"geonameId":"708901","name":"Haysyn","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25735,"modificationDate":"2020-05-13"}, -{"geonameId":"2804034","name":"Zirndorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25734,"modificationDate":"2014-01-15"}, -{"geonameId":"256621","name":"Néa Filadélfeia","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25734,"modificationDate":"2019-10-23"}, -{"geonameId":"2755633","name":"Geldermalsen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":25734,"modificationDate":"2019-01-20"}, -{"geonameId":"8469295","name":"Randolph","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25734,"modificationDate":"2017-05-23"}, -{"geonameId":"2278158","name":"Buchanan","countryName":"Liberia","timeZoneName":"Africa/Monrovia","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25731,"modificationDate":"2018-08-19"}, -{"geonameId":"4174969","name":"Temple Terrace","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25731,"modificationDate":"2017-03-09"}, -{"geonameId":"1264395","name":"Mahendragarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25728,"modificationDate":"2017-11-10"}, -{"geonameId":"2521923","name":"Almansa","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":25727,"modificationDate":"2012-03-04"}, -{"geonameId":"1269509","name":"Jais","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25726,"modificationDate":"2015-09-06"}, -{"geonameId":"5040647","name":"Owatonna","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25725,"modificationDate":"2017-05-23"}, -{"geonameId":"1184569","name":"Aman Garh","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":25723,"modificationDate":"2019-12-06"}, -{"geonameId":"2636995","name":"Staveley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25719,"modificationDate":"2018-07-03"}, -{"geonameId":"3689952","name":"Anaime","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":25715,"modificationDate":"2018-09-01"}, -{"geonameId":"3181548","name":"Bresso","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":25712,"modificationDate":"2014-01-16"}, -{"geonameId":"1189638","name":"Rauzan","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":25708,"modificationDate":"2020-06-10"}, -{"geonameId":"1260003","name":"Pawāyan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25708,"modificationDate":"2014-10-14"}, -{"geonameId":"4067927","name":"Homewood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25708,"modificationDate":"2017-03-09"}, -{"geonameId":"3694666","name":"Monsefú","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":25707,"modificationDate":"2015-12-06"}, -{"geonameId":"5312544","name":"Sahuarita","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":25707,"modificationDate":"2017-03-09"}, -{"geonameId":"6943827","name":"Thetford-Mines","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25704,"modificationDate":"2016-06-22"}, -{"geonameId":"3548993","name":"Los Palacios","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":25703,"modificationDate":"2015-12-06"}, -{"geonameId":"172469","name":"Sanmayn","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25702,"modificationDate":"2020-06-10"}, -{"geonameId":"2488202","name":"Melouza","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":25701,"modificationDate":"2012-01-19"}, -{"geonameId":"3761202","name":"Valente Diaz","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25700,"modificationDate":"2018-11-03"}, -{"geonameId":"2988888","name":"Oyonnax","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":25697,"modificationDate":"2016-02-18"}, -{"geonameId":"2111677","name":"Narutō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25696,"modificationDate":"2017-04-09"}, -{"geonameId":"2513115","name":"Onda","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":25691,"modificationDate":"2015-06-14"}, -{"geonameId":"542463","name":"Krasnoarmeysk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":25688,"modificationDate":"2012-04-04"}, -{"geonameId":"1698921","name":"Nabua","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":25687,"modificationDate":"2017-12-13"}, -{"geonameId":"2857306","name":"Olpe","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25686,"modificationDate":"2015-09-04"}, -{"geonameId":"1078553","name":"Ampanihy","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":25686,"modificationDate":"2018-09-28"}, -{"geonameId":"5802340","name":"Maple Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":25686,"modificationDate":"2017-03-09"}, -{"geonameId":"2516255","name":"Jumilla","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":25685,"modificationDate":"2012-03-04"}, -{"geonameId":"3526953","name":"Huejotzingo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25684,"modificationDate":"2018-11-03"}, -{"geonameId":"7669012","name":"Walnut Grove","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":25683,"modificationDate":"2019-02-26"}, -{"geonameId":"1485357","name":"Zavodoukovsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":25682,"modificationDate":"2019-09-05"}, -{"geonameId":"2652586","name":"Coleraine","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25681,"modificationDate":"2016-12-04"}, -{"geonameId":"2649650","name":"Farnworth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25680,"modificationDate":"2013-07-11"}, -{"geonameId":"2955439","name":"Arnstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25678,"modificationDate":"2015-09-05"}, -{"geonameId":"2272491","name":"Zwedru","countryName":"Liberia","timeZoneName":"Africa/Monrovia","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25678,"modificationDate":"2015-01-07"}, -{"geonameId":"1274381","name":"Chhabra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25676,"modificationDate":"2014-10-14"}, -{"geonameId":"2363908","name":"Tchamba","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25668,"modificationDate":"2012-01-18"}, -{"geonameId":"3982693","name":"Tacambaro","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25665,"modificationDate":"2020-06-10"}, -{"geonameId":"3097528","name":"Jarocin","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":25665,"modificationDate":"2019-09-05"}, -{"geonameId":"1267154","name":"Khajuraho Group of Monuments","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25662,"modificationDate":"2018-10-19"}, -{"geonameId":"4389967","name":"Hazelwood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25661,"modificationDate":"2017-05-23"}, -{"geonameId":"776337","name":"Bartoszyce","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":25660,"modificationDate":"2010-09-28"}, -{"geonameId":"5174358","name":"Troy","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25659,"modificationDate":"2017-05-23"}, -{"geonameId":"163476","name":"Tell Rifat","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25658,"modificationDate":"2020-06-10"}, -{"geonameId":"150099","name":"Sepuka","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":25657,"modificationDate":"2016-07-26"}, -{"geonameId":"1848194","name":"Yoshii","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25655,"modificationDate":"2017-04-09"}, -{"geonameId":"6619280","name":"Sydney Central Business District","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":25654,"modificationDate":"2019-07-20"}, -{"geonameId":"700829","name":"Molodogvardeyskoye","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25654,"modificationDate":"2020-06-10"}, -{"geonameId":"3439781","name":"Treinta y Tres","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":25653,"modificationDate":"2017-03-14"}, -{"geonameId":"5365918","name":"Lemoore","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":25647,"modificationDate":"2017-03-09"}, -{"geonameId":"3694939","name":"Marcavelica","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":25645,"modificationDate":"2012-07-19"}, -{"geonameId":"2161532","name":"Keysborough","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":25637,"modificationDate":"2019-07-18"}, -{"geonameId":"1128265","name":"Rustak","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":25636,"modificationDate":"2020-06-09"}, -{"geonameId":"1174720","name":"Karor","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":25634,"modificationDate":"2019-12-06"}, -{"geonameId":"1257865","name":"Sādri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25632,"modificationDate":"2015-10-04"}, -{"geonameId":"1269269","name":"Jandiali","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25631,"modificationDate":"2020-06-10"}, -{"geonameId":"3982121","name":"Tejupilco de Hidalgo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25631,"modificationDate":"2018-11-03"}, -{"geonameId":"3465524","name":"Cordeirópolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25630,"modificationDate":"2012-08-03"}, -{"geonameId":"2809138","name":"Wiesloch","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25630,"modificationDate":"2013-02-16"}, -{"geonameId":"1717008","name":"Concepcion Ibaba","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":25628,"modificationDate":"2017-12-13"}, -{"geonameId":"4479759","name":"Mint Hill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25627,"modificationDate":"2017-03-09"}, -{"geonameId":"2032814","name":"Arvayheer","countryName":"Mongolia","timeZoneName":"Asia/Ulaanbaatar","timeZoneOffsetNameWithoutDst":"Ulaanbaatar Time","population":25622,"modificationDate":"2017-03-08"}, -{"geonameId":"3458826","name":"Lapa","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25621,"modificationDate":"2012-08-03"}, -{"geonameId":"5103269","name":"Ridgewood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25621,"modificationDate":"2017-05-23"}, -{"geonameId":"1619363","name":"Bang Pakong","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":25620,"modificationDate":"2012-01-16"}, -{"geonameId":"2906152","name":"Herdecke","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25618,"modificationDate":"2015-09-05"}, -{"geonameId":"1173302","name":"Kot Diji","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":25616,"modificationDate":"2019-12-06"}, -{"geonameId":"332880","name":"Goluto","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":25614,"modificationDate":"2020-06-11"}, -{"geonameId":"6559488","name":"Quinta Do Conde","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":25606,"modificationDate":"2018-02-19"}, -{"geonameId":"3456366","name":"Nazaré","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25604,"modificationDate":"2012-08-03"}, -{"geonameId":"293207","name":"Yehud","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":25600,"modificationDate":"2017-07-02"}, -{"geonameId":"1253702","name":"Uran","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25598,"modificationDate":"2014-10-13"}, -{"geonameId":"284572","name":"Kalandia","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25595,"modificationDate":"2017-12-14"}, -{"geonameId":"5125125","name":"Long Island City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25595,"modificationDate":"2020-04-18"}, -{"geonameId":"2988998","name":"Oullins","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":25592,"modificationDate":"2019-06-05"}, -{"geonameId":"3004427","name":"Le Creusot","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":25590,"modificationDate":"2016-02-18"}, -{"geonameId":"3182599","name":"Bacoli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":25590,"modificationDate":"2015-08-06"}, -{"geonameId":"4103957","name":"Cabot","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25587,"modificationDate":"2017-05-23"}, -{"geonameId":"11549794","name":"Vilapicina i la Torre Llobeta","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":25581,"modificationDate":"2017-05-24"}, -{"geonameId":"1260206","name":"Pāsighāt","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25581,"modificationDate":"2017-03-18"}, -{"geonameId":"3197728","name":"Koprivnica","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":25579,"modificationDate":"2018-03-06"}, -{"geonameId":"6545107","name":"La Bonanova","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":25574,"modificationDate":"2017-05-26"}, -{"geonameId":"1175180","name":"Kalur Kot","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":25574,"modificationDate":"2019-12-06"}, -{"geonameId":"932218","name":"Qachas Nek Camp","countryName":"Lesotho","timeZoneName":"Africa/Maseru","timeZoneOffsetNameWithoutDst":"South Africa Time","population":25573,"modificationDate":"2020-06-10"}, -{"geonameId":"3591676","name":"Panzos","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":25569,"modificationDate":"2020-03-08"}, -{"geonameId":"2343720","name":"Eket","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":25569,"modificationDate":"2016-01-30"}, -{"geonameId":"5386984","name":"Reedley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":25569,"modificationDate":"2017-03-09"}, -{"geonameId":"2335333","name":"Kamba","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":25568,"modificationDate":"2016-06-22"}, -{"geonameId":"2818766","name":"Schleisheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25567,"modificationDate":"2020-06-10"}, -{"geonameId":"2754692","name":"Heemstede","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":25562,"modificationDate":"2017-10-17"}, -{"geonameId":"4354087","name":"Edgewood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25562,"modificationDate":"2018-01-12"}, -{"geonameId":"2301190","name":"Elmina","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25560,"modificationDate":"2019-12-06"}, -{"geonameId":"4163918","name":"Meadow Woods","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25558,"modificationDate":"2011-05-14"}, -{"geonameId":"2759016","name":"Beuningen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":25557,"modificationDate":"2017-10-17"}, -{"geonameId":"4979244","name":"South Portland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25556,"modificationDate":"2017-05-23"}, -{"geonameId":"3980621","name":"Valle de Bravo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25554,"modificationDate":"2018-11-03"}, -{"geonameId":"563551","name":"Ekazhevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":25549,"modificationDate":"2012-08-04"}, -{"geonameId":"7601921","name":"Zhongxing New Village","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":25549,"modificationDate":"2017-09-24"}, -{"geonameId":"3072656","name":"Krnov","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":25547,"modificationDate":"2019-03-20"}, -{"geonameId":"166331","name":"Nubl","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25546,"modificationDate":"2013-09-06"}, -{"geonameId":"3179684","name":"Castelfranco Veneto","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":25545,"modificationDate":"2015-08-06"}, -{"geonameId":"2820621","name":"Übach-Palenberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25544,"modificationDate":"2017-04-26"}, -{"geonameId":"1514615","name":"Oltiariq","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":25543,"modificationDate":"2015-09-06"}, -{"geonameId":"1214302","name":"Pangkalan Brandan","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":25542,"modificationDate":"2012-01-17"}, -{"geonameId":"6173017","name":"Val-d'Or","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25541,"modificationDate":"2019-08-08"}, -{"geonameId":"7262518","name":"West Whittier-Los Nietos","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":25540,"modificationDate":"2011-05-14"}, -{"geonameId":"1263300","name":"Mauganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25537,"modificationDate":"2015-08-07"}, -{"geonameId":"1843163","name":"Ganghwa-gun","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":25535,"modificationDate":"2014-01-19"}, -{"geonameId":"5197517","name":"Lebanon","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25534,"modificationDate":"2017-05-23"}, -{"geonameId":"2414545","name":"Tougué","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25531,"modificationDate":"2015-03-05"}, -{"geonameId":"889215","name":"Kariba","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":25531,"modificationDate":"2012-01-17"}, -{"geonameId":"3451856","name":"Rancharia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25530,"modificationDate":"2012-08-03"}, -{"geonameId":"1254795","name":"Tekkalakote","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25530,"modificationDate":"2015-12-05"}, -{"geonameId":"2651831","name":"Crowthorne","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25522,"modificationDate":"2011-03-03"}, -{"geonameId":"3928993","name":"Pueblo Nuevo","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":25517,"modificationDate":"2020-06-11"}, -{"geonameId":"3449933","name":"Santana do Paraíso","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25515,"modificationDate":"2012-08-03"}, -{"geonameId":"2872582","name":"Meckenheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25515,"modificationDate":"2015-09-04"}, -{"geonameId":"2906676","name":"Helmstedt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25515,"modificationDate":"2019-09-26"}, -{"geonameId":"3440777","name":"Rocha","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":25515,"modificationDate":"2012-02-17"}, -{"geonameId":"164025","name":"Sabikhan","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25514,"modificationDate":"2020-06-10"}, -{"geonameId":"2647303","name":"Hawarden","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25513,"modificationDate":"2011-03-03"}, -{"geonameId":"1268360","name":"Kallidaikurichi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25513,"modificationDate":"2017-08-02"}, -{"geonameId":"548506","name":"Kireyevsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":25513,"modificationDate":"2012-01-17"}, -{"geonameId":"2843636","name":"Rottweil","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25510,"modificationDate":"2014-01-17"}, -{"geonameId":"3523127","name":"Mixquiahuala de Juarez","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25510,"modificationDate":"2018-11-03"}, -{"geonameId":"2654927","name":"Bramhall","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25506,"modificationDate":"2012-03-29"}, -{"geonameId":"1273850","name":"Colonelganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25503,"modificationDate":"2015-08-07"}, -{"geonameId":"2652249","name":"Coulsdon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25500,"modificationDate":"2012-06-01"}, -{"geonameId":"1848210","name":"Yoshida","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25500,"modificationDate":"2020-06-11"}, -{"geonameId":"2519068","name":"Quart de Poblet","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":25499,"modificationDate":"2012-03-04"}, -{"geonameId":"4528923","name":"Zanesville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25498,"modificationDate":"2017-05-23"}, -{"geonameId":"6113355","name":"Prince Edward","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25496,"modificationDate":"2010-09-22"}, -{"geonameId":"1263185","name":"Mehdawal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25495,"modificationDate":"2020-06-10"}, -{"geonameId":"1626673","name":"Soko","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":25494,"modificationDate":"2007-11-09"}, -{"geonameId":"1266372","name":"Koelwār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25494,"modificationDate":"2015-10-04"}, -{"geonameId":"1012413","name":"Cullinan","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":25490,"modificationDate":"2019-09-23"}, -{"geonameId":"4682478","name":"Colleyville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25487,"modificationDate":"2017-03-09"}, -{"geonameId":"1268651","name":"Kāgal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25479,"modificationDate":"2014-10-13"}, -{"geonameId":"2843355","name":"Rudolstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25476,"modificationDate":"2015-09-05"}, -{"geonameId":"7302130","name":"Bartley Green","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25473,"modificationDate":"2010-05-27"}, -{"geonameId":"2295684","name":"Salaga","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25472,"modificationDate":"2019-12-06"}, -{"geonameId":"6690863","name":"Hornchurch","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25470,"modificationDate":"2010-05-25"}, -{"geonameId":"2297505","name":"Navrongo","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25470,"modificationDate":"2019-12-06"}, -{"geonameId":"2756507","name":"Duiven","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":25469,"modificationDate":"2017-10-17"}, -{"geonameId":"4186213","name":"Canton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25469,"modificationDate":"2017-03-09"}, -{"geonameId":"2756723","name":"Dongen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":25464,"modificationDate":"2017-10-17"}, -{"geonameId":"3189075","name":"Velenje","countryName":"Slovenia","timeZoneName":"Europe/Ljubljana","timeZoneOffsetNameWithoutDst":"Central European Time","population":25456,"modificationDate":"2014-04-27"}, -{"geonameId":"1277255","name":"Bannūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25455,"modificationDate":"2015-11-08"}, -{"geonameId":"2638853","name":"St Austell","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25447,"modificationDate":"2017-06-12"}, -{"geonameId":"2906268","name":"Heppenheim an der Bergstrasse","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25442,"modificationDate":"2019-10-22"}, -{"geonameId":"696566","name":"Popasna","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25442,"modificationDate":"2014-07-08"}, -{"geonameId":"256750","name":"Moskháton","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25441,"modificationDate":"2019-10-23"}, -{"geonameId":"5130045","name":"Ossining","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25441,"modificationDate":"2017-05-23"}, -{"geonameId":"1877046","name":"Kokukyori","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":25437,"modificationDate":"2020-06-11"}, -{"geonameId":"1265401","name":"Kuttampuzha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25436,"modificationDate":"2017-04-06"}, -{"geonameId":"4784112","name":"Salem","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25432,"modificationDate":"2019-09-19"}, -{"geonameId":"1275147","name":"Budhlāda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25431,"modificationDate":"2014-10-14"}, -{"geonameId":"250198","name":"Tufailah","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25429,"modificationDate":"2020-06-10"}, -{"geonameId":"3587308","name":"Ayutuxtepeque","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":25426,"modificationDate":"2019-11-06"}, -{"geonameId":"783926","name":"Zelino","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":25422,"modificationDate":"2017-08-22"}, -{"geonameId":"3549835","name":"Limonar","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":25421,"modificationDate":"2017-12-14"}, -{"geonameId":"1832257","name":"Neietsu","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":25413,"modificationDate":"2012-01-18"}, -{"geonameId":"3621689","name":"San Rafael","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":25410,"modificationDate":"2018-12-05"}, -{"geonameId":"4849826","name":"Burlington","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25410,"modificationDate":"2017-03-09"}, -{"geonameId":"5781087","name":"Saratoga Springs","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":25407,"modificationDate":"2017-03-09"}, -{"geonameId":"1261394","name":"Nīlēshwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25405,"modificationDate":"2015-11-08"}, -{"geonameId":"1857659","name":"Kamimaruko","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25403,"modificationDate":"2017-04-09"}, -{"geonameId":"688746","name":"Vynohradiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25403,"modificationDate":"2020-05-07"}, -{"geonameId":"2113779","name":"Majuro","countryName":"Marshall Islands","timeZoneName":"Pacific/Majuro","timeZoneOffsetNameWithoutDst":"Marshall Islands Time","population":25400,"modificationDate":"2018-08-17"}, -{"geonameId":"3457819","name":"Marataizes","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25397,"modificationDate":"2012-08-03"}, -{"geonameId":"3693057","name":"Querecotillo","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":25396,"modificationDate":"2012-07-19"}, -{"geonameId":"315720","name":"Elmadağ","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":25394,"modificationDate":"2012-02-02"}, -{"geonameId":"255588","name":"Pérama","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25389,"modificationDate":"2019-10-23"}, -{"geonameId":"3526674","name":"Ixtepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25381,"modificationDate":"2018-11-03"}, -{"geonameId":"786093","name":"Saraj","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":25379,"modificationDate":"2017-09-05"}, -{"geonameId":"4901868","name":"Melrose Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25379,"modificationDate":"2017-05-23"}, -{"geonameId":"2163990","name":"Hampton Park","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":25377,"modificationDate":"2019-07-18"}, -{"geonameId":"3696847","name":"Guadalupe","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":25376,"modificationDate":"2018-04-27"}, -{"geonameId":"1267739","name":"Karkala","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25374,"modificationDate":"2020-06-10"}, -{"geonameId":"988356","name":"Kokstad","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":25373,"modificationDate":"2012-07-12"}, -{"geonameId":"3013525","name":"Hénin-Beaumont","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":25371,"modificationDate":"2016-02-18"}, -{"geonameId":"254144","name":"Salamína","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25370,"modificationDate":"2019-10-23"}, -{"geonameId":"1217262","name":"Guzar","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":25368,"modificationDate":"2020-06-10"}, -{"geonameId":"4447161","name":"Starkville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25366,"modificationDate":"2017-03-09"}, -{"geonameId":"515267","name":"Omutninsk","countryName":"Russia","timeZoneName":"Europe/Kirov","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":25364,"modificationDate":"2019-09-05"}, -{"geonameId":"2639436","name":"Rhosllanerchrugog","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25362,"modificationDate":"2017-06-12"}, -{"geonameId":"10628608","name":"Kadakkavoor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25362,"modificationDate":"2015-08-19"}, -{"geonameId":"2649312","name":"Fleetwood","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25359,"modificationDate":"2018-07-03"}, -{"geonameId":"1524889","name":"Chardara","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":25356,"modificationDate":"2016-05-07"}, -{"geonameId":"2633749","name":"Witham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25353,"modificationDate":"2018-07-03"}, -{"geonameId":"2744991","name":"Wassenaar","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":25353,"modificationDate":"2017-10-17"}, -{"geonameId":"2745726","name":"Veghel","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":25352,"modificationDate":"2017-10-17"}, -{"geonameId":"522594","name":"Nerekhta","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":25352,"modificationDate":"2014-06-26"}, -{"geonameId":"522775","name":"Nelidovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":25349,"modificationDate":"2019-09-05"}, -{"geonameId":"2953435","name":"Bad Honnef","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25348,"modificationDate":"2016-09-27"}, -{"geonameId":"3448596","name":"São Lourenço do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25340,"modificationDate":"2017-04-23"}, -{"geonameId":"2989170","name":"Orvault","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":25338,"modificationDate":"2016-02-18"}, -{"geonameId":"1255434","name":"Sundarnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25338,"modificationDate":"2015-09-06"}, -{"geonameId":"2745096","name":"Waddinxveen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":25338,"modificationDate":"2017-10-17"}, -{"geonameId":"4360954","name":"Lochearn","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25333,"modificationDate":"2011-05-14"}, -{"geonameId":"5020881","name":"Chanhassen","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25332,"modificationDate":"2017-05-23"}, -{"geonameId":"1277330","name":"Banganapalle","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25325,"modificationDate":"2016-10-08"}, -{"geonameId":"1278320","name":"Asandh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25323,"modificationDate":"2020-06-10"}, -{"geonameId":"3467012","name":"Carangola","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25321,"modificationDate":"2012-08-03"}, -{"geonameId":"133595","name":"Gerāsh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":25316,"modificationDate":"2016-10-07"}, -{"geonameId":"5356451","name":"Hercules","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":25314,"modificationDate":"2017-03-09"}, -{"geonameId":"1269849","name":"Hadagalli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25311,"modificationDate":"2015-10-04"}, -{"geonameId":"1054035","name":"Vohibinany","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":25311,"modificationDate":"2018-09-07"}, -{"geonameId":"8858099","name":"Emiliano Zapata","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25309,"modificationDate":"2014-04-11"}, -{"geonameId":"1278507","name":"Anūpshahr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25306,"modificationDate":"2015-08-07"}, -{"geonameId":"1722005","name":"Cabagan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":25304,"modificationDate":"2017-12-13"}, -{"geonameId":"5351428","name":"Galt","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":25303,"modificationDate":"2017-03-09"}, -{"geonameId":"1269446","name":"Jalālābad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25302,"modificationDate":"2015-04-08"}, -{"geonameId":"3522845","name":"Nanchital","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25289,"modificationDate":"2020-06-10"}, -{"geonameId":"2345094","name":"Daura","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":25289,"modificationDate":"2016-06-22"}, -{"geonameId":"3087705","name":"Pszczyna","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":25288,"modificationDate":"2012-01-07"}, -{"geonameId":"2917412","name":"Griesheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25287,"modificationDate":"2015-09-05"}, -{"geonameId":"7302859","name":"Lumding Railway Colony","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25283,"modificationDate":"2014-10-13"}, -{"geonameId":"5042373","name":"Prior Lake","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25282,"modificationDate":"2017-05-23"}, -{"geonameId":"1861838","name":"Iiyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25281,"modificationDate":"2017-07-22"}, -{"geonameId":"3453240","name":"Pompéu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25277,"modificationDate":"2012-08-03"}, -{"geonameId":"2930889","name":"Ellwangen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25276,"modificationDate":"2017-09-22"}, -{"geonameId":"5416357","name":"Castlewood","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":25271,"modificationDate":"2018-03-23"}, -{"geonameId":"3453610","name":"Piraju","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25270,"modificationDate":"2012-08-03"}, -{"geonameId":"1255762","name":"Songadh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25269,"modificationDate":"2014-10-13"}, -{"geonameId":"1256659","name":"Shamsābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25266,"modificationDate":"2016-03-10"}, -{"geonameId":"3456724","name":"Morro Agudo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25265,"modificationDate":"2012-08-03"}, -{"geonameId":"287832","name":"Bira","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":25265,"modificationDate":"2020-06-10"}, -{"geonameId":"2184904","name":"Paraparaumu","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":25263,"modificationDate":"2011-08-01"}, -{"geonameId":"1266461","name":"Kithor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25262,"modificationDate":"2018-12-04"}, -{"geonameId":"3396496","name":"Lajedo","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25261,"modificationDate":"2012-08-03"}, -{"geonameId":"2848845","name":"Reinbek","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25261,"modificationDate":"2015-09-04"}, -{"geonameId":"3637721","name":"La Guaira","countryName":"Venezuela","timeZoneName":"America/Caracas","timeZoneOffsetNameWithoutDst":"Venezuela Time","population":25259,"modificationDate":"2019-04-02"}, -{"geonameId":"3557801","name":"Guanajay","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":25258,"modificationDate":"2015-12-06"}, -{"geonameId":"2525655","name":"Assemini","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":25257,"modificationDate":"2015-08-06"}, -{"geonameId":"4388460","name":"Grandview","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25256,"modificationDate":"2017-05-23"}, -{"geonameId":"4422133","name":"Clinton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25254,"modificationDate":"2017-03-09"}, -{"geonameId":"2806919","name":"Wolfen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25251,"modificationDate":"2019-09-05"}, -{"geonameId":"1264643","name":"Machhlīshahr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25247,"modificationDate":"2015-08-07"}, -{"geonameId":"1169684","name":"Murree","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":25247,"modificationDate":"2019-12-06"}, -{"geonameId":"1842153","name":"Kinzan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":25243,"modificationDate":"2012-01-18"}, -{"geonameId":"4956335","name":"Yarmouth","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25243,"modificationDate":"2017-05-23"}, -{"geonameId":"3689833","name":"Anserma","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":25242,"modificationDate":"2018-04-21"}, -{"geonameId":"331038","name":"Mandi","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":25239,"modificationDate":"2020-06-11"}, -{"geonameId":"2148876","name":"South Yarra","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":25237,"modificationDate":"2019-07-18"}, -{"geonameId":"1277530","name":"Baloda Bāzār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25235,"modificationDate":"2018-05-28"}, -{"geonameId":"2210560","name":"Şurmān","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25235,"modificationDate":"2013-08-13"}, -{"geonameId":"723736","name":"Rima-Szombat","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":25235,"modificationDate":"2020-06-10"}, -{"geonameId":"670969","name":"Petrila","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25234,"modificationDate":"2012-06-12"}, -{"geonameId":"1273123","name":"Devanhalli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25228,"modificationDate":"2015-10-04"}, -{"geonameId":"2476028","name":"Tipasa","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":25225,"modificationDate":"2018-08-08"}, -{"geonameId":"6138121","name":"Sainte-Thérèse","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25224,"modificationDate":"2016-06-22"}, -{"geonameId":"740230","name":"Sapanca","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":25224,"modificationDate":"2013-01-25"}, -{"geonameId":"1861825","name":"Ijūin","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25217,"modificationDate":"2017-04-09"}, -{"geonameId":"3979855","name":"Yuriria","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25216,"modificationDate":"2018-11-03"}, -{"geonameId":"2817873","name":"Varel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25212,"modificationDate":"2011-04-25"}, -{"geonameId":"5170691","name":"Sandusky","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25212,"modificationDate":"2017-05-23"}, -{"geonameId":"4672059","name":"Balch Springs","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25210,"modificationDate":"2017-03-09"}, -{"geonameId":"5052658","name":"White Bear Lake","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25205,"modificationDate":"2017-05-23"}, -{"geonameId":"2118647","name":"Vilyuchinsk","countryName":"Russia","timeZoneName":"Asia/Kamchatka","timeZoneOffsetNameWithoutDst":"Petropavlovsk-Kamchatski Time","population":25204,"modificationDate":"2019-09-05"}, -{"geonameId":"3023356","name":"Coudekerque-Branche","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":25201,"modificationDate":"2016-02-18"}, -{"geonameId":"2230599","name":"Kaélé","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":25199,"modificationDate":"2018-11-02"}, -{"geonameId":"5020938","name":"Chaska","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25199,"modificationDate":"2017-05-23"}, -{"geonameId":"1611424","name":"Chai Badan","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":25196,"modificationDate":"2006-01-17"}, -{"geonameId":"4895298","name":"Harvey","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25194,"modificationDate":"2017-05-23"}, -{"geonameId":"877998","name":"Mbinga","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":25192,"modificationDate":"2016-07-26"}, -{"geonameId":"1270618","name":"Gursarāi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25191,"modificationDate":"2014-10-14"}, -{"geonameId":"4362344","name":"Middle River","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25191,"modificationDate":"2011-05-14"}, -{"geonameId":"3435038","name":"Dolores","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":25190,"modificationDate":"2016-03-10"}, -{"geonameId":"4917123","name":"Woodstock","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25189,"modificationDate":"2017-05-23"}, -{"geonameId":"524809","name":"Mostovskoy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":25188,"modificationDate":"2013-05-07"}, -{"geonameId":"3840885","name":"Plottier","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":25186,"modificationDate":"2015-12-09"}, -{"geonameId":"2077895","name":"Alice Springs","countryName":"Australia","timeZoneName":"Australia/Darwin","timeZoneOffsetNameWithoutDst":"Australian Central Time","population":25186,"modificationDate":"2019-07-20"}, -{"geonameId":"3521912","name":"Paraiso","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25186,"modificationDate":"2018-11-03"}, -{"geonameId":"1179377","name":"Faqirwali","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":25186,"modificationDate":"2019-12-06"}, -{"geonameId":"746983","name":"Gelibolu","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":25178,"modificationDate":"2014-03-18"}, -{"geonameId":"4529469","name":"Ardmore","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25176,"modificationDate":"2017-03-09"}, -{"geonameId":"4900292","name":"Lockport","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25175,"modificationDate":"2017-05-23"}, -{"geonameId":"5761708","name":"Woodburn","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":25173,"modificationDate":"2017-03-09"}, -{"geonameId":"1258140","name":"Ringus","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25171,"modificationDate":"2020-06-10"}, -{"geonameId":"2690580","name":"Nacka","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":25170,"modificationDate":"2011-12-20"}, -{"geonameId":"4013727","name":"Ciudad Altamirano","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25168,"modificationDate":"2018-11-03"}, -{"geonameId":"2866375","name":"Netphen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25163,"modificationDate":"2015-09-04"}, -{"geonameId":"2802247","name":"Berchem-Sainte-Agathe","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":25162,"modificationDate":"2020-05-25"}, -{"geonameId":"3533107","name":"Álamo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25159,"modificationDate":"2018-11-03"}, -{"geonameId":"3401963","name":"Colinas","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25158,"modificationDate":"2012-08-03"}, -{"geonameId":"2783979","name":"Watermael-Boitsfort","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":25157,"modificationDate":"2020-05-25"}, -{"geonameId":"744873","name":"Kağızman","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":25157,"modificationDate":"2014-06-27"}, -{"geonameId":"2940512","name":"Butzbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25156,"modificationDate":"2015-09-05"}, -{"geonameId":"5015599","name":"Wyandotte","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25156,"modificationDate":"2017-05-23"}, -{"geonameId":"738167","name":"Vezirköprü","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":25155,"modificationDate":"2012-01-18"}, -{"geonameId":"3013477","name":"Herblay","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":25153,"modificationDate":"2016-02-18"}, -{"geonameId":"109878","name":"Keriya","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":25153,"modificationDate":"2020-06-10"}, -{"geonameId":"3366880","name":"Hermanus","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":25153,"modificationDate":"2013-03-04"}, -{"geonameId":"1278343","name":"Arumuganeri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25151,"modificationDate":"2014-10-14"}, -{"geonameId":"2749604","name":"Ommoord","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":25150,"modificationDate":"2017-03-24"}, -{"geonameId":"1490003","name":"Tatarsk","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":25150,"modificationDate":"2019-09-05"}, -{"geonameId":"1213493","name":"Teluk Nibung","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":25146,"modificationDate":"2012-01-17"}, -{"geonameId":"3929295","name":"Santa Ana","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":25145,"modificationDate":"2018-12-05"}, -{"geonameId":"878223","name":"Luchingu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":25145,"modificationDate":"2018-12-04"}, -{"geonameId":"2798307","name":"Flémalle-Haute","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":25144,"modificationDate":"2011-03-15"}, -{"geonameId":"1864180","name":"Enzan","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25142,"modificationDate":"2017-04-09"}, -{"geonameId":"575349","name":"Bologoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":25142,"modificationDate":"2019-09-04"}, -{"geonameId":"2171707","name":"Chatswood","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":25140,"modificationDate":"2019-07-18"}, -{"geonameId":"3832934","name":"Victoria","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":25139,"modificationDate":"2015-04-22"}, -{"geonameId":"1519673","name":"Saryaghash","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":25139,"modificationDate":"2015-12-05"}, -{"geonameId":"717902","name":"Makó","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":25135,"modificationDate":"2015-06-17"}, -{"geonameId":"4586523","name":"Mauldin","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25135,"modificationDate":"2017-03-09"}, -{"geonameId":"4884453","name":"Belvidere","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25132,"modificationDate":"2017-05-23"}, -{"geonameId":"2480198","name":"Sidi Merouan","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":25129,"modificationDate":"2020-06-11"}, -{"geonameId":"1213530","name":"Tanjungtiram","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":25118,"modificationDate":"2012-01-17"}, -{"geonameId":"6947041","name":"Blackheath","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25116,"modificationDate":"2010-05-25"}, -{"geonameId":"1848633","name":"Yamasaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25115,"modificationDate":"2020-06-11"}, -{"geonameId":"2876185","name":"Lohne","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25111,"modificationDate":"2018-05-03"}, -{"geonameId":"2869120","name":"Mosbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25106,"modificationDate":"2014-01-16"}, -{"geonameId":"3529981","name":"Cuautlancingo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25104,"modificationDate":"2018-11-03"}, -{"geonameId":"3468720","name":"Buritizeiro","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25103,"modificationDate":"2012-08-03"}, -{"geonameId":"704885","name":"Korostyshiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25099,"modificationDate":"2018-06-07"}, -{"geonameId":"1253340","name":"Vayalār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25094,"modificationDate":"2017-04-06"}, -{"geonameId":"2862118","name":"Norden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25093,"modificationDate":"2017-01-13"}, -{"geonameId":"3106492","name":"Valls","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":25092,"modificationDate":"2012-03-04"}, -{"geonameId":"3054646","name":"Budaörs","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":25089,"modificationDate":"2008-03-16"}, -{"geonameId":"1865401","name":"Akune","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":25089,"modificationDate":"2017-07-22"}, -{"geonameId":"1711718","name":"Himamaylan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":25089,"modificationDate":"2017-12-13"}, -{"geonameId":"3589805","name":"San Marcos","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":25088,"modificationDate":"2012-12-05"}, -{"geonameId":"759603","name":"Sandomierz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":25087,"modificationDate":"2019-09-05"}, -{"geonameId":"2853924","name":"Pfungstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25084,"modificationDate":"2019-09-05"}, -{"geonameId":"2844265","name":"Roth","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25083,"modificationDate":"2014-01-17"}, -{"geonameId":"2983440","name":"Ris-Orangis","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":25082,"modificationDate":"2016-02-18"}, -{"geonameId":"1279219","name":"Ahraura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25075,"modificationDate":"2015-08-07"}, -{"geonameId":"1274021","name":"Rampachodavaram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25074,"modificationDate":"2014-10-10"}, -{"geonameId":"3164153","name":"Villaricca","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":25074,"modificationDate":"2015-08-06"}, -{"geonameId":"2867613","name":"Hannoversch Münden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25073,"modificationDate":"2019-10-17"}, -{"geonameId":"134762","name":"Fārsān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":25071,"modificationDate":"2019-05-08"}, -{"geonameId":"3565951","name":"Campechuela","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":25069,"modificationDate":"2016-01-07"}, -{"geonameId":"752288","name":"Akyaz","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":25068,"modificationDate":"2020-06-10"}, -{"geonameId":"3182210","name":"Belluno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":25064,"modificationDate":"2015-08-06"}, -{"geonameId":"3408274","name":"Afogados da Ingazeira","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":25060,"modificationDate":"2012-08-03"}, -{"geonameId":"5601538","name":"Moscow","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":25060,"modificationDate":"2017-03-09"}, -{"geonameId":"3692863","name":"Rioja","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":25057,"modificationDate":"2014-07-07"}, -{"geonameId":"4943958","name":"Milford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25055,"modificationDate":"2017-05-23"}, -{"geonameId":"1264075","name":"Malakanagiri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25054,"modificationDate":"2016-02-11"}, -{"geonameId":"4135865","name":"West Memphis","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":25052,"modificationDate":"2017-05-23"}, -{"geonameId":"12156865","name":"Stonegate-Queensway","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25051,"modificationDate":"2020-05-02"}, -{"geonameId":"1217734","name":"Boysun","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":25050,"modificationDate":"2016-09-08"}, -{"geonameId":"3109689","name":"Santa Perpètua de Mogoda","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":25048,"modificationDate":"2012-03-04"}, -{"geonameId":"3352844","name":"Swakopmund","countryName":"Namibia","timeZoneName":"Africa/Windhoek","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":25047,"modificationDate":"2018-01-19"}, -{"geonameId":"478071","name":"Ust’-Katav","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":25046,"modificationDate":"2019-06-06"}, -{"geonameId":"1268059","name":"Kanigiri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25045,"modificationDate":"2017-01-04"}, -{"geonameId":"4505542","name":"Athens","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25044,"modificationDate":"2017-05-23"}, -{"geonameId":"1274428","name":"Chengannūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25043,"modificationDate":"2014-10-13"}, -{"geonameId":"2745154","name":"Vught","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":25043,"modificationDate":"2017-10-17"}, -{"geonameId":"5803139","name":"Mercer Island","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":25042,"modificationDate":"2017-03-09"}, -{"geonameId":"985011","name":"Lady Frere","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":25041,"modificationDate":"2012-07-12"}, -{"geonameId":"2909240","name":"Hattersheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":25035,"modificationDate":"2020-02-17"}, -{"geonameId":"1274770","name":"Chandauli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25035,"modificationDate":"2015-08-07"}, -{"geonameId":"4500942","name":"Bridgeton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25031,"modificationDate":"2017-05-23"}, -{"geonameId":"2156643","name":"Mount Gambier","countryName":"Australia","timeZoneName":"Australia/Adelaide","timeZoneOffsetNameWithoutDst":"Australian Central Time","population":25030,"modificationDate":"2019-07-18"}, -{"geonameId":"889191","name":"Karoi","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":25030,"modificationDate":"2015-04-24"}, -{"geonameId":"1780890","name":"Batu Berendam","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":25028,"modificationDate":"2013-10-05"}, -{"geonameId":"877178","name":"Katima Mulilo","countryName":"Namibia","timeZoneName":"Africa/Windhoek","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":25027,"modificationDate":"2017-06-14"}, -{"geonameId":"1512348","name":"Yangirabot","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":25027,"modificationDate":"2012-01-17"}, -{"geonameId":"1273665","name":"Dākor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25019,"modificationDate":"2014-10-13"}, -{"geonameId":"297917","name":"Gazibenli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":25019,"modificationDate":"2020-06-10"}, -{"geonameId":"1886598","name":"Yŏnmu","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":25015,"modificationDate":"2006-01-17"}, -{"geonameId":"2973745","name":"Sucy-en-Brie","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":25014,"modificationDate":"2016-02-18"}, -{"geonameId":"1608033","name":"Pak Phanang","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":25014,"modificationDate":"2012-01-16"}, -{"geonameId":"3175238","name":"Lainate","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":25011,"modificationDate":"2014-01-16"}, -{"geonameId":"2660104","name":"Kriens","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":25010,"modificationDate":"2019-09-10"}, -{"geonameId":"4006783","name":"Encarnacion","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":25010,"modificationDate":"2020-06-10"}, -{"geonameId":"1257461","name":"Sāndi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25008,"modificationDate":"2015-08-07"}, -{"geonameId":"5100854","name":"Maplewood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25008,"modificationDate":"2017-05-23"}, -{"geonameId":"5941905","name":"Dorset Park","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25003,"modificationDate":"2020-05-02"}, -{"geonameId":"5397018","name":"Soledad","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":25003,"modificationDate":"2017-03-09"}, -{"geonameId":"6301965","name":"Palmerston","countryName":"Australia","timeZoneName":"Australia/Darwin","timeZoneOffsetNameWithoutDst":"Australian Central Time","population":25000,"modificationDate":"2011-06-04"}, -{"geonameId":"625818","name":"Luninyets","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":25000,"modificationDate":"2012-01-18"}, -{"geonameId":"12070742","name":"Fallingbrook","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25000,"modificationDate":"2019-08-08"}, -{"geonameId":"1929434","name":"Bojia","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":25000,"modificationDate":"2011-03-16"}, -{"geonameId":"2640246","name":"Pitsea","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":25000,"modificationDate":"2012-03-29"}, -{"geonameId":"7084521","name":"Seririt","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":25000,"modificationDate":"2012-01-21"}, -{"geonameId":"295365","name":"Daliyat al Karmel","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":25000,"modificationDate":"2020-04-23"}, -{"geonameId":"1260942","name":"Padam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25000,"modificationDate":"2019-10-18"}, -{"geonameId":"1263566","name":"Marayur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25000,"modificationDate":"2016-03-16"}, -{"geonameId":"1266258","name":"Kolasib","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25000,"modificationDate":"2014-10-14"}, -{"geonameId":"8714565","name":"Shiraguppi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":25000,"modificationDate":"2014-03-03"}, -{"geonameId":"119374","name":"Qeshm","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":25000,"modificationDate":"2013-11-27"}, -{"geonameId":"3173935","name":"Marina di Carrara","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":25000,"modificationDate":"2011-09-11"}, -{"geonameId":"1822029","name":"Stung Treng","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":25000,"modificationDate":"2017-02-11"}, -{"geonameId":"1655078","name":"Muang Xay","countryName":"Laos","timeZoneName":"Asia/Vientiane","timeZoneOffsetNameWithoutDst":"Indochina Time","population":25000,"modificationDate":"2012-12-15"}, -{"geonameId":"1655087","name":"Vangviang","countryName":"Laos","timeZoneName":"Asia/Vientiane","timeZoneOffsetNameWithoutDst":"Indochina Time","population":25000,"modificationDate":"2012-10-06"}, -{"geonameId":"1078966","name":"Ampahana","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":25000,"modificationDate":"2018-09-10"}, -{"geonameId":"2753996","name":"Hoensbroek","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":25000,"modificationDate":"2017-10-17"}, -{"geonameId":"11809066","name":"Oman Smart Future City","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":25000,"modificationDate":"2018-01-24"}, -{"geonameId":"769893","name":"Kabaty","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":25000,"modificationDate":"2018-01-16"}, -{"geonameId":"6619277","name":"Knjazevac","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":25000,"modificationDate":"2012-04-16"}, -{"geonameId":"472433","name":"Volokolamsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":25000,"modificationDate":"2019-09-05"}, -{"geonameId":"495957","name":"Shali","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":25000,"modificationDate":"2019-09-05"}, -{"geonameId":"1506073","name":"Gurevsk","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":25000,"modificationDate":"2020-06-10"}, -{"geonameId":"6930327","name":"Slavutych","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":25000,"modificationDate":"2019-09-05"}, -{"geonameId":"4834272","name":"Farmington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":25000,"modificationDate":"2017-05-23"}, -{"geonameId":"8030233","name":"Midstream","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":25000,"modificationDate":"2016-06-14"}, -{"geonameId":"3688006","name":"Cajicá","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":24999,"modificationDate":"2018-07-04"}, -{"geonameId":"2896020","name":"Ingelheim am Rhein","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24998,"modificationDate":"2019-05-23"}, -{"geonameId":"2938376","name":"Delitzsch","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24998,"modificationDate":"2015-09-05"}, -{"geonameId":"3461411","name":"Ilha Solteira","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24997,"modificationDate":"2017-03-04"}, -{"geonameId":"169179","name":"Jarābulus","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24997,"modificationDate":"2018-01-24"}, -{"geonameId":"3197753","name":"Koper","countryName":"Slovenia","timeZoneName":"Europe/Ljubljana","timeZoneOffsetNameWithoutDst":"Central European Time","population":24996,"modificationDate":"2019-02-26"}, -{"geonameId":"4255056","name":"Brownsburg","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24996,"modificationDate":"2017-05-23"}, -{"geonameId":"3578682","name":"Petit-Bourg","countryName":"Guadeloupe","timeZoneName":"America/Guadeloupe","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":24994,"modificationDate":"2017-05-08"}, -{"geonameId":"7259480","name":"Saginaw Township North","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24994,"modificationDate":"2017-12-14"}, -{"geonameId":"4237717","name":"Edwardsville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24992,"modificationDate":"2017-05-23"}, -{"geonameId":"2949073","name":"Biesdorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24988,"modificationDate":"2017-09-19"}, -{"geonameId":"3621922","name":"San Felipe","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":24985,"modificationDate":"2018-12-05"}, -{"geonameId":"786565","name":"Radovis","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":24984,"modificationDate":"2017-08-22"}, -{"geonameId":"1279396","name":"Ābu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24981,"modificationDate":"2014-10-14"}, -{"geonameId":"1256597","name":"Sheohar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24979,"modificationDate":"2014-10-14"}, -{"geonameId":"461910","name":"Zverevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":24978,"modificationDate":"2019-09-05"}, -{"geonameId":"4522586","name":"Riverside","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24972,"modificationDate":"2017-05-23"}, -{"geonameId":"1857712","name":"Makurazaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":24971,"modificationDate":"2017-07-22"}, -{"geonameId":"3393768","name":"Óbidos","countryName":"Brazil","timeZoneName":"America/Santarem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24970,"modificationDate":"2017-08-04"}, -{"geonameId":"1683860","name":"Talisay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":24969,"modificationDate":"2017-12-13"}, -{"geonameId":"1729324","name":"Baggabag B","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":24967,"modificationDate":"2017-12-13"}, -{"geonameId":"4830668","name":"Athens","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24966,"modificationDate":"2017-04-01"}, -{"geonameId":"2521909","name":"Almassora","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":24963,"modificationDate":"2015-05-27"}, -{"geonameId":"137436","name":"Darreh Shahr","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":24961,"modificationDate":"2016-07-04"}, -{"geonameId":"3874930","name":"Puerto Varas","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":24958,"modificationDate":"2013-01-26"}, -{"geonameId":"2941501","name":"Burg bei Magdeburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24958,"modificationDate":"2016-09-27"}, -{"geonameId":"2145461","name":"Upper Coomera","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":24956,"modificationDate":"2019-07-18"}, -{"geonameId":"1861261","name":"Itsukaichi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":24954,"modificationDate":"2017-04-09"}, -{"geonameId":"5392868","name":"Sanger","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":24950,"modificationDate":"2017-03-09"}, -{"geonameId":"1265632","name":"Kunda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24948,"modificationDate":"2015-09-06"}, -{"geonameId":"1861406","name":"Ishige","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":24948,"modificationDate":"2017-04-09"}, -{"geonameId":"2469274","name":"Manouba","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":24948,"modificationDate":"2019-04-11"}, -{"geonameId":"4916207","name":"Westmont","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24941,"modificationDate":"2017-05-23"}, -{"geonameId":"3014646","name":"Grigny","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24940,"modificationDate":"2016-02-18"}, -{"geonameId":"3440696","name":"San Carlos","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":24938,"modificationDate":"2018-02-22"}, -{"geonameId":"2951648","name":"Bedburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24937,"modificationDate":"2015-09-04"}, -{"geonameId":"3165207","name":"Treviglio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":24937,"modificationDate":"2014-04-13"}, -{"geonameId":"1273191","name":"Deori","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24934,"modificationDate":"2020-06-10"}, -{"geonameId":"12157074","name":"La Banda","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":24932,"modificationDate":"2020-05-07"}, -{"geonameId":"4954265","name":"Wakefield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24932,"modificationDate":"2017-05-23"}, -{"geonameId":"1257698","name":"Sakleshpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24931,"modificationDate":"2015-11-08"}, -{"geonameId":"5391945","name":"San Fernando","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":24931,"modificationDate":"2018-04-18"}, -{"geonameId":"662284","name":"Zărnești","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24926,"modificationDate":"2013-04-20"}, -{"geonameId":"4170358","name":"Rockledge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24926,"modificationDate":"2011-05-14"}, -{"geonameId":"5069802","name":"Hastings","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24924,"modificationDate":"2017-05-23"}, -{"geonameId":"3183364","name":"Alba","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":24923,"modificationDate":"2014-01-11"}, -{"geonameId":"3167327","name":"Santeramo in Colle","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":24922,"modificationDate":"2018-01-10"}, -{"geonameId":"4751421","name":"Cave Spring","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24922,"modificationDate":"2011-05-14"}, -{"geonameId":"617638","name":"Orhei","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24918,"modificationDate":"2015-04-08"}, -{"geonameId":"5404122","name":"North Tustin","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":24917,"modificationDate":"2011-05-14"}, -{"geonameId":"262752","name":"Elefsína","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24910,"modificationDate":"2019-10-23"}, -{"geonameId":"1276478","name":"Bemetāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24910,"modificationDate":"2018-05-28"}, -{"geonameId":"278832","name":"En-Naqourah","countryName":"Lebanon","timeZoneName":"Asia/Beirut","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24910,"modificationDate":"2020-06-10"}, -{"geonameId":"3526838","name":"Hunucmá","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":24910,"modificationDate":"2018-11-03"}, -{"geonameId":"3563145","name":"Cruces","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":24906,"modificationDate":"2016-01-07"}, -{"geonameId":"1276663","name":"Bawana Delhi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24906,"modificationDate":"2020-06-10"}, -{"geonameId":"3433349","name":"Jardín América","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":24905,"modificationDate":"2016-01-30"}, -{"geonameId":"3448502","name":"São Mateus do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24904,"modificationDate":"2012-08-03"}, -{"geonameId":"295655","name":"‘Ar‘ara","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":24904,"modificationDate":"2020-04-29"}, -{"geonameId":"3065617","name":"Sokolov","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":24901,"modificationDate":"2019-09-05"}, -{"geonameId":"637948","name":"Salo","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24900,"modificationDate":"2014-09-25"}, -{"geonameId":"2634096","name":"Whitehaven","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24900,"modificationDate":"2017-06-12"}, -{"geonameId":"3827263","name":"San Francisco Cuaxusco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":24900,"modificationDate":"2018-11-03"}, -{"geonameId":"1216115","name":"Dzhalair","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":24900,"modificationDate":"2020-06-10"}, -{"geonameId":"1512372","name":"Yangiobod","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":24900,"modificationDate":"2010-07-29"}, -{"geonameId":"4058219","name":"Daphne","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24896,"modificationDate":"2019-09-24"}, -{"geonameId":"5219287","name":"Whitehall Township","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24896,"modificationDate":"2019-10-24"}, -{"geonameId":"159380","name":"Igurusi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24895,"modificationDate":"2012-01-17"}, -{"geonameId":"1259878","name":"Periyanayakkanpalaiyam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24894,"modificationDate":"2014-10-14"}, -{"geonameId":"2955168","name":"Aschersleben","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24892,"modificationDate":"2015-09-05"}, -{"geonameId":"3457484","name":"Mateus Leme","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24890,"modificationDate":"2012-08-03"}, -{"geonameId":"1356491","name":"Ahmadpur Sial","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":24889,"modificationDate":"2019-12-06"}, -{"geonameId":"2641599","name":"Newport","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24884,"modificationDate":"2019-09-19"}, -{"geonameId":"1267972","name":"Kānth","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24883,"modificationDate":"2015-08-07"}, -{"geonameId":"3652584","name":"Puyo","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":24881,"modificationDate":"2019-09-05"}, -{"geonameId":"1274574","name":"Charkhāri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24881,"modificationDate":"2015-08-07"}, -{"geonameId":"3670513","name":"Sabanagrande","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":24880,"modificationDate":"2018-04-20"}, -{"geonameId":"2637762","name":"Skegness","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24876,"modificationDate":"2018-07-03"}, -{"geonameId":"3044475","name":"Szigetsentmiklos","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":24874,"modificationDate":"2020-06-10"}, -{"geonameId":"4012693","name":"Villa de Costa Rica","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":24874,"modificationDate":"2018-11-03"}, -{"geonameId":"1263787","name":"Mangaldai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24871,"modificationDate":"2014-10-13"}, -{"geonameId":"2786420","name":"Soignies","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":24869,"modificationDate":"2010-01-29"}, -{"geonameId":"2810716","name":"Wertheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24869,"modificationDate":"2013-02-19"}, -{"geonameId":"924705","name":"Nkhotakota","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":24865,"modificationDate":"2011-11-08"}, -{"geonameId":"4048662","name":"Paducah","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24864,"modificationDate":"2018-01-03"}, -{"geonameId":"2797844","name":"Ganshoren","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":24859,"modificationDate":"2020-05-25"}, -{"geonameId":"2638235","name":"Selby","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24859,"modificationDate":"2018-07-03"}, -{"geonameId":"3885456","name":"La Ligua","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":24857,"modificationDate":"2012-05-03"}, -{"geonameId":"1734793","name":"Jenjarum","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":24857,"modificationDate":"2014-04-06"}, -{"geonameId":"5096686","name":"Cliffside Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24857,"modificationDate":"2017-05-23"}, -{"geonameId":"1514011","name":"Gagarin Shahri","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":24856,"modificationDate":"2020-02-07"}, -{"geonameId":"8050879","name":"Iturrama","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":24846,"modificationDate":"2011-10-17"}, -{"geonameId":"3688452","name":"Buenaventura","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":24842,"modificationDate":"2018-04-18"}, -{"geonameId":"4891051","name":"Elmwood Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24840,"modificationDate":"2017-05-23"}, -{"geonameId":"2165290","name":"Glen Iris","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":24838,"modificationDate":"2019-08-14"}, -{"geonameId":"284890","name":"Ar Rām wa Ḑāḩiyat al Barīd","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24838,"modificationDate":"2019-05-07"}, -{"geonameId":"7176039","name":"Vineyard","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":24836,"modificationDate":"2011-05-14"}, -{"geonameId":"5100604","name":"Lodi","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24835,"modificationDate":"2017-05-23"}, -{"geonameId":"2636032","name":"Thetford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24833,"modificationDate":"2018-07-03"}, -{"geonameId":"1253577","name":"Vadnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24832,"modificationDate":"2014-10-13"}, -{"geonameId":"2309332","name":"Ebebiyin","countryName":"Equatorial Guinea","timeZoneName":"Africa/Malabo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":24831,"modificationDate":"2014-04-26"}, -{"geonameId":"3185012","name":"Laç","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":24825,"modificationDate":"2012-06-11"}, -{"geonameId":"5193011","name":"Hazleton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24825,"modificationDate":"2017-05-23"}, -{"geonameId":"3453503","name":"Pires do Rio","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24822,"modificationDate":"2012-08-03"}, -{"geonameId":"1875632","name":"Kosan","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":24822,"modificationDate":"2012-01-19"}, -{"geonameId":"2322552","name":"Takum","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":24822,"modificationDate":"2013-05-18"}, -{"geonameId":"11549772","name":"Sarrià","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":24819,"modificationDate":"2017-05-24"}, -{"geonameId":"1851137","name":"Takahashi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":24819,"modificationDate":"2017-07-22"}, -{"geonameId":"150037","name":"Shelui","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24817,"modificationDate":"2016-07-26"}, -{"geonameId":"160464","name":"Chimala","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24817,"modificationDate":"2016-07-26"}, -{"geonameId":"300058","name":"Susurluk","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":24816,"modificationDate":"2013-06-05"}, -{"geonameId":"1462681","name":"Manikchari","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":24813,"modificationDate":"2016-11-09"}, -{"geonameId":"2506795","name":"Aoulef","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":24812,"modificationDate":"2019-11-23"}, -{"geonameId":"5339663","name":"Coronado","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":24812,"modificationDate":"2017-03-09"}, -{"geonameId":"2451778","name":"San","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24811,"modificationDate":"2013-11-09"}, -{"geonameId":"5120824","name":"Hillside","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24808,"modificationDate":"2017-04-16"}, -{"geonameId":"2441530","name":"Madaoua","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":24804,"modificationDate":"2013-10-06"}, -{"geonameId":"3017178","name":"Fresnes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24803,"modificationDate":"2016-02-18"}, -{"geonameId":"1257854","name":"Safīpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24801,"modificationDate":"2014-10-14"}, -{"geonameId":"294210","name":"Migdal Hameq","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":24800,"modificationDate":"2020-06-10"}, -{"geonameId":"2412749","name":"Lamin","countryName":"Gambia","timeZoneName":"Africa/Banjul","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24797,"modificationDate":"2018-11-06"}, -{"geonameId":"3852374","name":"La Calera","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":24796,"modificationDate":"2018-07-04"}, -{"geonameId":"586925","name":"Buzovna","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":24795,"modificationDate":"2014-06-27"}, -{"geonameId":"2955770","name":"Apolda","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24793,"modificationDate":"2015-09-05"}, -{"geonameId":"5861187","name":"Eagle River","countryName":"United States","timeZoneName":"America/Anchorage","timeZoneOffsetNameWithoutDst":"Alaska Time","population":24793,"modificationDate":"2013-05-31"}, -{"geonameId":"3447423","name":"Soledade","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24791,"modificationDate":"2012-08-03"}, -{"geonameId":"3164028","name":"Vittorio Veneto","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":24789,"modificationDate":"2015-08-06"}, -{"geonameId":"1168166","name":"Phalia","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":24789,"modificationDate":"2019-12-06"}, -{"geonameId":"5781794","name":"South Salt Lake","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":24788,"modificationDate":"2017-03-09"}, -{"geonameId":"3127065","name":"Calahorra","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":24787,"modificationDate":"2015-06-07"}, -{"geonameId":"4717560","name":"Paris","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24782,"modificationDate":"2017-03-09"}, -{"geonameId":"1512287","name":"Zafar","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":24781,"modificationDate":"2013-11-08"}, -{"geonameId":"2954932","name":"Attendorn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24773,"modificationDate":"2015-09-05"}, -{"geonameId":"2983026","name":"Romainville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24772,"modificationDate":"2016-02-18"}, -{"geonameId":"4080555","name":"Northport","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24772,"modificationDate":"2017-03-09"}, -{"geonameId":"1513011","name":"Payshamba Shahri","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":24772,"modificationDate":"2020-02-07"}, -{"geonameId":"2793446","name":"Lanaken","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":24771,"modificationDate":"2011-02-23"}, -{"geonameId":"1268739","name":"Kabral","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24771,"modificationDate":"2020-06-10"}, -{"geonameId":"11903639","name":"Geidorf","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":24767,"modificationDate":"2018-07-29"}, -{"geonameId":"1266809","name":"Kheda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24767,"modificationDate":"2014-10-13"}, -{"geonameId":"1065158","name":"Farafangana","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24764,"modificationDate":"2018-09-07"}, -{"geonameId":"4738606","name":"University Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24759,"modificationDate":"2017-03-09"}, -{"geonameId":"5141927","name":"Uniondale","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24759,"modificationDate":"2017-05-23"}, -{"geonameId":"4548267","name":"Ponca City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24758,"modificationDate":"2017-03-09"}, -{"geonameId":"1259409","name":"Ponneri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24756,"modificationDate":"2014-10-14"}, -{"geonameId":"5264049","name":"Muskego","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24755,"modificationDate":"2017-05-23"}, -{"geonameId":"4236191","name":"Collinsville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24754,"modificationDate":"2017-05-23"}, -{"geonameId":"3090768","name":"Nowa Ruda","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":24753,"modificationDate":"2018-11-15"}, -{"geonameId":"1255076","name":"Talwāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24752,"modificationDate":"2015-09-06"}, -{"geonameId":"6534264","name":"Orta di Atella","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":24750,"modificationDate":"2015-08-06"}, -{"geonameId":"3388991","name":"São Bento","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24749,"modificationDate":"2018-07-04"}, -{"geonameId":"1253605","name":"Vadakku Valliyūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24749,"modificationDate":"2017-08-02"}, -{"geonameId":"3833794","name":"Tres Isletas","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":24747,"modificationDate":"2016-01-30"}, -{"geonameId":"4948462","name":"Reading","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24747,"modificationDate":"2017-05-23"}, -{"geonameId":"2234941","name":"Bamusso","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":24741,"modificationDate":"2012-01-16"}, -{"geonameId":"3450157","name":"Santaluz","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24739,"modificationDate":"2012-08-03"}, -{"geonameId":"679995","name":"Cugir","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24734,"modificationDate":"2014-06-04"}, -{"geonameId":"1731486","name":"Alicia","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":24732,"modificationDate":"2017-12-13"}, -{"geonameId":"1246000","name":"Gampola","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":24730,"modificationDate":"2018-12-16"}, -{"geonameId":"4785576","name":"Short Pump","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24729,"modificationDate":"2011-05-14"}, -{"geonameId":"4930282","name":"Belmont","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24729,"modificationDate":"2017-05-23"}, -{"geonameId":"4934664","name":"Dedham","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24729,"modificationDate":"2017-05-23"}, -{"geonameId":"7284844","name":"Budapest I. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":24728,"modificationDate":"2019-09-23"}, -{"geonameId":"2680075","name":"Sandviken","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":24724,"modificationDate":"2017-03-18"}, -{"geonameId":"5250201","name":"De Pere","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24724,"modificationDate":"2017-05-23"}, -{"geonameId":"3513967","name":"Zumpango del Río","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":24719,"modificationDate":"2018-11-03"}, -{"geonameId":"292953","name":"Adh Dhayd","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":24716,"modificationDate":"2012-01-18"}, -{"geonameId":"3432079","name":"La Paz","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":24716,"modificationDate":"2018-11-30"}, -{"geonameId":"1249145","name":"Chilaw","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":24712,"modificationDate":"2018-12-16"}, -{"geonameId":"339823","name":"Dibark","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24700,"modificationDate":"2020-06-11"}, -{"geonameId":"1513996","name":"Ghazalkent","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":24700,"modificationDate":"2020-06-10"}, -{"geonameId":"1254638","name":"Tharād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24697,"modificationDate":"2014-10-13"}, -{"geonameId":"1609324","name":"Kut Chap","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":24696,"modificationDate":"2012-01-16"}, -{"geonameId":"2272790","name":"New Yekepa","countryName":"Liberia","timeZoneName":"Africa/Monrovia","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24695,"modificationDate":"2012-01-17"}, -{"geonameId":"1271453","name":"Gauripur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24694,"modificationDate":"2014-10-13"}, -{"geonameId":"3695617","name":"Laredo","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":24691,"modificationDate":"2012-07-19"}, -{"geonameId":"2338772","name":"Igbeti","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":24690,"modificationDate":"2016-01-30"}, -{"geonameId":"2295672","name":"Saltpond","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24689,"modificationDate":"2019-12-06"}, -{"geonameId":"158563","name":"Kakonko","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24688,"modificationDate":"2016-07-26"}, -{"geonameId":"1269943","name":"Hosdurga","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24685,"modificationDate":"2015-11-08"}, -{"geonameId":"1185164","name":"Muktāgācha","countryName":"Bangladesh","timeZoneName":"Asia/Dhaka","timeZoneOffsetNameWithoutDst":"Bangladesh Time","population":24684,"modificationDate":"2020-02-12"}, -{"geonameId":"5247415","name":"Caledonia","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24684,"modificationDate":"2017-05-23"}, -{"geonameId":"1254794","name":"Tekkali","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24682,"modificationDate":"2014-10-10"}, -{"geonameId":"3173302","name":"Mola di Bari","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":24682,"modificationDate":"2016-05-04"}, -{"geonameId":"3017924","name":"Fontenay-aux-Roses","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24680,"modificationDate":"2016-02-18"}, -{"geonameId":"1260830","name":"Pakal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24680,"modificationDate":"2020-06-10"}, -{"geonameId":"2140066","name":"Mont-Dore","countryName":"New Caledonia","timeZoneName":"Pacific/Noumea","timeZoneOffsetNameWithoutDst":"New Caledonia Time","population":24680,"modificationDate":"2017-01-10"}, -{"geonameId":"548392","name":"Kirovsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":24678,"modificationDate":"2019-09-05"}, -{"geonameId":"2814874","name":"Waldkraiburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24676,"modificationDate":"2013-02-19"}, -{"geonameId":"3021662","name":"Décines-Charpieu","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24674,"modificationDate":"2019-06-05"}, -{"geonameId":"1263034","name":"Mīnjūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24674,"modificationDate":"2015-09-06"}, -{"geonameId":"5882799","name":"Airdrie","countryName":"Canada","timeZoneName":"America/Edmonton","timeZoneOffsetNameWithoutDst":"Mountain Time","population":24673,"modificationDate":"2008-04-11"}, -{"geonameId":"4832554","name":"Inkster","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24672,"modificationDate":"2017-05-23"}, -{"geonameId":"3430598","name":"Monte Caseros","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":24671,"modificationDate":"2015-04-22"}, -{"geonameId":"3405616","name":"Boa Viagem","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24671,"modificationDate":"2012-08-03"}, -{"geonameId":"6082231","name":"Mount Pearl","countryName":"Canada","timeZoneName":"America/St_Johns","timeZoneOffsetNameWithoutDst":"Newfoundland Time","population":24671,"modificationDate":"2010-09-22"}, -{"geonameId":"3060835","name":"Czaca","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":24670,"modificationDate":"2020-06-10"}, -{"geonameId":"1608452","name":"Nan","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":24670,"modificationDate":"2012-04-05"}, -{"geonameId":"3833112","name":"Veinticinco de Mayo","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":24668,"modificationDate":"2015-04-22"}, -{"geonameId":"4504618","name":"Vincentown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24664,"modificationDate":"2017-12-14"}, -{"geonameId":"2525791","name":"Aci Catena","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":24663,"modificationDate":"2015-08-06"}, -{"geonameId":"195821","name":"Kabarnet","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24661,"modificationDate":"2013-07-03"}, -{"geonameId":"3899462","name":"Arauco","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":24659,"modificationDate":"2012-05-03"}, -{"geonameId":"2948825","name":"Bingen am Rhein","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24657,"modificationDate":"2015-09-05"}, -{"geonameId":"1282770","name":"Siraha","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":24657,"modificationDate":"2019-10-27"}, -{"geonameId":"4530801","name":"Bixby","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24657,"modificationDate":"2017-03-09"}, -{"geonameId":"2514073","name":"Martos","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":24655,"modificationDate":"2012-03-04"}, -{"geonameId":"360531","name":"Quseir","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24653,"modificationDate":"2020-06-11"}, -{"geonameId":"2641544","name":"Newton Mearns","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24650,"modificationDate":"2017-06-12"}, -{"geonameId":"149050","name":"Uvinza","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24650,"modificationDate":"2016-07-26"}, -{"geonameId":"4271086","name":"Emporia","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24649,"modificationDate":"2017-05-23"}, -{"geonameId":"4857486","name":"Fort Dodge","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24649,"modificationDate":"2017-12-24"}, -{"geonameId":"1262285","name":"Naduvannūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24648,"modificationDate":"2014-10-13"}, -{"geonameId":"151211","name":"Nyalikungu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24648,"modificationDate":"2016-07-26"}, -{"geonameId":"5013924","name":"Walker","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24647,"modificationDate":"2017-05-23"}, -{"geonameId":"1278621","name":"Andol","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24645,"modificationDate":"2014-10-10"}, -{"geonameId":"4167634","name":"Palmetto Bay","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24642,"modificationDate":"2017-03-09"}, -{"geonameId":"2523964","name":"Oristano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":24641,"modificationDate":"2016-12-08"}, -{"geonameId":"11592272","name":"Vale of Leven","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24640,"modificationDate":"2017-06-14"}, -{"geonameId":"691037","name":"Oleshky","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24639,"modificationDate":"2020-05-20"}, -{"geonameId":"464687","name":"Zaraysk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":24637,"modificationDate":"2014-06-27"}, -{"geonameId":"2620214","name":"Hjørring","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":24634,"modificationDate":"2019-01-15"}, -{"geonameId":"463340","name":"Zheleznovodsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":24632,"modificationDate":"2012-01-17"}, -{"geonameId":"88835","name":"Al Qubbah","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24631,"modificationDate":"2018-04-05"}, -{"geonameId":"2980827","name":"Saint-Dié-des-Vosges","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24628,"modificationDate":"2020-03-08"}, -{"geonameId":"4870380","name":"Ottumwa","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24624,"modificationDate":"2017-05-23"}, -{"geonameId":"6155938","name":"Steeles","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24623,"modificationDate":"2020-05-02"}, -{"geonameId":"4273680","name":"Junction City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24621,"modificationDate":"2017-05-23"}, -{"geonameId":"5394086","name":"Seal Beach","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":24619,"modificationDate":"2017-03-09"}, -{"geonameId":"1701692","name":"Manibaug Pasig","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":24618,"modificationDate":"2017-12-13"}, -{"geonameId":"3669997","name":"San Carlos","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":24615,"modificationDate":"2018-07-04"}, -{"geonameId":"3449116","name":"São Francisco do Conde","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24614,"modificationDate":"2012-08-03"}, -{"geonameId":"11467676","name":"San Borja","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":24610,"modificationDate":"2020-01-24"}, -{"geonameId":"628634","name":"Dzyarzhynsk","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":24609,"modificationDate":"2019-09-05"}, -{"geonameId":"2146108","name":"Traralgon","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":24605,"modificationDate":"2019-07-18"}, -{"geonameId":"4174855","name":"Tarpon Springs","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24605,"modificationDate":"2017-03-09"}, -{"geonameId":"11549785","name":"Porta","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":24604,"modificationDate":"2017-05-24"}, -{"geonameId":"282239","name":"Ramallah","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24599,"modificationDate":"2017-09-05"}, -{"geonameId":"4828382","name":"Franklin","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24598,"modificationDate":"2017-05-23"}, -{"geonameId":"1863521","name":"Gōtsuchō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":24597,"modificationDate":"2017-07-26"}, -{"geonameId":"586968","name":"Biny Selo","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":24596,"modificationDate":"2014-06-26"}, -{"geonameId":"2229681","name":"Lagdo","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":24596,"modificationDate":"2016-11-18"}, -{"geonameId":"2863240","name":"Nieder-Ingelheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24596,"modificationDate":"2015-09-04"}, -{"geonameId":"293655","name":"Sikhnin","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":24596,"modificationDate":"2020-06-10"}, -{"geonameId":"1275692","name":"Bijbehara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24590,"modificationDate":"2016-06-09"}, -{"geonameId":"3018095","name":"Fontaine","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24588,"modificationDate":"2019-06-05"}, -{"geonameId":"1270923","name":"Gorantla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24586,"modificationDate":"2017-12-13"}, -{"geonameId":"2759544","name":"Baarn","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":24584,"modificationDate":"2017-10-17"}, -{"geonameId":"727337","name":"Sevlievo","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24582,"modificationDate":"2012-01-18"}, -{"geonameId":"1162316","name":"Yazman","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":24580,"modificationDate":"2019-12-06"}, -{"geonameId":"3449851","name":"Santa Rita do Passa Quatro","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24578,"modificationDate":"2012-08-03"}, -{"geonameId":"1007514","name":"Duiwelskloof","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":24572,"modificationDate":"2012-07-12"}, -{"geonameId":"4763793","name":"Herndon","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24568,"modificationDate":"2017-03-09"}, -{"geonameId":"294068","name":"Netivot","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":24564,"modificationDate":"2017-07-02"}, -{"geonameId":"5016884","name":"Austin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24563,"modificationDate":"2017-05-23"}, -{"geonameId":"1273409","name":"Dātāganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24562,"modificationDate":"2015-10-04"}, -{"geonameId":"3516385","name":"Tamazunchale","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":24562,"modificationDate":"2018-11-03"}, -{"geonameId":"3408343","name":"Acopiara","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24561,"modificationDate":"2012-08-03"}, -{"geonameId":"2842131","name":"Salzkotten","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24561,"modificationDate":"2015-09-04"}, -{"geonameId":"1150965","name":"Ranong","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":24561,"modificationDate":"2012-01-16"}, -{"geonameId":"1698740","name":"Nagcarlan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":24560,"modificationDate":"2017-12-13"}, -{"geonameId":"748167","name":"Devrek","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":24559,"modificationDate":"2012-01-18"}, -{"geonameId":"3525596","name":"La Isla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":24558,"modificationDate":"2015-06-22"}, -{"geonameId":"749502","name":"Çayeli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":24556,"modificationDate":"2016-08-03"}, -{"geonameId":"3868326","name":"Victoria","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":24555,"modificationDate":"2013-01-11"}, -{"geonameId":"4724564","name":"Sachse","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24554,"modificationDate":"2017-03-09"}, -{"geonameId":"302824","name":"Pasinler","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":24553,"modificationDate":"2015-04-08"}, -{"geonameId":"1514215","name":"Chinoz","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":24553,"modificationDate":"2016-09-08"}, -{"geonameId":"1607983","name":"Pathum Thani","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":24547,"modificationDate":"2012-01-16"}, -{"geonameId":"2962308","name":"Navan","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24545,"modificationDate":"2017-07-30"}, -{"geonameId":"1129648","name":"Hazrat Imam Saiyid","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":24544,"modificationDate":"2020-06-09"}, -{"geonameId":"2620147","name":"Holbæk","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":24544,"modificationDate":"2018-06-08"}, -{"geonameId":"1268624","name":"Kailāras","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24539,"modificationDate":"2015-08-07"}, -{"geonameId":"3459550","name":"Juatuba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24537,"modificationDate":"2012-08-03"}, -{"geonameId":"1274346","name":"Chharra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24535,"modificationDate":"2018-12-04"}, -{"geonameId":"5316205","name":"Sun City West","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":24535,"modificationDate":"2011-05-14"}, -{"geonameId":"1271975","name":"Faizpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24534,"modificationDate":"2016-01-07"}, -{"geonameId":"200787","name":"Athi River","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24530,"modificationDate":"2013-11-04"}, -{"geonameId":"1863341","name":"Hakui","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":24529,"modificationDate":"2017-07-22"}, -{"geonameId":"2790676","name":"Mortsel","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":24525,"modificationDate":"2011-02-10"}, -{"geonameId":"189741","name":"Lamu","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24525,"modificationDate":"2019-09-05"}, -{"geonameId":"4740214","name":"Watauga","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24525,"modificationDate":"2017-03-09"}, -{"geonameId":"1214026","name":"Sabang","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":24519,"modificationDate":"2019-09-05"}, -{"geonameId":"2877550","name":"Lindau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24518,"modificationDate":"2019-10-09"}, -{"geonameId":"3577887","name":"Kingstown","countryName":"Saint Vincent and the Grenadines","timeZoneName":"America/St_Vincent","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":24518,"modificationDate":"2019-09-05"}, -{"geonameId":"1274285","name":"Chhota Udepur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24517,"modificationDate":"2018-05-28"}, -{"geonameId":"204283","name":"Watsa","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":24516,"modificationDate":"2016-11-22"}, -{"geonameId":"2112692","name":"Hobaramachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":24515,"modificationDate":"2017-04-09"}, -{"geonameId":"379416","name":"El Hawata","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":24513,"modificationDate":"2020-06-11"}, -{"geonameId":"3057769","name":"Šaľa","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":24513,"modificationDate":"2020-01-11"}, -{"geonameId":"2794860","name":"Jumet","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":24510,"modificationDate":"2020-05-25"}, -{"geonameId":"1269094","name":"Jaynagar-Majilpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24510,"modificationDate":"2014-10-14"}, -{"geonameId":"746232","name":"Gürsu","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":24510,"modificationDate":"2013-05-08"}, -{"geonameId":"2303611","name":"Axim","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24500,"modificationDate":"2019-12-06"}, -{"geonameId":"514171","name":"Ostrov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":24500,"modificationDate":"2019-09-05"}, -{"geonameId":"4931737","name":"Burlington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24498,"modificationDate":"2020-04-03"}, -{"geonameId":"4726290","name":"San Benito","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24496,"modificationDate":"2017-03-09"}, -{"geonameId":"3036281","name":"Auch","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24494,"modificationDate":"2020-04-08"}, -{"geonameId":"2161540","name":"Kew","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":24491,"modificationDate":"2019-07-18"}, -{"geonameId":"3071677","name":"Litoměřice","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":24489,"modificationDate":"2019-09-05"}, -{"geonameId":"8348466","name":"Campsie","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":24487,"modificationDate":"2019-07-18"}, -{"geonameId":"2885536","name":"Korbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24481,"modificationDate":"2019-09-05"}, -{"geonameId":"2959686","name":"Achern","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24478,"modificationDate":"2013-02-16"}, -{"geonameId":"1562538","name":"Vi Tanh","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":24477,"modificationDate":"2020-06-09"}, -{"geonameId":"4893171","name":"Freeport","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24476,"modificationDate":"2017-05-23"}, -{"geonameId":"3029825","name":"Bruay-la-Buissière","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24474,"modificationDate":"2016-02-18"}, -{"geonameId":"2998150","name":"Lisieux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24473,"modificationDate":"2016-02-18"}, -{"geonameId":"2936985","name":"Dillenburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24461,"modificationDate":"2019-09-05"}, -{"geonameId":"3869716","name":"Tocopilla","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":24460,"modificationDate":"2018-02-06"}, -{"geonameId":"2858763","name":"Obertshausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24459,"modificationDate":"2015-09-04"}, -{"geonameId":"1445156","name":"Singāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24457,"modificationDate":"2014-10-10"}, -{"geonameId":"1680018","name":"Victoria","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":24456,"modificationDate":"2017-12-13"}, -{"geonameId":"1257802","name":"Sahaspur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24452,"modificationDate":"2015-08-07"}, -{"geonameId":"2814462","name":"Walsrode","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24448,"modificationDate":"2020-05-23"}, -{"geonameId":"1278625","name":"Āndippatti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24448,"modificationDate":"2017-09-05"}, -{"geonameId":"3816739","name":"Arriaga","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":24447,"modificationDate":"2018-11-03"}, -{"geonameId":"2317569","name":"Zungeru","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":24447,"modificationDate":"2016-01-30"}, -{"geonameId":"2975964","name":"Sarreguemines","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24446,"modificationDate":"2016-02-21"}, -{"geonameId":"483883","name":"Tbilisskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":24446,"modificationDate":"2013-05-07"}, -{"geonameId":"3459126","name":"Lagoa Vermelha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24445,"modificationDate":"2012-08-03"}, -{"geonameId":"2262581","name":"Torres Vedras","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":24443,"modificationDate":"2014-04-06"}, -{"geonameId":"713203","name":"Armyansk","countryName":"Ukraine","timeZoneName":"Europe/Simferopol","timeZoneOffsetNameWithoutDst":"Moscow Time","population":24442,"modificationDate":"2017-03-28"}, -{"geonameId":"1645565","name":"Delanggu","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":24440,"modificationDate":"2013-10-30"}, -{"geonameId":"3841500","name":"Pérez","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":24436,"modificationDate":"2016-01-30"}, -{"geonameId":"2924625","name":"Friedrichsdorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24435,"modificationDate":"2015-09-04"}, -{"geonameId":"2783175","name":"Zottegem","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":24434,"modificationDate":"2012-01-18"}, -{"geonameId":"1267979","name":"Kānt","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24430,"modificationDate":"2016-03-10"}, -{"geonameId":"1263532","name":"Margherita","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24428,"modificationDate":"2012-10-06"}, -{"geonameId":"3082712","name":"Wągrowiec","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":24428,"modificationDate":"2020-06-21"}, -{"geonameId":"2964405","name":"Ennis","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24427,"modificationDate":"2019-06-14"}, -{"geonameId":"2027968","name":"Aldan","countryName":"Russia","timeZoneName":"Asia/Yakutsk","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":24426,"modificationDate":"2019-12-11"}, -{"geonameId":"2810969","name":"Werdau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24424,"modificationDate":"2015-09-05"}, -{"geonameId":"4004153","name":"Jalostotilan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":24423,"modificationDate":"2020-06-10"}, -{"geonameId":"4787440","name":"Staunton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24416,"modificationDate":"2017-03-09"}, -{"geonameId":"225858","name":"Wobulenzi","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24415,"modificationDate":"2016-06-22"}, -{"geonameId":"5394329","name":"Selma","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":24414,"modificationDate":"2017-03-09"}, -{"geonameId":"4843353","name":"South Windsor","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24412,"modificationDate":"2017-05-23"}, -{"geonameId":"4363990","name":"North Potomac","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24410,"modificationDate":"2011-05-14"}, -{"geonameId":"3445690","name":"Uruçuca","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24409,"modificationDate":"2012-08-03"}, -{"geonameId":"294245","name":"MevasseretTsiyyon","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":24409,"modificationDate":"2020-06-10"}, -{"geonameId":"518383","name":"Novopavlovsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":24408,"modificationDate":"2019-09-05"}, -{"geonameId":"1708217","name":"La Castellana","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":24407,"modificationDate":"2017-12-13"}, -{"geonameId":"1167386","name":"Raja Jang","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":24407,"modificationDate":"2019-12-06"}, -{"geonameId":"2737039","name":"Oliveira do Douro","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":24407,"modificationDate":"2018-12-04"}, -{"geonameId":"2517436","name":"Gáldar","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":24405,"modificationDate":"2012-03-04"}, -{"geonameId":"1734316","name":"Kertih","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":24401,"modificationDate":"2012-01-17"}, -{"geonameId":"3445941","name":"Tupaciguara","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24398,"modificationDate":"2012-08-03"}, -{"geonameId":"8858100","name":"San Antonio Tecómitl","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":24397,"modificationDate":"2014-04-11"}, -{"geonameId":"4896336","name":"Homer Glen","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24395,"modificationDate":"2017-05-23"}, -{"geonameId":"3389361","name":"Santa Quitéria","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24391,"modificationDate":"2012-08-03"}, -{"geonameId":"6137540","name":"Saint-Bruno-de-Montarville","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24388,"modificationDate":"2019-02-26"}, -{"geonameId":"1269298","name":"Jāmtāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24388,"modificationDate":"2014-10-14"}, -{"geonameId":"2972444","name":"Torcy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24386,"modificationDate":"2019-04-10"}, -{"geonameId":"3015419","name":"Gradignan","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24385,"modificationDate":"2020-01-08"}, -{"geonameId":"3082197","name":"Wieluń","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":24384,"modificationDate":"2019-09-05"}, -{"geonameId":"1830098","name":"Tbeng Meanchey","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":24380,"modificationDate":"2018-07-04"}, -{"geonameId":"4151921","name":"Coral Terrace","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24376,"modificationDate":"2011-05-14"}, -{"geonameId":"1860321","name":"Kamoshima","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":24374,"modificationDate":"2020-06-11"}, -{"geonameId":"2522430","name":"Adra","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":24373,"modificationDate":"2019-10-14"}, -{"geonameId":"3058268","name":"Partizánske","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":24370,"modificationDate":"2019-08-28"}, -{"geonameId":"5073965","name":"Norfolk","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24366,"modificationDate":"2017-03-09"}, -{"geonameId":"2749812","name":"Noordwijk-Binnen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":24363,"modificationDate":"2017-10-17"}, -{"geonameId":"8348574","name":"Greenacre","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":24361,"modificationDate":"2019-07-18"}, -{"geonameId":"240498","name":"Bangassou","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":24361,"modificationDate":"2017-04-17"}, -{"geonameId":"2756888","name":"Diemen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":24361,"modificationDate":"2017-10-17"}, -{"geonameId":"3176041","name":"Giussano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":24357,"modificationDate":"2015-08-06"}, -{"geonameId":"492376","name":"Skopin","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":24357,"modificationDate":"2019-09-05"}, -{"geonameId":"3075919","name":"Havlíčkův Brod","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":24356,"modificationDate":"2018-10-11"}, -{"geonameId":"6073363","name":"Midland","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24353,"modificationDate":"2019-08-08"}, -{"geonameId":"3007794","name":"Lanester","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24352,"modificationDate":"2016-02-18"}, -{"geonameId":"3447059","name":"Taiobeiras","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24351,"modificationDate":"2012-08-03"}, -{"geonameId":"4443296","name":"Ridgeland","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24351,"modificationDate":"2017-03-09"}, -{"geonameId":"2217351","name":"Ghat","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24347,"modificationDate":"2015-09-26"}, -{"geonameId":"3347853","name":"Longonjo","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":24346,"modificationDate":"2012-01-17"}, -{"geonameId":"7284571","name":"Eisleben Lutherstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24346,"modificationDate":"2016-07-06"}, -{"geonameId":"1693401","name":"Pio","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":24345,"modificationDate":"2017-12-13"}, -{"geonameId":"11549787","name":"Sants - Badal","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":24344,"modificationDate":"2017-05-24"}, -{"geonameId":"728742","name":"Nova Zagora","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24340,"modificationDate":"2012-01-18"}, -{"geonameId":"2317548","name":"Zuru","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":24338,"modificationDate":"2016-06-22"}, -{"geonameId":"2634617","name":"Wednesbury","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24337,"modificationDate":"2012-03-29"}, -{"geonameId":"2433437","name":"Doba","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":24336,"modificationDate":"2012-01-18"}, -{"geonameId":"2318123","name":"Yenagoa","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":24335,"modificationDate":"2016-01-30"}, -{"geonameId":"4368918","name":"Scaggsville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24333,"modificationDate":"2017-03-10"}, -{"geonameId":"1489907","name":"Tayga","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":24328,"modificationDate":"2014-06-26"}, -{"geonameId":"1278124","name":"Avinashi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24327,"modificationDate":"2014-10-14"}, -{"geonameId":"2649571","name":"Feltham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24325,"modificationDate":"2012-05-31"}, -{"geonameId":"2953385","name":"Bad Oldesloe","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24322,"modificationDate":"2015-09-04"}, -{"geonameId":"2520283","name":"Candelaria","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":24319,"modificationDate":"2012-03-04"}, -{"geonameId":"1269694","name":"Iringal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24318,"modificationDate":"2015-11-08"}, -{"geonameId":"2814153","name":"Warburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24317,"modificationDate":"2015-09-04"}, -{"geonameId":"3030257","name":"Brétigny-sur-Orge","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24317,"modificationDate":"2016-02-18"}, -{"geonameId":"149854","name":"Sirari","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24317,"modificationDate":"2016-07-26"}, -{"geonameId":"1253623","name":"Uttiramerūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24315,"modificationDate":"2014-10-14"}, -{"geonameId":"2991153","name":"Muret","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24313,"modificationDate":"2020-05-07"}, -{"geonameId":"161943","name":"Gumdag","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":24312,"modificationDate":"2012-01-17"}, -{"geonameId":"293992","name":"Ofaqim","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":24311,"modificationDate":"2017-07-02"}, -{"geonameId":"5341051","name":"Cudahy","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":24311,"modificationDate":"2017-03-09"}, -{"geonameId":"793111","name":"Aranđelovac","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":24309,"modificationDate":"2012-04-15"}, -{"geonameId":"3032070","name":"Bois-Colombes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24300,"modificationDate":"2016-02-18"}, -{"geonameId":"497450","name":"Semenowo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":24300,"modificationDate":"2020-06-10"}, -{"geonameId":"521776","name":"Nikol’sk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":24300,"modificationDate":"2012-01-17"}, -{"geonameId":"225835","name":"Yumbe","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24300,"modificationDate":"2016-06-22"}, -{"geonameId":"5549222","name":"Washington","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":24299,"modificationDate":"2017-03-09"}, -{"geonameId":"4165913","name":"New Smyrna Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24298,"modificationDate":"2017-03-09"}, -{"geonameId":"1253193","name":"Vijāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24297,"modificationDate":"2014-10-13"}, -{"geonameId":"3529619","name":"Elbano","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":24296,"modificationDate":"2020-06-10"}, -{"geonameId":"1162572","name":"Chak Five Hundred Seventy-five","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":24295,"modificationDate":"2019-12-06"}, -{"geonameId":"1274219","name":"Chiknāyakanhalli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24292,"modificationDate":"2014-10-14"}, -{"geonameId":"654440","name":"Kangasala","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24291,"modificationDate":"2014-09-25"}, -{"geonameId":"5104844","name":"South Plainfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24290,"modificationDate":"2017-05-23"}, -{"geonameId":"1265852","name":"Krishnarājpet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24289,"modificationDate":"2015-11-08"}, -{"geonameId":"3380387","name":"Saint-Laurent-du-Maroni","countryName":"French Guiana","timeZoneName":"America/Cayenne","timeZoneOffsetNameWithoutDst":"French Guiana Time","population":24287,"modificationDate":"2018-10-05"}, -{"geonameId":"4364990","name":"Pasadena","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24287,"modificationDate":"2011-05-14"}, -{"geonameId":"1278588","name":"Anjad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24286,"modificationDate":"2014-10-14"}, -{"geonameId":"6318165","name":"Rio Preto da Eva","countryName":"Brazil","timeZoneName":"America/Manaus","timeZoneOffsetNameWithoutDst":"Amazon Time","population":24283,"modificationDate":"2014-06-30"}, -{"geonameId":"285799","name":"Al Jahrā’","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":24281,"modificationDate":"2013-05-05"}, -{"geonameId":"5417657","name":"Columbine","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":24280,"modificationDate":"2011-05-14"}, -{"geonameId":"1720508","name":"Calasiao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":24276,"modificationDate":"2017-12-13"}, -{"geonameId":"2824461","name":"Syke","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24274,"modificationDate":"2015-09-04"}, -{"geonameId":"2636049","name":"Thatcham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24274,"modificationDate":"2011-02-21"}, -{"geonameId":"1278365","name":"Āron","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24274,"modificationDate":"2015-08-07"}, -{"geonameId":"3447437","name":"Socorro","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24272,"modificationDate":"2012-03-10"}, -{"geonameId":"4356847","name":"Greenbelt","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24272,"modificationDate":"2018-09-27"}, -{"geonameId":"601138","name":"Aleksotas","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24270,"modificationDate":"2016-11-23"}, -{"geonameId":"694677","name":"Selydove","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24269,"modificationDate":"2014-06-27"}, -{"geonameId":"1261853","name":"Narasannapeta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24267,"modificationDate":"2014-10-10"}, -{"geonameId":"751817","name":"Artvin","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":24266,"modificationDate":"2014-06-27"}, -{"geonameId":"3127066","name":"Calafell","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":24265,"modificationDate":"2012-03-04"}, -{"geonameId":"3103556","name":"Białogard","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":24265,"modificationDate":"2019-09-05"}, -{"geonameId":"3032469","name":"Blagnac","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24263,"modificationDate":"2020-05-07"}, -{"geonameId":"3123104","name":"Erandio","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":24262,"modificationDate":"2015-06-16"}, -{"geonameId":"3998291","name":"Loreto","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":24260,"modificationDate":"2019-03-18"}, -{"geonameId":"3013403","name":"Hérouville-Saint-Clair","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24258,"modificationDate":"2016-02-18"}, -{"geonameId":"1712819","name":"Glan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":24256,"modificationDate":"2017-12-13"}, -{"geonameId":"4786667","name":"South Riding","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24256,"modificationDate":"2011-05-14"}, -{"geonameId":"2811644","name":"Weiterstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24253,"modificationDate":"2019-09-05"}, -{"geonameId":"4151157","name":"Citrus Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24252,"modificationDate":"2011-05-14"}, -{"geonameId":"4148399","name":"Boca Del Mar","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24244,"modificationDate":"2018-02-17"}, -{"geonameId":"4007673","name":"El Salto","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":24241,"modificationDate":"2018-11-03"}, -{"geonameId":"2998517","name":"Libourne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24240,"modificationDate":"2020-01-08"}, -{"geonameId":"1167821","name":"Pishin","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":24239,"modificationDate":"2019-12-06"}, -{"geonameId":"1496421","name":"Ob’","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":24238,"modificationDate":"2012-01-17"}, -{"geonameId":"2029156","name":"Sukhe Batur","countryName":"Mongolia","timeZoneName":"Asia/Ulaanbaatar","timeZoneOffsetNameWithoutDst":"Ulaanbaatar Time","population":24235,"modificationDate":"2020-06-10"}, -{"geonameId":"4003923","name":"Jiquílpan de Juárez","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":24233,"modificationDate":"2018-11-03"}, -{"geonameId":"3005066","name":"Le Bouscat","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24232,"modificationDate":"2020-01-08"}, -{"geonameId":"579529","name":"Balabanovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":24232,"modificationDate":"2012-01-17"}, -{"geonameId":"5223593","name":"Newport","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24232,"modificationDate":"2019-09-19"}, -{"geonameId":"304964","name":"Mahmutlar","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":24227,"modificationDate":"2013-11-10"}, -{"geonameId":"3576022","name":"Saint John’s","countryName":"Antigua and Barbuda","timeZoneName":"America/Antigua","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":24226,"modificationDate":"2017-09-28"}, -{"geonameId":"3844899","name":"Marcos Juárez","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":24226,"modificationDate":"2016-01-30"}, -{"geonameId":"1255963","name":"Sitārganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24225,"modificationDate":"2015-10-04"}, -{"geonameId":"2239520","name":"Mbanza Kongo","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":24220,"modificationDate":"2019-12-30"}, -{"geonameId":"3655185","name":"Nueva Loja","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":24211,"modificationDate":"2019-09-05"}, -{"geonameId":"3589101","name":"Santiago","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":24210,"modificationDate":"2020-06-10"}, -{"geonameId":"1261971","name":"Nāndgaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24209,"modificationDate":"2015-09-06"}, -{"geonameId":"5004005","name":"Norton Shores","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24208,"modificationDate":"2017-05-23"}, -{"geonameId":"2910278","name":"Harsewinkel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24207,"modificationDate":"2015-09-05"}, -{"geonameId":"2787769","name":"Ronse","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":24204,"modificationDate":"2012-01-18"}, -{"geonameId":"5326305","name":"Barstow Heights","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":24202,"modificationDate":"2006-01-17"}, -{"geonameId":"2814632","name":"Wallenhorst","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24201,"modificationDate":"2011-04-25"}, -{"geonameId":"5134203","name":"Rockville Centre","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24201,"modificationDate":"2017-05-23"}, -{"geonameId":"3463762","name":"Estrela","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24200,"modificationDate":"2012-08-03"}, -{"geonameId":"627800","name":"Ivatsevichy","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":24200,"modificationDate":"2012-01-18"}, -{"geonameId":"155569","name":"Lushoto","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24197,"modificationDate":"2017-08-28"}, -{"geonameId":"4130430","name":"Searcy","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24196,"modificationDate":"2017-05-23"}, -{"geonameId":"5697939","name":"North Platte","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24194,"modificationDate":"2017-03-09"}, -{"geonameId":"4908052","name":"Rolling Meadows","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24190,"modificationDate":"2017-05-23"}, -{"geonameId":"681179","name":"Codlea","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24188,"modificationDate":"2016-02-07"}, -{"geonameId":"8858101","name":"Licenciado Benito Juárez (Campo Gobierno)","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":24185,"modificationDate":"2014-04-11"}, -{"geonameId":"3176090","name":"Gioia del Colle","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":24184,"modificationDate":"2015-06-02"}, -{"geonameId":"1265446","name":"Kushtagi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24180,"modificationDate":"2014-10-14"}, -{"geonameId":"1256328","name":"Sikandarpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24177,"modificationDate":"2018-12-04"}, -{"geonameId":"2173741","name":"Brunswick","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":24176,"modificationDate":"2019-07-18"}, -{"geonameId":"2993760","name":"Miramas","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24173,"modificationDate":"2019-06-05"}, -{"geonameId":"3675263","name":"Marinilla","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":24171,"modificationDate":"2018-06-08"}, -{"geonameId":"5096316","name":"Carteret","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24170,"modificationDate":"2017-05-23"}, -{"geonameId":"327694","name":"Tippi","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24169,"modificationDate":"2016-03-31"}, -{"geonameId":"2646862","name":"Hindley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24169,"modificationDate":"2013-08-05"}, -{"geonameId":"2875379","name":"Ludwigsfelde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24164,"modificationDate":"2015-09-05"}, -{"geonameId":"1630649","name":"Prigen","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":24164,"modificationDate":"2007-11-09"}, -{"geonameId":"3034126","name":"Beaune","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24162,"modificationDate":"2019-09-05"}, -{"geonameId":"3171786","name":"Ostuni","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":24157,"modificationDate":"2015-08-06"}, -{"geonameId":"1832566","name":"Yeongdong","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":24154,"modificationDate":"2019-09-05"}, -{"geonameId":"4159553","name":"Immokalee","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24154,"modificationDate":"2011-05-14"}, -{"geonameId":"108617","name":"An Nimāş","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":24153,"modificationDate":"2013-08-11"}, -{"geonameId":"4917067","name":"Woodlawn","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24150,"modificationDate":"2017-12-14"}, -{"geonameId":"2790101","name":"Nivelles","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":24149,"modificationDate":"2011-01-28"}, -{"geonameId":"2936705","name":"Ditzingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24149,"modificationDate":"2013-02-15"}, -{"geonameId":"1150490","name":"Tak","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":24149,"modificationDate":"2012-01-16"}, -{"geonameId":"2917737","name":"Greiz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24147,"modificationDate":"2015-09-04"}, -{"geonameId":"1262625","name":"Muhammadābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24146,"modificationDate":"2014-10-14"}, -{"geonameId":"2246608","name":"Pourham","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24146,"modificationDate":"2012-01-17"}, -{"geonameId":"10627510","name":"Kumbalam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24143,"modificationDate":"2015-08-18"}, -{"geonameId":"1255621","name":"Srīsailain","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24142,"modificationDate":"2016-02-06"}, -{"geonameId":"5126518","name":"Medford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24142,"modificationDate":"2017-05-23"}, -{"geonameId":"2524618","name":"Giarre","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":24138,"modificationDate":"2019-02-06"}, -{"geonameId":"2755030","name":"Haaksbergen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":24137,"modificationDate":"2017-10-17"}, -{"geonameId":"3398350","name":"Igarapé Açu","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24136,"modificationDate":"2012-08-03"}, -{"geonameId":"1276919","name":"Barki Saria","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24134,"modificationDate":"2018-12-04"}, -{"geonameId":"3092906","name":"Lubliniec","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":24133,"modificationDate":"2015-11-13"}, -{"geonameId":"2172303","name":"Carlingford","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":24131,"modificationDate":"2019-07-18"}, -{"geonameId":"932183","name":"Quthing","countryName":"Lesotho","timeZoneName":"Africa/Maseru","timeZoneOffsetNameWithoutDst":"South Africa Time","population":24130,"modificationDate":"2010-06-25"}, -{"geonameId":"1861584","name":"Ino","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":24123,"modificationDate":"2017-04-09"}, -{"geonameId":"5387844","name":"Riverbank","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":24122,"modificationDate":"2017-03-09"}, -{"geonameId":"2518949","name":"Cullera","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":24121,"modificationDate":"2012-03-04"}, -{"geonameId":"1278100","name":"Ayakudi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24120,"modificationDate":"2014-10-14"}, -{"geonameId":"3518650","name":"San Juan Ixtayopan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":24120,"modificationDate":"2018-11-03"}, -{"geonameId":"3522343","name":"Ometepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":24120,"modificationDate":"2018-11-03"}, -{"geonameId":"3652065","name":"Samborondón","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":24118,"modificationDate":"2018-04-10"}, -{"geonameId":"1271680","name":"Gangāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24118,"modificationDate":"2014-10-13"}, -{"geonameId":"4917358","name":"Zion","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24117,"modificationDate":"2017-05-23"}, -{"geonameId":"8347325","name":"Endeavour Hills","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":24116,"modificationDate":"2019-07-18"}, -{"geonameId":"2155001","name":"Northcote","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":24115,"modificationDate":"2019-07-18"}, -{"geonameId":"704000","name":"Krolovets","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24115,"modificationDate":"2020-06-10"}, -{"geonameId":"3564394","name":"Chambas","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":24114,"modificationDate":"2016-01-07"}, -{"geonameId":"2838634","name":"Schleswig","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24114,"modificationDate":"2015-09-04"}, -{"geonameId":"2516480","name":"Ibi","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":24113,"modificationDate":"2012-03-04"}, -{"geonameId":"7279600","name":"Aluva","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24108,"modificationDate":"2014-10-13"}, -{"geonameId":"12157091","name":"Yanacancha","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":24105,"modificationDate":"2020-05-08"}, -{"geonameId":"1258928","name":"Rājaldesar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24104,"modificationDate":"2015-02-06"}, -{"geonameId":"2621927","name":"Frederikshavn","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":24103,"modificationDate":"2017-10-18"}, -{"geonameId":"2640190","name":"Plymstock","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24103,"modificationDate":"2012-03-29"}, -{"geonameId":"2524410","name":"Lentini","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":24102,"modificationDate":"2015-08-05"}, -{"geonameId":"3172227","name":"Nola","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":24101,"modificationDate":"2014-04-13"}, -{"geonameId":"2698739","name":"Kungälv","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":24101,"modificationDate":"2017-03-18"}, -{"geonameId":"2850995","name":"Radevormwald","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24100,"modificationDate":"2017-09-22"}, -{"geonameId":"3357114","name":"Grootfontein","countryName":"Namibia","timeZoneName":"Africa/Windhoek","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":24099,"modificationDate":"2014-08-19"}, -{"geonameId":"2715573","name":"Falkenberg","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":24099,"modificationDate":"2017-03-18"}, -{"geonameId":"108048","name":"As Sulayyil","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":24097,"modificationDate":"2017-07-05"}, -{"geonameId":"3020601","name":"Eaubonne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24096,"modificationDate":"2019-03-26"}, -{"geonameId":"3029748","name":"Brunoy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":24096,"modificationDate":"2016-02-18"}, -{"geonameId":"3095151","name":"Kościan","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":24096,"modificationDate":"2019-09-05"}, -{"geonameId":"4526576","name":"Trotwood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24096,"modificationDate":"2017-05-23"}, -{"geonameId":"2875417","name":"Lüdinghausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24094,"modificationDate":"2015-09-04"}, -{"geonameId":"1270237","name":"Hastināpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24093,"modificationDate":"2015-08-07"}, -{"geonameId":"4839704","name":"North Haven","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24093,"modificationDate":"2017-05-23"}, -{"geonameId":"2761669","name":"Weinzierl bei Krems","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":24092,"modificationDate":"2013-07-28"}, -{"geonameId":"1260135","name":"Pāthardi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24091,"modificationDate":"2014-10-13"}, -{"geonameId":"7262622","name":"Summerlin South","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":24085,"modificationDate":"2012-12-24"}, -{"geonameId":"2023782","name":"Gusinoozyorsk","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":24083,"modificationDate":"2014-04-26"}, -{"geonameId":"1630416","name":"Pundong","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":24081,"modificationDate":"2012-01-17"}, -{"geonameId":"1273856","name":"Colgong","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24081,"modificationDate":"2015-12-05"}, -{"geonameId":"1274389","name":"Chettipalayam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24080,"modificationDate":"2020-06-10"}, -{"geonameId":"1263949","name":"Manāsa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24078,"modificationDate":"2018-07-17"}, -{"geonameId":"7281805","name":"Caroline Springs","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":24077,"modificationDate":"2019-07-18"}, -{"geonameId":"2436400","name":"Ati","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":24074,"modificationDate":"2012-01-18"}, -{"geonameId":"3544393","name":"Perico","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":24073,"modificationDate":"2015-12-06"}, -{"geonameId":"2640908","name":"Ormskirk","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24073,"modificationDate":"2017-06-12"}, -{"geonameId":"3181631","name":"Bra","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":24072,"modificationDate":"2015-08-05"}, -{"geonameId":"1741550","name":"Tanjung Tokong","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":24071,"modificationDate":"2012-01-17"}, -{"geonameId":"154638","name":"Matai","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24070,"modificationDate":"2018-12-04"}, -{"geonameId":"3116562","name":"Molins de Rei","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":24067,"modificationDate":"2010-04-22"}, -{"geonameId":"5100776","name":"Mahwah","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24062,"modificationDate":"2017-05-23"}, -{"geonameId":"1505074","name":"Kalachinsk","countryName":"Russia","timeZoneName":"Asia/Omsk","timeZoneOffsetNameWithoutDst":"Omsk Time","population":24059,"modificationDate":"2019-09-05"}, -{"geonameId":"11549788","name":"la Maternitat i Sant Ramon","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":24058,"modificationDate":"2017-05-24"}, -{"geonameId":"10180082","name":"Nuevo Belén","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24056,"modificationDate":"2017-08-16"}, -{"geonameId":"2803204","name":"Andenne","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":24055,"modificationDate":"2012-01-18"}, -{"geonameId":"1175098","name":"Chak One Hundred Twenty Nine Left","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":24053,"modificationDate":"2019-12-06"}, -{"geonameId":"2721259","name":"Boo","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":24052,"modificationDate":"2017-04-07"}, -{"geonameId":"3441354","name":"Pando","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":24047,"modificationDate":"2019-03-30"}, -{"geonameId":"2703396","name":"Jakobsberg","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":24046,"modificationDate":"2011-12-20"}, -{"geonameId":"5367696","name":"Loma Linda","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":24045,"modificationDate":"2017-03-09"}, -{"geonameId":"1276370","name":"Buchow","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24044,"modificationDate":"2020-06-10"}, -{"geonameId":"6697344","name":"Ytrebygda","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":24044,"modificationDate":"2019-12-12"}, -{"geonameId":"5130831","name":"Peekskill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24043,"modificationDate":"2017-05-23"}, -{"geonameId":"2634725","name":"Warwick","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24040,"modificationDate":"2010-10-16"}, -{"geonameId":"4160822","name":"Keystone","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24039,"modificationDate":"2011-05-14"}, -{"geonameId":"2322263","name":"Tegina","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":24037,"modificationDate":"2018-12-04"}, -{"geonameId":"3618954","name":"Jalapa","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":24037,"modificationDate":"2018-08-08"}, -{"geonameId":"725988","name":"Velingrad","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":24036,"modificationDate":"2018-12-13"}, -{"geonameId":"2638977","name":"Rugeley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24033,"modificationDate":"2018-07-03"}, -{"geonameId":"5107760","name":"Baldwin","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24033,"modificationDate":"2017-05-23"}, -{"geonameId":"1277909","name":"Bāgepalli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24031,"modificationDate":"2014-10-14"}, -{"geonameId":"3381303","name":"Kourou","countryName":"French Guiana","timeZoneName":"America/Cayenne","timeZoneOffsetNameWithoutDst":"French Guiana Time","population":24029,"modificationDate":"2019-02-26"}, -{"geonameId":"1686102","name":"Sipalay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":24029,"modificationDate":"2017-12-13"}, -{"geonameId":"1832909","name":"Yanggu","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":24027,"modificationDate":"2012-01-18"}, -{"geonameId":"2516474","name":"Icod de los Vinos","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":24024,"modificationDate":"2012-03-04"}, -{"geonameId":"2509031","name":"Abou el Hassan","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":24022,"modificationDate":"2012-10-17"}, -{"geonameId":"2648356","name":"Golborne","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24021,"modificationDate":"2011-03-03"}, -{"geonameId":"2381334","name":"Atar","countryName":"Mauritania","timeZoneName":"Africa/Nouakchott","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24021,"modificationDate":"2019-09-05"}, -{"geonameId":"738662","name":"Tosya","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":24013,"modificationDate":"2012-01-18"}, -{"geonameId":"4758023","name":"Fairfax","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24013,"modificationDate":"2017-03-09"}, -{"geonameId":"4901514","name":"Maywood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":24012,"modificationDate":"2017-05-23"}, -{"geonameId":"4172372","name":"Sebastian","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":24007,"modificationDate":"2017-03-09"}, -{"geonameId":"2395182","name":"Bembèrèkè","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":24006,"modificationDate":"2018-03-20"}, -{"geonameId":"3451071","name":"Rio Real","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":24005,"modificationDate":"2012-08-03"}, -{"geonameId":"1265905","name":"Kottūru","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":24004,"modificationDate":"2014-10-14"}, -{"geonameId":"2817576","name":"Verl","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24002,"modificationDate":"2011-07-31"}, -{"geonameId":"3594575","name":"La Gomera","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":24001,"modificationDate":"2019-05-08"}, -{"geonameId":"1810672","name":"Gantang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":24000,"modificationDate":"2019-11-07"}, -{"geonameId":"2873352","name":"Markkleeberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":24000,"modificationDate":"2015-09-05"}, -{"geonameId":"1062842","name":"Maevatanana","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":24000,"modificationDate":"2018-09-07"}, -{"geonameId":"2367660","name":"Badou","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":24000,"modificationDate":"2013-10-30"}, -{"geonameId":"3439297","name":"Caazapá","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":23996,"modificationDate":"2019-03-28"}, -{"geonameId":"5945707","name":"East Gwillimbury","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23991,"modificationDate":"2019-08-09"}, -{"geonameId":"3685435","name":"Cumaribo","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":23990,"modificationDate":"2018-10-05"}, -{"geonameId":"3687644","name":"Candelaria","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":23989,"modificationDate":"2018-09-05"}, -{"geonameId":"1852673","name":"Setakamachi-takayanagi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23985,"modificationDate":"2017-04-09"}, -{"geonameId":"1262574","name":"Mūl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23984,"modificationDate":"2015-08-07"}, -{"geonameId":"3622507","name":"Patarrá","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":23983,"modificationDate":"2016-09-07"}, -{"geonameId":"3985323","name":"San Miguel el Alto","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23982,"modificationDate":"2018-11-03"}, -{"geonameId":"790367","name":"Gornji Milanovac","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":23982,"modificationDate":"2012-04-15"}, -{"geonameId":"672926","name":"Moineşti","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23981,"modificationDate":"2012-06-12"}, -{"geonameId":"2857472","name":"Olching","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23978,"modificationDate":"2011-04-25"}, -{"geonameId":"1221714","name":"Hisor","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":23978,"modificationDate":"2016-11-22"}, -{"geonameId":"1582436","name":"Don Luan","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":23978,"modificationDate":"2014-06-04"}, -{"geonameId":"2648273","name":"Gosforth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23975,"modificationDate":"2013-08-05"}, -{"geonameId":"4996306","name":"Holt","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23973,"modificationDate":"2017-05-23"}, -{"geonameId":"4868404","name":"Muscatine","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23968,"modificationDate":"2017-05-23"}, -{"geonameId":"1861383","name":"Ishiki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23966,"modificationDate":"2017-04-09"}, -{"geonameId":"5025471","name":"Elk River","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23963,"modificationDate":"2017-05-23"}, -{"geonameId":"5836898","name":"Rock Springs","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":23962,"modificationDate":"2017-03-09"}, -{"geonameId":"3856231","name":"Embarcación","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":23961,"modificationDate":"2015-05-23"}, -{"geonameId":"4156920","name":"Golden Gate","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23961,"modificationDate":"2011-05-14"}, -{"geonameId":"2506519","name":"Arhribs","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":23958,"modificationDate":"2012-01-19"}, -{"geonameId":"6137633","name":"Saint-Constant","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23957,"modificationDate":"2016-06-22"}, -{"geonameId":"1821993","name":"Svay Rieng","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":23956,"modificationDate":"2014-05-29"}, -{"geonameId":"259973","name":"Chios","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23953,"modificationDate":"2019-01-22"}, -{"geonameId":"2255542","name":"Owando","countryName":"Republic of the Congo","timeZoneName":"Africa/Brazzaville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":23952,"modificationDate":"2011-10-27"}, -{"geonameId":"567006","name":"Davlekanovo","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":23952,"modificationDate":"2019-09-05"}, -{"geonameId":"4683462","name":"Corsicana","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23952,"modificationDate":"2017-03-09"}, -{"geonameId":"956878","name":"Scottburgh","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":23949,"modificationDate":"2012-07-12"}, -{"geonameId":"3386264","name":"Toritama","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23940,"modificationDate":"2012-08-03"}, -{"geonameId":"3523240","name":"Miahuatlan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23940,"modificationDate":"2020-06-10"}, -{"geonameId":"3168770","name":"Ruvo di Puglia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23938,"modificationDate":"2018-01-10"}, -{"geonameId":"2646393","name":"Huntingdon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23937,"modificationDate":"2017-06-12"}, -{"geonameId":"2968496","name":"Villeparisis","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23931,"modificationDate":"2019-03-26"}, -{"geonameId":"3060095","name":"Hlohovec","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":23930,"modificationDate":"2019-06-09"}, -{"geonameId":"1844751","name":"Haenam","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":23928,"modificationDate":"2012-01-18"}, -{"geonameId":"1256421","name":"Shrīrangapattana","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23927,"modificationDate":"2015-01-12"}, -{"geonameId":"4158482","name":"Hialeah Gardens","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23926,"modificationDate":"2017-03-09"}, -{"geonameId":"12156905","name":"High Park-Swansea","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23925,"modificationDate":"2020-05-02"}, -{"geonameId":"5014208","name":"Waverly","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23925,"modificationDate":"2017-05-23"}, -{"geonameId":"3467760","name":"Campo Formoso","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23920,"modificationDate":"2012-08-03"}, -{"geonameId":"2454530","name":"Koulikoro","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23919,"modificationDate":"2012-01-18"}, -{"geonameId":"2739756","name":"Fânzeres","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":23916,"modificationDate":"2018-02-07"}, -{"geonameId":"2255564","name":"Ouésso","countryName":"Republic of the Congo","timeZoneName":"Africa/Brazzaville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":23915,"modificationDate":"2019-01-12"}, -{"geonameId":"4358701","name":"Hunt Valley","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23915,"modificationDate":"2012-03-01"}, -{"geonameId":"2831250","name":"Sonneberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23908,"modificationDate":"2015-09-05"}, -{"geonameId":"4467485","name":"Fuquay-Varina","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23907,"modificationDate":"2017-05-23"}, -{"geonameId":"1274429","name":"Chengam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23904,"modificationDate":"2014-10-14"}, -{"geonameId":"3170335","name":"Pompei","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23902,"modificationDate":"2015-12-16"}, -{"geonameId":"1276642","name":"Bāzpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23900,"modificationDate":"2015-10-04"}, -{"geonameId":"1067531","name":"Belo sur Tsiribihina","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23900,"modificationDate":"2018-09-10"}, -{"geonameId":"709835","name":"Dokuchayevsk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23900,"modificationDate":"2020-06-10"}, -{"geonameId":"5295177","name":"Fountain Hills","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":23899,"modificationDate":"2017-03-09"}, -{"geonameId":"1641977","name":"Kalianget","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":23897,"modificationDate":"2012-09-06"}, -{"geonameId":"5727190","name":"Forest Grove","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":23897,"modificationDate":"2017-03-09"}, -{"geonameId":"1263751","name":"Māngrol","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23896,"modificationDate":"2014-10-14"}, -{"geonameId":"3173473","name":"Miano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23896,"modificationDate":"2019-07-24"}, -{"geonameId":"5141930","name":"Unionport","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23895,"modificationDate":"2017-04-16"}, -{"geonameId":"5020859","name":"Champlin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23894,"modificationDate":"2017-05-23"}, -{"geonameId":"4979245","name":"South Portland Gardens","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23893,"modificationDate":"2017-05-23"}, -{"geonameId":"2353197","name":"Zorgo","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23892,"modificationDate":"2013-02-08"}, -{"geonameId":"1702263","name":"Mamburao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":23892,"modificationDate":"2017-12-13"}, -{"geonameId":"743615","name":"Kazan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":23889,"modificationDate":"2012-01-18"}, -{"geonameId":"5909294","name":"Brockville","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23886,"modificationDate":"2019-09-05"}, -{"geonameId":"4508204","name":"Centerville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23882,"modificationDate":"2017-05-23"}, -{"geonameId":"8948706","name":"Casa Santa","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23880,"modificationDate":"2015-08-05"}, -{"geonameId":"2651485","name":"Daventry","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23879,"modificationDate":"2018-07-03"}, -{"geonameId":"2156942","name":"South Morang","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":23874,"modificationDate":"2019-07-18"}, -{"geonameId":"743537","name":"Kelkit","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":23870,"modificationDate":"2015-02-07"}, -{"geonameId":"2924894","name":"Freudenstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23868,"modificationDate":"2014-01-09"}, -{"geonameId":"3044083","name":"Tata","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":23868,"modificationDate":"2015-06-17"}, -{"geonameId":"3925590","name":"Yauri","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":23867,"modificationDate":"2020-05-30"}, -{"geonameId":"3097367","name":"Jawor","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":23865,"modificationDate":"2011-07-31"}, -{"geonameId":"333356","name":"Kemissie","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23861,"modificationDate":"2020-06-11"}, -{"geonameId":"1060283","name":"Maroantsetra","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23859,"modificationDate":"2018-09-10"}, -{"geonameId":"1851170","name":"Bungo-Takada-shi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23856,"modificationDate":"2017-07-26"}, -{"geonameId":"2747169","name":"Sliedrecht","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":23854,"modificationDate":"2019-04-03"}, -{"geonameId":"5329408","name":"Bloomington","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":23851,"modificationDate":"2011-05-14"}, -{"geonameId":"3457191","name":"Miguel Pereira","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23850,"modificationDate":"2012-08-03"}, -{"geonameId":"302800","name":"Pazarcık","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":23850,"modificationDate":"2010-08-03"}, -{"geonameId":"1255884","name":"Sohāgpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23849,"modificationDate":"2015-04-08"}, -{"geonameId":"1262419","name":"Murlīganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23843,"modificationDate":"2014-10-14"}, -{"geonameId":"3979856","name":"Yurécuaro","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23843,"modificationDate":"2016-05-07"}, -{"geonameId":"350376","name":"Qotur","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23842,"modificationDate":"2020-06-11"}, -{"geonameId":"2513601","name":"Montilla","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":23840,"modificationDate":"2012-03-04"}, -{"geonameId":"5816320","name":"Bainbridge Island","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":23840,"modificationDate":"2017-03-09"}, -{"geonameId":"3168257","name":"San Giovanni a Teduccio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23839,"modificationDate":"2019-07-22"}, -{"geonameId":"1859335","name":"Kitahama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23836,"modificationDate":"2018-12-05"}, -{"geonameId":"520574","name":"Nizhniy Lomov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":23835,"modificationDate":"2014-07-19"}, -{"geonameId":"2650983","name":"Droitwich","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23834,"modificationDate":"2018-07-03"}, -{"geonameId":"829005","name":"Lesnoy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":23834,"modificationDate":"2012-01-19"}, -{"geonameId":"12156842","name":"Newtonbrook West","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23831,"modificationDate":"2020-05-02"}, -{"geonameId":"2992616","name":"Montfermeil","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23829,"modificationDate":"2016-02-18"}, -{"geonameId":"2523577","name":"Rossano Stazione","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23824,"modificationDate":"2019-03-08"}, -{"geonameId":"3530584","name":"Chalchicomula","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23824,"modificationDate":"2020-06-10"}, -{"geonameId":"1153464","name":"Dok Kham Tai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":23824,"modificationDate":"2012-01-16"}, -{"geonameId":"1844045","name":"Hwacheon","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":23822,"modificationDate":"2016-10-08"}, -{"geonameId":"669289","name":"Rădăuți","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23822,"modificationDate":"2015-12-30"}, -{"geonameId":"4480285","name":"Morrisville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23820,"modificationDate":"2017-05-23"}, -{"geonameId":"4709272","name":"Marshall","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23820,"modificationDate":"2017-03-09"}, -{"geonameId":"1258203","name":"Reoti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23819,"modificationDate":"2016-02-11"}, -{"geonameId":"5278005","name":"Watertown","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23819,"modificationDate":"2017-05-23"}, -{"geonameId":"2641617","name":"New Malden","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23818,"modificationDate":"2015-02-19"}, -{"geonameId":"3570412","name":"Le Robert","countryName":"Martinique","timeZoneName":"America/Martinique","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":23814,"modificationDate":"2019-02-27"}, -{"geonameId":"315639","name":"Emet","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":23812,"modificationDate":"2013-08-06"}, -{"geonameId":"4474221","name":"Kernersville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23811,"modificationDate":"2017-05-23"}, -{"geonameId":"1271929","name":"Fatehganj West","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23810,"modificationDate":"2018-12-04"}, -{"geonameId":"2812204","name":"Weingarten","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23802,"modificationDate":"2013-02-19"}, -{"geonameId":"1252946","name":"Wārāseonī","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23800,"modificationDate":"2015-09-06"}, -{"geonameId":"301537","name":"Tonus","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":23800,"modificationDate":"2020-06-10"}, -{"geonameId":"3467261","name":"Capinzal","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23795,"modificationDate":"2012-08-03"}, -{"geonameId":"343413","name":"Āsasa","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23790,"modificationDate":"2012-01-19"}, -{"geonameId":"678301","name":"Fetești-Gară","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23789,"modificationDate":"2013-04-21"}, -{"geonameId":"1254910","name":"Tāramangalam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23788,"modificationDate":"2017-05-07"}, -{"geonameId":"1855416","name":"Niimi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23787,"modificationDate":"2017-07-22"}, -{"geonameId":"3452233","name":"Propriá","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23786,"modificationDate":"2012-08-03"}, -{"geonameId":"244128","name":"Fada","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":23786,"modificationDate":"2014-09-05"}, -{"geonameId":"3461465","name":"Iguape","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23784,"modificationDate":"2012-08-03"}, -{"geonameId":"173819","name":"Al Ḩarāk","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23784,"modificationDate":"2013-09-06"}, -{"geonameId":"616194","name":"Stepanawan-Lori","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":23782,"modificationDate":"2020-06-10"}, -{"geonameId":"3460087","name":"Jardim","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":23780,"modificationDate":"2012-08-03"}, -{"geonameId":"2521804","name":"Altea","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":23780,"modificationDate":"2012-03-04"}, -{"geonameId":"1272502","name":"Diu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23779,"modificationDate":"2020-05-14"}, -{"geonameId":"3843803","name":"Monteros","countryName":"Argentina","timeZoneName":"America/Argentina/Tucuman","timeZoneOffsetNameWithoutDst":"Argentina Time","population":23771,"modificationDate":"2016-03-10"}, -{"geonameId":"2304931","name":"Akwatia","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23766,"modificationDate":"2019-12-06"}, -{"geonameId":"5688789","name":"Dickinson","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":23765,"modificationDate":"2017-05-23"}, -{"geonameId":"3166387","name":"Sora","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23758,"modificationDate":"2015-08-04"}, -{"geonameId":"12156888","name":"Agincourt South-Malvern West","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23757,"modificationDate":"2020-05-02"}, -{"geonameId":"3522926","name":"Motozintla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23755,"modificationDate":"2018-11-03"}, -{"geonameId":"336931","name":"Genet","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23753,"modificationDate":"2012-01-19"}, -{"geonameId":"2641609","name":"New Milton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23753,"modificationDate":"2018-07-03"}, -{"geonameId":"5102162","name":"Old Bridge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23753,"modificationDate":"2017-05-23"}, -{"geonameId":"3169724","name":"Qualiano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23752,"modificationDate":"2015-08-04"}, -{"geonameId":"2010971","name":"Ngemplak","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":23750,"modificationDate":"2018-12-06"}, -{"geonameId":"2177565","name":"Ashfield","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":23749,"modificationDate":"2019-07-18"}, -{"geonameId":"150885","name":"Old Shinyanga","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23747,"modificationDate":"2016-07-26"}, -{"geonameId":"481605","name":"Troitskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":23745,"modificationDate":"2012-08-04"}, -{"geonameId":"2017487","name":"Raychikhinsk","countryName":"Russia","timeZoneName":"Asia/Yakutsk","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":23745,"modificationDate":"2019-09-05"}, -{"geonameId":"1696165","name":"Palayan City","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":23742,"modificationDate":"2017-12-13"}, -{"geonameId":"706900","name":"Kaniv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23742,"modificationDate":"2020-05-16"}, -{"geonameId":"2177671","name":"Armidale","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":23741,"modificationDate":"2019-07-18"}, -{"geonameId":"677429","name":"Gherla","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23741,"modificationDate":"2012-06-12"}, -{"geonameId":"3446974","name":"Tanguá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23740,"modificationDate":"2012-08-03"}, -{"geonameId":"2940383","name":"Calw","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23740,"modificationDate":"2014-01-09"}, -{"geonameId":"747135","name":"Ferizli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":23740,"modificationDate":"2012-05-06"}, -{"geonameId":"2511247","name":"San Pedro del Pinatar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":23738,"modificationDate":"2012-03-04"}, -{"geonameId":"3542167","name":"Río Cauto","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":23737,"modificationDate":"2016-01-07"}, -{"geonameId":"3428577","name":"San Pedro","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":23736,"modificationDate":"2015-04-22"}, -{"geonameId":"576590","name":"Bezenchuk","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":23736,"modificationDate":"2014-09-04"}, -{"geonameId":"712423","name":"Berehove","countryName":"Ukraine","timeZoneName":"Europe/Uzhgorod","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23732,"modificationDate":"2020-05-07"}, -{"geonameId":"1263723","name":"Manihāri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23731,"modificationDate":"2014-10-14"}, -{"geonameId":"689198","name":"Volnovakha","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23731,"modificationDate":"2014-12-03"}, -{"geonameId":"681017","name":"Comăneşti","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23729,"modificationDate":"2012-06-12"}, -{"geonameId":"1265169","name":"Lālganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23728,"modificationDate":"2014-10-14"}, -{"geonameId":"3461958","name":"Guanhães","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23727,"modificationDate":"2012-08-03"}, -{"geonameId":"3982034","name":"Teocaltiche","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23726,"modificationDate":"2018-11-03"}, -{"geonameId":"2974678","name":"Sèvres","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23724,"modificationDate":"2016-02-18"}, -{"geonameId":"149172","name":"Urambo","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23724,"modificationDate":"2016-07-26"}, -{"geonameId":"2807594","name":"Wipperfürth","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23723,"modificationDate":"2015-09-04"}, -{"geonameId":"3451202","name":"Rio das Pedras","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23722,"modificationDate":"2012-08-03"}, -{"geonameId":"3017609","name":"Fougères","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23719,"modificationDate":"2019-09-05"}, -{"geonameId":"154097","name":"Mgandu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23718,"modificationDate":"2016-07-26"}, -{"geonameId":"1847050","name":"Gaigeturi","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":23717,"modificationDate":"2012-01-18"}, -{"geonameId":"4355355","name":"Fort Washington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23717,"modificationDate":"2019-10-22"}, -{"geonameId":"609404","name":"Khromtau","countryName":"Kazakhstan","timeZoneName":"Asia/Aqtobe","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":23715,"modificationDate":"2018-08-07"}, -{"geonameId":"6534216","name":"Lumezzane","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23712,"modificationDate":"2012-02-15"}, -{"geonameId":"3219114","name":"Spinea-Orgnano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23710,"modificationDate":"2015-08-04"}, -{"geonameId":"1859964","name":"Kaseda-shirakame","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23710,"modificationDate":"2017-04-09"}, -{"geonameId":"2657345","name":"Ammanford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23709,"modificationDate":"2017-06-12"}, -{"geonameId":"1690060","name":"San Fernando","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":23706,"modificationDate":"2017-12-13"}, -{"geonameId":"1278941","name":"Alwaye","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23703,"modificationDate":"2017-02-04"}, -{"geonameId":"2657941","name":"Yverdon-les-Bains","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":23702,"modificationDate":"2019-09-11"}, -{"geonameId":"2215163","name":"Masallātah","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23702,"modificationDate":"2013-11-08"}, -{"geonameId":"5343171","name":"Dinuba","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":23702,"modificationDate":"2017-03-09"}, -{"geonameId":"295657","name":"Arad","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":23700,"modificationDate":"2020-06-10"}, -{"geonameId":"2268436","name":"Estoril","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":23700,"modificationDate":"2018-02-10"}, -{"geonameId":"5142182","name":"Van Nest","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23700,"modificationDate":"2019-01-17"}, -{"geonameId":"2640037","name":"Portishead","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23699,"modificationDate":"2017-06-12"}, -{"geonameId":"2270157","name":"Carnaxide","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":23698,"modificationDate":"2012-01-17"}, -{"geonameId":"687432","name":"Zdolbuniv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23697,"modificationDate":"2014-08-06"}, -{"geonameId":"2791726","name":"Marcinelle","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":23696,"modificationDate":"2020-05-25"}, -{"geonameId":"1222107","name":"Boshkengash","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":23696,"modificationDate":"2016-10-19"}, -{"geonameId":"2020838","name":"Lensk","countryName":"Russia","timeZoneName":"Asia/Yakutsk","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":23694,"modificationDate":"2019-09-05"}, -{"geonameId":"1282714","name":"Tānsen","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":23693,"modificationDate":"2019-10-19"}, -{"geonameId":"175499","name":"Nchelenge","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":23693,"modificationDate":"2012-01-17"}, -{"geonameId":"5326297","name":"Barstow","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":23692,"modificationDate":"2017-03-09"}, -{"geonameId":"2650962","name":"Droylsden","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23689,"modificationDate":"2011-03-03"}, -{"geonameId":"3654541","name":"Macas","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":23687,"modificationDate":"2017-02-07"}, -{"geonameId":"1491230","name":"Sovetskiy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":23685,"modificationDate":"2017-01-20"}, -{"geonameId":"2791964","name":"Maaseik","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":23684,"modificationDate":"2011-02-28"}, -{"geonameId":"4013094","name":"Comonfort","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23683,"modificationDate":"2018-11-03"}, -{"geonameId":"467120","name":"Yershov","countryName":"Russia","timeZoneName":"Europe/Saratov","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":23681,"modificationDate":"2019-09-05"}, -{"geonameId":"4354573","name":"Fairland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23681,"modificationDate":"2011-05-14"}, -{"geonameId":"701347","name":"Merefa","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23679,"modificationDate":"2014-06-26"}, -{"geonameId":"1266966","name":"Kharakvasla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23677,"modificationDate":"2014-10-13"}, -{"geonameId":"515698","name":"Olenegorsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":23670,"modificationDate":"2019-09-05"}, -{"geonameId":"740088","name":"Sarıkamış","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":23665,"modificationDate":"2015-04-08"}, -{"geonameId":"3169742","name":"Putignano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23661,"modificationDate":"2014-04-13"}, -{"geonameId":"5226534","name":"Brookings","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23657,"modificationDate":"2017-05-23"}, -{"geonameId":"1272962","name":"Dhanera","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23656,"modificationDate":"2014-10-13"}, -{"geonameId":"1259907","name":"Penugonda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23654,"modificationDate":"2014-10-10"}, -{"geonameId":"3170446","name":"Poggioreale","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23654,"modificationDate":"2019-07-24"}, -{"geonameId":"4885186","name":"Blue Island","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23652,"modificationDate":"2017-05-23"}, -{"geonameId":"158027","name":"Kibaha","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23651,"modificationDate":"2016-07-26"}, -{"geonameId":"5026291","name":"Faribault","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23650,"modificationDate":"2017-05-23"}, -{"geonameId":"4015022","name":"Castaños","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":23649,"modificationDate":"2018-11-03"}, -{"geonameId":"3085807","name":"Skawina","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":23647,"modificationDate":"2010-09-10"}, -{"geonameId":"4745272","name":"Baileys Crossroads","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23643,"modificationDate":"2011-05-15"}, -{"geonameId":"2915613","name":"Gross-Gerau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23641,"modificationDate":"2020-06-10"}, -{"geonameId":"2657215","name":"Arbroath","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23640,"modificationDate":"2017-06-12"}, -{"geonameId":"1263522","name":"Mariāni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23640,"modificationDate":"2014-10-13"}, -{"geonameId":"3060308","name":"Dunajská Streda","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":23639,"modificationDate":"2019-09-05"}, -{"geonameId":"2549356","name":"Arfoud","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":23637,"modificationDate":"2019-10-21"}, -{"geonameId":"2977388","name":"Saint-Pol-sur-Mer","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23635,"modificationDate":"2016-02-18"}, -{"geonameId":"3077539","name":"Chrudim","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":23630,"modificationDate":"2019-09-05"}, -{"geonameId":"1509852","name":"Bogotol","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":23622,"modificationDate":"2019-09-05"}, -{"geonameId":"6691076","name":"Neuehrenfeld","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23621,"modificationDate":"2015-03-19"}, -{"geonameId":"2641942","name":"Musselburgh","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23620,"modificationDate":"2017-06-12"}, -{"geonameId":"3533056","name":"Allende","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23620,"modificationDate":"2018-11-03"}, -{"geonameId":"3448558","name":"São Luís de Montes Belos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23619,"modificationDate":"2012-08-03"}, -{"geonameId":"1507116","name":"Dudinka","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":23619,"modificationDate":"2019-09-05"}, -{"geonameId":"3589404","name":"Santa Cruz del Quiché","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":23618,"modificationDate":"2017-03-04"}, -{"geonameId":"3088034","name":"Pruszcz Gdański","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":23618,"modificationDate":"2015-11-03"}, -{"geonameId":"149775","name":"Songwa","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23618,"modificationDate":"2016-07-26"}, -{"geonameId":"2395261","name":"Bassila","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":23616,"modificationDate":"2018-03-26"}, -{"geonameId":"5591778","name":"Eagle","countryName":"United States","timeZoneName":"America/Boise","timeZoneOffsetNameWithoutDst":"Mountain Time","population":23612,"modificationDate":"2017-03-09"}, -{"geonameId":"6049429","name":"Langley","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":23606,"modificationDate":"2019-02-26"}, -{"geonameId":"3569546","name":"Aguada de Pasajeros","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":23606,"modificationDate":"2016-11-21"}, -{"geonameId":"3044681","name":"Szentendre","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":23606,"modificationDate":"2019-09-24"}, -{"geonameId":"4166066","name":"Norland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23604,"modificationDate":"2010-01-29"}, -{"geonameId":"1181352","name":"Chawinda","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":23599,"modificationDate":"2019-12-06"}, -{"geonameId":"640124","name":"Raisio","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23597,"modificationDate":"2015-06-18"}, -{"geonameId":"2789471","name":"Oupeye","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":23594,"modificationDate":"2011-03-21"}, -{"geonameId":"1527260","name":"Tash-Kumyr","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":23594,"modificationDate":"2015-06-07"}, -{"geonameId":"921753","name":"Moutsamoudou","countryName":"Comoros","timeZoneName":"Indian/Comoro","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23594,"modificationDate":"2020-06-14"}, -{"geonameId":"1623223","name":"Trucuk","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":23584,"modificationDate":"2012-01-17"}, -{"geonameId":"5104473","name":"Scotch Plains","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23584,"modificationDate":"2017-05-23"}, -{"geonameId":"3388714","name":"São Gonçalo do Amarante","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23583,"modificationDate":"2012-08-03"}, -{"geonameId":"497218","name":"Semikarakorsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":23583,"modificationDate":"2019-09-05"}, -{"geonameId":"2746804","name":"Steenbergen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":23582,"modificationDate":"2017-10-17"}, -{"geonameId":"2649833","name":"Evesham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23576,"modificationDate":"2018-07-03"}, -{"geonameId":"1283323","name":"Jaleshwar","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":23573,"modificationDate":"2019-10-19"}, -{"geonameId":"3461871","name":"Guararema","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23572,"modificationDate":"2012-03-10"}, -{"geonameId":"3008379","name":"La Madeleine","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23572,"modificationDate":"2016-02-18"}, -{"geonameId":"2290849","name":"Bouna","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23570,"modificationDate":"2016-12-03"}, -{"geonameId":"532715","name":"Lyskovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":23570,"modificationDate":"2019-09-05"}, -{"geonameId":"3905658","name":"San Ignacio de Velasco","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":23569,"modificationDate":"2017-05-08"}, -{"geonameId":"2749182","name":"Oud-Beijerland","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":23569,"modificationDate":"2019-01-30"}, -{"geonameId":"1857062","name":"Mino","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23566,"modificationDate":"2017-07-22"}, -{"geonameId":"1265323","name":"Lādwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23565,"modificationDate":"2015-04-08"}, -{"geonameId":"2510725","name":"Tacoronte","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":23562,"modificationDate":"2012-03-04"}, -{"geonameId":"1724435","name":"Bogo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":23562,"modificationDate":"2017-12-13"}, -{"geonameId":"5155858","name":"Glenville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23559,"modificationDate":"2017-12-13"}, -{"geonameId":"3460813","name":"Itambé","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23558,"modificationDate":"2012-08-03"}, -{"geonameId":"3934356","name":"Nazca","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":23556,"modificationDate":"2013-02-03"}, -{"geonameId":"4005864","name":"Juan Jose Rios","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":23553,"modificationDate":"2020-06-10"}, -{"geonameId":"3166706","name":"Seriate","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23552,"modificationDate":"2015-08-04"}, -{"geonameId":"788771","name":"Lazarevac","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":23551,"modificationDate":"2016-05-18"}, -{"geonameId":"3516060","name":"Teloloapan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23549,"modificationDate":"2018-11-03"}, -{"geonameId":"5345623","name":"El Cerrito","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":23549,"modificationDate":"2011-05-14"}, -{"geonameId":"3492984","name":"Santa Cruz de El Seibo","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":23547,"modificationDate":"2016-06-05"}, -{"geonameId":"2783456","name":"Wondelgem","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":23546,"modificationDate":"2020-05-25"}, -{"geonameId":"1262253","name":"Nagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23546,"modificationDate":"2014-10-14"}, -{"geonameId":"1730097","name":"Asia","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":23546,"modificationDate":"2017-12-13"}, -{"geonameId":"3065067","name":"Strakonice","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":23545,"modificationDate":"2018-10-13"}, -{"geonameId":"2634103","name":"Whitefield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23545,"modificationDate":"2013-08-05"}, -{"geonameId":"1272375","name":"Dorāha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23545,"modificationDate":"2015-08-07"}, -{"geonameId":"2481389","name":"Sidi Abdelli","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":23543,"modificationDate":"2012-01-19"}, -{"geonameId":"3016078","name":"Gif-sur-Yvette","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23541,"modificationDate":"2016-02-18"}, -{"geonameId":"704138","name":"Kreminna","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23538,"modificationDate":"2014-07-08"}, -{"geonameId":"1262426","name":"Morinda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23536,"modificationDate":"2015-08-07"}, -{"geonameId":"1635116","name":"Mojoagung","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":23534,"modificationDate":"2007-11-09"}, -{"geonameId":"4419290","name":"Brandon","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23529,"modificationDate":"2017-03-09"}, -{"geonameId":"587378","name":"Akdash","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":23528,"modificationDate":"2020-06-10"}, -{"geonameId":"1272259","name":"Duliāgaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23528,"modificationDate":"2016-07-04"}, -{"geonameId":"1348785","name":"Pānchla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23526,"modificationDate":"2014-10-14"}, -{"geonameId":"173598","name":"Al Kiswah","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23526,"modificationDate":"2016-12-11"}, -{"geonameId":"90353","name":"Tallkayf","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":23524,"modificationDate":"2017-07-04"}, -{"geonameId":"2112903","name":"Funehikimachi-funehiki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23524,"modificationDate":"2017-04-09"}, -{"geonameId":"1054329","name":"Vangaindrano","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23523,"modificationDate":"2018-09-10"}, -{"geonameId":"1262296","name":"Nādbai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23520,"modificationDate":"2014-10-14"}, -{"geonameId":"3836951","name":"San Martín de los Andes","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":23519,"modificationDate":"2015-04-22"}, -{"geonameId":"2513029","name":"Paiporta","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":23519,"modificationDate":"2015-06-14"}, -{"geonameId":"157198","name":"Kiomboi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23519,"modificationDate":"2016-07-26"}, -{"geonameId":"156510","name":"Kondoa","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23518,"modificationDate":"2016-07-26"}, -{"geonameId":"6615539","name":"Bourgoin-Jallieu","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23517,"modificationDate":"2020-06-17"}, -{"geonameId":"3459869","name":"Joaçaba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23516,"modificationDate":"2015-06-27"}, -{"geonameId":"1854629","name":"Ogōri-shimogō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23516,"modificationDate":"2017-04-09"}, -{"geonameId":"1851282","name":"Tadotsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23514,"modificationDate":"2017-04-09"}, -{"geonameId":"2512282","name":"Priego de Córdoba","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":23513,"modificationDate":"2012-03-04"}, -{"geonameId":"2264718","name":"Pinhal Novo","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":23510,"modificationDate":"2012-01-17"}, -{"geonameId":"3682374","name":"Fonseca","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":23509,"modificationDate":"2018-07-04"}, -{"geonameId":"1620371","name":"Ban Bueng","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":23509,"modificationDate":"2013-12-12"}, -{"geonameId":"4270356","name":"Derby","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23509,"modificationDate":"2017-05-23"}, -{"geonameId":"6128577","name":"Rouyn-Noranda","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23504,"modificationDate":"2019-08-08"}, -{"geonameId":"3033881","name":"Bègles","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23504,"modificationDate":"2020-01-08"}, -{"geonameId":"741160","name":"Oltu","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":23504,"modificationDate":"2014-11-05"}, -{"geonameId":"3817649","name":"San Martín Cuautlalpan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23501,"modificationDate":"2018-11-03"}, -{"geonameId":"535334","name":"L’govskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":23500,"modificationDate":"2012-01-17"}, -{"geonameId":"1268962","name":"Jhinjhak","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23499,"modificationDate":"2020-06-10"}, -{"geonameId":"720276","name":"Hajdúszoboszló","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":23496,"modificationDate":"2019-10-07"}, -{"geonameId":"1264037","name":"Malpe","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23496,"modificationDate":"2015-12-05"}, -{"geonameId":"734643","name":"Pylaía","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23494,"modificationDate":"2014-03-08"}, -{"geonameId":"1275488","name":"Birūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23493,"modificationDate":"2014-10-14"}, -{"geonameId":"3095797","name":"Koło","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":23493,"modificationDate":"2019-09-05"}, -{"geonameId":"5795906","name":"Graham","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":23491,"modificationDate":"2011-05-14"}, -{"geonameId":"3178141","name":"Copertino","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23489,"modificationDate":"2014-04-13"}, -{"geonameId":"3450063","name":"Santa Maria da Vitória","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23488,"modificationDate":"2016-11-10"}, -{"geonameId":"2789413","name":"Overijse","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":23486,"modificationDate":"2011-01-25"}, -{"geonameId":"3618411","name":"La Paz Centro","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":23481,"modificationDate":"2016-10-06"}, -{"geonameId":"1857260","name":"Mikuni","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23480,"modificationDate":"2017-04-09"}, -{"geonameId":"709054","name":"Hadyach","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23480,"modificationDate":"2020-05-18"}, -{"geonameId":"1263917","name":"Māndal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23478,"modificationDate":"2014-10-14"}, -{"geonameId":"4358864","name":"Ilchester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23476,"modificationDate":"2011-05-14"}, -{"geonameId":"754351","name":"Ząbki","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":23473,"modificationDate":"2014-06-26"}, -{"geonameId":"2827552","name":"Stellingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23472,"modificationDate":"2017-08-14"}, -{"geonameId":"1256468","name":"Shīshgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23471,"modificationDate":"2015-10-04"}, -{"geonameId":"3986088","name":"San Jose de Iturbide","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23471,"modificationDate":"2020-06-10"}, -{"geonameId":"4146901","name":"Bayonet Point","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23467,"modificationDate":"2011-05-14"}, -{"geonameId":"1267226","name":"Keshorai Pātan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23464,"modificationDate":"2014-10-14"}, -{"geonameId":"3471487","name":"Armação de Búzios","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23463,"modificationDate":"2013-04-03"}, -{"geonameId":"337712","name":"Finote Selam","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23463,"modificationDate":"2012-01-19"}, -{"geonameId":"1163021","name":"Ubauro","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":23462,"modificationDate":"2020-01-08"}, -{"geonameId":"3676928","name":"Lemos","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":23459,"modificationDate":"2020-06-11"}, -{"geonameId":"4935623","name":"Easton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23459,"modificationDate":"2017-05-23"}, -{"geonameId":"2643776","name":"Lofthouse","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23458,"modificationDate":"2013-07-11"}, -{"geonameId":"257365","name":"Mégara","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23456,"modificationDate":"2019-10-23"}, -{"geonameId":"4900579","name":"Loves Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23455,"modificationDate":"2019-02-28"}, -{"geonameId":"5146286","name":"Avon Lake","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23453,"modificationDate":"2017-05-23"}, -{"geonameId":"3172243","name":"Nocera Superiore","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23452,"modificationDate":"2015-08-04"}, -{"geonameId":"5392281","name":"San Lorenzo","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":23452,"modificationDate":"2011-05-14"}, -{"geonameId":"1260022","name":"Pawni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23450,"modificationDate":"2015-08-07"}, -{"geonameId":"4902763","name":"Morton Grove","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23448,"modificationDate":"2017-05-23"}, -{"geonameId":"783148","name":"Gjirokastra","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":23437,"modificationDate":"2020-06-11"}, -{"geonameId":"2640496","name":"Penarth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23437,"modificationDate":"2013-09-10"}, -{"geonameId":"5123477","name":"Kingston","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23436,"modificationDate":"2017-05-23"}, -{"geonameId":"2167280","name":"Epping","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":23435,"modificationDate":"2019-07-18"}, -{"geonameId":"2657908","name":"Zug","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":23435,"modificationDate":"2018-08-28"}, -{"geonameId":"1170219","name":"Mithi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":23431,"modificationDate":"2019-12-06"}, -{"geonameId":"2655582","name":"Bishopbriggs","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23430,"modificationDate":"2017-06-12"}, -{"geonameId":"1274342","name":"Chhātāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23425,"modificationDate":"2015-12-05"}, -{"geonameId":"3073254","name":"Kopřivnice","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":23424,"modificationDate":"2019-03-19"}, -{"geonameId":"2655942","name":"Belper","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23417,"modificationDate":"2018-07-03"}, -{"geonameId":"4208442","name":"McDonough","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23417,"modificationDate":"2017-03-09"}, -{"geonameId":"5007531","name":"Romulus","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23417,"modificationDate":"2017-05-23"}, -{"geonameId":"2845222","name":"Ronnenberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23416,"modificationDate":"2015-09-04"}, -{"geonameId":"6254845","name":"Dipayal","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":23416,"modificationDate":"2019-10-19"}, -{"geonameId":"1276754","name":"Basni","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23414,"modificationDate":"2014-10-14"}, -{"geonameId":"554679","name":"Kabanovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":23414,"modificationDate":"2015-03-13"}, -{"geonameId":"5043779","name":"Rosemount","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23413,"modificationDate":"2017-05-23"}, -{"geonameId":"1266847","name":"Khātegaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23405,"modificationDate":"2015-08-07"}, -{"geonameId":"1258553","name":"Rāmtek","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23404,"modificationDate":"2015-08-07"}, -{"geonameId":"330811","name":"Metehara","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23403,"modificationDate":"2020-06-11"}, -{"geonameId":"170044","name":"Ḩalfāyā","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23403,"modificationDate":"2017-10-30"}, -{"geonameId":"2662689","name":"Visby","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":23402,"modificationDate":"2019-09-05"}, -{"geonameId":"3675287","name":"María la Baja","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":23401,"modificationDate":"2018-07-04"}, -{"geonameId":"3171778","name":"Ottaviano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23396,"modificationDate":"2015-08-03"}, -{"geonameId":"12070059","name":"Chiaiano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23396,"modificationDate":"2019-07-22"}, -{"geonameId":"1610459","name":"Kamalasai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":23393,"modificationDate":"2012-01-16"}, -{"geonameId":"1256968","name":"Sāvantvādi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23384,"modificationDate":"2014-10-13"}, -{"geonameId":"2933627","name":"Eckernförde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23383,"modificationDate":"2015-09-04"}, -{"geonameId":"595689","name":"Plunge","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23381,"modificationDate":"2014-09-24"}, -{"geonameId":"1117656","name":"Ban Talat Nua","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":23381,"modificationDate":"2010-06-08"}, -{"geonameId":"4943021","name":"Mansfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23380,"modificationDate":"2017-05-23"}, -{"geonameId":"712967","name":"Bakhmach","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23379,"modificationDate":"2012-10-07"}, -{"geonameId":"3457107","name":"Mirandopólis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23378,"modificationDate":"2012-08-03"}, -{"geonameId":"2265927","name":"Monte Estoril","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":23375,"modificationDate":"2018-02-06"}, -{"geonameId":"11886891","name":"Fedorovskiy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":23375,"modificationDate":"2018-06-14"}, -{"geonameId":"73560","name":"Lahj","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":23375,"modificationDate":"2020-06-10"}, -{"geonameId":"3653295","name":"Pedro Carbo","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":23372,"modificationDate":"2017-02-07"}, -{"geonameId":"1851622","name":"Sobue","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23372,"modificationDate":"2017-04-09"}, -{"geonameId":"535886","name":"Lermontov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":23369,"modificationDate":"2019-09-05"}, -{"geonameId":"6534280","name":"Cesano Boscone","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23368,"modificationDate":"2018-03-26"}, -{"geonameId":"2270258","name":"Caniço","countryName":"Portugal","timeZoneName":"Atlantic/Madeira","timeZoneOffsetNameWithoutDst":"Western European Time","population":23368,"modificationDate":"2019-10-10"}, -{"geonameId":"5364275","name":"Laguna Beach","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":23365,"modificationDate":"2017-03-09"}, -{"geonameId":"2921139","name":"Geretsried","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23364,"modificationDate":"2013-02-19"}, -{"geonameId":"2966794","name":"Balbriggan","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23364,"modificationDate":"2018-08-03"}, -{"geonameId":"4561407","name":"Springfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23363,"modificationDate":"2017-05-23"}, -{"geonameId":"1349041","name":"Monoharpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23362,"modificationDate":"2014-10-14"}, -{"geonameId":"3095126","name":"Kościerzyna","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":23361,"modificationDate":"2010-09-13"}, -{"geonameId":"1277902","name":"Baghaparana","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23360,"modificationDate":"2020-06-10"}, -{"geonameId":"2521215","name":"Baza","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":23359,"modificationDate":"2012-03-04"}, -{"geonameId":"2783089","name":"Zwevegem","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":23358,"modificationDate":"2012-01-18"}, -{"geonameId":"4147290","name":"Bellview","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23355,"modificationDate":"2011-05-14"}, -{"geonameId":"1859234","name":"Kitsuki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23353,"modificationDate":"2017-07-22"}, -{"geonameId":"2841693","name":"Sangerhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23347,"modificationDate":"2015-09-04"}, -{"geonameId":"3616682","name":"San Marcos","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":23347,"modificationDate":"2018-08-08"}, -{"geonameId":"9212569","name":"Injambakkam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23346,"modificationDate":"2014-10-14"}, -{"geonameId":"3088065","name":"Prudnik","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":23343,"modificationDate":"2010-09-25"}, -{"geonameId":"3194351","name":"Novo Mesto","countryName":"Slovenia","timeZoneName":"Europe/Ljubljana","timeZoneOffsetNameWithoutDst":"Central European Time","population":23341,"modificationDate":"2019-09-05"}, -{"geonameId":"2111461","name":"Ōkawara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23340,"modificationDate":"2017-04-09"}, -{"geonameId":"2482447","name":"Salah Bey","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":23339,"modificationDate":"2020-05-19"}, -{"geonameId":"1272546","name":"Dinanagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23339,"modificationDate":"2020-06-10"}, -{"geonameId":"1611135","name":"Chok Chai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":23337,"modificationDate":"2018-07-16"}, -{"geonameId":"3182518","name":"Bagnoli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23333,"modificationDate":"2019-07-22"}, -{"geonameId":"3029213","name":"Cahors","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23331,"modificationDate":"2019-09-05"}, -{"geonameId":"2649198","name":"Formby","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23329,"modificationDate":"2017-06-12"}, -{"geonameId":"2654269","name":"Burnham-on-Sea","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23325,"modificationDate":"2018-07-03"}, -{"geonameId":"8858102","name":"Teotihuacán de Arista","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23325,"modificationDate":"2014-04-11"}, -{"geonameId":"3402528","name":"Catende","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23322,"modificationDate":"2012-08-03"}, -{"geonameId":"1255667","name":"Soygaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23320,"modificationDate":"2018-12-04"}, -{"geonameId":"2905457","name":"Herzogenaurach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23319,"modificationDate":"2013-02-19"}, -{"geonameId":"2521985","name":"Alhaurín el Grande","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":23319,"modificationDate":"2012-03-04"}, -{"geonameId":"4343327","name":"Terrytown","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23319,"modificationDate":"2011-05-14"}, -{"geonameId":"293153","name":"Yoqne‘am ‘Illit","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":23311,"modificationDate":"2020-04-25"}, -{"geonameId":"2993875","name":"Millau","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23307,"modificationDate":"2020-06-10"}, -{"geonameId":"3013619","name":"Hazebrouck","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23307,"modificationDate":"2016-02-18"}, -{"geonameId":"1750974","name":"Ladang Seri Kundang","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":23307,"modificationDate":"2012-01-17"}, -{"geonameId":"148987","name":"Vikindu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23307,"modificationDate":"2016-07-26"}, -{"geonameId":"3492517","name":"Tamboril","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":23304,"modificationDate":"2016-06-05"}, -{"geonameId":"1850345","name":"Toba","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23303,"modificationDate":"2017-07-22"}, -{"geonameId":"4004267","name":"Dei Rio Ixtlan","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":23303,"modificationDate":"2020-06-10"}, -{"geonameId":"3888749","name":"Graneros","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":23301,"modificationDate":"2013-01-11"}, -{"geonameId":"3115171","name":"Olesa de Montserrat","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":23301,"modificationDate":"2014-12-28"}, -{"geonameId":"3592237","name":"Nebaj","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":23301,"modificationDate":"2017-03-04"}, -{"geonameId":"2798873","name":"Ekeren","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":23300,"modificationDate":"2020-04-05"}, -{"geonameId":"1283711","name":"Baglung Bazar","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":23296,"modificationDate":"2020-06-10"}, -{"geonameId":"1153513","name":"Damnoen Saduak","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":23296,"modificationDate":"2014-08-01"}, -{"geonameId":"152376","name":"Mwadui","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23296,"modificationDate":"2016-07-26"}, -{"geonameId":"1732706","name":"Pekan Nenas","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":23292,"modificationDate":"2012-01-17"}, -{"geonameId":"514706","name":"Osa","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":23292,"modificationDate":"2019-09-05"}, -{"geonameId":"1253987","name":"Udaipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23290,"modificationDate":"2018-05-27"}, -{"geonameId":"762381","name":"Piastów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":23290,"modificationDate":"2011-07-31"}, -{"geonameId":"1750582","name":"Peringat","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":23288,"modificationDate":"2018-12-04"}, -{"geonameId":"1184752","name":"Akora","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":23288,"modificationDate":"2019-12-06"}, -{"geonameId":"1261722","name":"Nasriganji","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23286,"modificationDate":"2020-06-10"}, -{"geonameId":"2523166","name":"Selargius","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23285,"modificationDate":"2014-04-13"}, -{"geonameId":"2654635","name":"Broadstairs","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23283,"modificationDate":"2018-07-03"}, -{"geonameId":"2701223","name":"Katrineholm","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":23283,"modificationDate":"2017-03-18"}, -{"geonameId":"1269413","name":"Jaleshwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23280,"modificationDate":"2014-10-14"}, -{"geonameId":"1276381","name":"Bewar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23280,"modificationDate":"2019-02-21"}, -{"geonameId":"2658216","name":"Uster","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":23279,"modificationDate":"2019-09-10"}, -{"geonameId":"3442568","name":"Fray Bentos","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":23279,"modificationDate":"2017-11-29"}, -{"geonameId":"2795783","name":"Heverlee","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":23278,"modificationDate":"2020-04-05"}, -{"geonameId":"3175384","name":"Ivrea","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23278,"modificationDate":"2019-09-28"}, -{"geonameId":"2281951","name":"Sassandra","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23274,"modificationDate":"2013-05-11"}, -{"geonameId":"6180550","name":"Whitehorse","countryName":"Canada","timeZoneName":"America/Whitehorse","timeZoneOffsetNameWithoutDst":"Pacific Time","population":23272,"modificationDate":"2019-09-05"}, -{"geonameId":"4152311","name":"Crestview","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23270,"modificationDate":"2017-03-09"}, -{"geonameId":"933959","name":"Triolet","countryName":"Mauritius","timeZoneName":"Indian/Mauritius","timeZoneOffsetNameWithoutDst":"Mauritius Time","population":23269,"modificationDate":"2019-07-11"}, -{"geonameId":"5088262","name":"Keene","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23265,"modificationDate":"2017-05-23"}, -{"geonameId":"2364812","name":"Niamtougou","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23261,"modificationDate":"2014-08-18"}, -{"geonameId":"4580569","name":"Greenwood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23260,"modificationDate":"2017-03-09"}, -{"geonameId":"3427431","name":"Villa Gesell","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":23257,"modificationDate":"2016-01-30"}, -{"geonameId":"1265400","name":"Koothanallur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23257,"modificationDate":"2014-10-14"}, -{"geonameId":"3566134","name":"Calimete","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":23255,"modificationDate":"2014-08-07"}, -{"geonameId":"1639337","name":"Kroya","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":23255,"modificationDate":"2012-01-17"}, -{"geonameId":"11549814","name":"el Besòs i el Maresme","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":23254,"modificationDate":"2017-05-24"}, -{"geonameId":"618365","name":"Dubossary","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23254,"modificationDate":"2020-06-10"}, -{"geonameId":"3458778","name":"Laranjeiras","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23251,"modificationDate":"2012-08-03"}, -{"geonameId":"2264526","name":"Pontinha","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":23249,"modificationDate":"2012-01-17"}, -{"geonameId":"586763","name":"Divichibazar","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":23248,"modificationDate":"2014-06-26"}, -{"geonameId":"723195","name":"Vranov","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":23246,"modificationDate":"2020-06-10"}, -{"geonameId":"2156878","name":"Mornington","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":23245,"modificationDate":"2019-07-18"}, -{"geonameId":"2744549","name":"Wierden","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":23244,"modificationDate":"2017-10-17"}, -{"geonameId":"706571","name":"Kozyatyn","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23241,"modificationDate":"2020-05-13"}, -{"geonameId":"3522924","name":"Motul","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":23240,"modificationDate":"2018-11-03"}, -{"geonameId":"2725901","name":"Ängelholm","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":23240,"modificationDate":"2017-04-02"}, -{"geonameId":"5468773","name":"Gallup","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":23240,"modificationDate":"2017-03-09"}, -{"geonameId":"2747584","name":"Schijndel","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":23239,"modificationDate":"2017-10-17"}, -{"geonameId":"711416","name":"Brody","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23239,"modificationDate":"2014-08-06"}, -{"geonameId":"12156896","name":"Bedford Park-Nortown","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23236,"modificationDate":"2020-05-02"}, -{"geonameId":"101322","name":"Turabah","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":23235,"modificationDate":"2012-01-16"}, -{"geonameId":"5104835","name":"South Old Bridge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23233,"modificationDate":"2017-05-23"}, -{"geonameId":"10062607","name":"Naujamiestis","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23232,"modificationDate":"2015-02-12"}, -{"geonameId":"3126890","name":"Cambre","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":23231,"modificationDate":"2018-06-08"}, -{"geonameId":"4535389","name":"Duncan","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23231,"modificationDate":"2017-03-09"}, -{"geonameId":"3177315","name":"Fabriano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23230,"modificationDate":"2015-08-03"}, -{"geonameId":"3452179","name":"Quaraí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23229,"modificationDate":"2012-08-03"}, -{"geonameId":"1259638","name":"Pindwāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23229,"modificationDate":"2014-10-14"}, -{"geonameId":"2802433","name":"Beersel","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":23228,"modificationDate":"2011-02-01"}, -{"geonameId":"3167744","name":"San Sebastiano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23228,"modificationDate":"2014-05-20"}, -{"geonameId":"3084084","name":"Świebodzice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":23228,"modificationDate":"2019-09-12"}, -{"geonameId":"2749780","name":"Nuenen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":23223,"modificationDate":"2017-10-17"}, -{"geonameId":"2501323","name":"Chiffa","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":23218,"modificationDate":"2012-01-19"}, -{"geonameId":"1822207","name":"Sisophon","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":23218,"modificationDate":"2018-07-04"}, -{"geonameId":"3015160","name":"Grande-Synthe","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23213,"modificationDate":"2016-02-18"}, -{"geonameId":"2947739","name":"Blieskastel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23212,"modificationDate":"2015-09-05"}, -{"geonameId":"4198322","name":"Griffin","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23211,"modificationDate":"2017-03-09"}, -{"geonameId":"3667728","name":"Sucre","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":23210,"modificationDate":"2018-09-05"}, -{"geonameId":"3668087","name":"Sibaté","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":23208,"modificationDate":"2018-07-04"}, -{"geonameId":"1261667","name":"Navalgund","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23208,"modificationDate":"2014-10-14"}, -{"geonameId":"2258378","name":"Loandjili","countryName":"Republic of the Congo","timeZoneName":"Africa/Brazzaville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":23204,"modificationDate":"2019-01-09"}, -{"geonameId":"4890009","name":"Dolton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23197,"modificationDate":"2017-05-23"}, -{"geonameId":"3172479","name":"Muggiò","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23193,"modificationDate":"2014-04-13"}, -{"geonameId":"2854386","name":"Pfaffenhofen an der Ilm","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23192,"modificationDate":"2013-03-18"}, -{"geonameId":"99060","name":"Faisailiya","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":23189,"modificationDate":"2020-06-10"}, -{"geonameId":"2525560","name":"Biancavilla","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23188,"modificationDate":"2014-04-13"}, -{"geonameId":"2221607","name":"Tscholere","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":23187,"modificationDate":"2020-06-10"}, -{"geonameId":"2474506","name":"Zeribet el Oued","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":23187,"modificationDate":"2012-01-19"}, -{"geonameId":"2641134","name":"Oadby","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23184,"modificationDate":"2011-03-03"}, -{"geonameId":"1851935","name":"Shirahama-ku","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23180,"modificationDate":"2020-06-11"}, -{"geonameId":"765191","name":"Marki","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":23177,"modificationDate":"2011-07-31"}, -{"geonameId":"4413872","name":"Webster Groves","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23177,"modificationDate":"2017-05-23"}, -{"geonameId":"2348783","name":"Awgu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":23175,"modificationDate":"2016-01-30"}, -{"geonameId":"3925863","name":"Yanacancha","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":23175,"modificationDate":"2012-07-19"}, -{"geonameId":"3112761","name":"Ponteareas","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":23172,"modificationDate":"2015-05-30"}, -{"geonameId":"2748392","name":"Putten","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":23168,"modificationDate":"2017-10-17"}, -{"geonameId":"4376482","name":"Belton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23168,"modificationDate":"2017-05-23"}, -{"geonameId":"4422442","name":"Columbus","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23168,"modificationDate":"2017-03-09"}, -{"geonameId":"3393876","name":"Nova Cruz","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23166,"modificationDate":"2012-08-03"}, -{"geonameId":"1267044","name":"Khandela","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23164,"modificationDate":"2014-10-14"}, -{"geonameId":"88834","name":"Tūkrah","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":23164,"modificationDate":"2012-12-05"}, -{"geonameId":"1274914","name":"Chākan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23161,"modificationDate":"2014-10-13"}, -{"geonameId":"741487","name":"Mudanya","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":23161,"modificationDate":"2013-05-08"}, -{"geonameId":"1024701","name":"Macia","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":23156,"modificationDate":"2012-01-19"}, -{"geonameId":"3448846","name":"São João Nepomuceno","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23154,"modificationDate":"2012-08-03"}, -{"geonameId":"8858103","name":"Jesús del Monte","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23150,"modificationDate":"2014-04-11"}, -{"geonameId":"4685892","name":"Denison","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23150,"modificationDate":"2017-03-09"}, -{"geonameId":"5115835","name":"East Elmhurst","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23150,"modificationDate":"2018-11-24"}, -{"geonameId":"1835096","name":"Taesal-li","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":23149,"modificationDate":"2012-01-18"}, -{"geonameId":"8348930","name":"Robina","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":23140,"modificationDate":"2019-07-18"}, -{"geonameId":"1692184","name":"Quiapo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":23138,"modificationDate":"2017-12-13"}, -{"geonameId":"4703078","name":"Kerrville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23136,"modificationDate":"2017-03-09"}, -{"geonameId":"3005825","name":"La Valette-du-Var","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23134,"modificationDate":"2019-08-07"}, -{"geonameId":"1278964","name":"Alot","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23134,"modificationDate":"2014-10-14"}, -{"geonameId":"4216948","name":"Pooler","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23133,"modificationDate":"2017-03-09"}, -{"geonameId":"1272822","name":"Dhāruhera","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23132,"modificationDate":"2015-01-07"}, -{"geonameId":"5262649","name":"Mequon","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23132,"modificationDate":"2017-05-23"}, -{"geonameId":"2841374","name":"Sasel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23131,"modificationDate":"2017-10-17"}, -{"geonameId":"1265521","name":"Kurduvādi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23131,"modificationDate":"2014-10-13"}, -{"geonameId":"4449620","name":"Vicksburg","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23131,"modificationDate":"2017-03-09"}, -{"geonameId":"3532964","name":"Alvarado","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23128,"modificationDate":"2018-11-03"}, -{"geonameId":"4178775","name":"Wright","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23127,"modificationDate":"2011-05-14"}, -{"geonameId":"5127550","name":"Morrisania","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23127,"modificationDate":"2017-04-16"}, -{"geonameId":"3386177","name":"Trairi","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23126,"modificationDate":"2012-08-03"}, -{"geonameId":"475938","name":"Vel’sk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":23126,"modificationDate":"2015-06-17"}, -{"geonameId":"1274676","name":"Chāndur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23125,"modificationDate":"2016-03-10"}, -{"geonameId":"3514134","name":"Zacualtipán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23125,"modificationDate":"2018-11-03"}, -{"geonameId":"293835","name":"Qiryat Malachi","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":23124,"modificationDate":"2020-06-10"}, -{"geonameId":"2647227","name":"Heanor","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23122,"modificationDate":"2018-07-03"}, -{"geonameId":"4167536","name":"Palm City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23120,"modificationDate":"2011-05-14"}, -{"geonameId":"2665171","name":"Vänersborg","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":23119,"modificationDate":"2017-03-18"}, -{"geonameId":"338726","name":"Dodola","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23116,"modificationDate":"2012-01-19"}, -{"geonameId":"4943888","name":"Middleborough","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23116,"modificationDate":"2017-05-29"}, -{"geonameId":"3148129","name":"Larvik","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":23113,"modificationDate":"2019-12-12"}, -{"geonameId":"2266988","name":"Loulé","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":23109,"modificationDate":"2018-05-01"}, -{"geonameId":"12061022","name":"Thị Trấn Tân Thành","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":23109,"modificationDate":"2019-07-12"}, -{"geonameId":"8858104","name":"San Jorge Pueblo Nuevo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23107,"modificationDate":"2014-04-11"}, -{"geonameId":"4347426","name":"Arnold","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23106,"modificationDate":"2011-05-14"}, -{"geonameId":"3675252","name":"Mariquita","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":23104,"modificationDate":"2020-06-11"}, -{"geonameId":"585225","name":"Aja Kabul","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":23102,"modificationDate":"2020-06-10"}, -{"geonameId":"3073660","name":"Klatovy","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":23102,"modificationDate":"2019-03-19"}, -{"geonameId":"1899102","name":"Nagato","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23101,"modificationDate":"2017-07-22"}, -{"geonameId":"330546","name":"Massawa","countryName":"Eritrea","timeZoneName":"Africa/Asmara","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23100,"modificationDate":"2012-08-05"}, -{"geonameId":"7281819","name":"Fujikawaguchiko","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23097,"modificationDate":"2017-04-09"}, -{"geonameId":"785113","name":"Tearce","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":23096,"modificationDate":"2017-09-05"}, -{"geonameId":"3522251","name":"Oxkutzkab","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":23096,"modificationDate":"2018-11-03"}, -{"geonameId":"5359864","name":"Isla Vista","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":23096,"modificationDate":"2011-05-14"}, -{"geonameId":"2991481","name":"Moulins","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23095,"modificationDate":"2019-04-10"}, -{"geonameId":"1266322","name":"Colachel","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23095,"modificationDate":"2014-10-14"}, -{"geonameId":"1645749","name":"Dampit","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":23094,"modificationDate":"2012-01-17"}, -{"geonameId":"8348078","name":"Wyndham Vale","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":23093,"modificationDate":"2019-07-18"}, -{"geonameId":"2956005","name":"Annaberg-Buchholz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23092,"modificationDate":"2015-09-05"}, -{"geonameId":"7260233","name":"Vero Beach South","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23092,"modificationDate":"2011-05-14"}, -{"geonameId":"3890949","name":"El Monte","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":23090,"modificationDate":"2018-04-09"}, -{"geonameId":"2721946","name":"Björlanda","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":23088,"modificationDate":"2017-03-18"}, -{"geonameId":"2829457","name":"Starnberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23086,"modificationDate":"2019-09-05"}, -{"geonameId":"1262089","name":"Nakūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23084,"modificationDate":"2015-04-08"}, -{"geonameId":"4134716","name":"Van Buren","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23081,"modificationDate":"2017-05-23"}, -{"geonameId":"4890549","name":"East Peoria","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":23080,"modificationDate":"2017-05-23"}, -{"geonameId":"3545040","name":"Palmira","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":23078,"modificationDate":"2016-01-07"}, -{"geonameId":"2992003","name":"Mont-Saint-Aignan","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23078,"modificationDate":"2016-02-18"}, -{"geonameId":"1162285","name":"Zafarwal","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":23078,"modificationDate":"2019-12-06"}, -{"geonameId":"4360287","name":"Landover","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23078,"modificationDate":"2011-05-15"}, -{"geonameId":"3436230","name":"Avellaneda","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":23077,"modificationDate":"2016-01-30"}, -{"geonameId":"2829777","name":"Stadthagen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23076,"modificationDate":"2015-09-05"}, -{"geonameId":"3079129","name":"Bohumín","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":23075,"modificationDate":"2019-03-19"}, -{"geonameId":"293067","name":"Zicron Jacob","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":23075,"modificationDate":"2020-06-10"}, -{"geonameId":"1256673","name":"Shāmgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23075,"modificationDate":"2014-10-14"}, -{"geonameId":"1265830","name":"Kuchaiburi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23072,"modificationDate":"2014-10-14"}, -{"geonameId":"4845898","name":"Windham","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23072,"modificationDate":"2017-05-23"}, -{"geonameId":"285812","name":"Fintass","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":23071,"modificationDate":"2020-06-10"}, -{"geonameId":"1693574","name":"Pinamungahan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":23068,"modificationDate":"2017-12-13"}, -{"geonameId":"603570","name":"Piteå","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":23067,"modificationDate":"2017-03-18"}, -{"geonameId":"2318933","name":"Wudil","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":23066,"modificationDate":"2016-06-22"}, -{"geonameId":"3397675","name":"Jaguaribe","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23065,"modificationDate":"2012-08-03"}, -{"geonameId":"4160023","name":"Jacksonville Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23064,"modificationDate":"2017-03-09"}, -{"geonameId":"1273440","name":"Dārwha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23062,"modificationDate":"2015-08-07"}, -{"geonameId":"2833475","name":"Sehnde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23060,"modificationDate":"2019-03-11"}, -{"geonameId":"3455298","name":"Palotina","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23059,"modificationDate":"2012-08-03"}, -{"geonameId":"5332593","name":"Calabasas","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":23058,"modificationDate":"2020-04-21"}, -{"geonameId":"2653353","name":"Chapeltown","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23056,"modificationDate":"2019-02-12"}, -{"geonameId":"2291779","name":"Beumi","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23053,"modificationDate":"2020-06-10"}, -{"geonameId":"2163782","name":"Hawthorn","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":23051,"modificationDate":"2019-07-18"}, -{"geonameId":"12070066","name":"Montecalvario","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23050,"modificationDate":"2019-07-22"}, -{"geonameId":"324768","name":"Akdağmadeni","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":23048,"modificationDate":"2012-01-18"}, -{"geonameId":"1259552","name":"Peepri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23047,"modificationDate":"2020-06-10"}, -{"geonameId":"1850307","name":"Tochiomachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23045,"modificationDate":"2020-06-11"}, -{"geonameId":"1701516","name":"Mansalay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":23044,"modificationDate":"2017-12-13"}, -{"geonameId":"5172387","name":"Solon","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23043,"modificationDate":"2017-05-23"}, -{"geonameId":"1922014","name":"Wuyishan","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":23041,"modificationDate":"2019-07-11"}, -{"geonameId":"2635412","name":"Truro","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":23041,"modificationDate":"2017-06-12"}, -{"geonameId":"4751935","name":"Chantilly","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23039,"modificationDate":"2011-05-14"}, -{"geonameId":"3533402","name":"San Lorenzo Acopilco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":23037,"modificationDate":"2018-11-03"}, -{"geonameId":"8349051","name":"Dianella","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":23034,"modificationDate":"2019-07-18"}, -{"geonameId":"3065281","name":"Oderberg","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":23034,"modificationDate":"2020-06-11"}, -{"geonameId":"1262566","name":"Muluppilagadu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23030,"modificationDate":"2015-11-08"}, -{"geonameId":"3045332","name":"Balatonkiliti","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":23028,"modificationDate":"2020-06-10"}, -{"geonameId":"877597","name":"Nangomba","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23028,"modificationDate":"2016-07-26"}, -{"geonameId":"7260019","name":"Candler-McAfee","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":23025,"modificationDate":"2011-05-14"}, -{"geonameId":"2502686","name":"Boumahra Ahmed","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":23022,"modificationDate":"2012-01-19"}, -{"geonameId":"1067565","name":"Beloha","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":23021,"modificationDate":"2018-09-10"}, -{"geonameId":"3691954","name":"Sechura","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":23020,"modificationDate":"2012-07-19"}, -{"geonameId":"1265504","name":"Kurinjipadi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":23017,"modificationDate":"2020-06-10"}, -{"geonameId":"3178745","name":"Chivasso","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23017,"modificationDate":"2015-08-03"}, -{"geonameId":"3019459","name":"Étampes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23012,"modificationDate":"2019-04-10"}, -{"geonameId":"3180496","name":"Carmagnola","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":23012,"modificationDate":"2014-04-13"}, -{"geonameId":"3451121","name":"Rio Negro","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":23006,"modificationDate":"2012-08-03"}, -{"geonameId":"2993207","name":"Mons-en-Barœul","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23006,"modificationDate":"2016-02-18"}, -{"geonameId":"1860563","name":"Kamiichi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":23004,"modificationDate":"2017-04-09"}, -{"geonameId":"3125915","name":"Castellar del Vallès","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":23002,"modificationDate":"2010-04-22"}, -{"geonameId":"2507155","name":"Ammi Moussa","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":23001,"modificationDate":"2012-01-19"}, -{"geonameId":"3038638","name":"Agde","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":23001,"modificationDate":"2019-03-12"}, -{"geonameId":"2857185","name":"Opladen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":23000,"modificationDate":"2017-04-26"}, -{"geonameId":"98822","name":"Aora","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":23000,"modificationDate":"2020-06-10"}, -{"geonameId":"2747599","name":"Scheveningen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":23000,"modificationDate":"2010-01-10"}, -{"geonameId":"2751456","name":"Loon op Zand","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":23000,"modificationDate":"2017-10-17"}, -{"geonameId":"785615","name":"Sremčica","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":23000,"modificationDate":"2020-01-28"}, -{"geonameId":"3463066","name":"Forquilhinha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22998,"modificationDate":"2012-08-03"}, -{"geonameId":"2524819","name":"Enna","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22998,"modificationDate":"2015-07-09"}, -{"geonameId":"1860750","name":"Kajiki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22997,"modificationDate":"2017-04-09"}, -{"geonameId":"1723822","name":"Botolan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":22994,"modificationDate":"2017-12-13"}, -{"geonameId":"4908173","name":"Roselle","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22994,"modificationDate":"2017-05-23"}, -{"geonameId":"5113683","name":"Copiague","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22993,"modificationDate":"2017-05-23"}, -{"geonameId":"2760134","name":"Aalsmeer","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":22991,"modificationDate":"2017-10-17"}, -{"geonameId":"162158","name":"Baharly","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":22991,"modificationDate":"2014-07-08"}, -{"geonameId":"2696329","name":"Lidköping","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":22988,"modificationDate":"2017-03-18"}, -{"geonameId":"513911","name":"Otradnaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22985,"modificationDate":"2019-08-26"}, -{"geonameId":"4924014","name":"Munster","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22984,"modificationDate":"2017-05-23"}, -{"geonameId":"1246924","name":"Eravur Town","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":22982,"modificationDate":"2018-12-31"}, -{"geonameId":"578638","name":"Bavly","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22982,"modificationDate":"2019-05-08"}, -{"geonameId":"2650122","name":"Elgin","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22980,"modificationDate":"2017-06-12"}, -{"geonameId":"5364199","name":"Ladera Ranch","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22980,"modificationDate":"2011-05-14"}, -{"geonameId":"689200","name":"Vilnohirsk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22979,"modificationDate":"2020-05-23"}, -{"geonameId":"2977800","name":"Saint-Ouen-l'Aumône","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22977,"modificationDate":"2019-12-03"}, -{"geonameId":"306207","name":"Kovancılar","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":22976,"modificationDate":"2015-07-03"}, -{"geonameId":"1265795","name":"Kūdligi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22975,"modificationDate":"2015-11-08"}, -{"geonameId":"1701149","name":"Maragondon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":22973,"modificationDate":"2017-12-13"}, -{"geonameId":"2127383","name":"Motomachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22972,"modificationDate":"2017-08-02"}, -{"geonameId":"2644386","name":"Litherland","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22971,"modificationDate":"2011-03-03"}, -{"geonameId":"536518","name":"Lebedjan","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22970,"modificationDate":"2020-06-10"}, -{"geonameId":"556951","name":"Il’skiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22970,"modificationDate":"2012-01-17"}, -{"geonameId":"3815447","name":"Papalotla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":22969,"modificationDate":"2013-07-31"}, -{"geonameId":"527579","name":"Mendeleyevsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22969,"modificationDate":"2012-01-17"}, -{"geonameId":"2924206","name":"Fröndenberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22964,"modificationDate":"2015-09-04"}, -{"geonameId":"4900080","name":"Lisle","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22964,"modificationDate":"2017-05-23"}, -{"geonameId":"2829422","name":"Stassfurt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22960,"modificationDate":"2020-06-10"}, -{"geonameId":"311704","name":"Hezek","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":22960,"modificationDate":"2020-06-10"}, -{"geonameId":"2522960","name":"Termini Imerese","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22957,"modificationDate":"2019-09-27"}, -{"geonameId":"3996737","name":"Maneadero","countryName":"Mexico","timeZoneName":"America/Tijuana","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22957,"modificationDate":"2020-06-10"}, -{"geonameId":"2953449","name":"Bad Harzburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22954,"modificationDate":"2015-09-04"}, -{"geonameId":"1172888","name":"Kot Samaba","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":22953,"modificationDate":"2019-12-06"}, -{"geonameId":"7262110","name":"Picnic Point-North Lynnwood","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22953,"modificationDate":"2017-12-13"}, -{"geonameId":"4154031","name":"East Naples","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22951,"modificationDate":"2018-11-24"}, -{"geonameId":"723358","name":"Trebišov","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":22947,"modificationDate":"2019-06-09"}, -{"geonameId":"345353","name":"Addiet Canna","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22946,"modificationDate":"2012-01-19"}, -{"geonameId":"92002","name":"Ruwan Duz","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":22943,"modificationDate":"2020-06-10"}, -{"geonameId":"5023571","name":"Crystal","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22943,"modificationDate":"2017-05-23"}, -{"geonameId":"4682127","name":"Cloverleaf","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22942,"modificationDate":"2011-05-14"}, -{"geonameId":"2961123","name":"Tralee","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22941,"modificationDate":"2014-12-18"}, -{"geonameId":"8605041","name":"Dixiana","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22940,"modificationDate":"2013-09-10"}, -{"geonameId":"4921402","name":"Highland","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22936,"modificationDate":"2017-05-23"}, -{"geonameId":"3392088","name":"Pindaré Mirim","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22933,"modificationDate":"2012-08-03"}, -{"geonameId":"1712520","name":"Gulhulngan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":22931,"modificationDate":"2020-06-10"}, -{"geonameId":"2783763","name":"Wetteren","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":22930,"modificationDate":"2019-12-03"}, -{"geonameId":"4900801","name":"Machesney Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22927,"modificationDate":"2017-05-23"}, -{"geonameId":"4902667","name":"Morgan Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22924,"modificationDate":"2017-12-13"}, -{"geonameId":"2969612","name":"Vertou","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22921,"modificationDate":"2016-02-18"}, -{"geonameId":"1253275","name":"Vemalwāda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22920,"modificationDate":"2014-10-10"}, -{"geonameId":"2329562","name":"Nafada","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":22920,"modificationDate":"2016-01-30"}, -{"geonameId":"1244773","name":"Hanwella Ihala","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":22918,"modificationDate":"2019-09-25"}, -{"geonameId":"735736","name":"Kilkís","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22914,"modificationDate":"2019-01-20"}, -{"geonameId":"263312","name":"Dhafní","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22913,"modificationDate":"2019-10-23"}, -{"geonameId":"567109","name":"Dankov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22913,"modificationDate":"2019-09-05"}, -{"geonameId":"2867164","name":"Nagold","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22912,"modificationDate":"2013-02-16"}, -{"geonameId":"2521335","name":"Barbate","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22912,"modificationDate":"2017-08-15"}, -{"geonameId":"2643027","name":"Market Harborough","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22911,"modificationDate":"2017-06-12"}, -{"geonameId":"6534268","name":"Volla","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22911,"modificationDate":"2014-01-11"}, -{"geonameId":"618405","name":"Comrat","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22911,"modificationDate":"2019-09-05"}, -{"geonameId":"2934728","name":"Duderstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22910,"modificationDate":"2018-04-14"}, -{"geonameId":"3389557","name":"Santa Luzia","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22909,"modificationDate":"2018-12-05"}, -{"geonameId":"2353688","name":"Yako","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22904,"modificationDate":"2013-02-08"}, -{"geonameId":"1257776","name":"Saidpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22904,"modificationDate":"2016-03-10"}, -{"geonameId":"1283217","name":"Khanbari","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":22903,"modificationDate":"2019-10-19"}, -{"geonameId":"2659601","name":"Montreux","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":22897,"modificationDate":"2019-09-10"}, -{"geonameId":"8449772","name":"Noe Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22893,"modificationDate":"2017-12-13"}, -{"geonameId":"2796637","name":"Hamme","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":22891,"modificationDate":"2012-01-18"}, -{"geonameId":"2164691","name":"Granville","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":22889,"modificationDate":"2019-05-21"}, -{"geonameId":"2523664","name":"Quattromiglia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22889,"modificationDate":"2014-01-11"}, -{"geonameId":"1259735","name":"Phulpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22886,"modificationDate":"2015-08-07"}, -{"geonameId":"5116083","name":"East Tremont","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22886,"modificationDate":"2017-04-16"}, -{"geonameId":"4082569","name":"Pelham","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22885,"modificationDate":"2017-03-09"}, -{"geonameId":"3177650","name":"Dalmine","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22881,"modificationDate":"2015-08-03"}, -{"geonameId":"241131","name":"Victoria","countryName":"Seychelles","timeZoneName":"Indian/Mahe","timeZoneOffsetNameWithoutDst":"Seychelles Time","population":22881,"modificationDate":"2019-09-05"}, -{"geonameId":"1265418","name":"Kutiatodu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22880,"modificationDate":"2014-10-13"}, -{"geonameId":"617076","name":"Yedintsy-Tyrg","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22872,"modificationDate":"2020-06-10"}, -{"geonameId":"1634010","name":"Ngoro","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":22871,"modificationDate":"2007-11-09"}, -{"geonameId":"4956976","name":"Auburn","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22871,"modificationDate":"2017-05-23"}, -{"geonameId":"5141342","name":"Tremont","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22870,"modificationDate":"2017-04-16"}, -{"geonameId":"2291666","name":"Biankouma","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22868,"modificationDate":"2016-12-03"}, -{"geonameId":"654137","name":"Karhula","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22867,"modificationDate":"2015-01-17"}, -{"geonameId":"7302642","name":"Glenmore Park","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":22863,"modificationDate":"2019-07-18"}, -{"geonameId":"3461528","name":"Ibiúna","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22860,"modificationDate":"2012-03-10"}, -{"geonameId":"3578466","name":"Sainte-Anne","countryName":"Guadeloupe","timeZoneName":"America/Guadeloupe","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":22859,"modificationDate":"2017-06-07"}, -{"geonameId":"1852561","name":"Shido","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22859,"modificationDate":"2017-04-09"}, -{"geonameId":"753895","name":"Zambrów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":22857,"modificationDate":"2010-09-11"}, -{"geonameId":"3119123","name":"Sant Pere, Santa Caterina i La Ribera","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22856,"modificationDate":"2017-05-26"}, -{"geonameId":"3170055","name":"Posillipo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22856,"modificationDate":"2019-07-22"}, -{"geonameId":"4769608","name":"Lincolnia","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22855,"modificationDate":"2011-05-14"}, -{"geonameId":"2509650","name":"Vícar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22853,"modificationDate":"2012-03-04"}, -{"geonameId":"5123533","name":"Kiryas Joel","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22851,"modificationDate":"2017-05-23"}, -{"geonameId":"496267","name":"Severskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22849,"modificationDate":"2013-05-07"}, -{"geonameId":"2639015","name":"Royton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22848,"modificationDate":"2011-03-03"}, -{"geonameId":"1277634","name":"Balarāmpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22847,"modificationDate":"2014-10-14"}, -{"geonameId":"2742804","name":"Arcos de Valdevez","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":22847,"modificationDate":"2018-05-17"}, -{"geonameId":"996918","name":"Hennenman","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":22847,"modificationDate":"2012-07-11"}, -{"geonameId":"2925832","name":"Forst","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22843,"modificationDate":"2019-09-19"}, -{"geonameId":"2992536","name":"Montgeron","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22843,"modificationDate":"2016-02-18"}, -{"geonameId":"3394605","name":"Monte Alegre","countryName":"Brazil","timeZoneName":"America/Santarem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22840,"modificationDate":"2020-03-15"}, -{"geonameId":"765927","name":"Lubartów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":22839,"modificationDate":"2013-10-31"}, -{"geonameId":"157268","name":"Kingori","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22839,"modificationDate":"2016-07-26"}, -{"geonameId":"3999325","name":"Las Pintas de Arriba","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":22838,"modificationDate":"2018-11-06"}, -{"geonameId":"2634825","name":"Walton-on-Thames","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22834,"modificationDate":"2017-06-26"}, -{"geonameId":"3979727","name":"Zapotiltic","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":22833,"modificationDate":"2018-11-03"}, -{"geonameId":"1727663","name":"Bambang","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":22831,"modificationDate":"2017-12-13"}, -{"geonameId":"1257539","name":"Sāmbhar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22828,"modificationDate":"2014-10-14"}, -{"geonameId":"3515510","name":"Tixtla de Guerrero","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":22826,"modificationDate":"2018-11-03"}, -{"geonameId":"1221965","name":"Danghara","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":22824,"modificationDate":"2012-02-28"}, -{"geonameId":"3462376","name":"Goianira","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22822,"modificationDate":"2012-08-03"}, -{"geonameId":"5405326","name":"Valinda","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22822,"modificationDate":"2011-05-14"}, -{"geonameId":"2772173","name":"Lustenau","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":22821,"modificationDate":"2018-07-28"}, -{"geonameId":"2485636","name":"Oued el Abtal","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":22819,"modificationDate":"2012-01-19"}, -{"geonameId":"5162077","name":"Marysville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22817,"modificationDate":"2017-05-23"}, -{"geonameId":"3887344","name":"Illapel","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":22816,"modificationDate":"2018-02-06"}, -{"geonameId":"2634573","name":"Wellington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22816,"modificationDate":"2011-07-31"}, -{"geonameId":"2851465","name":"Quedlinburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22814,"modificationDate":"2019-09-05"}, -{"geonameId":"3074149","name":"Jindřichův Hradec","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":22812,"modificationDate":"2019-09-05"}, -{"geonameId":"2896736","name":"Idstein","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22810,"modificationDate":"2019-09-05"}, -{"geonameId":"159398","name":"Igugunu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22810,"modificationDate":"2016-07-26"}, -{"geonameId":"1267716","name":"Karmāla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22809,"modificationDate":"2014-10-13"}, -{"geonameId":"2783632","name":"Willebroek","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":22808,"modificationDate":"2012-01-18"}, -{"geonameId":"1253544","name":"Vaikam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22807,"modificationDate":"2017-04-06"}, -{"geonameId":"4157827","name":"Haines City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22807,"modificationDate":"2017-03-09"}, -{"geonameId":"3467673","name":"Campo Verde","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":22806,"modificationDate":"2012-08-03"}, -{"geonameId":"3687758","name":"Campo de la Cruz","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":22803,"modificationDate":"2018-07-04"}, -{"geonameId":"2633655","name":"Woodford Green","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22803,"modificationDate":"2012-05-18"}, -{"geonameId":"771506","name":"Grajewo","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":22803,"modificationDate":"2019-09-05"}, -{"geonameId":"8593861","name":"Kalk","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22802,"modificationDate":"2015-03-19"}, -{"geonameId":"1259049","name":"Raghunathpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22802,"modificationDate":"2014-10-14"}, -{"geonameId":"5066001","name":"Columbus","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22797,"modificationDate":"2017-05-23"}, -{"geonameId":"1278895","name":"Amarpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22796,"modificationDate":"2014-10-14"}, -{"geonameId":"3527545","name":"Frontera","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":22795,"modificationDate":"2018-11-03"}, -{"geonameId":"5221077","name":"Bristol","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22795,"modificationDate":"2019-05-17"}, -{"geonameId":"5373129","name":"Millbrae","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22795,"modificationDate":"2017-03-09"}, -{"geonameId":"2065740","name":"Morphett Vale","countryName":"Australia","timeZoneName":"Australia/Adelaide","timeZoneOffsetNameWithoutDst":"Australian Central Time","population":22788,"modificationDate":"2019-07-18"}, -{"geonameId":"2129218","name":"Yoichi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22788,"modificationDate":"2017-04-09"}, -{"geonameId":"2065594","name":"Mount Isa","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":22785,"modificationDate":"2019-07-21"}, -{"geonameId":"2522160","name":"Alcalá la Real","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22783,"modificationDate":"2012-08-13"}, -{"geonameId":"5742726","name":"Newberg","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22780,"modificationDate":"2017-03-09"}, -{"geonameId":"8349108","name":"Thornlie","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":22779,"modificationDate":"2019-07-18"}, -{"geonameId":"1270066","name":"Hinjilikatu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22779,"modificationDate":"2014-10-14"}, -{"geonameId":"1490042","name":"Tashtagol","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":22779,"modificationDate":"2012-01-17"}, -{"geonameId":"688587","name":"Yahotyn","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22779,"modificationDate":"2014-10-01"}, -{"geonameId":"1253635","name":"Uttamapālaiyam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22778,"modificationDate":"2016-06-27"}, -{"geonameId":"7871311","name":"Eglinton East","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22776,"modificationDate":"2020-05-02"}, -{"geonameId":"3532617","name":"Atlacomulco de Fabela","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":22774,"modificationDate":"2018-11-03"}, -{"geonameId":"1254909","name":"Tarāna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22773,"modificationDate":"2015-09-06"}, -{"geonameId":"2510394","name":"Tomares","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22772,"modificationDate":"2012-03-04"}, -{"geonameId":"2996564","name":"Maisons-Laffitte","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22772,"modificationDate":"2016-02-18"}, -{"geonameId":"714581","name":"Törökszentmiklós","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":22770,"modificationDate":"2014-11-05"}, -{"geonameId":"141665","name":"Bandar-e Lengeh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":22768,"modificationDate":"2017-02-08"}, -{"geonameId":"1862601","name":"Hino","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22767,"modificationDate":"2017-04-09"}, -{"geonameId":"3464579","name":"Dois Vizinhos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22766,"modificationDate":"2012-08-03"}, -{"geonameId":"1260304","name":"Pariyāpuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22766,"modificationDate":"2014-10-13"}, -{"geonameId":"2857565","name":"Öhringen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22765,"modificationDate":"2017-02-04"}, -{"geonameId":"3587498","name":"Acajutla","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":22763,"modificationDate":"2012-01-18"}, -{"geonameId":"2257990","name":"Madingou","countryName":"Republic of the Congo","timeZoneName":"Africa/Brazzaville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":22760,"modificationDate":"2012-01-17"}, -{"geonameId":"3461501","name":"Igaraçu do Tietê","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22758,"modificationDate":"2012-08-03"}, -{"geonameId":"4175091","name":"The Crossings","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22758,"modificationDate":"2011-05-14"}, -{"geonameId":"2339287","name":"Ibi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":22757,"modificationDate":"2016-01-30"}, -{"geonameId":"248923","name":"‘Izrā","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22756,"modificationDate":"2012-01-18"}, -{"geonameId":"4311963","name":"Valley Station","countryName":"United States","timeZoneName":"America/Kentucky/Louisville","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22756,"modificationDate":"2006-01-17"}, -{"geonameId":"5365937","name":"Lennox","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22753,"modificationDate":"2011-05-14"}, -{"geonameId":"7259705","name":"East Lake-Orient Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22753,"modificationDate":"2011-05-14"}, -{"geonameId":"1262596","name":"Mukeriān","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22751,"modificationDate":"2015-09-06"}, -{"geonameId":"2637106","name":"Stalybridge","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22748,"modificationDate":"2011-03-03"}, -{"geonameId":"1265022","name":"Lati","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22745,"modificationDate":"2020-06-10"}, -{"geonameId":"8858105","name":"Manuel Ojinaga","countryName":"Mexico","timeZoneName":"America/Ojinaga","timeZoneOffsetNameWithoutDst":"Mountain Time","population":22744,"modificationDate":"2014-04-11"}, -{"geonameId":"3165370","name":"Tortona","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22743,"modificationDate":"2015-08-30"}, -{"geonameId":"2174039","name":"Brighton","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":22742,"modificationDate":"2019-07-18"}, -{"geonameId":"257302","name":"Melíssia","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22741,"modificationDate":"2019-10-23"}, -{"geonameId":"1258477","name":"Raniya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22741,"modificationDate":"2020-06-10"}, -{"geonameId":"1850405","name":"Tennō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22740,"modificationDate":"2017-04-09"}, -{"geonameId":"3460355","name":"Jaciara","countryName":"Brazil","timeZoneName":"America/Cuiaba","timeZoneOffsetNameWithoutDst":"Amazon Time","population":22737,"modificationDate":"2012-08-03"}, -{"geonameId":"3166574","name":"Seveso","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22733,"modificationDate":"2015-08-03"}, -{"geonameId":"5026321","name":"Farmington","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22731,"modificationDate":"2017-05-23"}, -{"geonameId":"5761287","name":"Wilsonville","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22729,"modificationDate":"2017-03-09"}, -{"geonameId":"3164083","name":"Vimercate","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22727,"modificationDate":"2014-04-13"}, -{"geonameId":"2877142","name":"Lindlar","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22723,"modificationDate":"2011-07-31"}, -{"geonameId":"4699626","name":"Hutto","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22722,"modificationDate":"2017-03-09"}, -{"geonameId":"3002465","name":"Le Puy-en-Velay","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22718,"modificationDate":"2019-10-18"}, -{"geonameId":"3524389","name":"Lerma de Villada","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":22713,"modificationDate":"2018-11-03"}, -{"geonameId":"4148207","name":"Bloomingdale","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22711,"modificationDate":"2011-05-14"}, -{"geonameId":"3051621","name":"Hatvan","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":22710,"modificationDate":"2014-11-05"}, -{"geonameId":"1268480","name":"Kalamnūri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22708,"modificationDate":"2014-10-13"}, -{"geonameId":"5533366","name":"West Odessa","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22707,"modificationDate":"2011-05-14"}, -{"geonameId":"7261476","name":"Inglewood-Finn Hill","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22707,"modificationDate":"2011-05-14"}, -{"geonameId":"2515036","name":"Llíria","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22706,"modificationDate":"2015-05-31"}, -{"geonameId":"2111824","name":"Motomiya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22705,"modificationDate":"2017-07-22"}, -{"geonameId":"3466547","name":"Caxambu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22701,"modificationDate":"2012-08-03"}, -{"geonameId":"618450","name":"Chadyr-Lunga","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22700,"modificationDate":"2020-06-10"}, -{"geonameId":"543018","name":"Kozmedemyansk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22700,"modificationDate":"2020-06-10"}, -{"geonameId":"2878840","name":"Lengerich","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22697,"modificationDate":"2015-09-04"}, -{"geonameId":"1269646","name":"Itimādpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22697,"modificationDate":"2015-08-07"}, -{"geonameId":"515246","name":"Onega","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22693,"modificationDate":"2020-05-18"}, -{"geonameId":"5805441","name":"Oak Harbor","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22693,"modificationDate":"2017-03-09"}, -{"geonameId":"3578967","name":"Le Moule","countryName":"Guadeloupe","timeZoneName":"America/Guadeloupe","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":22692,"modificationDate":"2017-06-07"}, -{"geonameId":"3002880","name":"Le Petit-Quevilly","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22691,"modificationDate":"2016-02-18"}, -{"geonameId":"1831112","name":"Kampot","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":22691,"modificationDate":"2015-07-13"}, -{"geonameId":"3457859","name":"Maracaju","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":22690,"modificationDate":"2012-08-03"}, -{"geonameId":"5855070","name":"‘Ewa Gentry","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":22690,"modificationDate":"2015-05-28"}, -{"geonameId":"2648372","name":"Godalming","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22689,"modificationDate":"2017-06-12"}, -{"geonameId":"703428","name":"Ladyzhyn","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22687,"modificationDate":"2020-05-13"}, -{"geonameId":"1503335","name":"Kirovgrad","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":22685,"modificationDate":"2019-09-05"}, -{"geonameId":"4166583","name":"Oak Ridge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22685,"modificationDate":"2011-05-14"}, -{"geonameId":"5388873","name":"Rosemont","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22681,"modificationDate":"2011-05-14"}, -{"geonameId":"1076105","name":"Hell-Ville","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22680,"modificationDate":"2018-09-10"}, -{"geonameId":"3184517","name":"Patos Fshat","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":22679,"modificationDate":"2012-01-19"}, -{"geonameId":"1179406","name":"Eminabad","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":22679,"modificationDate":"2019-12-06"}, -{"geonameId":"3669998","name":"San Carlos","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":22678,"modificationDate":"2018-05-09"}, -{"geonameId":"747482","name":"Erdek","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":22678,"modificationDate":"2013-06-05"}, -{"geonameId":"3515794","name":"Tequixquiac","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":22676,"modificationDate":"2013-07-31"}, -{"geonameId":"4984565","name":"Auburn Hills","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22672,"modificationDate":"2017-05-23"}, -{"geonameId":"1859998","name":"Kasamatsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22671,"modificationDate":"2020-06-11"}, -{"geonameId":"1277216","name":"Bānswāda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22665,"modificationDate":"2014-10-10"}, -{"geonameId":"3173671","name":"Meda","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22665,"modificationDate":"2015-08-03"}, -{"geonameId":"3177610","name":"Desenzano del Garda","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22665,"modificationDate":"2015-08-03"}, -{"geonameId":"1866569","name":"Enan","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":22665,"modificationDate":"2020-06-11"}, -{"geonameId":"3461638","name":"Iaçu","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22664,"modificationDate":"2012-08-03"}, -{"geonameId":"5207069","name":"Pottstown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22664,"modificationDate":"2017-05-23"}, -{"geonameId":"3178147","name":"Conversano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22661,"modificationDate":"2014-04-13"}, -{"geonameId":"2524533","name":"Iglesias","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22659,"modificationDate":"2018-02-10"}, -{"geonameId":"151599","name":"Ngudu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22658,"modificationDate":"2016-07-26"}, -{"geonameId":"3827254","name":"San Mateo Otzacatipan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":22656,"modificationDate":"2018-11-03"}, -{"geonameId":"4161797","name":"Leisure City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22655,"modificationDate":"2011-05-14"}, -{"geonameId":"1257771","name":"Saiha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22654,"modificationDate":"2014-10-14"}, -{"geonameId":"2523908","name":"Palma di Montechiaro","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22654,"modificationDate":"2014-04-13"}, -{"geonameId":"1273795","name":"Cumbum","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22653,"modificationDate":"2016-12-03"}, -{"geonameId":"762850","name":"Ostrów Mazowiecka","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":22653,"modificationDate":"2010-09-11"}, -{"geonameId":"3465487","name":"Coromandel","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22647,"modificationDate":"2012-08-03"}, -{"geonameId":"2755464","name":"Goirle","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":22646,"modificationDate":"2017-10-17"}, -{"geonameId":"2164837","name":"Goulburn","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":22645,"modificationDate":"2019-07-18"}, -{"geonameId":"98589","name":"Shinafiyeh","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":22643,"modificationDate":"2020-06-10"}, -{"geonameId":"3173949","name":"Mariano Comense","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22643,"modificationDate":"2015-08-03"}, -{"geonameId":"1263395","name":"Mātābhānga","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22642,"modificationDate":"2016-07-04"}, -{"geonameId":"653281","name":"Kemi","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22641,"modificationDate":"2019-09-05"}, -{"geonameId":"2639970","name":"Potters Bar","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22639,"modificationDate":"2017-06-12"}, -{"geonameId":"1253352","name":"Vattalkundu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22638,"modificationDate":"2014-10-14"}, -{"geonameId":"2997556","name":"Lormont","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22636,"modificationDate":"2020-01-08"}, -{"geonameId":"5408191","name":"West Puente Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22636,"modificationDate":"2011-05-14"}, -{"geonameId":"3428071","name":"Santo Tomé","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":22634,"modificationDate":"2016-01-30"}, -{"geonameId":"3447718","name":"Serra Negra","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22632,"modificationDate":"2012-03-10"}, -{"geonameId":"5161803","name":"Maple Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22631,"modificationDate":"2017-05-23"}, -{"geonameId":"5176937","name":"Willoughby","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22631,"modificationDate":"2017-09-15"}, -{"geonameId":"517842","name":"Novotitarovskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22630,"modificationDate":"2012-01-17"}, -{"geonameId":"4673482","name":"Benbrook","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22629,"modificationDate":"2017-03-09"}, -{"geonameId":"3104316","name":"Zarautz","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22627,"modificationDate":"2012-11-19"}, -{"geonameId":"5097017","name":"Cranford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22627,"modificationDate":"2017-05-23"}, -{"geonameId":"6095645","name":"Owen Sound","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22625,"modificationDate":"2009-07-31"}, -{"geonameId":"1264323","name":"Mahwah","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22624,"modificationDate":"2014-10-14"}, -{"geonameId":"160670","name":"Chala","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22624,"modificationDate":"2018-12-04"}, -{"geonameId":"1275441","name":"Bissau","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22620,"modificationDate":"2020-06-10"}, -{"geonameId":"3518277","name":"San Miguel Coatlinchoan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":22619,"modificationDate":"2020-06-10"}, -{"geonameId":"3445781","name":"Una","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22613,"modificationDate":"2013-06-30"}, -{"geonameId":"1254282","name":"Todaraisingh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22613,"modificationDate":"2014-10-14"}, -{"geonameId":"3460225","name":"Jaguarari","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22612,"modificationDate":"2012-08-03"}, -{"geonameId":"5118226","name":"Garden City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22612,"modificationDate":"2017-05-23"}, -{"geonameId":"5919566","name":"Chambly","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22608,"modificationDate":"2019-02-26"}, -{"geonameId":"686896","name":"Zolochiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22608,"modificationDate":"2014-08-06"}, -{"geonameId":"1269177","name":"Jashpurnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22607,"modificationDate":"2017-08-02"}, -{"geonameId":"2989611","name":"Olivet","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22604,"modificationDate":"2016-02-18"}, -{"geonameId":"3689381","name":"Ayapel","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":22602,"modificationDate":"2018-07-04"}, -{"geonameId":"3553343","name":"Lajas","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":22602,"modificationDate":"2017-12-13"}, -{"geonameId":"2895664","name":"Isernhagen Farster Bauerschaft","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22601,"modificationDate":"2018-12-04"}, -{"geonameId":"520204","name":"Nizhnyaya Tura","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":22600,"modificationDate":"2019-09-05"}, -{"geonameId":"2834240","name":"Schwetzingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22593,"modificationDate":"2013-02-16"}, -{"geonameId":"1258061","name":"Ron","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22593,"modificationDate":"2014-10-14"}, -{"geonameId":"3177171","name":"Fasano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22593,"modificationDate":"2015-08-03"}, -{"geonameId":"3449500","name":"Santo Antônio do Monte","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22592,"modificationDate":"2012-08-03"}, -{"geonameId":"7279742","name":"Baddi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22592,"modificationDate":"2014-10-13"}, -{"geonameId":"763111","name":"Opoczno","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":22592,"modificationDate":"2010-10-01"}, -{"geonameId":"8348582","name":"Greystanes","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":22591,"modificationDate":"2019-07-18"}, -{"geonameId":"656820","name":"Iisalmi","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22588,"modificationDate":"2014-09-25"}, -{"geonameId":"1259775","name":"Phillaur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22588,"modificationDate":"2015-09-06"}, -{"geonameId":"1269377","name":"Jāmai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22587,"modificationDate":"2015-04-08"}, -{"geonameId":"2787356","name":"Saint-Nicolas","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":22586,"modificationDate":"2011-03-15"}, -{"geonameId":"2638311","name":"Seaford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22584,"modificationDate":"2018-07-03"}, -{"geonameId":"6144312","name":"Sept-Îles","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22582,"modificationDate":"2016-06-22"}, -{"geonameId":"9957340","name":"Forest Lake","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":22581,"modificationDate":"2019-07-18"}, -{"geonameId":"250624","name":"Qīr Moāv","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22581,"modificationDate":"2010-06-24"}, -{"geonameId":"3694725","name":"Moche","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":22581,"modificationDate":"2012-07-19"}, -{"geonameId":"2783801","name":"Westerlo","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":22579,"modificationDate":"2012-01-18"}, -{"geonameId":"1732893","name":"Batu Arang","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":22579,"modificationDate":"2013-10-30"}, -{"geonameId":"3996234","name":"Meoqui","countryName":"Mexico","timeZoneName":"America/Chihuahua","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":22574,"modificationDate":"2018-11-03"}, -{"geonameId":"3871286","name":"San Vicente","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":22572,"modificationDate":"2012-05-03"}, -{"geonameId":"1259744","name":"Phulera","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22572,"modificationDate":"2014-10-14"}, -{"geonameId":"3687806","name":"Campoalegre","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":22568,"modificationDate":"2018-08-08"}, -{"geonameId":"3174295","name":"Magenta","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22566,"modificationDate":"2015-08-03"}, -{"geonameId":"10628881","name":"Apas","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":22566,"modificationDate":"2017-12-13"}, -{"geonameId":"5774662","name":"Farmington","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":22566,"modificationDate":"2017-03-09"}, -{"geonameId":"3408166","name":"Águas Belas","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22563,"modificationDate":"2012-08-03"}, -{"geonameId":"3467677","name":"Campos Novos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22563,"modificationDate":"2012-08-03"}, -{"geonameId":"2894637","name":"Jüchen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22562,"modificationDate":"2015-03-04"}, -{"geonameId":"4915539","name":"Wasco","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22560,"modificationDate":"2017-05-23"}, -{"geonameId":"3038712","name":"Achères","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22555,"modificationDate":"2016-02-18"}, -{"geonameId":"1259283","name":"Pukhrāyān","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22555,"modificationDate":"2015-08-07"}, -{"geonameId":"3164954","name":"Valdagno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22555,"modificationDate":"2014-04-13"}, -{"geonameId":"5029500","name":"Hastings","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22554,"modificationDate":"2017-05-23"}, -{"geonameId":"2234536","name":"Bélabo","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":22553,"modificationDate":"2012-01-16"}, -{"geonameId":"2716166","name":"Enköping","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":22553,"modificationDate":"2017-03-18"}, -{"geonameId":"1175436","name":"Kahuta","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":22551,"modificationDate":"2019-12-06"}, -{"geonameId":"156080","name":"Lalago","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22551,"modificationDate":"2018-12-04"}, -{"geonameId":"2657508","name":"Alfreton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22550,"modificationDate":"2018-07-03"}, -{"geonameId":"4007684","name":"El Salto","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":22550,"modificationDate":"2015-06-22"}, -{"geonameId":"1256040","name":"Sirsi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22549,"modificationDate":"2015-08-07"}, -{"geonameId":"2910514","name":"Haren","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22545,"modificationDate":"2015-09-05"}, -{"geonameId":"702417","name":"Lyubotyn","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22545,"modificationDate":"2014-06-26"}, -{"geonameId":"2849548","name":"Rees","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22544,"modificationDate":"2019-09-05"}, -{"geonameId":"5146277","name":"Avon","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22544,"modificationDate":"2017-05-23"}, -{"geonameId":"2367656","name":"Bafilo","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22543,"modificationDate":"2012-01-18"}, -{"geonameId":"3518618","name":"San Juan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":22541,"modificationDate":"2020-06-10"}, -{"geonameId":"4029308","name":"San José del Valle","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":22541,"modificationDate":"2018-11-03"}, -{"geonameId":"8050888","name":"Primer Ensanche","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22538,"modificationDate":"2011-10-17"}, -{"geonameId":"8050889","name":"Segundo Ensanche","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22538,"modificationDate":"2011-10-17"}, -{"geonameId":"3454131","name":"Pereira Barreto","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22537,"modificationDate":"2012-08-03"}, -{"geonameId":"8449777","name":"Visitacion Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22534,"modificationDate":"2017-12-13"}, -{"geonameId":"3472370","name":"Amargosa","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22530,"modificationDate":"2012-08-03"}, -{"geonameId":"2849156","name":"Reichenbach/Vogtland","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22530,"modificationDate":"2015-09-05"}, -{"geonameId":"2988867","name":"Ozoir","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22530,"modificationDate":"2020-06-10"}, -{"geonameId":"1254283","name":"Todabhim","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22529,"modificationDate":"2014-10-14"}, -{"geonameId":"1083257","name":"Ambato Boeny","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22529,"modificationDate":"2018-09-10"}, -{"geonameId":"1644557","name":"Gambiran Satu","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":22525,"modificationDate":"2012-01-17"}, -{"geonameId":"344923","name":"Addis Zemen","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22522,"modificationDate":"2020-06-11"}, -{"geonameId":"4589368","name":"North Augusta","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22522,"modificationDate":"2017-03-09"}, -{"geonameId":"2375254","name":"Bafatá","countryName":"Guinea-Bissau","timeZoneName":"Africa/Bissau","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22521,"modificationDate":"2018-04-06"}, -{"geonameId":"1254347","name":"Tiruppuvanam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22517,"modificationDate":"2018-12-04"}, -{"geonameId":"2799397","name":"Diest","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":22516,"modificationDate":"2011-02-18"}, -{"geonameId":"1862555","name":"Hirado","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22516,"modificationDate":"2013-08-17"}, -{"geonameId":"1641792","name":"Kamal","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":22515,"modificationDate":"2012-01-17"}, -{"geonameId":"1276724","name":"Baswa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22515,"modificationDate":"2018-12-04"}, -{"geonameId":"1851068","name":"Takanabe","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22513,"modificationDate":"2017-04-09"}, -{"geonameId":"2513465","name":"Mutxamel","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22510,"modificationDate":"2019-10-21"}, -{"geonameId":"3002650","name":"Le Plessis-Robinson","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22510,"modificationDate":"2016-02-18"}, -{"geonameId":"1273788","name":"Curchorem","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22510,"modificationDate":"2014-10-14"}, -{"geonameId":"178202","name":"Webuye","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22507,"modificationDate":"2018-05-09"}, -{"geonameId":"228227","name":"Namasuba","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22507,"modificationDate":"2016-06-22"}, -{"geonameId":"3098966","name":"Goleniów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":22505,"modificationDate":"2019-09-05"}, -{"geonameId":"560142","name":"Gorelovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22503,"modificationDate":"2017-01-29"}, -{"geonameId":"3427387","name":"Villa Ortúzar","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":22500,"modificationDate":"2017-05-08"}, -{"geonameId":"2787416","name":"Saint-Ghislain","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":22500,"modificationDate":"2010-01-29"}, -{"geonameId":"2653945","name":"Camborne","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22500,"modificationDate":"2012-03-29"}, -{"geonameId":"2013399","name":"Vikhorevka","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":22500,"modificationDate":"2012-08-04"}, -{"geonameId":"234565","name":"Bugiri","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22500,"modificationDate":"2016-06-22"}, -{"geonameId":"4835512","name":"Guilford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22498,"modificationDate":"2017-05-23"}, -{"geonameId":"3466824","name":"Casa Branca","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22497,"modificationDate":"2012-08-03"}, -{"geonameId":"3178619","name":"Città di Castello","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22497,"modificationDate":"2014-04-13"}, -{"geonameId":"1712162","name":"Gumaca","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":22496,"modificationDate":"2017-12-13"}, -{"geonameId":"1167142","name":"Ranipur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":22495,"modificationDate":"2019-12-06"}, -{"geonameId":"5790971","name":"Cottage Lake","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22494,"modificationDate":"2011-05-14"}, -{"geonameId":"314648","name":"Darahini","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":22493,"modificationDate":"2020-06-10"}, -{"geonameId":"11524864","name":"Kadima Zoran","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":22490,"modificationDate":"2020-04-29"}, -{"geonameId":"3116963","name":"Mejorada del Campo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22488,"modificationDate":"2012-03-04"}, -{"geonameId":"2265726","name":"Moscavide e Portela","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":22488,"modificationDate":"2018-03-15"}, -{"geonameId":"2395317","name":"Banikoara","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":22487,"modificationDate":"2018-02-26"}, -{"geonameId":"1217084","name":"Kara Kal","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":22487,"modificationDate":"2020-06-10"}, -{"geonameId":"1254102","name":"Tulsīpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22486,"modificationDate":"2014-10-14"}, -{"geonameId":"1276178","name":"Bhānder","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22482,"modificationDate":"2015-08-07"}, -{"geonameId":"3446500","name":"Tijucas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22481,"modificationDate":"2012-08-03"}, -{"geonameId":"5339539","name":"Corcoran","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22477,"modificationDate":"2017-03-09"}, -{"geonameId":"3395062","name":"Maués","countryName":"Brazil","timeZoneName":"America/Manaus","timeZoneOffsetNameWithoutDst":"Amazon Time","population":22475,"modificationDate":"2017-09-02"}, -{"geonameId":"2953402","name":"Bad Mergentheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22472,"modificationDate":"2013-02-15"}, -{"geonameId":"5126550","name":"Melrose","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22470,"modificationDate":"2017-04-16"}, -{"geonameId":"2398073","name":"Mouila","countryName":"Gabon","timeZoneName":"Africa/Libreville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":22469,"modificationDate":"2011-08-25"}, -{"geonameId":"927834","name":"Liwonde","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":22469,"modificationDate":"2013-04-27"}, -{"geonameId":"2181742","name":"Taupo","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":22469,"modificationDate":"2017-09-15"}, -{"geonameId":"5116004","name":"East Patchogue","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22469,"modificationDate":"2017-05-23"}, -{"geonameId":"1643898","name":"Gongdanglegi Kulon","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":22468,"modificationDate":"2012-01-17"}, -{"geonameId":"2745301","name":"Voorschoten","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":22468,"modificationDate":"2017-10-17"}, -{"geonameId":"2406916","name":"Lunsar","countryName":"Sierra Leone","timeZoneName":"Africa/Freetown","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22461,"modificationDate":"2015-02-06"}, -{"geonameId":"4792901","name":"West Springfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22460,"modificationDate":"2011-05-14"}, -{"geonameId":"6049388","name":"Langford","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22459,"modificationDate":"2020-02-03"}, -{"geonameId":"3530167","name":"Cosoleacaque","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":22454,"modificationDate":"2018-11-03"}, -{"geonameId":"295080","name":"Gan Yavne","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":22453,"modificationDate":"2017-07-02"}, -{"geonameId":"475777","name":"Vereshchagino","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":22451,"modificationDate":"2014-06-26"}, -{"geonameId":"700507","name":"Nadvirna","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22447,"modificationDate":"2020-05-10"}, -{"geonameId":"1605601","name":"Tha Mai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":22445,"modificationDate":"2012-01-16"}, -{"geonameId":"686919","name":"Znamyanka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22444,"modificationDate":"2020-05-15"}, -{"geonameId":"2939747","name":"Crimmitschau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22442,"modificationDate":"2015-09-05"}, -{"geonameId":"1253579","name":"Vādippatti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22441,"modificationDate":"2016-06-26"}, -{"geonameId":"2244177","name":"Vélingara","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22441,"modificationDate":"2012-01-17"}, -{"geonameId":"5158164","name":"Hudson","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22437,"modificationDate":"2017-03-09"}, -{"geonameId":"2128025","name":"Shizunai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22436,"modificationDate":"2020-06-11"}, -{"geonameId":"168629","name":"Kafer Tkherim","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22436,"modificationDate":"2020-06-10"}, -{"geonameId":"3621335","name":"Tejar","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":22433,"modificationDate":"2018-07-04"}, -{"geonameId":"1261837","name":"Naraura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22432,"modificationDate":"2015-09-06"}, -{"geonameId":"2751424","name":"Losser","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":22431,"modificationDate":"2017-10-17"}, -{"geonameId":"1264436","name":"Mahārājgani","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22430,"modificationDate":"2015-10-04"}, -{"geonameId":"3872154","name":"San Javier","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":22427,"modificationDate":"2013-01-11"}, -{"geonameId":"1854246","name":"Ōkuchi-shinohara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22425,"modificationDate":"2017-04-09"}, -{"geonameId":"5384339","name":"Port Hueneme","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22423,"modificationDate":"2017-03-09"}, -{"geonameId":"3405954","name":"Baturité","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22417,"modificationDate":"2012-08-03"}, -{"geonameId":"2160706","name":"Lalor","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":22413,"modificationDate":"2019-07-18"}, -{"geonameId":"2645822","name":"Kenilworth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22413,"modificationDate":"2018-07-03"}, -{"geonameId":"2815824","name":"Vreden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22412,"modificationDate":"2015-09-04"}, -{"geonameId":"1634098","name":"Ngawi","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":22412,"modificationDate":"2012-01-17"}, -{"geonameId":"1861393","name":"Ishikawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22412,"modificationDate":"2018-02-23"}, -{"geonameId":"2502939","name":"Castiglione","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":22411,"modificationDate":"2020-06-11"}, -{"geonameId":"585221","name":"Quba","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":22405,"modificationDate":"2014-06-27"}, -{"geonameId":"2522203","name":"Alboraya","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22405,"modificationDate":"2012-03-04"}, -{"geonameId":"2814791","name":"Waldshut-Tiengen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22404,"modificationDate":"2014-01-18"}, -{"geonameId":"2475752","name":"Tizi-n-Tleta","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":22404,"modificationDate":"2018-11-06"}, -{"geonameId":"4158865","name":"Holiday","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22403,"modificationDate":"2011-05-14"}, -{"geonameId":"1725359","name":"Bignay Uno","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":22401,"modificationDate":"2017-12-13"}, -{"geonameId":"4903363","name":"Near South Side","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22401,"modificationDate":"2017-12-13"}, -{"geonameId":"496012","name":"Shakhun’ya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22400,"modificationDate":"2012-01-17"}, -{"geonameId":"4032402","name":"Nukalofa","countryName":"Tonga","timeZoneName":"Pacific/Tongatapu","timeZoneOffsetNameWithoutDst":"Tonga Time","population":22400,"modificationDate":"2020-06-10"}, -{"geonameId":"255229","name":"Pýrgos","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22399,"modificationDate":"2017-01-24"}, -{"geonameId":"7302683","name":"Southbank","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":22397,"modificationDate":"2019-07-18"}, -{"geonameId":"3164342","name":"Vignola","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22397,"modificationDate":"2015-08-03"}, -{"geonameId":"377690","name":"Berber","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":22395,"modificationDate":"2012-01-19"}, -{"geonameId":"3027950","name":"Cenon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22393,"modificationDate":"2020-01-08"}, -{"geonameId":"3456483","name":"Muritiba","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22388,"modificationDate":"2018-12-05"}, -{"geonameId":"3470878","name":"Barão de Cocais","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22387,"modificationDate":"2012-08-03"}, -{"geonameId":"4305504","name":"Radcliff","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22387,"modificationDate":"2017-03-09"}, -{"geonameId":"2810945","name":"Werder","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22384,"modificationDate":"2015-09-05"}, -{"geonameId":"2458589","name":"Djénné","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22382,"modificationDate":"2007-03-01"}, -{"geonameId":"2347061","name":"Sofo-Birnin-Gwari","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":22380,"modificationDate":"2016-06-22"}, -{"geonameId":"4764826","name":"Hopewell","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22378,"modificationDate":"2017-03-09"}, -{"geonameId":"1172779","name":"Kulachi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":22376,"modificationDate":"2019-12-06"}, -{"geonameId":"2852673","name":"Poppenbüttel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22375,"modificationDate":"2017-10-17"}, -{"geonameId":"5203127","name":"New Castle","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22375,"modificationDate":"2017-05-23"}, -{"geonameId":"3469115","name":"Braço do Norte","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22374,"modificationDate":"2012-08-03"}, -{"geonameId":"2638302","name":"Seaham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22373,"modificationDate":"2017-06-12"}, -{"geonameId":"4894320","name":"Grand Boulevard","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22373,"modificationDate":"2017-12-13"}, -{"geonameId":"12156893","name":"Englemount-Lawrence","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22372,"modificationDate":"2020-05-02"}, -{"geonameId":"7290401","name":"Niederrad","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22370,"modificationDate":"2018-02-17"}, -{"geonameId":"719404","name":"Karcag","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":22370,"modificationDate":"2014-11-05"}, -{"geonameId":"98677","name":"Rutbah","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":22370,"modificationDate":"2020-06-10"}, -{"geonameId":"3665741","name":"Yarumal","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":22368,"modificationDate":"2018-06-08"}, -{"geonameId":"2489987","name":"Mazouna","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":22366,"modificationDate":"2012-01-19"}, -{"geonameId":"3114567","name":"Palafrugell","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22365,"modificationDate":"2012-03-04"}, -{"geonameId":"632370","name":"Varkaus","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22365,"modificationDate":"2014-09-25"}, -{"geonameId":"4911893","name":"South Elgin","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22365,"modificationDate":"2017-05-23"}, -{"geonameId":"1132495","name":"Narain","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":22363,"modificationDate":"2020-06-09"}, -{"geonameId":"2878270","name":"Leutkirch","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22362,"modificationDate":"2019-04-10"}, -{"geonameId":"496802","name":"Sergach","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22361,"modificationDate":"2012-01-17"}, -{"geonameId":"2636005","name":"Thornaby-on-Tees","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22356,"modificationDate":"2016-06-22"}, -{"geonameId":"2805910","name":"Wülfrath","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22355,"modificationDate":"2015-09-05"}, -{"geonameId":"4084888","name":"Prichard","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22351,"modificationDate":"2017-03-09"}, -{"geonameId":"5039080","name":"New Brighton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22351,"modificationDate":"2017-05-23"}, -{"geonameId":"3168175","name":"San Lazzaro","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22350,"modificationDate":"2015-08-03"}, -{"geonameId":"4830198","name":"Anniston","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22347,"modificationDate":"2017-03-09"}, -{"geonameId":"3170342","name":"Pomezia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22346,"modificationDate":"2015-08-03"}, -{"geonameId":"3883457","name":"Lebu","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":22345,"modificationDate":"2018-02-06"}, -{"geonameId":"2393551","name":"Ketu","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":22341,"modificationDate":"2020-06-10"}, -{"geonameId":"4167583","name":"Palm Springs","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22341,"modificationDate":"2017-03-09"}, -{"geonameId":"1741562","name":"Tanjung Sepat","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":22340,"modificationDate":"2012-01-17"}, -{"geonameId":"4339348","name":"Ruston","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22340,"modificationDate":"2017-03-09"}, -{"geonameId":"1262116","name":"Nainpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22336,"modificationDate":"2015-09-06"}, -{"geonameId":"2163137","name":"Hornsby","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":22335,"modificationDate":"2019-07-18"}, -{"geonameId":"4955840","name":"Wilmington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22325,"modificationDate":"2017-05-23"}, -{"geonameId":"7302846","name":"Ramanayyapeta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22323,"modificationDate":"2014-10-10"}, -{"geonameId":"3024107","name":"Combs-la-Ville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22322,"modificationDate":"2016-02-18"}, -{"geonameId":"4562768","name":"Barceloneta","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":22322,"modificationDate":"2015-08-03"}, -{"geonameId":"2751547","name":"Lisse","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":22321,"modificationDate":"2017-10-17"}, -{"geonameId":"672757","name":"Motru","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22319,"modificationDate":"2012-06-12"}, -{"geonameId":"4711156","name":"Midlothian","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22318,"modificationDate":"2017-03-09"}, -{"geonameId":"4440076","name":"Oxford","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22314,"modificationDate":"2017-03-09"}, -{"geonameId":"2514824","name":"Los Barrios","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22311,"modificationDate":"2018-09-13"}, -{"geonameId":"3172191","name":"Nova Milanese","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22310,"modificationDate":"2014-04-13"}, -{"geonameId":"2112989","name":"Daigo","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22310,"modificationDate":"2017-04-09"}, -{"geonameId":"571420","name":"Bryukhovetskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22309,"modificationDate":"2013-05-07"}, -{"geonameId":"7302857","name":"Silapathar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22307,"modificationDate":"2016-12-09"}, -{"geonameId":"2112309","name":"Katsuura","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22307,"modificationDate":"2017-07-22"}, -{"geonameId":"1147066","name":"Baraki Barak","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":22305,"modificationDate":"2018-02-17"}, -{"geonameId":"3021670","name":"Dax","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22305,"modificationDate":"2016-02-18"}, -{"geonameId":"3460887","name":"Itaí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22304,"modificationDate":"2012-08-03"}, -{"geonameId":"2939820","name":"Coswig","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22304,"modificationDate":"2015-09-05"}, -{"geonameId":"12156825","name":"Birchcliffe-Cliffside","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22291,"modificationDate":"2020-05-02"}, -{"geonameId":"2864005","name":"Neustrelitz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22291,"modificationDate":"2015-09-05"}, -{"geonameId":"3601977","name":"San Lorenzo","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":22289,"modificationDate":"2018-07-04"}, -{"geonameId":"3117232","name":"El Masnou","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22288,"modificationDate":"2010-12-16"}, -{"geonameId":"3315278","name":"Sandyford","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22288,"modificationDate":"2017-07-25"}, -{"geonameId":"2892811","name":"Karlshorst","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22285,"modificationDate":"2017-09-19"}, -{"geonameId":"2758587","name":"Borssele","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":22285,"modificationDate":"2020-02-20"}, -{"geonameId":"2526239","name":"Setti Fatma","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":22283,"modificationDate":"2018-08-06"}, -{"geonameId":"1728546","name":"Balamban","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":22283,"modificationDate":"2017-12-13"}, -{"geonameId":"2833080","name":"Senden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22275,"modificationDate":"2013-02-19"}, -{"geonameId":"1277535","name":"Balod","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22275,"modificationDate":"2018-05-28"}, -{"geonameId":"1174171","name":"Khanpur Mahar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":22273,"modificationDate":"2019-12-24"}, -{"geonameId":"3531321","name":"Cerro Azul","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":22268,"modificationDate":"2018-11-03"}, -{"geonameId":"1838722","name":"Puan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":22267,"modificationDate":"2012-01-18"}, -{"geonameId":"3062283","name":"Vyškov","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":22265,"modificationDate":"2018-09-08"}, -{"geonameId":"1270667","name":"Gunupur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22264,"modificationDate":"2015-09-06"}, -{"geonameId":"217389","name":"Demba","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":22263,"modificationDate":"2016-11-22"}, -{"geonameId":"2941570","name":"Büren","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22263,"modificationDate":"2015-09-04"}, -{"geonameId":"1176889","name":"Hingorja","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":22263,"modificationDate":"2019-12-06"}, -{"geonameId":"3467680","name":"Campos Gerais","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22260,"modificationDate":"2012-08-03"}, -{"geonameId":"5378500","name":"Oakdale","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22259,"modificationDate":"2017-04-23"}, -{"geonameId":"4889447","name":"Darien","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22256,"modificationDate":"2017-05-23"}, -{"geonameId":"4885156","name":"Bloomingdale","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22254,"modificationDate":"2017-05-23"}, -{"geonameId":"2229267","name":"Lolodorf","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":22252,"modificationDate":"2012-01-16"}, -{"geonameId":"3016956","name":"Frontignan","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22251,"modificationDate":"2020-06-10"}, -{"geonameId":"366323","name":"Tokār","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":22250,"modificationDate":"2020-01-12"}, -{"geonameId":"1263523","name":"Mariāhu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22248,"modificationDate":"2015-08-07"}, -{"geonameId":"12156859","name":"Rockcliffe-Smythe","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22246,"modificationDate":"2020-05-02"}, -{"geonameId":"3093040","name":"Lubań","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":22245,"modificationDate":"2019-09-05"}, -{"geonameId":"3180541","name":"Cardito","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22239,"modificationDate":"2015-08-03"}, -{"geonameId":"597989","name":"Kretinga","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22236,"modificationDate":"2016-11-28"}, -{"geonameId":"3902202","name":"Tupiza","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":22233,"modificationDate":"2013-01-11"}, -{"geonameId":"3170072","name":"Porto Sant'Elpidio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22233,"modificationDate":"2014-04-13"}, -{"geonameId":"745026","name":"Nicaea","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":22230,"modificationDate":"2020-06-10"}, -{"geonameId":"3430601","name":"Montecarlo","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":22229,"modificationDate":"2015-04-22"}, -{"geonameId":"9972522","name":"Dandenong North","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":22225,"modificationDate":"2019-07-18"}, -{"geonameId":"2361177","name":"Djibo","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22223,"modificationDate":"2012-12-05"}, -{"geonameId":"2231881","name":"Eséka","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":22221,"modificationDate":"2012-01-16"}, -{"geonameId":"723559","name":"Snina","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":22221,"modificationDate":"2019-06-09"}, -{"geonameId":"1259157","name":"Purwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22220,"modificationDate":"2020-06-10"}, -{"geonameId":"1605221","name":"Uthai Thani","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":22219,"modificationDate":"2012-01-16"}, -{"geonameId":"2042503","name":"Namyang","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":22218,"modificationDate":"2019-10-10"}, -{"geonameId":"640276","name":"Raahe","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22217,"modificationDate":"2014-09-25"}, -{"geonameId":"762021","name":"Płońsk","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":22217,"modificationDate":"2010-09-18"}, -{"geonameId":"2636564","name":"Sudbury","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22213,"modificationDate":"2018-07-03"}, -{"geonameId":"4176380","name":"Venice","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22211,"modificationDate":"2017-03-09"}, -{"geonameId":"8348596","name":"Ellenbrook","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":22209,"modificationDate":"2019-07-18"}, -{"geonameId":"264670","name":"Árgos","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22209,"modificationDate":"2014-07-30"}, -{"geonameId":"109417","name":"Jumum","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":22207,"modificationDate":"2020-06-10"}, -{"geonameId":"1848447","name":"Yatsuomachi-higashikumisaka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22205,"modificationDate":"2017-04-09"}, -{"geonameId":"1257799","name":"Sahāwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22201,"modificationDate":"2015-08-07"}, -{"geonameId":"4942744","name":"Ludlow","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22201,"modificationDate":"2017-05-23"}, -{"geonameId":"5943865","name":"Duncan","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22199,"modificationDate":"2019-02-26"}, -{"geonameId":"3657571","name":"Guaranda","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":22199,"modificationDate":"2019-09-05"}, -{"geonameId":"2791814","name":"Manage","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":22196,"modificationDate":"2012-01-18"}, -{"geonameId":"220782","name":"Tadjourah","countryName":"Djibouti","timeZoneName":"Africa/Djibouti","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22193,"modificationDate":"2019-09-05"}, -{"geonameId":"1256372","name":"Sidhaulī","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22193,"modificationDate":"2015-09-06"}, -{"geonameId":"3995050","name":"Nava","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":22192,"modificationDate":"2018-11-03"}, -{"geonameId":"2441194","name":"Mayahi","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":22183,"modificationDate":"2013-10-06"}, -{"geonameId":"1223738","name":"Weligama","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":22179,"modificationDate":"2018-12-17"}, -{"geonameId":"516647","name":"Nyandoma","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22179,"modificationDate":"2012-02-28"}, -{"geonameId":"4173392","name":"South Bradenton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22178,"modificationDate":"2011-05-14"}, -{"geonameId":"3879200","name":"Mulchén","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":22170,"modificationDate":"2013-01-11"}, -{"geonameId":"3454839","name":"Posto da Mata","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22168,"modificationDate":"2019-06-13"}, -{"geonameId":"519447","name":"Usman","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22165,"modificationDate":"2020-06-10"}, -{"geonameId":"534560","name":"Lodeynoye Pole","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22164,"modificationDate":"2016-12-18"}, -{"geonameId":"7870882","name":"High Park North","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22162,"modificationDate":"2020-05-02"}, -{"geonameId":"1263255","name":"Mayāng Imphāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22159,"modificationDate":"2014-10-13"}, -{"geonameId":"1279334","name":"Adra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22159,"modificationDate":"2014-10-14"}, -{"geonameId":"771158","name":"Hajnówka","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":22157,"modificationDate":"2019-09-05"}, -{"geonameId":"12156881","name":"Willowridge-Martingrove-Richview","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22156,"modificationDate":"2020-05-02"}, -{"geonameId":"1851711","name":"Shōbu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22156,"modificationDate":"2017-04-09"}, -{"geonameId":"878400","name":"Kigonsera","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22155,"modificationDate":"2016-07-26"}, -{"geonameId":"5099093","name":"Hillside","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22155,"modificationDate":"2017-05-23"}, -{"geonameId":"1262624","name":"Muhammadābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22151,"modificationDate":"2015-08-07"}, -{"geonameId":"2160582","name":"Langwarrin","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":22146,"modificationDate":"2019-07-18"}, -{"geonameId":"630752","name":"Ylöjärvi","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22140,"modificationDate":"2018-04-03"}, -{"geonameId":"5101938","name":"North Plainfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22140,"modificationDate":"2017-05-23"}, -{"geonameId":"2844437","name":"Rotenburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22139,"modificationDate":"2015-09-05"}, -{"geonameId":"1255823","name":"Someshwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22137,"modificationDate":"2014-10-14"}, -{"geonameId":"3828545","name":"San José del Guaviare","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":22136,"modificationDate":"2016-11-27"}, -{"geonameId":"1257895","name":"Sadalgi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22135,"modificationDate":"2014-10-14"}, -{"geonameId":"3125082","name":"Ciempozuelos","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22132,"modificationDate":"2012-03-04"}, -{"geonameId":"4179074","name":"Acworth","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22131,"modificationDate":"2017-03-09"}, -{"geonameId":"3460963","name":"Itaberaí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22129,"modificationDate":"2012-08-03"}, -{"geonameId":"3994469","name":"Ojinaga","countryName":"Mexico","timeZoneName":"America/Ojinaga","timeZoneOffsetNameWithoutDst":"Mountain Time","population":22128,"modificationDate":"2015-06-22"}, -{"geonameId":"2165200","name":"Glenroy","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":22127,"modificationDate":"2019-07-18"}, -{"geonameId":"4440397","name":"Pascagoula","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22126,"modificationDate":"2017-03-09"}, -{"geonameId":"1254436","name":"Thiruninravur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22125,"modificationDate":"2020-06-10"}, -{"geonameId":"4174383","name":"Sunny Isles Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22123,"modificationDate":"2017-03-09"}, -{"geonameId":"1513023","name":"Pop","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":22122,"modificationDate":"2010-08-09"}, -{"geonameId":"3465512","name":"Corinto","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22121,"modificationDate":"2012-08-03"}, -{"geonameId":"1268622","name":"Kailāshahar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22120,"modificationDate":"2018-05-27"}, -{"geonameId":"485660","name":"Svetlyy","countryName":"Russia","timeZoneName":"Europe/Kaliningrad","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22119,"modificationDate":"2019-10-15"}, -{"geonameId":"2490180","name":"Mansourah","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":22117,"modificationDate":"2012-01-19"}, -{"geonameId":"534015","name":"Losino-Petrovskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22116,"modificationDate":"2012-01-17"}, -{"geonameId":"2967758","name":"Voiron","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22114,"modificationDate":"2019-06-05"}, -{"geonameId":"2639586","name":"Rawtenstall","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22114,"modificationDate":"2011-03-03"}, -{"geonameId":"5749352","name":"Roseburg","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22114,"modificationDate":"2017-04-15"}, -{"geonameId":"2871486","name":"Metzingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22112,"modificationDate":"2019-09-05"}, -{"geonameId":"3128824","name":"Barañáin","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22110,"modificationDate":"2012-01-19"}, -{"geonameId":"2997620","name":"Loos","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22107,"modificationDate":"2016-02-18"}, -{"geonameId":"1276455","name":"Beohāri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22107,"modificationDate":"2015-08-07"}, -{"geonameId":"344620","name":"Hagere Maryam","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22105,"modificationDate":"2012-06-05"}, -{"geonameId":"4520760","name":"Oxford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22104,"modificationDate":"2017-05-23"}, -{"geonameId":"1895695","name":"Kushima","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22102,"modificationDate":"2017-07-22"}, -{"geonameId":"8416817","name":"Moskovskiy","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":22100,"modificationDate":"2015-10-28"}, -{"geonameId":"2811698","name":"Weißwasser","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":22099,"modificationDate":"2015-09-05"}, -{"geonameId":"489162","name":"Staraya Kupavna","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22099,"modificationDate":"2018-08-27"}, -{"geonameId":"1262040","name":"Namagiripetai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22098,"modificationDate":"2020-06-10"}, -{"geonameId":"5126630","name":"Merrick","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22097,"modificationDate":"2017-05-23"}, -{"geonameId":"1271250","name":"Ghoti Budrukh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22095,"modificationDate":"2014-10-13"}, -{"geonameId":"2791857","name":"Maldegem","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":22092,"modificationDate":"2012-01-18"}, -{"geonameId":"2524734","name":"Floridia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22089,"modificationDate":"2015-08-03"}, -{"geonameId":"3522696","name":"Nogales","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":22085,"modificationDate":"2018-11-03"}, -{"geonameId":"3685335","name":"Curumaní","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":22084,"modificationDate":"2018-07-04"}, -{"geonameId":"1283465","name":"Dhankutā","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":22084,"modificationDate":"2019-10-19"}, -{"geonameId":"2616235","name":"Nørresundby","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":22083,"modificationDate":"2017-10-18"}, -{"geonameId":"5104755","name":"Somerset","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22083,"modificationDate":"2019-09-19"}, -{"geonameId":"149512","name":"Tinde","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22082,"modificationDate":"2016-07-26"}, -{"geonameId":"5803990","name":"Moses Lake","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22082,"modificationDate":"2017-03-09"}, -{"geonameId":"1699858","name":"Mendez-Nuñez","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":22081,"modificationDate":"2017-12-13"}, -{"geonameId":"1169367","name":"Naukot","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":22081,"modificationDate":"2019-12-06"}, -{"geonameId":"2798297","name":"Fleurus","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":22080,"modificationDate":"2011-08-01"}, -{"geonameId":"688723","name":"Vyshhorod","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22080,"modificationDate":"2014-10-01"}, -{"geonameId":"2523513","name":"San Cataldo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22079,"modificationDate":"2014-01-11"}, -{"geonameId":"2734484","name":"São João da Madeira","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":22079,"modificationDate":"2018-04-30"}, -{"geonameId":"4724642","name":"Saginaw","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22079,"modificationDate":"2017-03-09"}, -{"geonameId":"7259823","name":"Greater Northdale","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22079,"modificationDate":"2011-05-14"}, -{"geonameId":"8479411","name":"Northdale","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22079,"modificationDate":"2017-03-10"}, -{"geonameId":"5105127","name":"Summit","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22074,"modificationDate":"2017-05-23"}, -{"geonameId":"5232741","name":"Watertown","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22073,"modificationDate":"2017-05-23"}, -{"geonameId":"509598","name":"Pikalëvo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22072,"modificationDate":"2016-12-18"}, -{"geonameId":"150436","name":"Rulenge","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22069,"modificationDate":"2016-07-26"}, -{"geonameId":"1255925","name":"Siwāna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22067,"modificationDate":"2014-10-14"}, -{"geonameId":"3116503","name":"Arrasate / Mondragón","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22064,"modificationDate":"2020-03-18"}, -{"geonameId":"1858591","name":"Kozakai-chō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22064,"modificationDate":"2017-04-25"}, -{"geonameId":"2344229","name":"Dutsen Wai","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":22062,"modificationDate":"2016-06-22"}, -{"geonameId":"11549805","name":"Navas","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22059,"modificationDate":"2017-05-24"}, -{"geonameId":"3003481","name":"Le Mée-sur-Seine","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22058,"modificationDate":"2016-02-18"}, -{"geonameId":"314716","name":"Gediz","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":22058,"modificationDate":"2015-02-07"}, -{"geonameId":"5145607","name":"Alliance","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22055,"modificationDate":"2017-05-23"}, -{"geonameId":"4922459","name":"LaPorte","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22053,"modificationDate":"2017-07-02"}, -{"geonameId":"5660340","name":"Kalispell","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":22052,"modificationDate":"2017-03-09"}, -{"geonameId":"2512581","name":"Pilar de la Horadada","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":22050,"modificationDate":"2012-03-04"}, -{"geonameId":"3457854","name":"Maracás","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22049,"modificationDate":"2012-08-03"}, -{"geonameId":"787456","name":"Orahovac","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":22049,"modificationDate":"2015-02-22"}, -{"geonameId":"1524245","name":"Georgiyevka","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":22047,"modificationDate":"2020-06-10"}, -{"geonameId":"2523460","name":"San Giovanni la Punta","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22046,"modificationDate":"2014-04-13"}, -{"geonameId":"4911934","name":"South Holland","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22043,"modificationDate":"2017-05-23"}, -{"geonameId":"1849584","name":"Tsurugi-asahimachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22042,"modificationDate":"2017-04-09"}, -{"geonameId":"2376189","name":"Tékane","countryName":"Mauritania","timeZoneName":"Africa/Nouakchott","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22041,"modificationDate":"2019-04-27"}, -{"geonameId":"500047","name":"Ryazhsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22041,"modificationDate":"2019-09-05"}, -{"geonameId":"3392431","name":"Pedro II","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22038,"modificationDate":"2012-08-03"}, -{"geonameId":"341397","name":"Burye","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22038,"modificationDate":"2020-06-11"}, -{"geonameId":"1853514","name":"Owase","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":22038,"modificationDate":"2017-07-22"}, -{"geonameId":"4169345","name":"Princeton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22038,"modificationDate":"2011-05-14"}, -{"geonameId":"3901301","name":"Warnes","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":22036,"modificationDate":"2015-06-12"}, -{"geonameId":"2968555","name":"Villeneuve-la-Garenne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22036,"modificationDate":"2016-02-18"}, -{"geonameId":"3674654","name":"Mocoa","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":22035,"modificationDate":"2015-11-25"}, -{"geonameId":"293825","name":"Qiryat Shemona","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":22035,"modificationDate":"2017-07-05"}, -{"geonameId":"557469","name":"Igra","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":22033,"modificationDate":"2019-09-02"}, -{"geonameId":"5799587","name":"Kenmore","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":22030,"modificationDate":"2017-03-09"}, -{"geonameId":"1262534","name":"Multai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22029,"modificationDate":"2015-04-08"}, -{"geonameId":"252910","name":"Thívai","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22026,"modificationDate":"2014-03-27"}, -{"geonameId":"154648","name":"Maswa","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22025,"modificationDate":"2018-12-04"}, -{"geonameId":"2650346","name":"Retford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22023,"modificationDate":"2017-06-12"}, -{"geonameId":"50672","name":"Wanlaweyn","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":22022,"modificationDate":"2012-01-16"}, -{"geonameId":"4534934","name":"Del City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":22022,"modificationDate":"2017-03-09"}, -{"geonameId":"3165624","name":"Tivoli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22018,"modificationDate":"2020-05-27"}, -{"geonameId":"3179235","name":"Cecina","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":22018,"modificationDate":"2014-04-13"}, -{"geonameId":"2364752","name":"Nuatya","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22017,"modificationDate":"2020-06-10"}, -{"geonameId":"1275921","name":"Bhinga","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":22016,"modificationDate":"2015-08-07"}, -{"geonameId":"5085374","name":"Derry","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22015,"modificationDate":"2017-05-23"}, -{"geonameId":"2639495","name":"Renfrew","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22010,"modificationDate":"2019-09-05"}, -{"geonameId":"3401148","name":"Cururupu","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22007,"modificationDate":"2012-08-03"}, -{"geonameId":"1732826","name":"Mersing","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":22007,"modificationDate":"2014-06-24"}, -{"geonameId":"3471846","name":"Araçuaí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":22005,"modificationDate":"2012-08-03"}, -{"geonameId":"3018794","name":"Fécamp","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":22003,"modificationDate":"2016-02-18"}, -{"geonameId":"4995197","name":"Hamtramck","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22002,"modificationDate":"2017-05-23"}, -{"geonameId":"1168036","name":"Pind Dadan Khan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":22001,"modificationDate":"2019-12-06"}, -{"geonameId":"627908","name":"Hlybokaye","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":22000,"modificationDate":"2012-02-28"}, -{"geonameId":"12156906","name":"Kingsview Village-The Westway","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22000,"modificationDate":"2020-05-02"}, -{"geonameId":"1529452","name":"Hoxtolgay","countryName":"China","timeZoneName":"Asia/Urumqi","timeZoneOffsetNameWithoutDst":"GMT+06:00","population":22000,"modificationDate":"2013-06-04"}, -{"geonameId":"1784074","name":"Zhouzhuang","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":22000,"modificationDate":"2012-06-05"}, -{"geonameId":"2520069","name":"Carrizal","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":22000,"modificationDate":"2016-10-08"}, -{"geonameId":"2640085","name":"Portadown","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22000,"modificationDate":"2016-12-04"}, -{"geonameId":"6691884","name":"Heavitree","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":22000,"modificationDate":"2011-03-03"}, -{"geonameId":"2745340","name":"Volendam","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":22000,"modificationDate":"2017-10-17"}, -{"geonameId":"568012","name":"Chishmy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":22000,"modificationDate":"2012-01-17"}, -{"geonameId":"106909","name":"Duba","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":22000,"modificationDate":"2016-01-28"}, -{"geonameId":"1636670","name":"Maliana","countryName":"Timor Leste","timeZoneName":"Asia/Dili","timeZoneOffsetNameWithoutDst":"East Timor Time","population":22000,"modificationDate":"2016-11-27"}, -{"geonameId":"692832","name":"Staraya Belaya","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":22000,"modificationDate":"2020-06-10"}, -{"geonameId":"5119211","name":"Great Kills","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":22000,"modificationDate":"2017-04-16"}, -{"geonameId":"4177671","name":"Wekiwa Springs","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21998,"modificationDate":"2013-05-22"}, -{"geonameId":"2655858","name":"Berkhamsted","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21997,"modificationDate":"2018-10-28"}, -{"geonameId":"2515698","name":"La Oliva","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":21996,"modificationDate":"2015-08-31"}, -{"geonameId":"1712232","name":"Guiset East","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":21994,"modificationDate":"2017-12-13"}, -{"geonameId":"4161771","name":"Leesburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21993,"modificationDate":"2019-09-10"}, -{"geonameId":"3173314","name":"Mogliano Veneto","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21991,"modificationDate":"2014-04-13"}, -{"geonameId":"1705771","name":"Loma de Gato","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":21990,"modificationDate":"2017-12-13"}, -{"geonameId":"5344147","name":"Duarte","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":21990,"modificationDate":"2017-03-09"}, -{"geonameId":"3172228","name":"Noicattaro","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21988,"modificationDate":"2014-04-13"}, -{"geonameId":"174259","name":"Ad Dānā","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21987,"modificationDate":"2017-06-06"}, -{"geonameId":"4683021","name":"Converse","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21987,"modificationDate":"2017-03-09"}, -{"geonameId":"3393832","name":"Nova Russas","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21986,"modificationDate":"2012-08-03"}, -{"geonameId":"2794190","name":"Koekelberg","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":21984,"modificationDate":"2020-05-25"}, -{"geonameId":"1514382","name":"Beshariq","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":21984,"modificationDate":"2015-09-06"}, -{"geonameId":"3093785","name":"Łaziska Górne","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":21983,"modificationDate":"2011-07-31"}, -{"geonameId":"2872237","name":"Meinerzhagen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21982,"modificationDate":"2015-09-04"}, -{"geonameId":"1068865","name":"Arivonimamo","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":21982,"modificationDate":"2018-09-10"}, -{"geonameId":"3692073","name":"Santiago de Cao","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":21982,"modificationDate":"2014-04-06"}, -{"geonameId":"2510309","name":"Torre del Mar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21980,"modificationDate":"2019-01-09"}, -{"geonameId":"2112521","name":"Iwase","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":21980,"modificationDate":"2017-04-09"}, -{"geonameId":"2660727","name":"Frauenfeld","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":21979,"modificationDate":"2019-09-05"}, -{"geonameId":"3588476","name":"Tecpam","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":21978,"modificationDate":"2020-06-10"}, -{"geonameId":"3110643","name":"Sant Feliu de Guíxols","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21977,"modificationDate":"2012-03-04"}, -{"geonameId":"3023645","name":"Cormeilles-en-Parisis","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21973,"modificationDate":"2016-02-18"}, -{"geonameId":"3154209","name":"Halden","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":21970,"modificationDate":"2019-12-12"}, -{"geonameId":"4914830","name":"Villa Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21969,"modificationDate":"2017-05-23"}, -{"geonameId":"2783308","name":"Zedelgem","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":21968,"modificationDate":"2012-01-18"}, -{"geonameId":"2930778","name":"Elsdorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21967,"modificationDate":"2011-07-31"}, -{"geonameId":"1655140","name":"Pakxan","countryName":"Laos","timeZoneName":"Asia/Vientiane","timeZoneOffsetNameWithoutDst":"Indochina Time","population":21967,"modificationDate":"2019-04-10"}, -{"geonameId":"764312","name":"Mrągowo","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":21965,"modificationDate":"2018-06-09"}, -{"geonameId":"317851","name":"Menderes","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":21965,"modificationDate":"2013-08-06"}, -{"geonameId":"2524085","name":"Monreale","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21964,"modificationDate":"2015-08-02"}, -{"geonameId":"1608424","name":"Nang Rong","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":21961,"modificationDate":"2012-01-16"}, -{"geonameId":"1271936","name":"Fatehābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21957,"modificationDate":"2019-02-21"}, -{"geonameId":"4191124","name":"Decatur","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21957,"modificationDate":"2017-03-09"}, -{"geonameId":"3104115","name":"Andrychów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":21954,"modificationDate":"2019-10-15"}, -{"geonameId":"4905337","name":"Park Forest","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21954,"modificationDate":"2017-05-23"}, -{"geonameId":"3177029","name":"Fidenza","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21952,"modificationDate":"2015-08-02"}, -{"geonameId":"501320","name":"Roshal’","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":21951,"modificationDate":"2015-06-07"}, -{"geonameId":"3623486","name":"Heredia","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":21947,"modificationDate":"2019-06-05"}, -{"geonameId":"2831486","name":"Soltau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21945,"modificationDate":"2015-09-05"}, -{"geonameId":"4752665","name":"Christiansburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21943,"modificationDate":"2017-03-09"}, -{"geonameId":"1490402","name":"Sysert’","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":21942,"modificationDate":"2012-02-28"}, -{"geonameId":"2511330","name":"San Juan de Alicante","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21939,"modificationDate":"2016-07-25"}, -{"geonameId":"8224783","name":"Stanley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21938,"modificationDate":"2017-06-12"}, -{"geonameId":"3052101","name":"Gyál","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":21937,"modificationDate":"2014-11-05"}, -{"geonameId":"5954579","name":"Flemingdon Park","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21933,"modificationDate":"2020-05-02"}, -{"geonameId":"3127047","name":"Calatayud","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21933,"modificationDate":"2012-03-04"}, -{"geonameId":"5373492","name":"Jurupa Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":21930,"modificationDate":"2018-04-04"}, -{"geonameId":"2754454","name":"Hellevoetsluis","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":21927,"modificationDate":"2019-02-28"}, -{"geonameId":"5325011","name":"Ashland","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":21925,"modificationDate":"2011-05-14"}, -{"geonameId":"1607838","name":"Phanat Nikhom","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":21924,"modificationDate":"2012-01-16"}, -{"geonameId":"4177960","name":"West and East Lealman","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21924,"modificationDate":"2010-02-20"}, -{"geonameId":"4621846","name":"Farragut","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21919,"modificationDate":"2017-03-09"}, -{"geonameId":"1849850","name":"Toyohama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":21917,"modificationDate":"2018-07-04"}, -{"geonameId":"8449910","name":"La Porte","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21916,"modificationDate":"2017-05-23"}, -{"geonameId":"2873211","name":"Marsberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21914,"modificationDate":"2015-09-05"}, -{"geonameId":"2766429","name":"Sankt Pölten","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":21911,"modificationDate":"2019-09-05"}, -{"geonameId":"3523900","name":"Reyes Acozac","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21910,"modificationDate":"2018-11-03"}, -{"geonameId":"2833592","name":"Seesen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21909,"modificationDate":"2015-09-04"}, -{"geonameId":"1732877","name":"Labis","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":21906,"modificationDate":"2012-01-17"}, -{"geonameId":"1265655","name":"Kūmher","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21903,"modificationDate":"2014-10-14"}, -{"geonameId":"2810188","name":"Westerstede","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21902,"modificationDate":"2015-09-05"}, -{"geonameId":"1703116","name":"Malanday","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":21901,"modificationDate":"2017-12-13"}, -{"geonameId":"2513703","name":"Moncada","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21900,"modificationDate":"2012-03-04"}, -{"geonameId":"1156046","name":"Ban Na San","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":21900,"modificationDate":"2012-01-16"}, -{"geonameId":"2075265","name":"Busselton","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":21898,"modificationDate":"2019-07-21"}, -{"geonameId":"3453245","name":"Pomerode","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21898,"modificationDate":"2012-08-03"}, -{"geonameId":"1718328","name":"Cogan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":21898,"modificationDate":"2017-12-13"}, -{"geonameId":"2335596","name":"Kaiama","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":21897,"modificationDate":"2016-01-30"}, -{"geonameId":"264559","name":"Árta","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21895,"modificationDate":"2015-11-08"}, -{"geonameId":"1605754","name":"Taphan Hin","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":21895,"modificationDate":"2013-02-07"}, -{"geonameId":"2901588","name":"Hohen Neuendorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21893,"modificationDate":"2015-09-05"}, -{"geonameId":"2980586","name":"Saint-Foy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21893,"modificationDate":"2020-06-10"}, -{"geonameId":"3802723","name":"Playas del Rosario","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21893,"modificationDate":"2018-11-03"}, -{"geonameId":"760503","name":"Rembertów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":21893,"modificationDate":"2018-01-16"}, -{"geonameId":"1152953","name":"Khanu Woralaksaburi","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":21889,"modificationDate":"2012-01-16"}, -{"geonameId":"1261705","name":"Nattam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21888,"modificationDate":"2014-10-14"}, -{"geonameId":"99738","name":"Sok el Afej","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":21888,"modificationDate":"2020-06-10"}, -{"geonameId":"3086531","name":"Rydułtowy","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":21887,"modificationDate":"2010-09-21"}, -{"geonameId":"1489508","name":"Toguchin","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":21886,"modificationDate":"2012-01-17"}, -{"geonameId":"2042249","name":"Oro-ri","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":21882,"modificationDate":"2020-06-11"}, -{"geonameId":"2921473","name":"Gelnhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21881,"modificationDate":"2019-09-05"}, -{"geonameId":"3179443","name":"Castel Volturno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21881,"modificationDate":"2015-08-02"}, -{"geonameId":"3119746","name":"A Estrada","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21880,"modificationDate":"2015-06-01"}, -{"geonameId":"1265007","name":"Laungowāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21880,"modificationDate":"2015-05-06"}, -{"geonameId":"3173162","name":"Mondovì","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21880,"modificationDate":"2012-02-15"}, -{"geonameId":"2267112","name":"Lavradio","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":21877,"modificationDate":"2018-02-22"}, -{"geonameId":"4277718","name":"Prairie Village","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21877,"modificationDate":"2017-05-23"}, -{"geonameId":"5224949","name":"Smithfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21872,"modificationDate":"2017-05-23"}, -{"geonameId":"3456322","name":"Nerópolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21870,"modificationDate":"2012-08-03"}, -{"geonameId":"1282616","name":"Walling","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":21867,"modificationDate":"2020-06-10"}, -{"geonameId":"2519367","name":"Coín","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21866,"modificationDate":"2012-03-04"}, -{"geonameId":"2111704","name":"Namie","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":21866,"modificationDate":"2017-04-09"}, -{"geonameId":"4255836","name":"Clarksville","countryName":"United States","timeZoneName":"America/Kentucky/Louisville","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21866,"modificationDate":"2017-05-23"}, -{"geonameId":"4004555","name":"Huetamo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21864,"modificationDate":"2020-06-10"}, -{"geonameId":"5175496","name":"Wadsworth","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21860,"modificationDate":"2017-05-23"}, -{"geonameId":"2174580","name":"Boronia","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":21857,"modificationDate":"2019-07-18"}, -{"geonameId":"3122912","name":"Esparreguera","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21855,"modificationDate":"2019-02-22"}, -{"geonameId":"1274699","name":"Chandrakona","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21855,"modificationDate":"2014-10-14"}, -{"geonameId":"2511448","name":"Sant Antoni de Portmany","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21852,"modificationDate":"2014-01-07"}, -{"geonameId":"12156819","name":"South Parkdale","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21849,"modificationDate":"2020-05-02"}, -{"geonameId":"5788822","name":"Camas","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":21846,"modificationDate":"2017-03-09"}, -{"geonameId":"168620","name":"Kafr Zaytah","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21845,"modificationDate":"2020-06-10"}, -{"geonameId":"2756232","name":"Elburg","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":21844,"modificationDate":"2017-10-17"}, -{"geonameId":"3385467","name":"Várzea Alegre","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21841,"modificationDate":"2018-12-05"}, -{"geonameId":"2799007","name":"Edegem","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":21839,"modificationDate":"2012-01-18"}, -{"geonameId":"2636439","name":"Swanley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21839,"modificationDate":"2018-07-03"}, -{"geonameId":"2207618","name":"Cheltenham","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":21837,"modificationDate":"2019-07-18"}, -{"geonameId":"3446556","name":"Teutônia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21834,"modificationDate":"2012-08-03"}, -{"geonameId":"1271954","name":"Farakka","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21834,"modificationDate":"2018-07-04"}, -{"geonameId":"1254538","name":"Tijāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21833,"modificationDate":"2015-03-08"}, -{"geonameId":"2020689","name":"Luchegorsk","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":21833,"modificationDate":"2012-09-05"}, -{"geonameId":"1256295","name":"Silao","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21828,"modificationDate":"2016-01-07"}, -{"geonameId":"1262516","name":"Mundargi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21826,"modificationDate":"2014-10-14"}, -{"geonameId":"1057095","name":"Sakaraha","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":21826,"modificationDate":"2018-09-10"}, -{"geonameId":"3466062","name":"Cláudio","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21824,"modificationDate":"2012-08-03"}, -{"geonameId":"3874943","name":"Quellón","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":21823,"modificationDate":"2016-11-23"}, -{"geonameId":"3398614","name":"Guaiúba","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21820,"modificationDate":"2012-08-03"}, -{"geonameId":"168668","name":"Kufer Laha","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21819,"modificationDate":"2020-06-10"}, -{"geonameId":"2127802","name":"Tōbetsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":21818,"modificationDate":"2017-04-09"}, -{"geonameId":"4156042","name":"Fort Walton Beach","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21817,"modificationDate":"2017-11-12"}, -{"geonameId":"1500532","name":"Linëvo","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":21816,"modificationDate":"2018-08-22"}, -{"geonameId":"2507912","name":"Aïn Taya","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":21815,"modificationDate":"2019-05-10"}, -{"geonameId":"2958516","name":"Alfter","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21814,"modificationDate":"2011-04-25"}, -{"geonameId":"3171986","name":"Orbassano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21813,"modificationDate":"2014-04-13"}, -{"geonameId":"2513240","name":"Nerja","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21811,"modificationDate":"2018-11-22"}, -{"geonameId":"3837124","name":"San Justo","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":21809,"modificationDate":"2015-04-22"}, -{"geonameId":"547875","name":"Kizel","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":21807,"modificationDate":"2019-09-05"}, -{"geonameId":"4893591","name":"Geneva","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21806,"modificationDate":"2017-05-23"}, -{"geonameId":"4148803","name":"Brent","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21804,"modificationDate":"2011-05-14"}, -{"geonameId":"2831276","name":"Sondershausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21802,"modificationDate":"2015-09-05"}, -{"geonameId":"3500370","name":"Las Matas de Farfán","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":21802,"modificationDate":"2016-06-05"}, -{"geonameId":"611694","name":"Telavi","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":21800,"modificationDate":"2020-06-11"}, -{"geonameId":"966380","name":"Pampierstad","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":21800,"modificationDate":"2016-07-18"}, -{"geonameId":"2969958","name":"Verdun","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21798,"modificationDate":"2019-09-05"}, -{"geonameId":"1265821","name":"Kuchera","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21796,"modificationDate":"2014-10-14"}, -{"geonameId":"5172485","name":"South Euclid","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21794,"modificationDate":"2017-05-23"}, -{"geonameId":"3397665","name":"Jaguaruana","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21790,"modificationDate":"2019-10-31"}, -{"geonameId":"380757","name":"Abu Jibeha","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":21790,"modificationDate":"2012-01-19"}, -{"geonameId":"3517280","name":"Azompa","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21788,"modificationDate":"2020-06-10"}, -{"geonameId":"1174984","name":"Kanganpur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":21788,"modificationDate":"2019-12-06"}, -{"geonameId":"1260421","name":"Paonta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21787,"modificationDate":"2020-06-10"}, -{"geonameId":"144696","name":"Aghajari","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":21785,"modificationDate":"2013-05-08"}, -{"geonameId":"2521857","name":"Almonte","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21782,"modificationDate":"2012-03-04"}, -{"geonameId":"2641546","name":"Newton-le-Willows","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21782,"modificationDate":"2013-08-05"}, -{"geonameId":"2321031","name":"Ubiaja","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":21782,"modificationDate":"2016-01-30"}, -{"geonameId":"3107765","name":"Torrelodones","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21781,"modificationDate":"2012-03-04"}, -{"geonameId":"924572","name":"Nsanje","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":21774,"modificationDate":"2011-11-08"}, -{"geonameId":"749508","name":"Çaycuma","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":21773,"modificationDate":"2012-01-18"}, -{"geonameId":"2474638","name":"Zemoura","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":21770,"modificationDate":"2012-01-19"}, -{"geonameId":"3696509","name":"Huamachuco","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":21768,"modificationDate":"2012-07-19"}, -{"geonameId":"1687029","name":"Lake Sebu","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":21767,"modificationDate":"2019-07-12"}, -{"geonameId":"1264794","name":"Lonār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21765,"modificationDate":"2019-02-21"}, -{"geonameId":"3515993","name":"Tenango de Arista","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21765,"modificationDate":"2018-11-03"}, -{"geonameId":"4676920","name":"Brushy Creek","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21764,"modificationDate":"2011-05-14"}, -{"geonameId":"6049863","name":"La Prairie","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21763,"modificationDate":"2016-06-22"}, -{"geonameId":"1273397","name":"Dattāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21763,"modificationDate":"2015-04-08"}, -{"geonameId":"3119631","name":"Laguna de Duero","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21762,"modificationDate":"2012-03-04"}, -{"geonameId":"579738","name":"Bakal","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":21762,"modificationDate":"2019-09-05"}, -{"geonameId":"594656","name":"Silute","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21760,"modificationDate":"2014-09-24"}, -{"geonameId":"2914929","name":"Groß-Umstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21758,"modificationDate":"2015-09-04"}, -{"geonameId":"3084062","name":"Świebodzin","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":21757,"modificationDate":"2020-04-22"}, -{"geonameId":"3085045","name":"Środa Wielkopolska","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":21757,"modificationDate":"2019-09-05"}, -{"geonameId":"2639069","name":"Rottingdean","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21756,"modificationDate":"2011-07-31"}, -{"geonameId":"3391571","name":"Pombal","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21751,"modificationDate":"2012-08-03"}, -{"geonameId":"5583509","name":"Windsor","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":21751,"modificationDate":"2017-03-09"}, -{"geonameId":"1261882","name":"Napāsar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21750,"modificationDate":"2014-10-14"}, -{"geonameId":"1260035","name":"Pātūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21747,"modificationDate":"2014-10-13"}, -{"geonameId":"1179346","name":"Faruka","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":21747,"modificationDate":"2019-12-10"}, -{"geonameId":"4177779","name":"Westchase","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21747,"modificationDate":"2011-05-14"}, -{"geonameId":"4225039","name":"Sugar Hill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21747,"modificationDate":"2017-03-09"}, -{"geonameId":"1640755","name":"Kebonarun","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":21745,"modificationDate":"2012-01-17"}, -{"geonameId":"2172686","name":"Camberwell","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":21744,"modificationDate":"2019-07-18"}, -{"geonameId":"1853486","name":"Ōyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":21744,"modificationDate":"2017-04-09"}, -{"geonameId":"2128206","name":"Shibetsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":21744,"modificationDate":"2017-12-25"}, -{"geonameId":"3096779","name":"Kamienna Góra","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":21743,"modificationDate":"2015-09-04"}, -{"geonameId":"8347896","name":"Roxburgh Park","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":21742,"modificationDate":"2019-07-18"}, -{"geonameId":"3202822","name":"Cazin","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":21741,"modificationDate":"2016-06-05"}, -{"geonameId":"2970203","name":"Villacoublay","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21741,"modificationDate":"2020-06-10"}, -{"geonameId":"3057691","name":"Senica","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":21741,"modificationDate":"2019-09-05"}, -{"geonameId":"2042738","name":"Musan-ŭp","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":21739,"modificationDate":"2012-01-19"}, -{"geonameId":"3530932","name":"Chiconcuac","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21738,"modificationDate":"2018-11-03"}, -{"geonameId":"12156858","name":"Black Creek","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21737,"modificationDate":"2020-05-02"}, -{"geonameId":"1220163","name":"Hulbuk","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":21736,"modificationDate":"2020-04-08"}, -{"geonameId":"1220826","name":"Farkhor","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":21736,"modificationDate":"2012-02-28"}, -{"geonameId":"2520150","name":"Carcaixent","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21735,"modificationDate":"2015-05-31"}, -{"geonameId":"1262187","name":"Nāgod","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21732,"modificationDate":"2015-08-07"}, -{"geonameId":"2657356","name":"Amersham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21731,"modificationDate":"2018-07-03"}, -{"geonameId":"4828890","name":"Chillicothe","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21727,"modificationDate":"2017-05-23"}, -{"geonameId":"2978758","name":"Saint-Lô","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21722,"modificationDate":"2019-09-05"}, -{"geonameId":"1599640","name":"Ban Nong Wua So","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":21722,"modificationDate":"2006-01-17"}, -{"geonameId":"2829804","name":"Stadtallendorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21720,"modificationDate":"2015-09-05"}, -{"geonameId":"3047942","name":"Monor","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":21720,"modificationDate":"2014-11-05"}, -{"geonameId":"2468561","name":"Nefta","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":21720,"modificationDate":"2018-08-05"}, -{"geonameId":"766583","name":"Łęczna","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":21719,"modificationDate":"2010-10-16"}, -{"geonameId":"3443013","name":"Colonia del Sacramento","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":21714,"modificationDate":"2015-12-09"}, -{"geonameId":"659169","name":"Hamina","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21712,"modificationDate":"2015-11-23"}, -{"geonameId":"3453542","name":"Pirapozinho","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21709,"modificationDate":"2012-08-03"}, -{"geonameId":"3980841","name":"Tuxpan","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":21709,"modificationDate":"2018-11-03"}, -{"geonameId":"1272242","name":"Dum Duma","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21706,"modificationDate":"2014-10-13"}, -{"geonameId":"5397664","name":"South Lake Tahoe","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":21706,"modificationDate":"2017-03-09"}, -{"geonameId":"231696","name":"Kayunga","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":21704,"modificationDate":"2016-06-22"}, -{"geonameId":"3982887","name":"Sombrerete","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21702,"modificationDate":"2019-03-18"}, -{"geonameId":"2496573","name":"Feraoun","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":21700,"modificationDate":"2020-03-19"}, -{"geonameId":"5551498","name":"Anthem","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":21700,"modificationDate":"2011-05-14"}, -{"geonameId":"738858","name":"Tepecik","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":21699,"modificationDate":"2014-02-09"}, -{"geonameId":"5407908","name":"West Carson","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":21699,"modificationDate":"2011-05-14"}, -{"geonameId":"3439320","name":"Caacupé","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":21696,"modificationDate":"2019-03-28"}, -{"geonameId":"981158","name":"Lydenburg","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":21695,"modificationDate":"2014-11-08"}, -{"geonameId":"3170504","name":"Poggibonsi","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21692,"modificationDate":"2014-04-13"}, -{"geonameId":"2513798","name":"Mogán","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":21690,"modificationDate":"2012-03-04"}, -{"geonameId":"618120","name":"Kaushany","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21690,"modificationDate":"2020-06-10"}, -{"geonameId":"2325437","name":"Otukpa","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":21686,"modificationDate":"2016-01-30"}, -{"geonameId":"160677","name":"Chake Chake","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":21686,"modificationDate":"2016-07-26"}, -{"geonameId":"550846","name":"Khadyzhensk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":21685,"modificationDate":"2019-09-05"}, -{"geonameId":"5126183","name":"Massapequa","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21685,"modificationDate":"2017-05-23"}, -{"geonameId":"655130","name":"Kaarina","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21684,"modificationDate":"2019-09-09"}, -{"geonameId":"3832815","name":"Villa Allende","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":21683,"modificationDate":"2016-01-30"}, -{"geonameId":"1261401","name":"Nilakottai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21683,"modificationDate":"2014-10-14"}, -{"geonameId":"616599","name":"Gavarr","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":21680,"modificationDate":"2016-10-07"}, -{"geonameId":"2742051","name":"Bougado","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":21680,"modificationDate":"2018-12-04"}, -{"geonameId":"4932214","name":"Canton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21679,"modificationDate":"2017-05-23"}, -{"geonameId":"6946409","name":"Karak City","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21678,"modificationDate":"2018-12-03"}, -{"geonameId":"2797713","name":"Gembloux","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":21676,"modificationDate":"2011-03-25"}, -{"geonameId":"2563191","name":"Birkirkara","countryName":"Malta","timeZoneName":"Europe/Malta","timeZoneOffsetNameWithoutDst":"Central European Time","population":21676,"modificationDate":"2012-07-04"}, -{"geonameId":"2394711","name":"Dassa Zume","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":21672,"modificationDate":"2020-06-10"}, -{"geonameId":"3456696","name":"Morro do Chapéu","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21670,"modificationDate":"2014-06-28"}, -{"geonameId":"5103500","name":"Roselle","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21670,"modificationDate":"2017-05-23"}, -{"geonameId":"8531960","name":"Lincoln","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21670,"modificationDate":"2017-05-23"}, -{"geonameId":"4477525","name":"Lumberton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21667,"modificationDate":"2017-05-23"}, -{"geonameId":"2525362","name":"Carbonia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21664,"modificationDate":"2018-02-10"}, -{"geonameId":"1259890","name":"Peravurani","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21663,"modificationDate":"2014-10-14"}, -{"geonameId":"3621729","name":"San Pablo","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":21662,"modificationDate":"2016-09-07"}, -{"geonameId":"1692914","name":"Porac","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":21660,"modificationDate":"2017-12-13"}, -{"geonameId":"3992842","name":"Potatlan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21659,"modificationDate":"2020-06-10"}, -{"geonameId":"1849661","name":"Tsukumiura","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":21658,"modificationDate":"2017-08-02"}, -{"geonameId":"3170069","name":"Porto Torres","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21653,"modificationDate":"2019-09-28"}, -{"geonameId":"3174922","name":"Legnago","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21646,"modificationDate":"2015-08-01"}, -{"geonameId":"4007682","name":"El Salto","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21644,"modificationDate":"2018-11-03"}, -{"geonameId":"1604769","name":"Yasothon","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":21643,"modificationDate":"2012-01-16"}, -{"geonameId":"3472417","name":"Álvares Machado","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21642,"modificationDate":"2012-08-03"}, -{"geonameId":"2892980","name":"Karben","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21642,"modificationDate":"2015-09-05"}, -{"geonameId":"6693771","name":"Hadley Wood","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21639,"modificationDate":"2011-03-03"}, -{"geonameId":"2327521","name":"Oguta","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":21639,"modificationDate":"2016-01-30"}, -{"geonameId":"8348460","name":"Cabramatta","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":21634,"modificationDate":"2019-07-18"}, -{"geonameId":"1856703","name":"Miyazu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":21632,"modificationDate":"2017-07-22"}, -{"geonameId":"2953379","name":"Bad Pyrmont","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21629,"modificationDate":"2015-09-05"}, -{"geonameId":"1270482","name":"Haliyal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21625,"modificationDate":"2014-10-14"}, -{"geonameId":"4598353","name":"Taylors","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21617,"modificationDate":"2011-05-14"}, -{"geonameId":"2787989","name":"Rixensart","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":21616,"modificationDate":"2012-01-18"}, -{"geonameId":"2875484","name":"Luckenwalde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21616,"modificationDate":"2015-09-05"}, -{"geonameId":"2640869","name":"Ossett","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21616,"modificationDate":"2013-07-11"}, -{"geonameId":"294492","name":"Kefar Yona","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":21611,"modificationDate":"2017-07-02"}, -{"geonameId":"1273628","name":"Dalsingh Sarai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21611,"modificationDate":"2014-10-14"}, -{"geonameId":"2913922","name":"Guben","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21608,"modificationDate":"2015-09-05"}, -{"geonameId":"2936267","name":"Donaueschingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21604,"modificationDate":"2013-02-15"}, -{"geonameId":"1255646","name":"Karanpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21604,"modificationDate":"2014-10-14"}, -{"geonameId":"5411079","name":"Yucca Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":21600,"modificationDate":"2017-03-09"}, -{"geonameId":"3406263","name":"Barras","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21597,"modificationDate":"2012-08-03"}, -{"geonameId":"3465758","name":"Conceição do Jacuípe","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21597,"modificationDate":"2012-08-03"}, -{"geonameId":"4014553","name":"Chapala","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21596,"modificationDate":"2018-11-03"}, -{"geonameId":"1605279","name":"Trat","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":21590,"modificationDate":"2010-01-29"}, -{"geonameId":"2963398","name":"Kilkenny","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21589,"modificationDate":"2014-05-09"}, -{"geonameId":"6169661","name":"Tsawwassen","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":21588,"modificationDate":"2019-08-08"}, -{"geonameId":"2512990","name":"Palma del Río","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21588,"modificationDate":"2018-06-08"}, -{"geonameId":"2805385","name":"Xanten","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21587,"modificationDate":"2019-09-05"}, -{"geonameId":"4955219","name":"Westford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21587,"modificationDate":"2017-05-23"}, -{"geonameId":"3514163","name":"Zacatepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21586,"modificationDate":"2018-11-03"}, -{"geonameId":"2501508","name":"Chemini","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":21585,"modificationDate":"2012-01-19"}, -{"geonameId":"3115659","name":"Navalcarnero","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21584,"modificationDate":"2012-03-04"}, -{"geonameId":"2879832","name":"Lebach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21583,"modificationDate":"2015-09-05"}, -{"geonameId":"2997110","name":"Lunéville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21582,"modificationDate":"2019-04-10"}, -{"geonameId":"1257498","name":"Samthar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21582,"modificationDate":"2016-02-11"}, -{"geonameId":"2872225","name":"Meiningen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21580,"modificationDate":"2015-09-05"}, -{"geonameId":"1277409","name":"Banat","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21580,"modificationDate":"2015-04-08"}, -{"geonameId":"3883615","name":"Lautaro","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":21579,"modificationDate":"2013-01-11"}, -{"geonameId":"2942073","name":"Büdingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21579,"modificationDate":"2015-09-05"}, -{"geonameId":"4565105","name":"Guayama","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":21575,"modificationDate":"2015-08-03"}, -{"geonameId":"2514946","name":"Loja","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21574,"modificationDate":"2018-06-21"}, -{"geonameId":"2148591","name":"Springvale","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":21572,"modificationDate":"2019-07-18"}, -{"geonameId":"2345498","name":"Damboa","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":21571,"modificationDate":"2016-06-22"}, -{"geonameId":"1263911","name":"Māndalgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21569,"modificationDate":"2014-10-14"}, -{"geonameId":"1262346","name":"Muttupet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21568,"modificationDate":"2017-07-04"}, -{"geonameId":"6163363","name":"The Beaches","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21567,"modificationDate":"2020-05-02"}, -{"geonameId":"4154205","name":"Edgewater","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21566,"modificationDate":"2017-03-09"}, -{"geonameId":"3462601","name":"Gandu","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21565,"modificationDate":"2012-08-03"}, -{"geonameId":"3088435","name":"Polkowice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":21565,"modificationDate":"2018-11-09"}, -{"geonameId":"1257673","name":"Sakti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21561,"modificationDate":"2020-06-10"}, -{"geonameId":"3021516","name":"Deuil-la-Barre","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21560,"modificationDate":"2016-02-18"}, -{"geonameId":"1818920","name":"Sha Tin","countryName":"Hong Kong","timeZoneName":"Asia/Hong_Kong","timeZoneOffsetNameWithoutDst":"Hong Kong Time","population":21559,"modificationDate":"2013-08-09"}, -{"geonameId":"2473229","name":"Chebba","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":21559,"modificationDate":"2018-08-05"}, -{"geonameId":"8374209","name":"H̱ura","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":21558,"modificationDate":"2020-04-24"}, -{"geonameId":"1716618","name":"Cuenca","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":21558,"modificationDate":"2017-12-13"}, -{"geonameId":"1848498","name":"Yashiro","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":21554,"modificationDate":"2017-04-09"}, -{"geonameId":"154002","name":"Mhango","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":21553,"modificationDate":"2018-12-04"}, -{"geonameId":"5178165","name":"Allison Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21552,"modificationDate":"2017-05-23"}, -{"geonameId":"1276486","name":"Belūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21551,"modificationDate":"2014-10-14"}, -{"geonameId":"99439","name":"Nāḩiyat al Fuhūd","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":21551,"modificationDate":"2016-06-22"}, -{"geonameId":"1859113","name":"Kodama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":21544,"modificationDate":"2020-06-11"}, -{"geonameId":"2469256","name":"Menzel Jemil","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":21542,"modificationDate":"2018-08-05"}, -{"geonameId":"3117010","name":"Medina del Campo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21540,"modificationDate":"2012-03-04"}, -{"geonameId":"3010529","name":"La Celle-Saint-Cloud","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21539,"modificationDate":"2019-03-26"}, -{"geonameId":"1626459","name":"Suai","countryName":"Timor Leste","timeZoneName":"Asia/Dili","timeZoneOffsetNameWithoutDst":"East Timor Time","population":21539,"modificationDate":"2016-11-27"}, -{"geonameId":"1538311","name":"Buston","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":21537,"modificationDate":"2020-01-31"}, -{"geonameId":"3050212","name":"Keszthely","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":21534,"modificationDate":"2015-06-17"}, -{"geonameId":"5326561","name":"Bay Point","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":21534,"modificationDate":"2014-02-11"}, -{"geonameId":"1271199","name":"Gingee","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21530,"modificationDate":"2017-02-04"}, -{"geonameId":"5091383","name":"Portsmouth","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21530,"modificationDate":"2018-03-02"}, -{"geonameId":"3058477","name":"Nové Mesto nad Váhom","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":21527,"modificationDate":"2019-06-09"}, -{"geonameId":"2936977","name":"Dillingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21526,"modificationDate":"2015-09-05"}, -{"geonameId":"3037540","name":"Annecy-le-Vieux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21521,"modificationDate":"2017-05-29"}, -{"geonameId":"4408000","name":"Sedalia","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21516,"modificationDate":"2017-05-23"}, -{"geonameId":"4165565","name":"Naples","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21512,"modificationDate":"2019-09-19"}, -{"geonameId":"2975469","name":"Sceaux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21511,"modificationDate":"2016-02-18"}, -{"geonameId":"3394661","name":"Moju","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21510,"modificationDate":"2012-08-03"}, -{"geonameId":"2820577","name":"Überlingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21507,"modificationDate":"2015-03-04"}, -{"geonameId":"1258406","name":"Rāpar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21507,"modificationDate":"2014-10-13"}, -{"geonameId":"430569","name":"Ngozi","countryName":"Burundi","timeZoneName":"Africa/Bujumbura","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":21506,"modificationDate":"2013-06-06"}, -{"geonameId":"2808461","name":"Wilnsdorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21505,"modificationDate":"2011-04-25"}, -{"geonameId":"2156977","name":"Mooroolbark","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":21503,"modificationDate":"2019-07-18"}, -{"geonameId":"1274848","name":"Chamba","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21502,"modificationDate":"2015-09-06"}, -{"geonameId":"320581","name":"Bozova","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":21502,"modificationDate":"2012-01-18"}, -{"geonameId":"3577072","name":"Tanki Leendert","countryName":"Aruba","timeZoneName":"America/Aruba","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":21500,"modificationDate":"2018-12-04"}, -{"geonameId":"1252479","name":"Punākha","countryName":"Bhutan","timeZoneName":"Asia/Thimphu","timeZoneOffsetNameWithoutDst":"Bhutan Time","population":21500,"modificationDate":"2013-08-11"}, -{"geonameId":"6269470","name":"Černý Most","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":21500,"modificationDate":"2018-09-13"}, -{"geonameId":"1264385","name":"Maheshwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21500,"modificationDate":"2014-10-14"}, -{"geonameId":"2704136","name":"Huskvarna","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":21500,"modificationDate":"2011-10-30"}, -{"geonameId":"745714","name":"Havza","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":21500,"modificationDate":"2012-01-18"}, -{"geonameId":"1850498","name":"Tatsuno","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":21499,"modificationDate":"2017-04-09"}, -{"geonameId":"5381515","name":"Patterson","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":21498,"modificationDate":"2017-03-09"}, -{"geonameId":"4258285","name":"Greenfield","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21497,"modificationDate":"2017-05-23"}, -{"geonameId":"3446752","name":"Taquarituba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21492,"modificationDate":"2012-08-03"}, -{"geonameId":"258463","name":"Livadeiá","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21492,"modificationDate":"2015-11-08"}, -{"geonameId":"4792522","name":"Waynesboro","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21491,"modificationDate":"2017-03-09"}, -{"geonameId":"1875588","name":"Kowŏn-ŭp","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":21490,"modificationDate":"2012-01-19"}, -{"geonameId":"2789751","name":"Oostkamp","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":21489,"modificationDate":"2012-01-18"}, -{"geonameId":"258038","name":"Artémida","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21488,"modificationDate":"2019-10-23"}, -{"geonameId":"2336251","name":"Jebba","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":21488,"modificationDate":"2018-10-15"}, -{"geonameId":"3453315","name":"Poconé","countryName":"Brazil","timeZoneName":"America/Cuiaba","timeZoneOffsetNameWithoutDst":"Amazon Time","population":21484,"modificationDate":"2012-08-03"}, -{"geonameId":"1267558","name":"Kasrāwad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21484,"modificationDate":"2014-10-14"}, -{"geonameId":"170887","name":"Dirbassiyeh","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21481,"modificationDate":"2020-06-10"}, -{"geonameId":"2753706","name":"Hoogezand","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":21480,"modificationDate":"2019-01-20"}, -{"geonameId":"193627","name":"Karuri","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":21476,"modificationDate":"2019-02-21"}, -{"geonameId":"3449793","name":"Santa Rosa de Viterbo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21473,"modificationDate":"2012-08-03"}, -{"geonameId":"3007609","name":"Lannion","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21473,"modificationDate":"2019-04-10"}, -{"geonameId":"2814131","name":"Waren","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21470,"modificationDate":"2015-09-05"}, -{"geonameId":"2016701","name":"Shimanovsk","countryName":"Russia","timeZoneName":"Asia/Yakutsk","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":21466,"modificationDate":"2019-09-05"}, -{"geonameId":"1173025","name":"Kotli Loharan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":21463,"modificationDate":"2019-12-06"}, -{"geonameId":"2643160","name":"Maldon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21462,"modificationDate":"2018-07-03"}, -{"geonameId":"4829791","name":"Albertville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21462,"modificationDate":"2017-04-08"}, -{"geonameId":"1277238","name":"Bānsdīh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21457,"modificationDate":"2016-02-11"}, -{"geonameId":"3617725","name":"Masatepe","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":21452,"modificationDate":"2018-08-08"}, -{"geonameId":"693301","name":"Sokal’","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21451,"modificationDate":"2014-08-06"}, -{"geonameId":"933141","name":"Ramotswa","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":21450,"modificationDate":"2014-04-06"}, -{"geonameId":"1165507","name":"Shahpur Chakar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":21446,"modificationDate":"2019-12-06"}, -{"geonameId":"3587428","name":"Aguilares","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":21445,"modificationDate":"2012-02-02"}, -{"geonameId":"2184155","name":"Pukekohe East","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":21438,"modificationDate":"2015-03-05"}, -{"geonameId":"4952121","name":"Stoneham","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21437,"modificationDate":"2017-05-23"}, -{"geonameId":"3397230","name":"José de Freitas","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21432,"modificationDate":"2012-08-03"}, -{"geonameId":"3439748","name":"Trinidad","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":21429,"modificationDate":"2013-08-06"}, -{"geonameId":"3461498","name":"Igarapé","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21427,"modificationDate":"2012-08-03"}, -{"geonameId":"704388","name":"Krasnohrad","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21426,"modificationDate":"2015-05-06"}, -{"geonameId":"5166516","name":"Perrysburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21423,"modificationDate":"2017-05-23"}, -{"geonameId":"3461914","name":"Guaramirim","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21422,"modificationDate":"2012-08-03"}, -{"geonameId":"5576859","name":"Erie","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":21420,"modificationDate":"2017-03-09"}, -{"geonameId":"3385538","name":"Vargem Grande","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21419,"modificationDate":"2012-08-03"}, -{"geonameId":"1270603","name":"Guruvāyūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21416,"modificationDate":"2014-10-13"}, -{"geonameId":"3021605","name":"Denain","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21412,"modificationDate":"2016-02-18"}, -{"geonameId":"1734715","name":"Marang","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":21410,"modificationDate":"2012-01-17"}, -{"geonameId":"4017984","name":"Atoyac de Álvarez","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21407,"modificationDate":"2013-08-01"}, -{"geonameId":"3038159","name":"Allauch","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21406,"modificationDate":"2016-02-18"}, -{"geonameId":"1263083","name":"Mhāsvād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21404,"modificationDate":"2016-07-07"}, -{"geonameId":"1269498","name":"Jaitāran","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21403,"modificationDate":"2015-09-06"}, -{"geonameId":"2812515","name":"Weilheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21401,"modificationDate":"2014-02-08"}, -{"geonameId":"293420","name":"maalot Tarshīhā","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":21400,"modificationDate":"2020-04-27"}, -{"geonameId":"543436","name":"Kovylkino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":21400,"modificationDate":"2019-09-05"}, -{"geonameId":"5735238","name":"Klamath Falls","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":21399,"modificationDate":"2018-03-27"}, -{"geonameId":"5773001","name":"Clinton","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":21399,"modificationDate":"2017-05-15"}, -{"geonameId":"3024035","name":"Concarneau","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21397,"modificationDate":"2020-06-10"}, -{"geonameId":"513898","name":"Otradnoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":21397,"modificationDate":"2016-12-18"}, -{"geonameId":"584614","name":"Zabrat","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":21396,"modificationDate":"2014-06-27"}, -{"geonameId":"5895482","name":"Bayview Village","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21396,"modificationDate":"2020-05-02"}, -{"geonameId":"3019193","name":"Eysines","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21394,"modificationDate":"2020-01-08"}, -{"geonameId":"1258362","name":"Ratanpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21392,"modificationDate":"2015-09-06"}, -{"geonameId":"1727080","name":"Bansalan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":21391,"modificationDate":"2017-12-13"}, -{"geonameId":"5296802","name":"Green Valley","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":21391,"modificationDate":"2011-05-14"}, -{"geonameId":"1265539","name":"Kurandvād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21388,"modificationDate":"2014-10-13"}, -{"geonameId":"2890158","name":"Kitzingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21387,"modificationDate":"2014-01-15"}, -{"geonameId":"107959","name":"Al-Taraf","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":21386,"modificationDate":"2020-06-10"}, -{"geonameId":"1513038","name":"Paxtakor Shahri","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":21384,"modificationDate":"2020-02-07"}, -{"geonameId":"1279066","name":"Alandi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21383,"modificationDate":"2014-10-13"}, -{"geonameId":"5576909","name":"Evans","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":21383,"modificationDate":"2017-03-09"}, -{"geonameId":"5690366","name":"Mandan","countryName":"United States","timeZoneName":"America/North_Dakota/New_Salem","timeZoneOffsetNameWithoutDst":"Central Time","population":21382,"modificationDate":"2017-05-23"}, -{"geonameId":"12156890","name":"East End-Danforth","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21381,"modificationDate":"2020-05-02"}, -{"geonameId":"3467985","name":"Cambará","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21380,"modificationDate":"2012-08-03"}, -{"geonameId":"2521590","name":"Armilla","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21380,"modificationDate":"2017-10-26"}, -{"geonameId":"3087307","name":"Rawicz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":21380,"modificationDate":"2019-09-05"}, -{"geonameId":"10287505","name":"Lower Sackville","countryName":"Canada","timeZoneName":"America/Halifax","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":21379,"modificationDate":"2016-10-18"}, -{"geonameId":"317241","name":"Demirci","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":21378,"modificationDate":"2013-08-06"}, -{"geonameId":"3353540","name":"Rehoboth","countryName":"Namibia","timeZoneName":"Africa/Windhoek","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":21377,"modificationDate":"2016-09-19"}, -{"geonameId":"4955884","name":"Winchester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21374,"modificationDate":"2017-05-23"}, -{"geonameId":"3527596","name":"Fortín de las Flores","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21370,"modificationDate":"2013-07-31"}, -{"geonameId":"5004359","name":"Okemos","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21369,"modificationDate":"2017-05-23"}, -{"geonameId":"3272941","name":"Riedstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21362,"modificationDate":"2019-09-05"}, -{"geonameId":"3022376","name":"Croix","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21361,"modificationDate":"2016-02-18"}, -{"geonameId":"2954602","name":"Auerbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21358,"modificationDate":"2017-09-19"}, -{"geonameId":"3017805","name":"Forbach","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21358,"modificationDate":"2019-04-10"}, -{"geonameId":"2836282","name":"Schortens","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21357,"modificationDate":"2011-07-31"}, -{"geonameId":"2953339","name":"Bad Soden am Taunus","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21357,"modificationDate":"2019-09-05"}, -{"geonameId":"4375087","name":"Arnold","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21357,"modificationDate":"2017-05-23"}, -{"geonameId":"2807218","name":"Wittmund","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21355,"modificationDate":"2015-09-04"}, -{"geonameId":"2520645","name":"Cabra","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21352,"modificationDate":"2012-03-04"}, -{"geonameId":"8358562","name":"Péfki","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21352,"modificationDate":"2019-10-23"}, -{"geonameId":"3465731","name":"Conchal","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21351,"modificationDate":"2012-08-03"}, -{"geonameId":"2996180","name":"Manosque","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21351,"modificationDate":"2016-02-18"}, -{"geonameId":"3313472","name":"Athlone","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21351,"modificationDate":"2019-10-23"}, -{"geonameId":"4890536","name":"East Moline","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21350,"modificationDate":"2017-05-23"}, -{"geonameId":"10062606","name":"Vilkpėdė","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21346,"modificationDate":"2015-02-12"}, -{"geonameId":"2758177","name":"Brummen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":21344,"modificationDate":"2017-10-17"}, -{"geonameId":"3058210","name":"Pezinok","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":21343,"modificationDate":"2019-09-05"}, -{"geonameId":"156627","name":"Kiwira","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":21342,"modificationDate":"2016-07-26"}, -{"geonameId":"1263879","name":"Mandāwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21339,"modificationDate":"2015-04-08"}, -{"geonameId":"1517323","name":"Yanykurgan","countryName":"Kazakhstan","timeZoneName":"Asia/Qyzylorda","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":21339,"modificationDate":"2015-11-08"}, -{"geonameId":"4177908","name":"West Pensacola","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21339,"modificationDate":"2011-05-14"}, -{"geonameId":"2936658","name":"Doeberln","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21338,"modificationDate":"2020-06-10"}, -{"geonameId":"4474436","name":"Kinston","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21337,"modificationDate":"2017-05-23"}, -{"geonameId":"2878074","name":"Lichtenfels","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21336,"modificationDate":"2019-03-11"}, -{"geonameId":"1260685","name":"Pallikondai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21335,"modificationDate":"2016-11-22"}, -{"geonameId":"1279144","name":"Akaltara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21333,"modificationDate":"2015-09-06"}, -{"geonameId":"3060950","name":"Brezno","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":21331,"modificationDate":"2019-06-09"}, -{"geonameId":"2953424","name":"Bad Kissingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21328,"modificationDate":"2019-09-05"}, -{"geonameId":"2732978","name":"Valongo","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":21328,"modificationDate":"2018-02-06"}, -{"geonameId":"1276627","name":"Bedi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21327,"modificationDate":"2014-10-13"}, -{"geonameId":"318372","name":"Çine","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":21327,"modificationDate":"2015-04-06"}, -{"geonameId":"1256828","name":"Seondha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21326,"modificationDate":"2014-10-14"}, -{"geonameId":"2516431","name":"Isla Cristina","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21324,"modificationDate":"2012-03-04"}, -{"geonameId":"1266891","name":"Kharkhauda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21320,"modificationDate":"2015-01-07"}, -{"geonameId":"4657077","name":"Shelbyville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21317,"modificationDate":"2017-03-09"}, -{"geonameId":"318755","name":"Chesnie","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":21316,"modificationDate":"2020-06-10"}, -{"geonameId":"3391412","name":"Portel","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21315,"modificationDate":"2012-08-03"}, -{"geonameId":"2520055","name":"Cártama","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21313,"modificationDate":"2018-06-08"}, -{"geonameId":"1608539","name":"Nakhon Nayok","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":21309,"modificationDate":"2012-01-16"}, -{"geonameId":"2404433","name":"Port Loko","countryName":"Sierra Leone","timeZoneName":"Africa/Freetown","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21308,"modificationDate":"2018-09-05"}, -{"geonameId":"713504","name":"Amvrosiyivka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21307,"modificationDate":"2014-08-06"}, -{"geonameId":"3397851","name":"Itupiranga","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21301,"modificationDate":"2012-08-03"}, -{"geonameId":"343386","name":"Assab","countryName":"Eritrea","timeZoneName":"Africa/Asmara","timeZoneOffsetNameWithoutDst":"East Africa Time","population":21300,"modificationDate":"2012-01-19"}, -{"geonameId":"2654141","name":"Buxton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21300,"modificationDate":"2010-11-07"}, -{"geonameId":"3043095","name":"Várpalota","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":21299,"modificationDate":"2014-11-05"}, -{"geonameId":"1273083","name":"Deoli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21298,"modificationDate":"2016-06-23"}, -{"geonameId":"5000947","name":"Marquette","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21297,"modificationDate":"2017-05-23"}, -{"geonameId":"1068971","name":"Antsohihy","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":21290,"modificationDate":"2018-09-07"}, -{"geonameId":"1260718","name":"Birsinghapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21287,"modificationDate":"2020-06-10"}, -{"geonameId":"3185082","name":"Krujë","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":21286,"modificationDate":"2012-06-01"}, -{"geonameId":"1854177","name":"Ōmamachō-ōmama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":21286,"modificationDate":"2017-04-09"}, -{"geonameId":"2831088","name":"Sonthofen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21285,"modificationDate":"2014-01-16"}, -{"geonameId":"8347326","name":"Fairfield Heights","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21285,"modificationDate":"2017-05-23"}, -{"geonameId":"2504385","name":"Bensekrane","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":21283,"modificationDate":"2012-01-19"}, -{"geonameId":"7932638","name":"Malvern East","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":21282,"modificationDate":"2019-07-18"}, -{"geonameId":"4958141","name":"Biddeford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21282,"modificationDate":"2017-05-23"}, -{"geonameId":"3072463","name":"Kutná Hora","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":21280,"modificationDate":"2019-09-05"}, -{"geonameId":"2511930","name":"Requena","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21278,"modificationDate":"2012-03-04"}, -{"geonameId":"3174494","name":"Lugo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21273,"modificationDate":"2015-08-01"}, -{"geonameId":"1272790","name":"Dhekiajuli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21271,"modificationDate":"2014-10-13"}, -{"geonameId":"3098200","name":"Gryfino","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":21270,"modificationDate":"2019-09-05"}, -{"geonameId":"5028163","name":"Golden Valley","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21270,"modificationDate":"2017-05-23"}, -{"geonameId":"3458786","name":"Laranjal Paulista","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21264,"modificationDate":"2012-08-03"}, -{"geonameId":"3120410","name":"Illescas","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21264,"modificationDate":"2012-03-04"}, -{"geonameId":"3070122","name":"Náchod","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":21263,"modificationDate":"2019-10-10"}, -{"geonameId":"4678901","name":"Canyon Lake","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21262,"modificationDate":"2011-05-14"}, -{"geonameId":"2978621","name":"Sant Manden","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21261,"modificationDate":"2020-06-10"}, -{"geonameId":"6943562","name":"North Lakes","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":21260,"modificationDate":"2019-07-18"}, -{"geonameId":"1274343","name":"Chhāta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21260,"modificationDate":"2015-08-07"}, -{"geonameId":"3119536","name":"Lalín","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21254,"modificationDate":"2015-09-03"}, -{"geonameId":"4081914","name":"Oxford","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21249,"modificationDate":"2017-03-09"}, -{"geonameId":"3182757","name":"Arzignano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21247,"modificationDate":"2015-08-01"}, -{"geonameId":"3467956","name":"Cambuí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21246,"modificationDate":"2012-08-03"}, -{"geonameId":"294078","name":"Nesher","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":21245,"modificationDate":"2017-07-02"}, -{"geonameId":"2821517","name":"Traunreut","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21244,"modificationDate":"2013-02-19"}, -{"geonameId":"3356294","name":"Katutura","countryName":"Namibia","timeZoneName":"Africa/Windhoek","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":21243,"modificationDate":"2018-02-25"}, -{"geonameId":"3130131","name":"Amposta","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21240,"modificationDate":"2015-06-16"}, -{"geonameId":"1521379","name":"Lenger","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":21238,"modificationDate":"2019-03-14"}, -{"geonameId":"634093","name":"Tornio","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21236,"modificationDate":"2014-09-25"}, -{"geonameId":"1710103","name":"Mambulao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":21236,"modificationDate":"2020-06-10"}, -{"geonameId":"192710","name":"Kiambu","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":21234,"modificationDate":"2017-11-07"}, -{"geonameId":"5273812","name":"South Milwaukee","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21233,"modificationDate":"2017-05-23"}, -{"geonameId":"2646606","name":"Horley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21232,"modificationDate":"2018-07-03"}, -{"geonameId":"5370493","name":"Marina","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":21229,"modificationDate":"2017-03-09"}, -{"geonameId":"2652204","name":"Cowes","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21226,"modificationDate":"2018-08-11"}, -{"geonameId":"5804306","name":"Mukilteo","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":21226,"modificationDate":"2017-03-09"}, -{"geonameId":"3353811","name":"Otjiwarongo","countryName":"Namibia","timeZoneName":"Africa/Windhoek","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":21224,"modificationDate":"2016-12-20"}, -{"geonameId":"2156934","name":"Morayfield","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":21221,"modificationDate":"2019-07-18"}, -{"geonameId":"3879123","name":"Nacimiento","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":21220,"modificationDate":"2013-01-11"}, -{"geonameId":"1278282","name":"Asifābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21213,"modificationDate":"2018-05-27"}, -{"geonameId":"6092125","name":"Oakwood Village","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21210,"modificationDate":"2020-05-02"}, -{"geonameId":"6534235","name":"Cassano Magnago","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21208,"modificationDate":"2015-08-01"}, -{"geonameId":"5386053","name":"Rancho San Diego","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":21208,"modificationDate":"2011-05-14"}, -{"geonameId":"1272881","name":"Dharampur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21207,"modificationDate":"2014-10-13"}, -{"geonameId":"3351500","name":"Vila Robert Williams","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":21205,"modificationDate":"2020-06-10"}, -{"geonameId":"3670280","name":"Sampués","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":21204,"modificationDate":"2018-09-05"}, -{"geonameId":"722439","name":"Békés","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":21198,"modificationDate":"2014-11-05"}, -{"geonameId":"495062","name":"Sheksna","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":21197,"modificationDate":"2012-01-17"}, -{"geonameId":"3393115","name":"Paracuru","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21196,"modificationDate":"2012-08-03"}, -{"geonameId":"4235668","name":"Charleston","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21196,"modificationDate":"2017-05-23"}, -{"geonameId":"584471","name":"Abdulino","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":21195,"modificationDate":"2019-09-05"}, -{"geonameId":"1486340","name":"Yarovoye","countryName":"Russia","timeZoneName":"Asia/Barnaul","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":21195,"modificationDate":"2012-01-17"}, -{"geonameId":"2928967","name":"Eschwege","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21191,"modificationDate":"2015-09-05"}, -{"geonameId":"288721","name":"Bidbid","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":21188,"modificationDate":"2012-04-05"}, -{"geonameId":"5083221","name":"Bedford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21188,"modificationDate":"2017-05-23"}, -{"geonameId":"1759486","name":"Kuang","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":21185,"modificationDate":"2012-01-17"}, -{"geonameId":"483495","name":"Terek","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":21180,"modificationDate":"2012-01-17"}, -{"geonameId":"2929831","name":"Eppingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21179,"modificationDate":"2013-02-15"}, -{"geonameId":"2664203","name":"Västervik","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":21178,"modificationDate":"2017-03-18"}, -{"geonameId":"2163776","name":"Hawthorn South","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":21177,"modificationDate":"2017-01-31"}, -{"geonameId":"2165329","name":"Glenferrie","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":21177,"modificationDate":"2016-06-22"}, -{"geonameId":"3988462","name":"Romita","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21176,"modificationDate":"2018-11-03"}, -{"geonameId":"3445433","name":"Vassouras","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21174,"modificationDate":"2012-08-03"}, -{"geonameId":"3754915","name":"Jimaguayú","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":21169,"modificationDate":"2016-01-07"}, -{"geonameId":"2270229","name":"Caparica","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":21167,"modificationDate":"2018-02-06"}, -{"geonameId":"313013","name":"Hacılar","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":21167,"modificationDate":"2012-01-18"}, -{"geonameId":"3176849","name":"Follonica","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21163,"modificationDate":"2014-04-13"}, -{"geonameId":"726320","name":"Troyan","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21162,"modificationDate":"2007-07-10"}, -{"geonameId":"3564885","name":"Cauto Cristo","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":21159,"modificationDate":"2016-02-07"}, -{"geonameId":"601661","name":"Boldumsaz","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":21159,"modificationDate":"2013-10-30"}, -{"geonameId":"2992229","name":"Montmorency","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21156,"modificationDate":"2016-02-18"}, -{"geonameId":"1850627","name":"Tanushimarumachi-toyoki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":21156,"modificationDate":"2017-04-09"}, -{"geonameId":"4459343","name":"Carrboro","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21156,"modificationDate":"2017-05-23"}, -{"geonameId":"1164045","name":"Talhar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":21154,"modificationDate":"2019-12-06"}, -{"geonameId":"3190589","name":"Pozsega","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":21153,"modificationDate":"2020-06-11"}, -{"geonameId":"4889107","name":"Crest Hill","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21153,"modificationDate":"2017-05-23"}, -{"geonameId":"3687318","name":"Carmen de Viboral","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":21152,"modificationDate":"2018-06-08"}, -{"geonameId":"4593724","name":"Saint Andrews","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21151,"modificationDate":"2006-01-17"}, -{"geonameId":"2749723","name":"Oegstgeest","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":21149,"modificationDate":"2017-10-17"}, -{"geonameId":"3493100","name":"San José de Ocoa","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":21148,"modificationDate":"2016-06-05"}, -{"geonameId":"6534253","name":"San Nicola la Strada","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21147,"modificationDate":"2015-08-01"}, -{"geonameId":"2485633","name":"Oued el Alleug","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":21146,"modificationDate":"2012-01-19"}, -{"geonameId":"1254787","name":"Telhāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21146,"modificationDate":"2014-10-13"}, -{"geonameId":"127033","name":"Khonsar","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":21146,"modificationDate":"2020-06-10"}, -{"geonameId":"2208305","name":"Dee Why","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":21145,"modificationDate":"2019-07-18"}, -{"geonameId":"3165698","name":"Thiene","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21145,"modificationDate":"2014-01-11"}, -{"geonameId":"2341758","name":"Garko","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":21141,"modificationDate":"2018-12-04"}, -{"geonameId":"3016667","name":"Gardanne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21140,"modificationDate":"2016-02-18"}, -{"geonameId":"8349083","name":"Morley","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":21134,"modificationDate":"2019-07-18"}, -{"geonameId":"1273246","name":"Deogarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21134,"modificationDate":"2017-10-04"}, -{"geonameId":"1278279","name":"Aska","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21134,"modificationDate":"2020-06-10"}, -{"geonameId":"2906199","name":"Herborn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21133,"modificationDate":"2015-09-05"}, -{"geonameId":"2329981","name":"Mokwa","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":21128,"modificationDate":"2016-01-30"}, -{"geonameId":"3694119","name":"Paiján","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":21128,"modificationDate":"2013-04-04"}, -{"geonameId":"772748","name":"Działdowo","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":21127,"modificationDate":"2011-07-31"}, -{"geonameId":"3000491","name":"Les Lilas","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21124,"modificationDate":"2016-02-18"}, -{"geonameId":"2650967","name":"Dronfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21124,"modificationDate":"2018-07-03"}, -{"geonameId":"1686933","name":"Sexmoan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":21124,"modificationDate":"2017-12-13"}, -{"geonameId":"1274533","name":"Chatrapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21123,"modificationDate":"2014-10-14"}, -{"geonameId":"463885","name":"Zelenchukskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":21117,"modificationDate":"2012-01-17"}, -{"geonameId":"3347719","name":"Luena","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":21115,"modificationDate":"2012-01-17"}, -{"geonameId":"1877148","name":"Hoeyang","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":21111,"modificationDate":"2012-02-28"}, -{"geonameId":"12156872","name":"Thorncliffe Park","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21108,"modificationDate":"2020-05-02"}, -{"geonameId":"4282757","name":"Ashland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21108,"modificationDate":"2017-03-09"}, -{"geonameId":"3521051","name":"Puente de Ixtla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21098,"modificationDate":"2018-11-03"}, -{"geonameId":"2639325","name":"Ripley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21097,"modificationDate":"2018-07-03"}, -{"geonameId":"2783274","name":"Zemst","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":21096,"modificationDate":"2011-02-03"}, -{"geonameId":"1276767","name":"Basi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21096,"modificationDate":"2014-10-14"}, -{"geonameId":"3176605","name":"Francavilla al Mare","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21095,"modificationDate":"2014-04-13"}, -{"geonameId":"2438855","name":"Téra","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":21095,"modificationDate":"2013-10-06"}, -{"geonameId":"159045","name":"Isaka","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":21094,"modificationDate":"2016-07-26"}, -{"geonameId":"3450832","name":"Ruy Barbosa","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21093,"modificationDate":"2012-08-03"}, -{"geonameId":"4272782","name":"Hays","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21092,"modificationDate":"2018-01-03"}, -{"geonameId":"161974","name":"Bereket","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":21090,"modificationDate":"2018-07-04"}, -{"geonameId":"1699388","name":"Molave","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":21088,"modificationDate":"2017-12-13"}, -{"geonameId":"3166034","name":"Sulmona","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21086,"modificationDate":"2014-04-13"}, -{"geonameId":"3018280","name":"Fleury-les-Aubrais","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21085,"modificationDate":"2016-02-18"}, -{"geonameId":"1348780","name":"Dhulagari","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21080,"modificationDate":"2018-12-05"}, -{"geonameId":"8374220","name":"Kuseifa","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":21079,"modificationDate":"2020-04-25"}, -{"geonameId":"3827255","name":"San Pedro Totoltepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21076,"modificationDate":"2018-11-03"}, -{"geonameId":"283806","name":"Ḩalḩūl","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21076,"modificationDate":"2019-05-03"}, -{"geonameId":"3179781","name":"Cassino","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":21074,"modificationDate":"2014-04-13"}, -{"geonameId":"3514398","name":"Xoxocotla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":21074,"modificationDate":"2018-11-03"}, -{"geonameId":"3393764","name":"Oeiras","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21071,"modificationDate":"2012-08-03"}, -{"geonameId":"2911520","name":"Halle","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21071,"modificationDate":"2015-09-05"}, -{"geonameId":"2656169","name":"Bathgate","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21070,"modificationDate":"2017-06-15"}, -{"geonameId":"3021852","name":"Dammarie-les-Lys","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":21066,"modificationDate":"2016-02-18"}, -{"geonameId":"704143","name":"Kremenets","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21063,"modificationDate":"2020-05-08"}, -{"geonameId":"2515219","name":"Las Torres de Cotillas","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21062,"modificationDate":"2012-03-04"}, -{"geonameId":"485888","name":"Suvorov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":21059,"modificationDate":"2014-06-26"}, -{"geonameId":"4386387","name":"Ferguson","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21059,"modificationDate":"2017-05-23"}, -{"geonameId":"2842112","name":"Salzwedel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21058,"modificationDate":"2015-09-04"}, -{"geonameId":"1151426","name":"Phayao","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":21058,"modificationDate":"2012-04-05"}, -{"geonameId":"2797096","name":"Grivegnée","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":21057,"modificationDate":"2020-05-25"}, -{"geonameId":"3937733","name":"Jauja","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":21057,"modificationDate":"2012-07-19"}, -{"geonameId":"3074110","name":"Jirkov","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":21056,"modificationDate":"2018-09-08"}, -{"geonameId":"2640967","name":"Omagh","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21056,"modificationDate":"2016-12-04"}, -{"geonameId":"3511626","name":"Bayaguana","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":21055,"modificationDate":"2016-06-05"}, -{"geonameId":"2364079","name":"Sotouboua","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21054,"modificationDate":"2013-01-10"}, -{"geonameId":"4575461","name":"Conway","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21053,"modificationDate":"2017-03-09"}, -{"geonameId":"5124078","name":"Laurelton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21053,"modificationDate":"2017-04-21"}, -{"geonameId":"2851584","name":"Püttlingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21052,"modificationDate":"2015-09-05"}, -{"geonameId":"3446137","name":"Três Coroas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21051,"modificationDate":"2012-08-03"}, -{"geonameId":"3452982","name":"Portão","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21051,"modificationDate":"2012-08-03"}, -{"geonameId":"2643071","name":"March","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21051,"modificationDate":"2018-07-03"}, -{"geonameId":"5034767","name":"Lino Lakes","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21050,"modificationDate":"2017-05-23"}, -{"geonameId":"1261066","name":"Okha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21048,"modificationDate":"2014-10-13"}, -{"geonameId":"5815539","name":"West Lake Stevens","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":21047,"modificationDate":"2006-01-17"}, -{"geonameId":"3400740","name":"Esperantina","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21044,"modificationDate":"2012-08-03"}, -{"geonameId":"1734313","name":"Paka","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":21044,"modificationDate":"2012-01-17"}, -{"geonameId":"2958975","name":"Aichach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21042,"modificationDate":"2019-09-05"}, -{"geonameId":"1064980","name":"Fenoarivo Atsinanana","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":21036,"modificationDate":"2018-09-07"}, -{"geonameId":"516931","name":"Novyy Oskol","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":21035,"modificationDate":"2020-03-07"}, -{"geonameId":"8349354","name":"Kirwan","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":21034,"modificationDate":"2019-07-18"}, -{"geonameId":"5039094","name":"New Hope","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21032,"modificationDate":"2017-05-23"}, -{"geonameId":"1852102","name":"Shin’ichi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":21030,"modificationDate":"2017-04-09"}, -{"geonameId":"2636749","name":"Stowmarket","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21028,"modificationDate":"2018-07-03"}, -{"geonameId":"2794166","name":"Koksijde","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":21027,"modificationDate":"2012-01-18"}, -{"geonameId":"2754408","name":"Hendrik-Ido-Ambacht","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":21027,"modificationDate":"2017-10-17"}, -{"geonameId":"1266510","name":"Kiraoli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21024,"modificationDate":"2015-08-07"}, -{"geonameId":"1267978","name":"Kantābānji","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21024,"modificationDate":"2014-10-14"}, -{"geonameId":"7260548","name":"Palm River-Clair Mel","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21024,"modificationDate":"2011-05-14"}, -{"geonameId":"4094212","name":"Trussville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":21023,"modificationDate":"2017-03-09"}, -{"geonameId":"1514792","name":"Gazojak","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":21021,"modificationDate":"2014-01-20"}, -{"geonameId":"751952","name":"Ardahan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":21020,"modificationDate":"2014-06-27"}, -{"geonameId":"2270981","name":"Belas","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":21019,"modificationDate":"2018-02-06"}, -{"geonameId":"3837240","name":"San José de Jáchal","countryName":"Argentina","timeZoneName":"America/Argentina/San_Juan","timeZoneOffsetNameWithoutDst":"Argentina Time","population":21018,"modificationDate":"2016-01-30"}, -{"geonameId":"1259110","name":"Qādiān","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21015,"modificationDate":"2014-10-14"}, -{"geonameId":"88380","name":"Az Zuwaytīnah","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":21015,"modificationDate":"2013-08-13"}, -{"geonameId":"1259460","name":"Pokaran","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21014,"modificationDate":"2014-10-14"}, -{"geonameId":"6559503","name":"l'Alfàs del Pi","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":21011,"modificationDate":"2016-01-07"}, -{"geonameId":"2817818","name":"Vaterstetten","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":21007,"modificationDate":"2011-04-25"}, -{"geonameId":"1262664","name":"Mudgal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21006,"modificationDate":"2015-08-07"}, -{"geonameId":"5145034","name":"Woodrow","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21005,"modificationDate":"2017-04-16"}, -{"geonameId":"2652861","name":"Clevedon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21002,"modificationDate":"2017-06-12"}, -{"geonameId":"2643218","name":"Maesteg","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21001,"modificationDate":"2017-06-12"}, -{"geonameId":"3451357","name":"Ribeirão da Ilha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21000,"modificationDate":"2012-08-03"}, -{"geonameId":"7874492","name":"Freguesia do Ribeirao da Ilha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":21000,"modificationDate":"2012-08-03"}, -{"geonameId":"5991370","name":"Keswick","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":21000,"modificationDate":"2010-08-23"}, -{"geonameId":"2478509","name":"Taïbet","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":21000,"modificationDate":"2019-11-01"}, -{"geonameId":"2647784","name":"Guiseley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":21000,"modificationDate":"2012-03-29"}, -{"geonameId":"11102685","name":"Abrama","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":21000,"modificationDate":"2016-03-25"}, -{"geonameId":"7100777","name":"Mahdishahr","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":21000,"modificationDate":"2014-01-05"}, -{"geonameId":"1225187","name":"Vakarai","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":21000,"modificationDate":"2018-12-16"}, -{"geonameId":"1056381","name":"Soanindrariny","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":21000,"modificationDate":"2018-09-10"}, -{"geonameId":"1056531","name":"Sitampiky","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":21000,"modificationDate":"2018-09-10"}, -{"geonameId":"1078171","name":"Ampasimanolotra","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":21000,"modificationDate":"2018-09-10"}, -{"geonameId":"3574309","name":"Laventille","countryName":"Trinidad and Tobago","timeZoneName":"America/Port_of_Spain","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":21000,"modificationDate":"2017-10-08"}, -{"geonameId":"1277844","name":"Bagulā","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20999,"modificationDate":"2014-10-14"}, -{"geonameId":"2899601","name":"Holzminden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20998,"modificationDate":"2015-09-05"}, -{"geonameId":"4683317","name":"Corinth","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20998,"modificationDate":"2017-03-09"}, -{"geonameId":"585184","name":"Sabunchy","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":20996,"modificationDate":"2020-06-10"}, -{"geonameId":"2817537","name":"Versmold","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20996,"modificationDate":"2015-09-05"}, -{"geonameId":"1524958","name":"Burunday","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":20996,"modificationDate":"2017-05-07"}, -{"geonameId":"5804191","name":"Mountlake Terrace","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20989,"modificationDate":"2017-03-09"}, -{"geonameId":"2267141","name":"Laranjeira","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":20988,"modificationDate":"2018-02-11"}, -{"geonameId":"4752229","name":"Chester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20987,"modificationDate":"2011-05-14"}, -{"geonameId":"733579","name":"Aytos","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20986,"modificationDate":"2012-01-18"}, -{"geonameId":"4015938","name":"Campo Gobierno","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":20985,"modificationDate":"2020-06-10"}, -{"geonameId":"2519289","name":"Conil de la Frontera","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20984,"modificationDate":"2017-10-18"}, -{"geonameId":"4400648","name":"Nixa","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20984,"modificationDate":"2017-05-23"}, -{"geonameId":"1270674","name":"Gunnaur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20980,"modificationDate":"2015-09-06"}, -{"geonameId":"4620131","name":"East Ridge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20979,"modificationDate":"2011-05-14"}, -{"geonameId":"6693242","name":"Bordon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20978,"modificationDate":"2018-07-03"}, -{"geonameId":"6295498","name":"Zürich (Kreis 3) / Sihlfeld","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":20977,"modificationDate":"2019-05-22"}, -{"geonameId":"318766","name":"Çermik","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":20975,"modificationDate":"2015-11-08"}, -{"geonameId":"3464618","name":"Dois Córregos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20974,"modificationDate":"2012-08-03"}, -{"geonameId":"2921034","name":"Germersheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20972,"modificationDate":"2015-09-05"}, -{"geonameId":"2391377","name":"Tchaourou","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":20971,"modificationDate":"2018-03-26"}, -{"geonameId":"537345","name":"Dugulubgey","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20965,"modificationDate":"2018-11-06"}, -{"geonameId":"2800438","name":"Chaudfontaine","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":20960,"modificationDate":"2011-03-14"}, -{"geonameId":"2341580","name":"Gaya","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":20959,"modificationDate":"2016-06-22"}, -{"geonameId":"2653520","name":"Caterham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20957,"modificationDate":"2018-07-03"}, -{"geonameId":"2168537","name":"Doreen","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":20954,"modificationDate":"2019-07-18"}, -{"geonameId":"2478831","name":"Tadmaït","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":20952,"modificationDate":"2012-01-19"}, -{"geonameId":"6173508","name":"Varennes","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20950,"modificationDate":"2019-02-26"}, -{"geonameId":"2295385","name":"Shama Junction","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20946,"modificationDate":"2019-12-06"}, -{"geonameId":"3175678","name":"Guidonia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20943,"modificationDate":"2014-05-20"}, -{"geonameId":"2755669","name":"Geertruidenberg","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":20941,"modificationDate":"2017-10-17"}, -{"geonameId":"161197","name":"Basotu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20937,"modificationDate":"2016-07-26"}, -{"geonameId":"1712808","name":"Goa","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":20936,"modificationDate":"2017-12-13"}, -{"geonameId":"1241076","name":"Kataragama","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":20935,"modificationDate":"2018-12-16"}, -{"geonameId":"2983074","name":"Roissy-en-Brie","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20933,"modificationDate":"2016-02-18"}, -{"geonameId":"2322495","name":"Tambuwal","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":20932,"modificationDate":"2016-06-22"}, -{"geonameId":"4009697","name":"El Grullo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":20924,"modificationDate":"2018-11-03"}, -{"geonameId":"12156862","name":"Rosedale-Moore Park","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20923,"modificationDate":"2020-05-02"}, -{"geonameId":"1257219","name":"Sarauli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20923,"modificationDate":"2015-06-07"}, -{"geonameId":"3533486","name":"Acajete","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":20923,"modificationDate":"2018-11-03"}, -{"geonameId":"126914","name":"Kīsh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":20922,"modificationDate":"2012-01-16"}, -{"geonameId":"3457850","name":"Maragogipe","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20921,"modificationDate":"2012-08-03"}, -{"geonameId":"3682458","name":"Flandes","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":20919,"modificationDate":"2018-04-18"}, -{"geonameId":"1168652","name":"Pad Idan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":20919,"modificationDate":"2019-12-06"}, -{"geonameId":"5528450","name":"Plainview","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20919,"modificationDate":"2017-03-09"}, -{"geonameId":"1265163","name":"Lalgudi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20916,"modificationDate":"2014-10-14"}, -{"geonameId":"2521415","name":"Baena","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20915,"modificationDate":"2012-03-04"}, -{"geonameId":"4894465","name":"Grayslake","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20915,"modificationDate":"2020-03-14"}, -{"geonameId":"5322553","name":"Agoura Hills","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20915,"modificationDate":"2017-03-09"}, -{"geonameId":"1510255","name":"Bereyovski","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":20913,"modificationDate":"2020-06-10"}, -{"geonameId":"934488","name":"Goodlands","countryName":"Mauritius","timeZoneName":"Indian/Mauritius","timeZoneOffsetNameWithoutDst":"Mauritius Time","population":20910,"modificationDate":"2019-07-11"}, -{"geonameId":"733014","name":"Botevgrad","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20909,"modificationDate":"2018-03-22"}, -{"geonameId":"1283496","name":"Dailekh","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":20908,"modificationDate":"2019-10-19"}, -{"geonameId":"538913","name":"Kurchaloy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20903,"modificationDate":"2019-09-01"}, -{"geonameId":"3454578","name":"Pedra Azul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20899,"modificationDate":"2012-08-03"}, -{"geonameId":"2852218","name":"Prenzlau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20899,"modificationDate":"2015-09-04"}, -{"geonameId":"1173272","name":"Kot Ghulam Muhammad","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":20897,"modificationDate":"2019-12-06"}, -{"geonameId":"4928703","name":"Acton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20897,"modificationDate":"2017-05-23"}, -{"geonameId":"3462956","name":"Frederico Westphalen","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20896,"modificationDate":"2012-08-03"}, -{"geonameId":"2267067","name":"Linda-a-Velha","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":20895,"modificationDate":"2012-01-17"}, -{"geonameId":"3470821","name":"Barra","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20894,"modificationDate":"2012-08-03"}, -{"geonameId":"433635","name":"Rutana","countryName":"Burundi","timeZoneName":"Africa/Bujumbura","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":20893,"modificationDate":"2012-01-19"}, -{"geonameId":"2661015","name":"Dietikon","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":20893,"modificationDate":"2013-04-02"}, -{"geonameId":"4977762","name":"Sanford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20893,"modificationDate":"2017-09-24"}, -{"geonameId":"2943573","name":"Bruchköbel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20892,"modificationDate":"2019-09-05"}, -{"geonameId":"7176035","name":"Silver Firs","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20891,"modificationDate":"2011-05-14"}, -{"geonameId":"752184","name":"Alaplı","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":20890,"modificationDate":"2015-09-06"}, -{"geonameId":"3588653","name":"Sumpango","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":20884,"modificationDate":"2019-04-10"}, -{"geonameId":"2979985","name":"Saint-Genis-Laval","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20883,"modificationDate":"2019-06-05"}, -{"geonameId":"5120228","name":"Hauppauge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20882,"modificationDate":"2017-05-23"}, -{"geonameId":"5849297","name":"Kīhei","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":20881,"modificationDate":"2017-09-05"}, -{"geonameId":"3354898","name":"Okahandja","countryName":"Namibia","timeZoneName":"Africa/Windhoek","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":20879,"modificationDate":"2012-01-17"}, -{"geonameId":"5397376","name":"South El Monte","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20878,"modificationDate":"2017-03-09"}, -{"geonameId":"2259947","name":"Gamboma","countryName":"Republic of the Congo","timeZoneName":"Africa/Brazzaville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":20877,"modificationDate":"2012-05-05"}, -{"geonameId":"5324903","name":"Arvin","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20876,"modificationDate":"2017-03-09"}, -{"geonameId":"3517917","name":"San Rafael","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":20873,"modificationDate":"2018-11-03"}, -{"geonameId":"549373","name":"Khot'kovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20872,"modificationDate":"2008-05-07"}, -{"geonameId":"2978742","name":"Saint-Louis","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20871,"modificationDate":"2019-07-29"}, -{"geonameId":"4862760","name":"Johnston","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20871,"modificationDate":"2017-05-23"}, -{"geonameId":"3024440","name":"Cognac","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20868,"modificationDate":"2019-10-09"}, -{"geonameId":"4271935","name":"Gardner","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20868,"modificationDate":"2017-05-23"}, -{"geonameId":"3105803","name":"Vila-seca","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20866,"modificationDate":"2015-06-22"}, -{"geonameId":"5365425","name":"Lathrop","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20866,"modificationDate":"2017-03-09"}, -{"geonameId":"3546894","name":"Minas","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":20863,"modificationDate":"2016-01-07"}, -{"geonameId":"2957886","name":"Altena","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20862,"modificationDate":"2019-09-05"}, -{"geonameId":"5711789","name":"Ashland","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20861,"modificationDate":"2017-03-16"}, -{"geonameId":"2259655","name":"Impfondo","countryName":"Republic of the Congo","timeZoneName":"Africa/Brazzaville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":20859,"modificationDate":"2013-05-08"}, -{"geonameId":"5172078","name":"Sidney","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20858,"modificationDate":"2017-05-23"}, -{"geonameId":"4986172","name":"Birmingham","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20857,"modificationDate":"2017-05-23"}, -{"geonameId":"2831403","name":"Sömmerda","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20853,"modificationDate":"2015-09-05"}, -{"geonameId":"2522057","name":"Alfafar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20853,"modificationDate":"2012-03-04"}, -{"geonameId":"2819465","name":"Unterhaching","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20852,"modificationDate":"2013-02-15"}, -{"geonameId":"1859400","name":"Kisai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20850,"modificationDate":"2017-04-09"}, -{"geonameId":"658288","name":"Heinola","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20849,"modificationDate":"2014-09-25"}, -{"geonameId":"1262318","name":"Nabīnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20848,"modificationDate":"2015-10-04"}, -{"geonameId":"3061695","name":"Žďár nad Sázavou","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":20847,"modificationDate":"2020-01-18"}, -{"geonameId":"505014","name":"Priyutovo","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":20847,"modificationDate":"2012-01-17"}, -{"geonameId":"6534284","name":"Tor Lupara","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20843,"modificationDate":"2014-05-01"}, -{"geonameId":"2648945","name":"Gainsborough","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20842,"modificationDate":"2018-07-03"}, -{"geonameId":"2897132","name":"Husum","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20841,"modificationDate":"2015-09-04"}, -{"geonameId":"1254904","name":"Tharangambadi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20841,"modificationDate":"2014-10-14"}, -{"geonameId":"187725","name":"Maralal","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20841,"modificationDate":"2017-11-07"}, -{"geonameId":"4174600","name":"Sweetwater","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20840,"modificationDate":"2017-03-09"}, -{"geonameId":"1720472","name":"Calauag","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":20837,"modificationDate":"2017-12-13"}, -{"geonameId":"1276615","name":"Begūn","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20836,"modificationDate":"2014-10-14"}, -{"geonameId":"284011","name":"Dūrā","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20835,"modificationDate":"2017-09-06"}, -{"geonameId":"5740900","name":"Milwaukie","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20830,"modificationDate":"2017-03-09"}, -{"geonameId":"1272768","name":"Dhing","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20826,"modificationDate":"2014-10-13"}, -{"geonameId":"2620964","name":"Haderslev","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":20825,"modificationDate":"2019-09-05"}, -{"geonameId":"2977952","name":"Saint-Michel-sur-Orge","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20824,"modificationDate":"2016-02-18"}, -{"geonameId":"1269908","name":"Hukeri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20824,"modificationDate":"2014-10-14"}, -{"geonameId":"1276147","name":"Bhauwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20823,"modificationDate":"2020-06-10"}, -{"geonameId":"2513026","name":"Pájara","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":20821,"modificationDate":"2019-09-16"}, -{"geonameId":"2111559","name":"Obanazawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20821,"modificationDate":"2017-07-22"}, -{"geonameId":"518602","name":"Novomichurinsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20821,"modificationDate":"2012-01-17"}, -{"geonameId":"789045","name":"Kriva Palanka","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":20820,"modificationDate":"2017-09-05"}, -{"geonameId":"5774301","name":"East Millcreek","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":20816,"modificationDate":"2018-02-17"}, -{"geonameId":"2613731","name":"Skive","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":20815,"modificationDate":"2017-10-18"}, -{"geonameId":"2514176","name":"Maracena","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20815,"modificationDate":"2012-03-04"}, -{"geonameId":"3172979","name":"Montecchio Maggiore-Alte Ceccato","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20815,"modificationDate":"2014-05-01"}, -{"geonameId":"5119019","name":"Grand Island","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20813,"modificationDate":"2017-05-23"}, -{"geonameId":"2648319","name":"Goole","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20810,"modificationDate":"2017-06-12"}, -{"geonameId":"3617513","name":"Nandaime","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":20810,"modificationDate":"2018-08-08"}, -{"geonameId":"3672761","name":"Patía","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":20807,"modificationDate":"2018-05-09"}, -{"geonameId":"7302854","name":"Morigaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20807,"modificationDate":"2016-06-13"}, -{"geonameId":"2110538","name":"Yanakawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20807,"modificationDate":"2020-06-11"}, -{"geonameId":"1273880","name":"Clement Town","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20806,"modificationDate":"2015-06-07"}, -{"geonameId":"4227777","name":"Union City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20805,"modificationDate":"2017-03-09"}, -{"geonameId":"2128072","name":"Shiraoi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20804,"modificationDate":"2017-04-09"}, -{"geonameId":"4794531","name":"Woodlawn","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20804,"modificationDate":"2011-05-14"}, -{"geonameId":"2638580","name":"Sandhurst","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20803,"modificationDate":"2020-04-20"}, -{"geonameId":"2112963","name":"Edosaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20800,"modificationDate":"2017-04-09"}, -{"geonameId":"833258","name":"Šuto Orizare","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":20800,"modificationDate":"2019-10-05"}, -{"geonameId":"3447969","name":"Sarzedo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20798,"modificationDate":"2012-08-03"}, -{"geonameId":"1076454","name":"Andapa","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20798,"modificationDate":"2018-09-10"}, -{"geonameId":"317587","name":"Kerburun","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":20793,"modificationDate":"2020-06-10"}, -{"geonameId":"2790135","name":"Nijlen","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":20792,"modificationDate":"2012-01-18"}, -{"geonameId":"5923101","name":"Clarence-Rockland","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20790,"modificationDate":"2010-09-22"}, -{"geonameId":"5166819","name":"Piqua","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20790,"modificationDate":"2017-05-23"}, -{"geonameId":"2930216","name":"Engelskirchen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20786,"modificationDate":"2017-04-26"}, -{"geonameId":"295127","name":"Tirah","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":20786,"modificationDate":"2018-12-03"}, -{"geonameId":"3524744","name":"Las Margaritas","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":20786,"modificationDate":"2018-11-03"}, -{"geonameId":"1271343","name":"Ghātanji","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20785,"modificationDate":"2015-08-07"}, -{"geonameId":"696660","name":"Polonne","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20785,"modificationDate":"2020-05-12"}, -{"geonameId":"5367767","name":"Lomita","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20785,"modificationDate":"2017-03-09"}, -{"geonameId":"273203","name":"Jubayl","countryName":"Lebanon","timeZoneName":"Asia/Beirut","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20784,"modificationDate":"2020-06-10"}, -{"geonameId":"2824801","name":"Sulzbach-Rosenberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20780,"modificationDate":"2013-02-19"}, -{"geonameId":"2909313","name":"Haßloch","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20779,"modificationDate":"2015-03-04"}, -{"geonameId":"2511329","name":"San Juan de Aznalfarache","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20779,"modificationDate":"2012-03-04"}, -{"geonameId":"1262651","name":"Mudkhed","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20776,"modificationDate":"2014-10-13"}, -{"geonameId":"4351887","name":"Cockeysville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20776,"modificationDate":"2011-05-14"}, -{"geonameId":"682685","name":"Carei","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20775,"modificationDate":"2016-01-12"}, -{"geonameId":"3690875","name":"Virú","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":20774,"modificationDate":"2012-10-07"}, -{"geonameId":"2709628","name":"Gustavsberg","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":20774,"modificationDate":"2017-03-18"}, -{"geonameId":"1255951","name":"Sivagiri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20772,"modificationDate":"2014-10-14"}, -{"geonameId":"2904886","name":"Hiddenhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20771,"modificationDate":"2011-07-31"}, -{"geonameId":"2997712","name":"Longjumeau","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20771,"modificationDate":"2016-02-18"}, -{"geonameId":"3098625","name":"Gostyń","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":20771,"modificationDate":"2011-07-31"}, -{"geonameId":"1265025","name":"Lātehār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20769,"modificationDate":"2017-08-02"}, -{"geonameId":"2514651","name":"Los Llanos de Aridane","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":20766,"modificationDate":"2012-01-19"}, -{"geonameId":"4577263","name":"Easley","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20765,"modificationDate":"2017-03-09"}, -{"geonameId":"1268627","name":"Kaikalūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20763,"modificationDate":"2018-07-04"}, -{"geonameId":"671757","name":"Orăştie","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20763,"modificationDate":"2012-06-12"}, -{"geonameId":"490466","name":"Sortavala","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20760,"modificationDate":"2019-09-05"}, -{"geonameId":"1863611","name":"Gōdo","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20758,"modificationDate":"2017-04-09"}, -{"geonameId":"2751808","name":"Leerdam","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":20758,"modificationDate":"2019-01-20"}, -{"geonameId":"2953545","name":"Bad Berleburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20757,"modificationDate":"2015-09-05"}, -{"geonameId":"3531598","name":"Capulhuac de Mirafuentes","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":20757,"modificationDate":"2018-11-03"}, -{"geonameId":"933018","name":"Thamaga","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":20756,"modificationDate":"2012-01-18"}, -{"geonameId":"768218","name":"Końskie","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":20756,"modificationDate":"2010-10-05"}, -{"geonameId":"5128566","name":"New Springville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20756,"modificationDate":"2017-04-16"}, -{"geonameId":"1266774","name":"Kherālu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20755,"modificationDate":"2014-10-13"}, -{"geonameId":"4503646","name":"Pleasantville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20755,"modificationDate":"2017-05-23"}, -{"geonameId":"946257","name":"Ulundi","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":20753,"modificationDate":"2012-07-12"}, -{"geonameId":"1279027","name":"Alībāg","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20752,"modificationDate":"2018-10-19"}, -{"geonameId":"3053590","name":"Dombóvár","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":20748,"modificationDate":"2014-11-05"}, -{"geonameId":"5445820","name":"Liberal","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20746,"modificationDate":"2017-05-23"}, -{"geonameId":"3470730","name":"Barra de São Francisco","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20743,"modificationDate":"2012-08-03"}, -{"geonameId":"3030303","name":"Bressuire","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20743,"modificationDate":"2019-09-04"}, -{"geonameId":"5102369","name":"Palisades Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20743,"modificationDate":"2017-05-23"}, -{"geonameId":"2482908","name":"Rouiba","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":20742,"modificationDate":"2019-05-10"}, -{"geonameId":"2520968","name":"Bétera","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20740,"modificationDate":"2015-06-16"}, -{"geonameId":"8428283","name":"Shoham","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":20740,"modificationDate":"2018-12-04"}, -{"geonameId":"4539615","name":"Jenks","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20740,"modificationDate":"2017-03-09"}, -{"geonameId":"3598034","name":"Comalapa","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":20738,"modificationDate":"2019-05-08"}, -{"geonameId":"1279005","name":"Alīpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20736,"modificationDate":"2019-02-21"}, -{"geonameId":"3178398","name":"Colleferro","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20736,"modificationDate":"2015-08-01"}, -{"geonameId":"4595864","name":"Simpsonville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20736,"modificationDate":"2017-03-09"}, -{"geonameId":"5124045","name":"Latham","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20736,"modificationDate":"2017-12-13"}, -{"geonameId":"3167509","name":"Sant'Anastasia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20733,"modificationDate":"2015-08-01"}, -{"geonameId":"4832425","name":"Darien","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20732,"modificationDate":"2017-05-23"}, -{"geonameId":"2168607","name":"Doncaster","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":20728,"modificationDate":"2019-07-18"}, -{"geonameId":"924102","name":"Rumphi","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":20727,"modificationDate":"2011-11-08"}, -{"geonameId":"5267403","name":"Pleasant Prairie","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20726,"modificationDate":"2017-05-23"}, -{"geonameId":"2440921","name":"Mirriah","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":20724,"modificationDate":"2013-10-06"}, -{"geonameId":"563524","name":"Elektrogorsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20724,"modificationDate":"2019-09-05"}, -{"geonameId":"2647383","name":"Harwich","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20723,"modificationDate":"2018-07-03"}, -{"geonameId":"3939023","name":"Huaura","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":20723,"modificationDate":"2019-07-26"}, -{"geonameId":"1710531","name":"Irosin","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":20716,"modificationDate":"2017-12-13"}, -{"geonameId":"2399888","name":"Lambaréné","countryName":"Gabon","timeZoneName":"Africa/Libreville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":20714,"modificationDate":"2016-12-18"}, -{"geonameId":"2930030","name":"Ennigerloh","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20713,"modificationDate":"2015-09-04"}, -{"geonameId":"2962334","name":"Naas","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20713,"modificationDate":"2013-12-08"}, -{"geonameId":"6111632","name":"Port Alberni","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20712,"modificationDate":"2019-08-08"}, -{"geonameId":"2247157","name":"Nioro du Rip","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20711,"modificationDate":"2012-01-17"}, -{"geonameId":"3624509","name":"Calle Blancos","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":20710,"modificationDate":"2016-09-07"}, -{"geonameId":"3714734","name":"Ancón","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20706,"modificationDate":"2017-08-15"}, -{"geonameId":"2942159","name":"Bückeburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20700,"modificationDate":"2016-04-19"}, -{"geonameId":"703646","name":"Kurakhovo","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20700,"modificationDate":"2012-01-18"}, -{"geonameId":"2970432","name":"Vauréal","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20699,"modificationDate":"2016-02-18"}, -{"geonameId":"2206890","name":"Masterton","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":20698,"modificationDate":"2011-08-01"}, -{"geonameId":"1273410","name":"Dasūya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20697,"modificationDate":"2015-09-06"}, -{"geonameId":"4018761","name":"Allende","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":20694,"modificationDate":"2018-11-03"}, -{"geonameId":"3171562","name":"Palo del Colle","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20692,"modificationDate":"2014-04-13"}, -{"geonameId":"2733352","name":"Trofa","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":20692,"modificationDate":"2018-05-17"}, -{"geonameId":"683394","name":"Buftea","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20691,"modificationDate":"2012-06-12"}, -{"geonameId":"709755","name":"Dolyna","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20691,"modificationDate":"2020-05-14"}, -{"geonameId":"4078646","name":"Mountain Brook","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20691,"modificationDate":"2017-03-09"}, -{"geonameId":"4557109","name":"Chambersburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20691,"modificationDate":"2017-05-23"}, -{"geonameId":"4983811","name":"Adrian","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20691,"modificationDate":"2017-05-23"}, -{"geonameId":"3665895","name":"Villeta","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":20689,"modificationDate":"2018-07-04"}, -{"geonameId":"1272629","name":"Digboi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20685,"modificationDate":"2014-10-13"}, -{"geonameId":"108918","name":"Qaisumah","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":20685,"modificationDate":"2016-10-23"}, -{"geonameId":"3436287","name":"Aristóbulo del Valle","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":20683,"modificationDate":"2016-01-30"}, -{"geonameId":"1512524","name":"Tŭytepa","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":20682,"modificationDate":"2010-10-16"}, -{"geonameId":"2129005","name":"Namioka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20681,"modificationDate":"2017-04-09"}, -{"geonameId":"188080","name":"Makueni Boma","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20681,"modificationDate":"2018-05-09"}, -{"geonameId":"3514409","name":"Xonacatlán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":20680,"modificationDate":"2018-11-03"}, -{"geonameId":"329586","name":"Robīt","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20679,"modificationDate":"2006-01-27"}, -{"geonameId":"4177872","name":"West Melbourne","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20679,"modificationDate":"2017-03-09"}, -{"geonameId":"2997626","name":"Lons-le-Saunier","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20678,"modificationDate":"2018-02-06"}, -{"geonameId":"486071","name":"Surovikino","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":20677,"modificationDate":"2019-09-05"}, -{"geonameId":"3595783","name":"Esquipulas","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":20674,"modificationDate":"2019-07-10"}, -{"geonameId":"2621356","name":"Glostrup","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":20673,"modificationDate":"2017-10-18"}, -{"geonameId":"1835967","name":"Jenzan","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":20673,"modificationDate":"2013-03-02"}, -{"geonameId":"790744","name":"Gevgelija","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":20664,"modificationDate":"2012-12-06"}, -{"geonameId":"3489760","name":"Linstead","countryName":"Jamaica","timeZoneName":"America/Jamaica","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20660,"modificationDate":"2017-03-14"}, -{"geonameId":"3454827","name":"Paty do Alferes","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20659,"modificationDate":"2012-08-03"}, -{"geonameId":"2464804","name":"Takelsa","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":20659,"modificationDate":"2018-08-05"}, -{"geonameId":"2933364","name":"Edewecht","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20658,"modificationDate":"2017-09-19"}, -{"geonameId":"1275768","name":"Bliuvanagiri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20656,"modificationDate":"2020-06-10"}, -{"geonameId":"166111","name":"Karra","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20656,"modificationDate":"2020-06-10"}, -{"geonameId":"4890507","name":"East Garfield Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20656,"modificationDate":"2017-12-13"}, -{"geonameId":"2986732","name":"Ploemeur","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20652,"modificationDate":"2016-02-18"}, -{"geonameId":"5134453","name":"Rotterdam","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20652,"modificationDate":"2017-05-23"}, -{"geonameId":"2650470","name":"East Dereham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20651,"modificationDate":"2018-07-03"}, -{"geonameId":"6169587","name":"Truro","countryName":"Canada","timeZoneName":"America/Halifax","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":20650,"modificationDate":"2006-01-22"}, -{"geonameId":"2655952","name":"Bellshill","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20650,"modificationDate":"2017-06-12"}, -{"geonameId":"3009071","name":"Lagny-sur-Marne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20649,"modificationDate":"2017-04-03"}, -{"geonameId":"2653235","name":"Chesham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20649,"modificationDate":"2018-07-03"}, -{"geonameId":"5364782","name":"Lakeside","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20648,"modificationDate":"2011-05-14"}, -{"geonameId":"3117539","name":"Manlleu","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20647,"modificationDate":"2012-03-04"}, -{"geonameId":"1276159","name":"Bhanjanagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20647,"modificationDate":"2014-10-14"}, -{"geonameId":"2145990","name":"Truganina","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":20646,"modificationDate":"2019-07-18"}, -{"geonameId":"5713759","name":"Bethany","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20646,"modificationDate":"2011-05-14"}, -{"geonameId":"3466255","name":"Nova Xavantina","countryName":"Brazil","timeZoneName":"America/Cuiaba","timeZoneOffsetNameWithoutDst":"Amazon Time","population":20639,"modificationDate":"2017-11-29"}, -{"geonameId":"3046768","name":"Paks","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":20638,"modificationDate":"2019-03-04"}, -{"geonameId":"612536","name":"Ozurgeti","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":20636,"modificationDate":"2019-09-05"}, -{"geonameId":"4161424","name":"Lake Worth Corridor","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20635,"modificationDate":"2010-02-20"}, -{"geonameId":"6620444","name":"Gerrards Cross","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20633,"modificationDate":"2018-07-03"}, -{"geonameId":"1059051","name":"Miandrivazo","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20631,"modificationDate":"2018-09-10"}, -{"geonameId":"5410129","name":"Winter Gardens","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20631,"modificationDate":"2011-05-14"}, -{"geonameId":"678978","name":"Drăgăşani","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20630,"modificationDate":"2012-06-12"}, -{"geonameId":"3792375","name":"Carepa","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":20627,"modificationDate":"2018-06-09"}, -{"geonameId":"685586","name":"Balş","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20626,"modificationDate":"2012-06-12"}, -{"geonameId":"5125011","name":"Lockport","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20624,"modificationDate":"2017-05-23"}, -{"geonameId":"2785622","name":"Tervuren","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":20623,"modificationDate":"2011-02-15"}, -{"geonameId":"4516412","name":"Lebanon","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20623,"modificationDate":"2017-05-23"}, -{"geonameId":"4599937","name":"Wade Hampton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20622,"modificationDate":"2011-05-14"}, -{"geonameId":"2975349","name":"Sedan","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20620,"modificationDate":"2019-04-10"}, -{"geonameId":"3166753","name":"Senago","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20620,"modificationDate":"2014-04-13"}, -{"geonameId":"2343512","name":"Elele","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":20620,"modificationDate":"2016-01-30"}, -{"geonameId":"12047628","name":"Rejon ulicy Traugutta","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":20617,"modificationDate":"2019-06-03"}, -{"geonameId":"2902852","name":"Hockenheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20614,"modificationDate":"2013-02-15"}, -{"geonameId":"1265387","name":"Kuzhithurai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20611,"modificationDate":"2014-10-14"}, -{"geonameId":"4713507","name":"Murphy","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20610,"modificationDate":"2017-03-09"}, -{"geonameId":"3089582","name":"Ozorków","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":20608,"modificationDate":"2010-10-15"}, -{"geonameId":"4852640","name":"Coralville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20608,"modificationDate":"2017-05-23"}, -{"geonameId":"2651852","name":"Crowborough","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20607,"modificationDate":"2018-11-30"}, -{"geonameId":"3448903","name":"São João da Barra","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20606,"modificationDate":"2012-08-03"}, -{"geonameId":"3460516","name":"Itupeva","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20605,"modificationDate":"2012-08-03"}, -{"geonameId":"1272860","name":"Dhāriwāl","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20604,"modificationDate":"2015-09-06"}, -{"geonameId":"2829758","name":"Stadtlohn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20602,"modificationDate":"2015-09-04"}, -{"geonameId":"2920834","name":"Geseke","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20602,"modificationDate":"2015-09-04"}, -{"geonameId":"4154489","name":"Ensley","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20602,"modificationDate":"2011-05-14"}, -{"geonameId":"2908032","name":"Heide","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20599,"modificationDate":"2015-09-04"}, -{"geonameId":"2798023","name":"Frameries","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":20598,"modificationDate":"2010-01-29"}, -{"geonameId":"672862","name":"Moreni","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20596,"modificationDate":"2012-06-12"}, -{"geonameId":"2637104","name":"Stamford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20592,"modificationDate":"2018-07-03"}, -{"geonameId":"3180240","name":"Casal di Principe","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20589,"modificationDate":"2015-08-01"}, -{"geonameId":"176555","name":"Kawambwa","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":20589,"modificationDate":"2012-01-17"}, -{"geonameId":"575948","name":"Bobrov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20587,"modificationDate":"2020-02-07"}, -{"geonameId":"2636767","name":"Stourport-on-Severn","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20586,"modificationDate":"2018-07-03"}, -{"geonameId":"2931414","name":"Eislingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20585,"modificationDate":"2013-02-16"}, -{"geonameId":"791678","name":"Ćuprija","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":20585,"modificationDate":"2012-04-15"}, -{"geonameId":"3176203","name":"Genzano di Roma","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20582,"modificationDate":"2015-08-01"}, -{"geonameId":"2953374","name":"Bad Rappenau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20581,"modificationDate":"2013-02-15"}, -{"geonameId":"2648290","name":"Gorseinon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20581,"modificationDate":"2017-06-12"}, -{"geonameId":"4550881","name":"Sapulpa","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20579,"modificationDate":"2017-03-09"}, -{"geonameId":"1259446","name":"Polasara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20577,"modificationDate":"2014-10-14"}, -{"geonameId":"3101795","name":"Chełmno","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":20576,"modificationDate":"2019-09-05"}, -{"geonameId":"3392243","name":"Jatobá","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20575,"modificationDate":"2012-08-03"}, -{"geonameId":"1867927","name":"Kotei","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":20575,"modificationDate":"2020-06-11"}, -{"geonameId":"1697773","name":"New Corella","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":20574,"modificationDate":"2017-12-13"}, -{"geonameId":"176146","name":"Mbala","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":20570,"modificationDate":"2012-01-17"}, -{"geonameId":"2363490","name":"Vogan","countryName":"Togo","timeZoneName":"Africa/Lome","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20569,"modificationDate":"2018-04-08"}, -{"geonameId":"2950294","name":"Bergneustadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20567,"modificationDate":"2015-09-04"}, -{"geonameId":"3388341","name":"São Luís do Quitunde","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20563,"modificationDate":"2012-08-03"}, -{"geonameId":"174979","name":"Artashat","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":20562,"modificationDate":"2016-10-07"}, -{"geonameId":"2503237","name":"Boudjima","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":20557,"modificationDate":"2012-01-19"}, -{"geonameId":"2501289","name":"Chorfa","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":20556,"modificationDate":"2018-10-01"}, -{"geonameId":"2771335","name":"Mödling","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":20555,"modificationDate":"2018-07-28"}, -{"geonameId":"6691219","name":"Failsworth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20555,"modificationDate":"2012-04-30"}, -{"geonameId":"5323694","name":"American Canyon","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20554,"modificationDate":"2017-03-09"}, -{"geonameId":"1266475","name":"Kishtwer","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20553,"modificationDate":"2020-06-10"}, -{"geonameId":"5397777","name":"South San Jose Hills","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20551,"modificationDate":"2011-05-14"}, -{"geonameId":"2758598","name":"Borne","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":20550,"modificationDate":"2017-10-17"}, -{"geonameId":"4673425","name":"Belton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20547,"modificationDate":"2017-03-09"}, -{"geonameId":"2661653","name":"Baar","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":20546,"modificationDate":"2019-09-11"}, -{"geonameId":"2641913","name":"Nailsea","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20543,"modificationDate":"2017-06-12"}, -{"geonameId":"2127910","name":"Takanosu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20542,"modificationDate":"2017-04-09"}, -{"geonameId":"1268008","name":"Kanniyākumāri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20540,"modificationDate":"2014-10-14"}, -{"geonameId":"4038794","name":"Yigo Village","countryName":"Guam","timeZoneName":"Pacific/Guam","timeZoneOffsetNameWithoutDst":"Chamorro Time","population":20539,"modificationDate":"2013-07-07"}, -{"geonameId":"5322551","name":"Agoura","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20537,"modificationDate":"2006-01-15"}, -{"geonameId":"2516860","name":"Guía de Isora","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":20536,"modificationDate":"2012-03-04"}, -{"geonameId":"3183494","name":"Acquaviva delle Fonti","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20536,"modificationDate":"2014-04-13"}, -{"geonameId":"154470","name":"Mazinde","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20534,"modificationDate":"2016-07-26"}, -{"geonameId":"1279382","name":"Achhnera","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20532,"modificationDate":"2015-08-07"}, -{"geonameId":"1609345","name":"Kuchinarai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":20532,"modificationDate":"2013-12-09"}, -{"geonameId":"935248","name":"Sainte-Suzanne","countryName":"Reunion","timeZoneName":"Indian/Reunion","timeZoneOffsetNameWithoutDst":"Réunion Time","population":20530,"modificationDate":"2018-06-08"}, -{"geonameId":"225964","name":"Wakiso","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20530,"modificationDate":"2016-06-22"}, -{"geonameId":"2989297","name":"Orly","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20528,"modificationDate":"2019-03-26"}, -{"geonameId":"1851713","name":"Shōbara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20527,"modificationDate":"2017-07-22"}, -{"geonameId":"968665","name":"Modimolle","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":20527,"modificationDate":"2018-09-28"}, -{"geonameId":"516576","name":"Nytva","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":20525,"modificationDate":"2019-09-05"}, -{"geonameId":"2742504","name":"Baião","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":20522,"modificationDate":"2018-06-08"}, -{"geonameId":"3463271","name":"Flores da Cunha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20521,"modificationDate":"2012-08-03"}, -{"geonameId":"1274195","name":"Barhalganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20518,"modificationDate":"2020-06-10"}, -{"geonameId":"3662155","name":"Sena Madureira","countryName":"Brazil","timeZoneName":"America/Rio_Branco","timeZoneOffsetNameWithoutDst":"Acre Time","population":20516,"modificationDate":"2014-07-17"}, -{"geonameId":"4500688","name":"Bayville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20512,"modificationDate":"2017-12-13"}, -{"geonameId":"2780361","name":"Eggenberg","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":20511,"modificationDate":"2018-07-29"}, -{"geonameId":"2511752","name":"Rojales","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20510,"modificationDate":"2012-03-04"}, -{"geonameId":"2514288","name":"Mairena del Alcor","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20510,"modificationDate":"2016-04-16"}, -{"geonameId":"2754516","name":"Heiloo","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":20510,"modificationDate":"2017-10-17"}, -{"geonameId":"988290","name":"Komatipoort","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":20508,"modificationDate":"2012-07-12"}, -{"geonameId":"7870782","name":"Moss Park","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20506,"modificationDate":"2020-05-02"}, -{"geonameId":"2646004","name":"Isleworth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20500,"modificationDate":"2012-05-18"}, -{"geonameId":"1269093","name":"Jaynagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20496,"modificationDate":"2015-10-04"}, -{"geonameId":"6179226","name":"Westmount","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20494,"modificationDate":"2019-02-26"}, -{"geonameId":"2523938","name":"Pachino","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20493,"modificationDate":"2015-07-12"}, -{"geonameId":"1517637","name":"Ushtobe","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":20492,"modificationDate":"2020-04-08"}, -{"geonameId":"5992830","name":"Kirkland","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20491,"modificationDate":"2016-06-22"}, -{"geonameId":"3176053","name":"Giulianova","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20490,"modificationDate":"2014-01-11"}, -{"geonameId":"2756161","name":"Elst","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":20488,"modificationDate":"2017-10-17"}, -{"geonameId":"3178998","name":"Cervia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20487,"modificationDate":"2014-01-11"}, -{"geonameId":"3666519","name":"Villa de San Diego de Ubaté","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":20485,"modificationDate":"2018-07-04"}, -{"geonameId":"1619369","name":"Bang Pa-in","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":20484,"modificationDate":"2012-01-16"}, -{"geonameId":"568808","name":"Chernogolovka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20483,"modificationDate":"2012-01-17"}, -{"geonameId":"4347371","name":"Arbutus","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20483,"modificationDate":"2011-05-14"}, -{"geonameId":"3987500","name":"San Buenaventura","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":20480,"modificationDate":"2018-11-03"}, -{"geonameId":"4326868","name":"Hammond","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20480,"modificationDate":"2017-03-09"}, -{"geonameId":"1275818","name":"Bhuban","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20478,"modificationDate":"2014-10-14"}, -{"geonameId":"1734409","name":"Bagan Serai","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":20476,"modificationDate":"2012-01-17"}, -{"geonameId":"2267131","name":"Laranjeiro","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":20473,"modificationDate":"2018-01-31"}, -{"geonameId":"665003","name":"Târgu Neamţ","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20473,"modificationDate":"2014-06-04"}, -{"geonameId":"731108","name":"Gotse Delchev","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20471,"modificationDate":"2018-01-06"}, -{"geonameId":"899274","name":"Samfya","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":20470,"modificationDate":"2012-01-17"}, -{"geonameId":"2538027","name":"Rissani","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":20469,"modificationDate":"2020-06-11"}, -{"geonameId":"2511880","name":"Ribarroja del Turia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20468,"modificationDate":"2016-06-27"}, -{"geonameId":"1714441","name":"Don Carlos","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":20468,"modificationDate":"2017-12-13"}, -{"geonameId":"310004","name":"Karaçoban","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":20467,"modificationDate":"2015-04-08"}, -{"geonameId":"306474","name":"Korkuteli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":20465,"modificationDate":"2012-01-18"}, -{"geonameId":"3407903","name":"Almeirim","countryName":"Brazil","timeZoneName":"America/Santarem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20464,"modificationDate":"2019-12-05"}, -{"geonameId":"3595725","name":"Flores","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":20464,"modificationDate":"2012-02-07"}, -{"geonameId":"1539209","name":"Gubkinskiy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":20463,"modificationDate":"2010-06-03"}, -{"geonameId":"1263730","name":"Maniar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20462,"modificationDate":"2018-12-04"}, -{"geonameId":"1513555","name":"Kirguli","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":20459,"modificationDate":"2015-11-07"}, -{"geonameId":"491480","name":"Sobinka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20458,"modificationDate":"2019-09-05"}, -{"geonameId":"4004092","name":"Jaral del Progreso","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":20457,"modificationDate":"2018-11-03"}, -{"geonameId":"3617095","name":"El Rama","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":20456,"modificationDate":"2018-08-08"}, -{"geonameId":"3465881","name":"Colorado","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20449,"modificationDate":"2012-08-03"}, -{"geonameId":"554410","name":"Kalach","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20449,"modificationDate":"2020-04-08"}, -{"geonameId":"1264644","name":"Māchhīwāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20447,"modificationDate":"2015-08-07"}, -{"geonameId":"1274169","name":"Chincholi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20447,"modificationDate":"2015-08-07"}, -{"geonameId":"2172191","name":"Carrum Downs","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":20444,"modificationDate":"2019-07-18"}, -{"geonameId":"2639317","name":"Risca","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20443,"modificationDate":"2011-03-03"}, -{"geonameId":"2146827","name":"Thomastown","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":20441,"modificationDate":"2019-07-18"}, -{"geonameId":"1278622","name":"Anthiyur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20436,"modificationDate":"2014-10-14"}, -{"geonameId":"4899739","name":"Libertyville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20436,"modificationDate":"2017-05-23"}, -{"geonameId":"3167104","name":"Sarzana","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20435,"modificationDate":"2015-08-01"}, -{"geonameId":"2512251","name":"La Pobla de Vallbona","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20431,"modificationDate":"2015-05-31"}, -{"geonameId":"3041563","name":"Andorra la Vella","countryName":"Andorra","timeZoneName":"Europe/Andorra","timeZoneOffsetNameWithoutDst":"Central European Time","population":20430,"modificationDate":"2020-03-03"}, -{"geonameId":"3181790","name":"Borgomanero","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20430,"modificationDate":"2017-06-26"}, -{"geonameId":"2861733","name":"Nottuln","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20427,"modificationDate":"2011-04-25"}, -{"geonameId":"3598678","name":"Chicacao","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":20426,"modificationDate":"2019-01-09"}, -{"geonameId":"11980142","name":"São Pedro","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20424,"modificationDate":"2018-12-06"}, -{"geonameId":"1261378","name":"Nīmāj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20424,"modificationDate":"2015-10-04"}, -{"geonameId":"265500","name":"Aígio","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20422,"modificationDate":"2015-05-01"}, -{"geonameId":"1856828","name":"Miyata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20421,"modificationDate":"2017-04-09"}, -{"geonameId":"8858106","name":"Terrazas del Valle","countryName":"Mexico","timeZoneName":"America/Tijuana","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20421,"modificationDate":"2014-04-11"}, -{"geonameId":"1254131","name":"Tufānganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20420,"modificationDate":"2014-10-14"}, -{"geonameId":"3394116","name":"Murici","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20419,"modificationDate":"2012-08-03"}, -{"geonameId":"956767","name":"Secunda","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":20418,"modificationDate":"2012-07-12"}, -{"geonameId":"2150660","name":"Saint Kilda","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":20417,"modificationDate":"2019-07-18"}, -{"geonameId":"2843106","name":"Rummelsburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20414,"modificationDate":"2012-06-09"}, -{"geonameId":"3866425","name":"Albardón","countryName":"Argentina","timeZoneName":"America/Argentina/San_Juan","timeZoneOffsetNameWithoutDst":"Argentina Time","population":20413,"modificationDate":"2015-04-22"}, -{"geonameId":"2851343","name":"Quickborn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20410,"modificationDate":"2015-09-04"}, -{"geonameId":"946128","name":"eMkhomazi","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":20410,"modificationDate":"2019-03-18"}, -{"geonameId":"1683800","name":"Taloc","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":20409,"modificationDate":"2017-12-13"}, -{"geonameId":"4277241","name":"Pittsburg","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20409,"modificationDate":"2017-05-23"}, -{"geonameId":"4521816","name":"Portsmouth","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20409,"modificationDate":"2017-05-23"}, -{"geonameId":"2164515","name":"Greensborough","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":20407,"modificationDate":"2019-07-18"}, -{"geonameId":"1167648","name":"Qadirpur Ran","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":20407,"modificationDate":"2019-12-06"}, -{"geonameId":"2043531","name":"Kapsan","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":20406,"modificationDate":"2020-06-11"}, -{"geonameId":"657530","name":"Hollola","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20405,"modificationDate":"2014-09-25"}, -{"geonameId":"1270265","name":"Harūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20405,"modificationDate":"2014-10-14"}, -{"geonameId":"5353530","name":"Granite Bay","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20402,"modificationDate":"2011-05-14"}, -{"geonameId":"1272277","name":"Dugda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20400,"modificationDate":"2014-10-14"}, -{"geonameId":"5429522","name":"Louisville","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":20396,"modificationDate":"2017-03-09"}, -{"geonameId":"2516925","name":"Guadix","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20395,"modificationDate":"2016-07-30"}, -{"geonameId":"1254317","name":"Tisaiyanvilai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20395,"modificationDate":"2018-12-04"}, -{"geonameId":"1851494","name":"Suibara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20392,"modificationDate":"2017-04-09"}, -{"geonameId":"2657471","name":"Alloa","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20390,"modificationDate":"2017-06-12"}, -{"geonameId":"3459495","name":"Júlio de Castilhos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20388,"modificationDate":"2012-08-03"}, -{"geonameId":"317588","name":"Darende","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":20388,"modificationDate":"2012-01-18"}, -{"geonameId":"7284837","name":"Budapest XXIII. kerület","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":20387,"modificationDate":"2019-09-23"}, -{"geonameId":"4565564","name":"Humacao","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":20387,"modificationDate":"2015-08-03"}, -{"geonameId":"3583158","name":"Sensuntepeque","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":20386,"modificationDate":"2012-01-14"}, -{"geonameId":"3079273","name":"Blansko","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":20384,"modificationDate":"2019-03-19"}, -{"geonameId":"2641616","name":"Newmarket","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20384,"modificationDate":"2018-07-03"}, -{"geonameId":"2929134","name":"Eschborn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20383,"modificationDate":"2015-09-05"}, -{"geonameId":"3699484","name":"Bagua Grande","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":20382,"modificationDate":"2012-07-19"}, -{"geonameId":"3569926","name":"Sainte-Marie","countryName":"Martinique","timeZoneName":"America/Martinique","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":20380,"modificationDate":"2018-12-04"}, -{"geonameId":"5039675","name":"Northfield","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20380,"modificationDate":"2017-05-23"}, -{"geonameId":"174895","name":"Goris","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":20379,"modificationDate":"2018-03-12"}, -{"geonameId":"6558039","name":"Rheinstetten","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20378,"modificationDate":"2010-11-15"}, -{"geonameId":"632672","name":"Valkeakoski","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20376,"modificationDate":"2014-09-25"}, -{"geonameId":"1274642","name":"Channagiri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20376,"modificationDate":"2014-10-14"}, -{"geonameId":"5168491","name":"Rocky River","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20376,"modificationDate":"2017-05-23"}, -{"geonameId":"3674412","name":"Morales","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":20375,"modificationDate":"2018-07-04"}, -{"geonameId":"2860080","name":"Oberkirch","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20375,"modificationDate":"2013-02-16"}, -{"geonameId":"4405180","name":"Raymore","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20374,"modificationDate":"2017-05-23"}, -{"geonameId":"2787048","name":"Schilde","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":20373,"modificationDate":"2011-02-11"}, -{"geonameId":"3689206","name":"Barbosa","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":20372,"modificationDate":"2018-09-05"}, -{"geonameId":"4143637","name":"Middletown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20372,"modificationDate":"2017-03-09"}, -{"geonameId":"684612","name":"Blaj","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20371,"modificationDate":"2012-06-12"}, -{"geonameId":"3473267","name":"Abaeté","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20370,"modificationDate":"2012-08-03"}, -{"geonameId":"2810919","name":"Werdohl","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20366,"modificationDate":"2015-09-04"}, -{"geonameId":"2270184","name":"Carcavelos","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":20366,"modificationDate":"2012-02-01"}, -{"geonameId":"4470244","name":"Havelock","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20364,"modificationDate":"2017-05-23"}, -{"geonameId":"2833079","name":"Senden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20363,"modificationDate":"2017-04-26"}, -{"geonameId":"1269019","name":"Jhālu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20356,"modificationDate":"2015-04-08"}, -{"geonameId":"6054350","name":"Lindsay","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20354,"modificationDate":"2019-09-27"}, -{"geonameId":"3613394","name":"Cofradía","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":20353,"modificationDate":"2016-03-10"}, -{"geonameId":"1269545","name":"Jahāzpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20350,"modificationDate":"2014-10-14"}, -{"geonameId":"4327047","name":"Harvey","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20348,"modificationDate":"2011-05-14"}, -{"geonameId":"343409","name":"Asaita","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20342,"modificationDate":"2012-10-07"}, -{"geonameId":"595449","name":"Radviliskis","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20339,"modificationDate":"2014-09-24"}, -{"geonameId":"1702032","name":"Manay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":20336,"modificationDate":"2017-12-13"}, -{"geonameId":"2521456","name":"Ayamonte","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20334,"modificationDate":"2015-06-16"}, -{"geonameId":"2525070","name":"Castrovillari","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20334,"modificationDate":"2015-08-01"}, -{"geonameId":"2746133","name":"Tubbergen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":20334,"modificationDate":"2017-10-17"}, -{"geonameId":"4937557","name":"Gardner","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20333,"modificationDate":"2017-05-23"}, -{"geonameId":"1512320","name":"Yaypan","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":20332,"modificationDate":"2015-09-06"}, -{"geonameId":"5423294","name":"Golden","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":20330,"modificationDate":"2017-03-09"}, -{"geonameId":"2655642","name":"Bingley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20327,"modificationDate":"2011-03-03"}, -{"geonameId":"7302805","name":"Akkarampalle","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20325,"modificationDate":"2014-10-10"}, -{"geonameId":"3404766","name":"Buíque","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20324,"modificationDate":"2012-08-03"}, -{"geonameId":"1277759","name":"Byndoor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20323,"modificationDate":"2014-10-14"}, -{"geonameId":"4890075","name":"Douglas","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20323,"modificationDate":"2017-12-13"}, -{"geonameId":"2766447","name":"Sankt Peter","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":20320,"modificationDate":"2018-07-28"}, -{"geonameId":"10062600","name":"Pilaitė","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20320,"modificationDate":"2015-02-12"}, -{"geonameId":"3984679","name":"Santa Anita","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":20320,"modificationDate":"2019-02-21"}, -{"geonameId":"4186531","name":"Cartersville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20319,"modificationDate":"2017-03-09"}, -{"geonameId":"5146055","name":"Ashland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20317,"modificationDate":"2017-05-23"}, -{"geonameId":"3616232","name":"Somoto","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":20316,"modificationDate":"2019-09-05"}, -{"geonameId":"7315237","name":"Oakleaf Plantation","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20315,"modificationDate":"2017-03-10"}, -{"geonameId":"3660152","name":"Boca Suno","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":20313,"modificationDate":"2013-01-11"}, -{"geonameId":"2986302","name":"Pontarlier","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20313,"modificationDate":"2016-02-18"}, -{"geonameId":"2924360","name":"Friesoythe","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20311,"modificationDate":"2015-09-05"}, -{"geonameId":"2167208","name":"Essendon","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":20310,"modificationDate":"2019-07-18"}, -{"geonameId":"587577","name":"Viljandi","countryName":"Estonia","timeZoneName":"Europe/Tallinn","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20309,"modificationDate":"2019-09-05"}, -{"geonameId":"2654490","name":"Brownhills","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20308,"modificationDate":"2013-07-11"}, -{"geonameId":"4374513","name":"Affton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20307,"modificationDate":"2017-05-23"}, -{"geonameId":"3624468","name":"Cañas","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":20306,"modificationDate":"2016-09-07"}, -{"geonameId":"11549778","name":"Provenals del Poblenou","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20306,"modificationDate":"2017-05-24"}, -{"geonameId":"785965","name":"Senta","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":20302,"modificationDate":"2012-04-15"}, -{"geonameId":"2497323","name":"El Tarf","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":20300,"modificationDate":"2018-08-08"}, -{"geonameId":"3027453","name":"Chamalières","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20298,"modificationDate":"2019-04-10"}, -{"geonameId":"2329946","name":"Monguno","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":20297,"modificationDate":"2016-06-22"}, -{"geonameId":"4568917","name":"Yauco","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":20295,"modificationDate":"2015-08-03"}, -{"geonameId":"2911584","name":"Haldensleben I","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20294,"modificationDate":"2015-12-08"}, -{"geonameId":"342567","name":"Bedelli","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20293,"modificationDate":"2020-06-11"}, -{"geonameId":"3104132","name":"Aleksandrów Łódzki","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":20292,"modificationDate":"2010-10-16"}, -{"geonameId":"5385793","name":"Ramona","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20292,"modificationDate":"2011-05-14"}, -{"geonameId":"2794117","name":"Kontich","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":20290,"modificationDate":"2011-02-10"}, -{"geonameId":"5111141","name":"Cambria Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20287,"modificationDate":"2017-04-16"}, -{"geonameId":"1860256","name":"Kanaya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20286,"modificationDate":"2017-04-09"}, -{"geonameId":"3714932","name":"Alcalde Díaz","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20285,"modificationDate":"2017-08-16"}, -{"geonameId":"1283082","name":"Malankwa","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":20284,"modificationDate":"2020-06-10"}, -{"geonameId":"1260694","name":"Pallappatti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20281,"modificationDate":"2014-10-14"}, -{"geonameId":"1856586","name":"Mori","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20280,"modificationDate":"2017-04-09"}, -{"geonameId":"3698540","name":"Chachapoyas","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":20279,"modificationDate":"2012-07-19"}, -{"geonameId":"5097627","name":"Elmwood Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20279,"modificationDate":"2017-05-23"}, -{"geonameId":"5703670","name":"Elko","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20279,"modificationDate":"2017-03-09"}, -{"geonameId":"3559318","name":"Esmeralda","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":20274,"modificationDate":"2016-01-07"}, -{"geonameId":"3046888","name":"Oroszlány","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":20271,"modificationDate":"2014-11-05"}, -{"geonameId":"5121026","name":"Hollis","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20269,"modificationDate":"2018-11-24"}, -{"geonameId":"2994087","name":"Meylan","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20267,"modificationDate":"2019-06-05"}, -{"geonameId":"571155","name":"Buinsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20266,"modificationDate":"2019-09-05"}, -{"geonameId":"3669736","name":"San Jacinto","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":20265,"modificationDate":"2018-07-04"}, -{"geonameId":"3545867","name":"Nueva Gerona","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":20264,"modificationDate":"2016-01-07"}, -{"geonameId":"552924","name":"Karachayevsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20264,"modificationDate":"2016-12-02"}, -{"geonameId":"2838009","name":"Schmargendorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20262,"modificationDate":"2012-06-09"}, -{"geonameId":"3865840","name":"Añatuya","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":20261,"modificationDate":"2016-01-30"}, -{"geonameId":"756868","name":"Tomaszów Lubelski","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":20261,"modificationDate":"2010-10-14"}, -{"geonameId":"3589671","name":"San Pablo Jocopilas","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":20259,"modificationDate":"2019-01-09"}, -{"geonameId":"5110309","name":"Brooklyn Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20256,"modificationDate":"2019-11-06"}, -{"geonameId":"2920891","name":"Gersthofen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20254,"modificationDate":"2013-02-19"}, -{"geonameId":"1252887","name":"Wellington","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20254,"modificationDate":"2017-02-04"}, -{"geonameId":"152497","name":"Muriti","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20254,"modificationDate":"2018-12-04"}, -{"geonameId":"5306611","name":"Nogales","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":20252,"modificationDate":"2017-03-09"}, -{"geonameId":"1726765","name":"Baras","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":20250,"modificationDate":"2017-12-13"}, -{"geonameId":"5166184","name":"Parma Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20246,"modificationDate":"2017-05-23"}, -{"geonameId":"5363859","name":"La Cañada Flintridge","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20246,"modificationDate":"2011-05-14"}, -{"geonameId":"1256812","name":"Serchhīp","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20244,"modificationDate":"2014-10-14"}, -{"geonameId":"3084415","name":"Strzelce Opolskie","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":20241,"modificationDate":"2010-09-24"}, -{"geonameId":"154566","name":"Matui","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20241,"modificationDate":"2018-12-04"}, -{"geonameId":"2783293","name":"Zele","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":20236,"modificationDate":"2012-01-18"}, -{"geonameId":"1621020","name":"Aranyaprathet","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":20236,"modificationDate":"2012-01-16"}, -{"geonameId":"159647","name":"Hedaru","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20231,"modificationDate":"2016-07-26"}, -{"geonameId":"18918","name":"Protaras","countryName":"Cyprus","timeZoneName":"Asia/Famagusta","timeZoneOffsetNameWithoutDst":"GMT+02:00","population":20230,"modificationDate":"2014-07-16"}, -{"geonameId":"2961423","name":"Sligo","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20228,"modificationDate":"2014-07-16"}, -{"geonameId":"293619","name":"Sederot","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":20228,"modificationDate":"2017-07-05"}, -{"geonameId":"2111495","name":"Ōhara","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20226,"modificationDate":"2017-04-09"}, -{"geonameId":"2332871","name":"Kwale","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":20226,"modificationDate":"2016-01-30"}, -{"geonameId":"4543352","name":"Mustang","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20226,"modificationDate":"2017-03-09"}, -{"geonameId":"4782864","name":"Rose Hill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20226,"modificationDate":"2011-05-14"}, -{"geonameId":"6943560","name":"Kallangur","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":20222,"modificationDate":"2019-07-18"}, -{"geonameId":"2992863","name":"Montceau-les-Mines","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20221,"modificationDate":"2019-03-26"}, -{"geonameId":"1259905","name":"Penukonda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20220,"modificationDate":"2015-10-04"}, -{"geonameId":"189280","name":"Lodwar","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20219,"modificationDate":"2017-11-07"}, -{"geonameId":"623760","name":"Pastavy","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20218,"modificationDate":"2019-09-05"}, -{"geonameId":"2911964","name":"Haiger","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20218,"modificationDate":"2019-09-05"}, -{"geonameId":"5115989","name":"East Northport","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20217,"modificationDate":"2017-05-23"}, -{"geonameId":"1255635","name":"Srinagar Garhwal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20216,"modificationDate":"2020-06-10"}, -{"geonameId":"8394392","name":"Marina di Ardea-Tor San Lorenzo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20216,"modificationDate":"2014-05-01"}, -{"geonameId":"2817105","name":"Vlotho","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20214,"modificationDate":"2015-09-05"}, -{"geonameId":"6620293","name":"Yateley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20214,"modificationDate":"2018-07-03"}, -{"geonameId":"3190359","name":"Solin","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":20212,"modificationDate":"2018-08-28"}, -{"geonameId":"1260918","name":"Padmanābhapuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20212,"modificationDate":"2014-10-14"}, -{"geonameId":"1610538","name":"Kabin Buri","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":20212,"modificationDate":"2012-01-16"}, -{"geonameId":"3651694","name":"San Lorenzo de Esmeraldas","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":20209,"modificationDate":"2017-02-07"}, -{"geonameId":"636947","name":"Siilinjärvi","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20209,"modificationDate":"2014-09-25"}, -{"geonameId":"2803723","name":"Zulpich","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20208,"modificationDate":"2019-06-17"}, -{"geonameId":"3556351","name":"Jaruco","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":20207,"modificationDate":"2015-12-06"}, -{"geonameId":"3130383","name":"Algete","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20204,"modificationDate":"2012-03-04"}, -{"geonameId":"8310136","name":"Tel Sheva‘","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":20204,"modificationDate":"2020-04-30"}, -{"geonameId":"1276870","name":"Barpāli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20202,"modificationDate":"2015-09-06"}, -{"geonameId":"2920620","name":"Giengen an der Brenz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20201,"modificationDate":"2013-02-15"}, -{"geonameId":"2646317","name":"Hythe","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20201,"modificationDate":"2018-07-03"}, -{"geonameId":"746898","name":"Geyve","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":20199,"modificationDate":"2012-05-06"}, -{"geonameId":"5352350","name":"Glen Avon","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20199,"modificationDate":"2011-05-14"}, -{"geonameId":"3466723","name":"Castelo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20198,"modificationDate":"2012-08-03"}, -{"geonameId":"3526138","name":"San Antonio de la Cal","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":20198,"modificationDate":"2018-11-09"}, -{"geonameId":"3111348","name":"Roses","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20197,"modificationDate":"2012-03-04"}, -{"geonameId":"1271881","name":"Ferozepur-Jhirka","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20195,"modificationDate":"2020-06-10"}, -{"geonameId":"2524084","name":"Monserrato","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20193,"modificationDate":"2015-08-01"}, -{"geonameId":"3578447","name":"Sainte-Rose","countryName":"Guadeloupe","timeZoneName":"America/Guadeloupe","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":20192,"modificationDate":"2017-05-08"}, -{"geonameId":"2746504","name":"Tegelen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":20190,"modificationDate":"2017-10-17"}, -{"geonameId":"2641589","name":"Newquay","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20189,"modificationDate":"2017-06-12"}, -{"geonameId":"6929992","name":"Berkel en Rodenrijs","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":20189,"modificationDate":"2017-10-17"}, -{"geonameId":"4342816","name":"Sulphur","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20189,"modificationDate":"2017-03-09"}, -{"geonameId":"4491180","name":"Shelby","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20189,"modificationDate":"2017-03-09"}, -{"geonameId":"2614764","name":"Ringsted","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":20188,"modificationDate":"2017-10-18"}, -{"geonameId":"3666582","name":"Túquerres","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":20184,"modificationDate":"2018-08-08"}, -{"geonameId":"1528193","name":"Kant","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":20181,"modificationDate":"2015-06-07"}, -{"geonameId":"2521510","name":"Aspe","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20180,"modificationDate":"2012-03-04"}, -{"geonameId":"4838887","name":"Montville Center","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20180,"modificationDate":"2017-05-23"}, -{"geonameId":"2815487","name":"Waghäusel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20178,"modificationDate":"2015-03-04"}, -{"geonameId":"2487852","name":"Mers el Kebir","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":20178,"modificationDate":"2016-09-18"}, -{"geonameId":"1851952","name":"Shiozawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20178,"modificationDate":"2017-04-09"}, -{"geonameId":"2270377","name":"Camarate","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":20177,"modificationDate":"2012-01-17"}, -{"geonameId":"4992635","name":"Ferndale","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20177,"modificationDate":"2017-05-23"}, -{"geonameId":"8349222","name":"Punchbowl","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":20174,"modificationDate":"2019-07-18"}, -{"geonameId":"1860095","name":"Kanzakimachi-kanzaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20172,"modificationDate":"2017-04-09"}, -{"geonameId":"2807344","name":"Wittenberge","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20171,"modificationDate":"2015-09-05"}, -{"geonameId":"3014034","name":"Halluin","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20171,"modificationDate":"2016-02-18"}, -{"geonameId":"1491159","name":"Sredneuralsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":20169,"modificationDate":"2019-09-05"}, -{"geonameId":"1262734","name":"Morwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20168,"modificationDate":"2014-10-13"}, -{"geonameId":"330120","name":"Nejo","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20166,"modificationDate":"2012-01-19"}, -{"geonameId":"3859512","name":"Deán Funes","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":20164,"modificationDate":"2016-01-30"}, -{"geonameId":"1264282","name":"Mairwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20163,"modificationDate":"2015-10-04"}, -{"geonameId":"1734745","name":"Alor Gajah","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":20163,"modificationDate":"2012-01-17"}, -{"geonameId":"2280995","name":"Tanda","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20161,"modificationDate":"2016-12-03"}, -{"geonameId":"5048033","name":"South Saint Paul","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20160,"modificationDate":"2017-05-23"}, -{"geonameId":"3896924","name":"Cañete","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":20158,"modificationDate":"2013-01-11"}, -{"geonameId":"1269057","name":"Jevargi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20157,"modificationDate":"2014-10-14"}, -{"geonameId":"1690570","name":"Sampaloc","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":20157,"modificationDate":"2017-12-13"}, -{"geonameId":"4163049","name":"Lynn Haven","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20156,"modificationDate":"2017-03-09"}, -{"geonameId":"5736378","name":"Lents","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20156,"modificationDate":"2016-09-27"}, -{"geonameId":"2814883","name":"Waldkirch","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20155,"modificationDate":"2013-02-16"}, -{"geonameId":"2638568","name":"Sandown","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20155,"modificationDate":"2011-02-17"}, -{"geonameId":"5123840","name":"Lake Ronkonkoma","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20155,"modificationDate":"2017-05-23"}, -{"geonameId":"3493769","name":"Río Grande","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":20154,"modificationDate":"2016-06-05"}, -{"geonameId":"1268615","name":"Kaimori","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20154,"modificationDate":"2014-10-14"}, -{"geonameId":"2863795","name":"Neu Wulmstorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20150,"modificationDate":"2011-07-31"}, -{"geonameId":"2656847","name":"Atherton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20149,"modificationDate":"2011-03-03"}, -{"geonameId":"898905","name":"Sesheke","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":20149,"modificationDate":"2012-01-17"}, -{"geonameId":"2304389","name":"Apam","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20147,"modificationDate":"2019-12-06"}, -{"geonameId":"2110560","name":"Yamada","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20144,"modificationDate":"2017-04-09"}, -{"geonameId":"2983489","name":"Riom","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20142,"modificationDate":"2019-04-10"}, -{"geonameId":"4585000","name":"Lexington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20138,"modificationDate":"2017-03-09"}, -{"geonameId":"3467512","name":"Canguçu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20134,"modificationDate":"2012-08-03"}, -{"geonameId":"5202765","name":"Murrysville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20134,"modificationDate":"2017-03-09"}, -{"geonameId":"2801150","name":"Braine-le-Comte","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":20133,"modificationDate":"2019-12-03"}, -{"geonameId":"1251574","name":"Ambalangoda","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":20133,"modificationDate":"2018-12-17"}, -{"geonameId":"2171400","name":"Clayton","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":20130,"modificationDate":"2019-07-18"}, -{"geonameId":"4352681","name":"Cumberland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20130,"modificationDate":"2017-03-09"}, -{"geonameId":"2905290","name":"Hessisch Oldendorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20129,"modificationDate":"2015-09-05"}, -{"geonameId":"3471368","name":"Astorga","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20128,"modificationDate":"2012-08-03"}, -{"geonameId":"4001056","name":"La Orilla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":20126,"modificationDate":"2013-07-31"}, -{"geonameId":"3025314","name":"Chevilly-Larue","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20125,"modificationDate":"2016-02-18"}, -{"geonameId":"1508161","name":"Cherepanovo","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":20125,"modificationDate":"2012-01-17"}, -{"geonameId":"1263306","name":"Mau Aimma","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20123,"modificationDate":"2015-09-06"}, -{"geonameId":"4734350","name":"Stephenville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20120,"modificationDate":"2017-03-09"}, -{"geonameId":"1271965","name":"Fālākāta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20119,"modificationDate":"2014-10-14"}, -{"geonameId":"1182998","name":"Bela","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":20119,"modificationDate":"2019-12-06"}, -{"geonameId":"2652544","name":"Colne","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20118,"modificationDate":"2018-07-03"}, -{"geonameId":"2469386","name":"Medjez el Bab","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":20118,"modificationDate":"2018-08-05"}, -{"geonameId":"1865449","name":"Aki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20117,"modificationDate":"2017-07-22"}, -{"geonameId":"145724","name":"Lucapa","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":20115,"modificationDate":"2017-08-01"}, -{"geonameId":"3686233","name":"Circasia","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":20113,"modificationDate":"2018-08-08"}, -{"geonameId":"1267517","name":"Katghora","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20113,"modificationDate":"2015-09-06"}, -{"geonameId":"321572","name":"Belen","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":20113,"modificationDate":"2014-11-05"}, -{"geonameId":"2701727","name":"Karlshamn","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":20112,"modificationDate":"2017-03-18"}, -{"geonameId":"1274146","name":"Chinna Salem","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20111,"modificationDate":"2017-09-05"}, -{"geonameId":"312899","name":"Hadim","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":20110,"modificationDate":"2013-07-06"}, -{"geonameId":"479933","name":"Tyrnyauz","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20104,"modificationDate":"2019-09-05"}, -{"geonameId":"2882318","name":"Kürten","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20103,"modificationDate":"2015-03-04"}, -{"geonameId":"2127955","name":"Sunagawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":20102,"modificationDate":"2017-07-22"}, -{"geonameId":"5165734","name":"Oregon","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20102,"modificationDate":"2017-05-23"}, -{"geonameId":"7315412","name":"Eastmont","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20101,"modificationDate":"2017-03-10"}, -{"geonameId":"3460764","name":"Itaparica","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20100,"modificationDate":"2012-08-03"}, -{"geonameId":"625409","name":"Maryina Gorka","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20100,"modificationDate":"2020-06-10"}, -{"geonameId":"8299623","name":"Orkney","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20100,"modificationDate":"2012-06-01"}, -{"geonameId":"1272802","name":"Dhaurahra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20098,"modificationDate":"2018-12-04"}, -{"geonameId":"3178074","name":"Cornaredo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20098,"modificationDate":"2015-08-01"}, -{"geonameId":"3456102","name":"Nova Viçosa","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20097,"modificationDate":"2019-06-13"}, -{"geonameId":"3454213","name":"Penha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20096,"modificationDate":"2012-08-03"}, -{"geonameId":"3563856","name":"Colombia","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":20096,"modificationDate":"2016-01-07"}, -{"geonameId":"1267173","name":"Khairāgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20095,"modificationDate":"2016-07-05"}, -{"geonameId":"2395635","name":"Allada","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":20094,"modificationDate":"2018-03-19"}, -{"geonameId":"1264198","name":"Maksi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20094,"modificationDate":"2015-09-06"}, -{"geonameId":"1279306","name":"Afzalpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20094,"modificationDate":"2015-08-07"}, -{"geonameId":"2387435","name":"Damara","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":20093,"modificationDate":"2016-06-22"}, -{"geonameId":"3996030","name":"Mezcales","countryName":"Mexico","timeZoneName":"America/Bahia_Banderas","timeZoneOffsetNameWithoutDst":"Central Time","population":20092,"modificationDate":"2018-11-03"}, -{"geonameId":"5002344","name":"Monroe","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20092,"modificationDate":"2019-09-19"}, -{"geonameId":"2863712","name":"Nidderau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20090,"modificationDate":"2015-09-04"}, -{"geonameId":"1519226","name":"Shemonaīkha","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":20087,"modificationDate":"2014-06-27"}, -{"geonameId":"1510450","name":"Beloyarskiy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":20087,"modificationDate":"2019-05-06"}, -{"geonameId":"692632","name":"Stebnyk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20087,"modificationDate":"2013-01-10"}, -{"geonameId":"1261828","name":"Naraingarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20085,"modificationDate":"2020-06-10"}, -{"geonameId":"1262485","name":"Mungaoli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20081,"modificationDate":"2015-08-07"}, -{"geonameId":"2300883","name":"Foso","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20078,"modificationDate":"2019-12-06"}, -{"geonameId":"4151460","name":"Coconut Grove","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20076,"modificationDate":"2014-07-28"}, -{"geonameId":"5218802","name":"West Mifflin","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20075,"modificationDate":"2017-05-23"}, -{"geonameId":"3467305","name":"Capelinha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20073,"modificationDate":"2012-08-03"}, -{"geonameId":"3522804","name":"Naranjos","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":20073,"modificationDate":"2018-11-03"}, -{"geonameId":"3392629","name":"Pedra Branca","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20072,"modificationDate":"2012-08-03"}, -{"geonameId":"504042","name":"Pushchino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20072,"modificationDate":"2019-09-05"}, -{"geonameId":"1259251","name":"Pulwama","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20071,"modificationDate":"2019-03-16"}, -{"geonameId":"3676626","name":"Lérida","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":20069,"modificationDate":"2018-09-05"}, -{"geonameId":"665000","name":"Târgu Secuiesc","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20067,"modificationDate":"2018-01-03"}, -{"geonameId":"1256027","name":"Sirumugai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20066,"modificationDate":"2014-10-14"}, -{"geonameId":"1516519","name":"Zhosaly","countryName":"Kazakhstan","timeZoneName":"Asia/Qyzylorda","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":20065,"modificationDate":"2020-03-07"}, -{"geonameId":"12157092","name":"El Pedregal","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":20063,"modificationDate":"2020-05-08"}, -{"geonameId":"315621","name":"Aziziye","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":20063,"modificationDate":"2020-06-10"}, -{"geonameId":"2315026","name":"Kasongo-Lunda","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Kinshasa","timeZoneOffsetNameWithoutDst":"West Africa Time","population":20060,"modificationDate":"2016-11-22"}, -{"geonameId":"502540","name":"Rayevskiy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":20060,"modificationDate":"2014-02-02"}, -{"geonameId":"2653393","name":"Chalfont Saint Peter","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20059,"modificationDate":"2018-07-03"}, -{"geonameId":"2801226","name":"Boussu","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":20058,"modificationDate":"2010-01-29"}, -{"geonameId":"6941014","name":"Ponta Delgada","countryName":"Portugal","timeZoneName":"Atlantic/Azores","timeZoneOffsetNameWithoutDst":"Azores Time","population":20056,"modificationDate":"2019-09-10"}, -{"geonameId":"2965768","name":"Carlow","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20055,"modificationDate":"2011-05-29"}, -{"geonameId":"2416443","name":"Pita","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20052,"modificationDate":"2015-03-05"}, -{"geonameId":"3461941","name":"Guaporé","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20050,"modificationDate":"2012-08-03"}, -{"geonameId":"1682472","name":"Ternate","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":20049,"modificationDate":"2017-12-13"}, -{"geonameId":"151363","name":"Nsunga","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20049,"modificationDate":"2016-07-26"}, -{"geonameId":"365742","name":"Torit","countryName":"South Sudan","timeZoneName":"Africa/Juba","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20048,"modificationDate":"2020-01-01"}, -{"geonameId":"680897","name":"Corabia","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20047,"modificationDate":"2019-02-28"}, -{"geonameId":"2850253","name":"Rastede","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20046,"modificationDate":"2011-04-25"}, -{"geonameId":"1266649","name":"Khowai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20046,"modificationDate":"2018-05-27"}, -{"geonameId":"1606270","name":"Sing Buri","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":20046,"modificationDate":"2012-01-16"}, -{"geonameId":"6295504","name":"Zürich (Kreis 6) / Unterstrass","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":20045,"modificationDate":"2006-10-21"}, -{"geonameId":"1261647","name":"Nāwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20044,"modificationDate":"2014-10-14"}, -{"geonameId":"1270863","name":"Govardhan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20044,"modificationDate":"2014-10-14"}, -{"geonameId":"2797532","name":"Gilly","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":20043,"modificationDate":"2020-04-05"}, -{"geonameId":"5803457","name":"Mill Creek","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20043,"modificationDate":"2017-03-09"}, -{"geonameId":"739215","name":"Kamurghia","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":20039,"modificationDate":"2020-06-10"}, -{"geonameId":"4167424","name":"Pace","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20039,"modificationDate":"2011-05-14"}, -{"geonameId":"3168236","name":"San Giovanni Lupatoto","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20038,"modificationDate":"2015-08-01"}, -{"geonameId":"3176589","name":"Frascati","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20036,"modificationDate":"2015-07-15"}, -{"geonameId":"4518188","name":"Miamisburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20034,"modificationDate":"2017-05-23"}, -{"geonameId":"3665951","name":"Villanueva","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":20032,"modificationDate":"2018-05-09"}, -{"geonameId":"2815678","name":"Wachtberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20032,"modificationDate":"2011-07-31"}, -{"geonameId":"3527880","name":"Emiliano Zapata","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":20030,"modificationDate":"2018-11-03"}, -{"geonameId":"2473654","name":"El Jem","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":20029,"modificationDate":"2018-08-05"}, -{"geonameId":"2473913","name":"Akouda","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":20027,"modificationDate":"2018-08-05"}, -{"geonameId":"2657337","name":"Ampthill","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20026,"modificationDate":"2017-06-12"}, -{"geonameId":"2926120","name":"Flörsheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20023,"modificationDate":"2015-09-05"}, -{"geonameId":"2438774","name":"Tibiri","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":20019,"modificationDate":"2006-01-17"}, -{"geonameId":"4167601","name":"Palm Valley","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":20019,"modificationDate":"2011-05-14"}, -{"geonameId":"4406282","name":"Rolla","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":20019,"modificationDate":"2017-05-23"}, -{"geonameId":"5814043","name":"Tukwila","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":20018,"modificationDate":"2017-03-09"}, -{"geonameId":"7932629","name":"Balwyn North","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":20015,"modificationDate":"2019-07-18"}, -{"geonameId":"2835260","name":"Schwanewede","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20015,"modificationDate":"2011-07-31"}, -{"geonameId":"2748371","name":"Raalte","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":20015,"modificationDate":"2017-10-17"}, -{"geonameId":"2869019","name":"Mössingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20010,"modificationDate":"2019-09-05"}, -{"geonameId":"2753010","name":"Katwijk aan Zee","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":20010,"modificationDate":"2016-12-07"}, -{"geonameId":"963525","name":"Queensdale","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":20009,"modificationDate":"2018-12-05"}, -{"geonameId":"3865385","name":"Arroyo Seco","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":20008,"modificationDate":"2016-01-30"}, -{"geonameId":"1258292","name":"Rāya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20008,"modificationDate":"2015-08-07"}, -{"geonameId":"2071059","name":"Gawler","countryName":"Australia","timeZoneName":"Australia/Adelaide","timeZoneOffsetNameWithoutDst":"Australian Central Time","population":20006,"modificationDate":"2019-07-21"}, -{"geonameId":"2904985","name":"Heusweiler","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":20006,"modificationDate":"2017-04-26"}, -{"geonameId":"3452599","name":"Posse","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20003,"modificationDate":"2012-08-03"}, -{"geonameId":"3165198","name":"Trezzano sul Naviglio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20001,"modificationDate":"2014-04-13"}, -{"geonameId":"1732892","name":"Batang Berjuntai","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":20001,"modificationDate":"2013-10-30"}, -{"geonameId":"2766522","name":"Sankt Martin","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":20000,"modificationDate":"2018-08-15"}, -{"geonameId":"6316729","name":"Campinas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":20000,"modificationDate":"2012-08-03"}, -{"geonameId":"7280414","name":"Cole Harbour","countryName":"Canada","timeZoneName":"America/Halifax","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":20000,"modificationDate":"2010-03-05"}, -{"geonameId":"3206590","name":"Riehen","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":20000,"modificationDate":"2019-09-10"}, -{"geonameId":"3874958","name":"Puerto Natales","countryName":"Chile","timeZoneName":"America/Punta_Arenas","timeZoneOffsetNameWithoutDst":"GMT-03:00","population":20000,"modificationDate":"2017-12-16"}, -{"geonameId":"3534632","name":"Varadero","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":20000,"modificationDate":"2020-03-03"}, -{"geonameId":"361394","name":"Al Bawīţī","countryName":"Egypt","timeZoneName":"Africa/Cairo","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20000,"modificationDate":"2017-07-11"}, -{"geonameId":"6615443","name":"Montecanal","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20000,"modificationDate":"2011-09-11"}, -{"geonameId":"8629192","name":"Natahoyo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":20000,"modificationDate":"2013-10-20"}, -{"geonameId":"648635","name":"Lauttasaari","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20000,"modificationDate":"2018-10-28"}, -{"geonameId":"8504417","name":"La Defense","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":20000,"modificationDate":"2016-02-18"}, -{"geonameId":"2636373","name":"Swinton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20000,"modificationDate":"2013-12-11"}, -{"geonameId":"2639998","name":"Portslade","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20000,"modificationDate":"2014-08-27"}, -{"geonameId":"2645420","name":"Kingswinford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20000,"modificationDate":"2012-03-29"}, -{"geonameId":"2653123","name":"Chislehurst","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20000,"modificationDate":"2012-06-01"}, -{"geonameId":"6620355","name":"Bowthorpe","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20000,"modificationDate":"2011-03-03"}, -{"geonameId":"6947168","name":"Kempston Hardwick","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":20000,"modificationDate":"2011-03-03"}, -{"geonameId":"7087175","name":"Bedugul","countryName":"Indonesia","timeZoneName":"Asia/Makassar","timeZoneOffsetNameWithoutDst":"Central Indonesia Time","population":20000,"modificationDate":"2019-05-09"}, -{"geonameId":"6324621","name":"Powai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":20000,"modificationDate":"2014-10-13"}, -{"geonameId":"418950","name":"Abrīsham","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":20000,"modificationDate":"2018-10-28"}, -{"geonameId":"2523535","name":"Sambiase","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":20000,"modificationDate":"2018-10-01"}, -{"geonameId":"248803","name":"Judita","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20000,"modificationDate":"2013-10-07"}, -{"geonameId":"276359","name":"Bsherri","countryName":"Lebanon","timeZoneName":"Asia/Beirut","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20000,"modificationDate":"2020-06-10"}, -{"geonameId":"3576812","name":"Castries","countryName":"Saint Lucia","timeZoneName":"America/St_Lucia","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":20000,"modificationDate":"2019-09-05"}, -{"geonameId":"2534515","name":"Sidi Ifni","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":20000,"modificationDate":"2016-11-02"}, -{"geonameId":"1325443","name":"Hakha","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":20000,"modificationDate":"2018-05-09"}, -{"geonameId":"1734769","name":"Pelabuhan Klang","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":20000,"modificationDate":"2017-09-22"}, -{"geonameId":"1735074","name":"Batu Feringgi","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":20000,"modificationDate":"2016-10-17"}, -{"geonameId":"2746860","name":"Stadskanaal","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":20000,"modificationDate":"2017-10-17"}, -{"geonameId":"3136947","name":"Steinkjer","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":20000,"modificationDate":"2019-12-12"}, -{"geonameId":"1164245","name":"Surkhpur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":20000,"modificationDate":"2018-09-04"}, -{"geonameId":"756004","name":"Wesoła","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":20000,"modificationDate":"2018-01-16"}, -{"geonameId":"491895","name":"Slobodka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20000,"modificationDate":"2013-04-02"}, -{"geonameId":"496456","name":"Setun’","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20000,"modificationDate":"2013-04-02"}, -{"geonameId":"500843","name":"Rublëvo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20000,"modificationDate":"2012-01-17"}, -{"geonameId":"519711","name":"Novaya Derevnya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20000,"modificationDate":"2013-04-02"}, -{"geonameId":"549424","name":"Khosta","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20000,"modificationDate":"2013-01-25"}, -{"geonameId":"551835","name":"Kastanayevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20000,"modificationDate":"2013-04-02"}, -{"geonameId":"563522","name":"Elektrougli","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20000,"modificationDate":"2019-09-05"}, -{"geonameId":"574675","name":"Bol’shaya Setun’","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20000,"modificationDate":"2013-04-02"}, -{"geonameId":"581928","name":"Andreyevskoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20000,"modificationDate":"2013-04-02"}, -{"geonameId":"823674","name":"Dagomys","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20000,"modificationDate":"2012-01-19"}, -{"geonameId":"857689","name":"Vnukovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20000,"modificationDate":"2016-04-29"}, -{"geonameId":"2013258","name":"Vrangel’","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":20000,"modificationDate":"2014-06-26"}, -{"geonameId":"8504955","name":"Krestovskiy ostrov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":20000,"modificationDate":"2013-03-29"}, -{"geonameId":"8045596","name":"Baki","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":20000,"modificationDate":"2020-03-10"}, -{"geonameId":"299445","name":"Tekirova","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":20000,"modificationDate":"2008-11-15"}, -{"geonameId":"696008","name":"Putyvl’","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":20000,"modificationDate":"2014-07-08"}, -{"geonameId":"4795467","name":"Charlotte Amalie","countryName":"U.S. Virgin Islands","timeZoneName":"America/St_Thomas","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":20000,"modificationDate":"2019-09-05"}, -{"geonameId":"2612629","name":"Stenløse","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":19998,"modificationDate":"2017-10-18"}, -{"geonameId":"4152926","name":"DeBary","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19998,"modificationDate":"2017-03-09"}, -{"geonameId":"2801447","name":"Bornem","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":19997,"modificationDate":"2011-02-10"}, -{"geonameId":"2980467","name":"Sainte-Marguerite","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19997,"modificationDate":"2018-08-22"}, -{"geonameId":"3530590","name":"Ciudad Miguel Alemán","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":19997,"modificationDate":"2018-11-03"}, -{"geonameId":"379102","name":"Al Mijlad","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":19997,"modificationDate":"2015-08-07"}, -{"geonameId":"5100706","name":"Lyndhurst","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19996,"modificationDate":"2017-05-23"}, -{"geonameId":"1879682","name":"Anak","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":19995,"modificationDate":"2012-01-19"}, -{"geonameId":"4899170","name":"Lake Zurich","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19993,"modificationDate":"2017-05-23"}, -{"geonameId":"5254218","name":"Germantown","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19993,"modificationDate":"2017-05-23"}, -{"geonameId":"3558744","name":"Fomento","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":19991,"modificationDate":"2016-01-07"}, -{"geonameId":"8948708","name":"Arpino","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19988,"modificationDate":"2014-04-13"}, -{"geonameId":"1851542","name":"Sueyoshi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":19986,"modificationDate":"2020-06-11"}, -{"geonameId":"4103448","name":"Bryant","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19986,"modificationDate":"2017-05-23"}, -{"geonameId":"4154606","name":"Eustis","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19986,"modificationDate":"2017-03-09"}, -{"geonameId":"4738574","name":"Universal City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19986,"modificationDate":"2017-03-09"}, -{"geonameId":"3686793","name":"Chaparral","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":19982,"modificationDate":"2018-09-05"}, -{"geonameId":"2802743","name":"Balen","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":19978,"modificationDate":"2011-02-10"}, -{"geonameId":"2647655","name":"Hailsham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19977,"modificationDate":"2018-07-03"}, -{"geonameId":"1830564","name":"Kratié","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":19975,"modificationDate":"2017-02-11"}, -{"geonameId":"2795113","name":"Huy","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":19973,"modificationDate":"2011-03-17"}, -{"geonameId":"2173125","name":"Burnie","countryName":"Australia","timeZoneName":"Australia/Hobart","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":19972,"modificationDate":"2019-07-21"}, -{"geonameId":"5961564","name":"Glace Bay","countryName":"Canada","timeZoneName":"America/Glace_Bay","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":19968,"modificationDate":"2008-08-28"}, -{"geonameId":"4302504","name":"Newburg","countryName":"United States","timeZoneName":"America/Kentucky/Louisville","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19967,"modificationDate":"2006-01-17"}, -{"geonameId":"2757890","name":"Cranendonck","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":19966,"modificationDate":"2007-06-03"}, -{"geonameId":"762199","name":"Pionki","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":19966,"modificationDate":"2010-10-12"}, -{"geonameId":"5195561","name":"Johnstown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19966,"modificationDate":"2017-05-23"}, -{"geonameId":"2800220","name":"Colfontaine","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":19964,"modificationDate":"2009-01-20"}, -{"geonameId":"1278539","name":"Annur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19962,"modificationDate":"2014-10-14"}, -{"geonameId":"7302812","name":"Dasnapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19962,"modificationDate":"2014-10-10"}, -{"geonameId":"730565","name":"Karlovo","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19958,"modificationDate":"2012-01-18"}, -{"geonameId":"3447005","name":"Tambaú","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19956,"modificationDate":"2012-08-03"}, -{"geonameId":"466989","name":"Yessentukskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19956,"modificationDate":"2019-09-02"}, -{"geonameId":"2982967","name":"Romorantin-Lanthenay","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19953,"modificationDate":"2016-02-18"}, -{"geonameId":"4596208","name":"Socastee","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19952,"modificationDate":"2011-05-14"}, -{"geonameId":"1831125","name":"Kampong Thom","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":19951,"modificationDate":"2013-04-04"}, -{"geonameId":"2650802","name":"Dumbarton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19950,"modificationDate":"2019-09-05"}, -{"geonameId":"1053507","name":"Vondrozo","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19949,"modificationDate":"2018-09-10"}, -{"geonameId":"2996146","name":"Mantes-la-Ville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19947,"modificationDate":"2016-02-18"}, -{"geonameId":"5015688","name":"Ypsilanti","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19945,"modificationDate":"2017-05-23"}, -{"geonameId":"3461565","name":"Ibirataia","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19942,"modificationDate":"2012-08-03"}, -{"geonameId":"1274560","name":"Charthāwal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19942,"modificationDate":"2015-04-08"}, -{"geonameId":"5128904","name":"North Bellmore","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19941,"modificationDate":"2017-05-23"}, -{"geonameId":"1255995","name":"Siswā Bāzār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19939,"modificationDate":"2014-10-14"}, -{"geonameId":"3176438","name":"Gaeta","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19936,"modificationDate":"2014-01-16"}, -{"geonameId":"5196220","name":"King of Prussia","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19936,"modificationDate":"2017-08-19"}, -{"geonameId":"5730675","name":"Hayesville","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19936,"modificationDate":"2011-05-14"}, -{"geonameId":"2745580","name":"Vianen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":19931,"modificationDate":"2019-01-20"}, -{"geonameId":"4413595","name":"Warrensburg","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19927,"modificationDate":"2017-12-25"}, -{"geonameId":"2987825","name":"Pertuis","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19926,"modificationDate":"2019-06-05"}, -{"geonameId":"2811278","name":"Wenden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19924,"modificationDate":"2011-07-31"}, -{"geonameId":"4902475","name":"Mokena","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19923,"modificationDate":"2017-05-23"}, -{"geonameId":"2783188","name":"Zonhoven","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":19922,"modificationDate":"2011-02-23"}, -{"geonameId":"1485997","name":"Yeniseysk","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":19920,"modificationDate":"2012-09-05"}, -{"geonameId":"1217362","name":"Juma Shahri","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":19920,"modificationDate":"2020-02-07"}, -{"geonameId":"2991719","name":"Morsang-sur-Orge","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19917,"modificationDate":"2016-02-18"}, -{"geonameId":"4519995","name":"Norwood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19915,"modificationDate":"2017-05-23"}, -{"geonameId":"2070571","name":"Gosnells","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":19914,"modificationDate":"2019-07-18"}, -{"geonameId":"3458481","name":"Livramento do Brumado","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19914,"modificationDate":"2015-06-19"}, -{"geonameId":"2639958","name":"Poulton-le-Fylde","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19914,"modificationDate":"2018-04-23"}, -{"geonameId":"2960964","name":"Loch Garman","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19913,"modificationDate":"2013-08-14"}, -{"geonameId":"3442098","name":"La Paz","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":19913,"modificationDate":"2018-02-22"}, -{"geonameId":"478317","name":"Usman’","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19910,"modificationDate":"2012-01-17"}, -{"geonameId":"1832501","name":"Yeonggwang","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":19909,"modificationDate":"2018-08-08"}, -{"geonameId":"3852468","name":"Laboulaye","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":19908,"modificationDate":"2016-01-30"}, -{"geonameId":"1179902","name":"Dhoro Naro","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":19907,"modificationDate":"2019-12-06"}, -{"geonameId":"466215","name":"Yurev Polski","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19906,"modificationDate":"2020-06-10"}, -{"geonameId":"5126013","name":"Mariners Harbor","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19905,"modificationDate":"2017-04-16"}, -{"geonameId":"2654532","name":"Brough","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19904,"modificationDate":"2017-06-12"}, -{"geonameId":"2644684","name":"Leek","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19903,"modificationDate":"2018-07-03"}, -{"geonameId":"1256959","name":"Sāvda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19903,"modificationDate":"2016-01-07"}, -{"geonameId":"2111008","name":"Shisui","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":19903,"modificationDate":"2017-04-09"}, -{"geonameId":"5787776","name":"Bonney Lake","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19903,"modificationDate":"2017-03-09"}, -{"geonameId":"2501680","name":"Chebli","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":19901,"modificationDate":"2019-10-01"}, -{"geonameId":"9972516","name":"Cranbourne North","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":19900,"modificationDate":"2019-07-18"}, -{"geonameId":"3452440","name":"Prata","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19896,"modificationDate":"2012-08-03"}, -{"geonameId":"4686163","name":"Dickinson","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19895,"modificationDate":"2017-03-09"}, -{"geonameId":"2898603","name":"Hörstel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19894,"modificationDate":"2015-09-04"}, -{"geonameId":"2969562","name":"Vesoul","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19892,"modificationDate":"2018-02-06"}, -{"geonameId":"2032081","name":"Saynshand","countryName":"Mongolia","timeZoneName":"Asia/Ulaanbaatar","timeZoneOffsetNameWithoutDst":"Ulaanbaatar Time","population":19891,"modificationDate":"2018-06-07"}, -{"geonameId":"5417258","name":"Clifton","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":19889,"modificationDate":"2019-09-19"}, -{"geonameId":"2814305","name":"Wandlitz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19888,"modificationDate":"2011-04-25"}, -{"geonameId":"3460530","name":"Ituberá","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19887,"modificationDate":"2017-04-24"}, -{"geonameId":"735030","name":"Náousa","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19887,"modificationDate":"2012-03-04"}, -{"geonameId":"2268575","name":"Entroncamento","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":19887,"modificationDate":"2014-04-06"}, -{"geonameId":"3397315","name":"João Câmara","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19885,"modificationDate":"2012-08-03"}, -{"geonameId":"2482159","name":"Seddouk","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":19884,"modificationDate":"2019-08-03"}, -{"geonameId":"1607730","name":"Phibun Mangsahan","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":19883,"modificationDate":"2012-01-16"}, -{"geonameId":"2660971","name":"Dübendorf","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":19882,"modificationDate":"2013-04-02"}, -{"geonameId":"2341275","name":"Gembu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19881,"modificationDate":"2014-12-30"}, -{"geonameId":"4161705","name":"Lealman","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19879,"modificationDate":"2011-05-14"}, -{"geonameId":"69426","name":"Zmjibar","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":19879,"modificationDate":"2020-06-10"}, -{"geonameId":"160266","name":"Dareda","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19876,"modificationDate":"2016-07-26"}, -{"geonameId":"2468018","name":"Kebili","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":19875,"modificationDate":"2018-08-05"}, -{"geonameId":"2979341","name":"Saint-Jean-de-Braye","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19874,"modificationDate":"2016-02-18"}, -{"geonameId":"2645831","name":"Kempston","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19873,"modificationDate":"2011-07-31"}, -{"geonameId":"1258455","name":"Rānikhet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19873,"modificationDate":"2015-10-04"}, -{"geonameId":"2640377","name":"Penzance","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19872,"modificationDate":"2017-06-12"}, -{"geonameId":"3000047","name":"Les Pennes-Mirabeau","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19871,"modificationDate":"2019-06-05"}, -{"geonameId":"2828050","name":"Steinhagen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19869,"modificationDate":"2011-07-31"}, -{"geonameId":"685811","name":"Băicoi","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19869,"modificationDate":"2012-06-12"}, -{"geonameId":"2110994","name":"Shizukuishi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":19866,"modificationDate":"2017-04-09"}, -{"geonameId":"788470","name":"Llazicë","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":19863,"modificationDate":"2015-02-15"}, -{"geonameId":"2395568","name":"Parahue","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19862,"modificationDate":"2020-06-10"}, -{"geonameId":"3445299","name":"Veranópolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19861,"modificationDate":"2012-08-03"}, -{"geonameId":"2521992","name":"Alhama de Murcia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":19860,"modificationDate":"2012-03-04"}, -{"geonameId":"2651241","name":"Dinnington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19860,"modificationDate":"2017-06-12"}, -{"geonameId":"5356521","name":"Hermosa Beach","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19860,"modificationDate":"2017-03-09"}, -{"geonameId":"8349321","name":"St Clair","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":19856,"modificationDate":"2019-07-18"}, -{"geonameId":"1265555","name":"Kuppam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19854,"modificationDate":"2016-11-22"}, -{"geonameId":"2930182","name":"Enger","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19852,"modificationDate":"2015-09-05"}, -{"geonameId":"525396","name":"Monino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19852,"modificationDate":"2012-01-17"}, -{"geonameId":"1255551","name":"Suket","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19851,"modificationDate":"2015-05-06"}, -{"geonameId":"5137600","name":"Selden","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19851,"modificationDate":"2017-05-23"}, -{"geonameId":"2510485","name":"Tías","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":19849,"modificationDate":"2012-03-04"}, -{"geonameId":"4461015","name":"Clemmons","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19844,"modificationDate":"2017-05-23"}, -{"geonameId":"1257410","name":"Sangod","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19842,"modificationDate":"2014-10-14"}, -{"geonameId":"1839011","name":"Beolgyo","countryName":"South Korea","timeZoneName":"Asia/Seoul","timeZoneOffsetNameWithoutDst":"Korean Time","population":19842,"modificationDate":"2018-03-07"}, -{"geonameId":"4562144","name":"West Chester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19842,"modificationDate":"2017-05-23"}, -{"geonameId":"4891431","name":"Evergreen Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19841,"modificationDate":"2017-05-23"}, -{"geonameId":"2953320","name":"Bad Waldsee","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19840,"modificationDate":"2013-02-15"}, -{"geonameId":"1696814","name":"Pacol","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":19839,"modificationDate":"2013-10-30"}, -{"geonameId":"4843362","name":"Southbury","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19836,"modificationDate":"2017-05-23"}, -{"geonameId":"3567995","name":"Bahía Honda","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":19834,"modificationDate":"2015-12-06"}, -{"geonameId":"2736657","name":"Paredes","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":19834,"modificationDate":"2018-05-17"}, -{"geonameId":"2391455","name":"Tangueita","countryName":"Benin","timeZoneName":"Africa/Porto-Novo","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19833,"modificationDate":"2020-06-10"}, -{"geonameId":"1265709","name":"Kulu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19831,"modificationDate":"2016-07-05"}, -{"geonameId":"2649622","name":"Faversham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19829,"modificationDate":"2018-07-03"}, -{"geonameId":"745076","name":"Neoclaudiopolis","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":19829,"modificationDate":"2020-06-10"}, -{"geonameId":"2170079","name":"Cranbourne","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":19825,"modificationDate":"2019-07-18"}, -{"geonameId":"3529886","name":"Cunduacán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":19824,"modificationDate":"2018-11-03"}, -{"geonameId":"3579585","name":"Capesterre-Belle-Eau","countryName":"Guadeloupe","timeZoneName":"America/Guadeloupe","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":19821,"modificationDate":"2017-05-08"}, -{"geonameId":"3521596","name":"Peto","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":19821,"modificationDate":"2018-11-03"}, -{"geonameId":"376332","name":"Doka","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":19821,"modificationDate":"2012-01-19"}, -{"geonameId":"11523825","name":"Adelaide city centre","countryName":"Australia","timeZoneName":"Australia/Adelaide","timeZoneOffsetNameWithoutDst":"Australian Central Time","population":19820,"modificationDate":"2019-07-20"}, -{"geonameId":"3861061","name":"Cinco Saltos","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":19819,"modificationDate":"2015-12-09"}, -{"geonameId":"5178940","name":"Baldwin","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19819,"modificationDate":"2017-05-23"}, -{"geonameId":"538442","name":"Kusa","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":19818,"modificationDate":"2012-01-17"}, -{"geonameId":"151373","name":"Nshamba","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19815,"modificationDate":"2016-07-26"}, -{"geonameId":"3402465","name":"Catolé do Rocha","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19812,"modificationDate":"2012-08-03"}, -{"geonameId":"3855116","name":"General Mosconi","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":19811,"modificationDate":"2020-04-05"}, -{"geonameId":"3558792","name":"Florencia","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":19811,"modificationDate":"2016-01-07"}, -{"geonameId":"2504616","name":"Beni Mester","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":19808,"modificationDate":"2012-01-19"}, -{"geonameId":"4943097","name":"Marblehead","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19808,"modificationDate":"2017-05-23"}, -{"geonameId":"4945911","name":"Norton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19808,"modificationDate":"2017-05-23"}, -{"geonameId":"2042267","name":"Onsŏng","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":19806,"modificationDate":"2012-01-19"}, -{"geonameId":"153094","name":"Mpwapwa","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19806,"modificationDate":"2016-07-26"}, -{"geonameId":"5131692","name":"Plattsburgh","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19806,"modificationDate":"2017-05-23"}, -{"geonameId":"1150681","name":"Sawankhalok","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":19805,"modificationDate":"2012-01-16"}, -{"geonameId":"158324","name":"Kiratu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19803,"modificationDate":"2018-04-23"}, -{"geonameId":"2446267","name":"Dakoro","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19798,"modificationDate":"2013-10-06"}, -{"geonameId":"3833027","name":"Vera","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":19797,"modificationDate":"2016-01-30"}, -{"geonameId":"5779068","name":"North Salt Lake","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":19796,"modificationDate":"2017-03-09"}, -{"geonameId":"745697","name":"Hayrabolu","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":19793,"modificationDate":"2013-08-06"}, -{"geonameId":"2160258","name":"Lidcombe","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":19791,"modificationDate":"2019-07-18"}, -{"geonameId":"3024532","name":"Cluses","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19789,"modificationDate":"2016-02-18"}, -{"geonameId":"2206371","name":"Levin","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":19789,"modificationDate":"2011-08-01"}, -{"geonameId":"1273206","name":"Deorania","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19788,"modificationDate":"2020-06-10"}, -{"geonameId":"3462022","name":"Guaçuí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19786,"modificationDate":"2012-08-03"}, -{"geonameId":"2512620","name":"Picassent","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":19786,"modificationDate":"2015-05-31"}, -{"geonameId":"3168930","name":"Rosignano Solvay-Castiglioncello","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19786,"modificationDate":"2017-02-01"}, -{"geonameId":"284431","name":"Banī Na‘īm","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19783,"modificationDate":"2012-01-18"}, -{"geonameId":"284899","name":"Jericho","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19783,"modificationDate":"2019-09-05"}, -{"geonameId":"4550659","name":"Sand Springs","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19783,"modificationDate":"2017-03-09"}, -{"geonameId":"2503620","name":"Bordj Zemoura","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":19782,"modificationDate":"2012-01-19"}, -{"geonameId":"1607068","name":"Ranot","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":19780,"modificationDate":"2012-01-16"}, -{"geonameId":"2636071","name":"Tewkesbury","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19778,"modificationDate":"2018-07-03"}, -{"geonameId":"677458","name":"Gheorgheni","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19777,"modificationDate":"2014-01-19"}, -{"geonameId":"3101680","name":"Chodzież","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":19776,"modificationDate":"2019-09-05"}, -{"geonameId":"5166009","name":"Painesville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19776,"modificationDate":"2017-07-08"}, -{"geonameId":"2803030","name":"Assebroek","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":19772,"modificationDate":"2020-05-25"}, -{"geonameId":"2659667","name":"Meyrin","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":19772,"modificationDate":"2019-09-10"}, -{"geonameId":"3030985","name":"Bourg","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19770,"modificationDate":"2020-06-10"}, -{"geonameId":"737421","name":"Yomra","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":19770,"modificationDate":"2015-02-07"}, -{"geonameId":"2514158","name":"Marchena","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":19768,"modificationDate":"2012-03-04"}, -{"geonameId":"2964303","name":"Finglas","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19768,"modificationDate":"2019-01-09"}, -{"geonameId":"681845","name":"Câmpulung Moldovenesc","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19765,"modificationDate":"2014-01-19"}, -{"geonameId":"1267435","name":"Kattanam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19764,"modificationDate":"2017-04-06"}, -{"geonameId":"2931361","name":"Eitorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19761,"modificationDate":"2011-07-31"}, -{"geonameId":"2112182","name":"Kogota","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":19760,"modificationDate":"2017-04-09"}, -{"geonameId":"3172184","name":"Novate Milanese","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19758,"modificationDate":"2014-04-13"}, -{"geonameId":"3472666","name":"Alegre","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19757,"modificationDate":"2012-08-03"}, -{"geonameId":"552920","name":"Karachev","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19757,"modificationDate":"2012-01-17"}, -{"geonameId":"4938378","name":"Greenfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19753,"modificationDate":"2017-05-23"}, -{"geonameId":"1076194","name":"Andilamena","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19750,"modificationDate":"2018-09-07"}, -{"geonameId":"2403094","name":"Waterloo","countryName":"Sierra Leone","timeZoneName":"Africa/Freetown","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19750,"modificationDate":"2014-11-05"}, -{"geonameId":"2968771","name":"Villefontaine","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19749,"modificationDate":"2019-06-05"}, -{"geonameId":"2893544","name":"Kaltenkirchen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19747,"modificationDate":"2015-09-04"}, -{"geonameId":"4521209","name":"Pickerington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19745,"modificationDate":"2017-05-23"}, -{"geonameId":"4016086","name":"Calvillo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":19742,"modificationDate":"2018-11-03"}, -{"geonameId":"303354","name":"Ortaca","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":19741,"modificationDate":"2015-05-06"}, -{"geonameId":"423328","name":"Bururi","countryName":"Burundi","timeZoneName":"Africa/Bujumbura","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":19740,"modificationDate":"2010-08-03"}, -{"geonameId":"2737523","name":"Monção","countryName":"Portugal","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":19738,"modificationDate":"2011-08-28"}, -{"geonameId":"704608","name":"Kivsharivka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19738,"modificationDate":"2014-01-12"}, -{"geonameId":"4839319","name":"New Canaan","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19738,"modificationDate":"2017-05-23"}, -{"geonameId":"2913555","name":"Günzburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19737,"modificationDate":"2019-09-05"}, -{"geonameId":"2979627","name":"Saint-Gratien","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19737,"modificationDate":"2016-02-18"}, -{"geonameId":"556283","name":"Inza","countryName":"Russia","timeZoneName":"Europe/Ulyanovsk","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":19737,"modificationDate":"2019-09-05"}, -{"geonameId":"5322850","name":"Albany","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19735,"modificationDate":"2017-03-09"}, -{"geonameId":"1263564","name":"Marakkanam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19734,"modificationDate":"2014-10-14"}, -{"geonameId":"4223413","name":"Snellville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19733,"modificationDate":"2017-03-09"}, -{"geonameId":"3682238","name":"Galapa","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":19732,"modificationDate":"2018-07-04"}, -{"geonameId":"1734651","name":"Gua Musang","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":19731,"modificationDate":"2017-09-09"}, -{"geonameId":"3000060","name":"Les Pavillons-sous-Bois","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19730,"modificationDate":"2019-03-26"}, -{"geonameId":"3690431","name":"Aguadas","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":19727,"modificationDate":"2018-07-04"}, -{"geonameId":"1695283","name":"Pangil","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":19726,"modificationDate":"2017-12-13"}, -{"geonameId":"2953347","name":"Bad Schwartau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19722,"modificationDate":"2015-09-04"}, -{"geonameId":"3532969","name":"Altotonga","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":19722,"modificationDate":"2018-11-03"}, -{"geonameId":"5104882","name":"Sparta","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19722,"modificationDate":"2018-11-08"}, -{"geonameId":"1255383","name":"Sūrajgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19721,"modificationDate":"2014-10-14"}, -{"geonameId":"2523581","name":"Rosolini","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19721,"modificationDate":"2015-07-12"}, -{"geonameId":"98885","name":"Ana","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":19719,"modificationDate":"2020-06-10"}, -{"geonameId":"1512480","name":"Dashtobod","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":19718,"modificationDate":"2012-01-17"}, -{"geonameId":"3018074","name":"Fontainebleau","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19717,"modificationDate":"2019-04-10"}, -{"geonameId":"5021828","name":"Columbia Heights","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19715,"modificationDate":"2017-05-23"}, -{"geonameId":"5121163","name":"Holtsville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19714,"modificationDate":"2017-05-23"}, -{"geonameId":"2017945","name":"Petrovsk-Zabaikalski","countryName":"Russia","timeZoneName":"Asia/Chita","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":19713,"modificationDate":"2020-06-10"}, -{"geonameId":"1856426","name":"Muramatsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":19712,"modificationDate":"2017-04-09"}, -{"geonameId":"1258843","name":"Rājmahal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19711,"modificationDate":"2012-09-06"}, -{"geonameId":"1268961","name":"Jhinjhāna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19711,"modificationDate":"2015-04-08"}, -{"geonameId":"99306","name":"Ali Gharbi","countryName":"Iraq","timeZoneName":"Asia/Baghdad","timeZoneOffsetNameWithoutDst":"Arabian Time","population":19711,"modificationDate":"2020-06-10"}, -{"geonameId":"158904","name":"Itigi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19711,"modificationDate":"2016-07-26"}, -{"geonameId":"730559","name":"Karnobat","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19709,"modificationDate":"2018-03-22"}, -{"geonameId":"3460648","name":"Itapuranga","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19709,"modificationDate":"2012-08-03"}, -{"geonameId":"1117823","name":"Sam Roi Yot","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":19709,"modificationDate":"2012-01-16"}, -{"geonameId":"2111943","name":"Miharu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":19708,"modificationDate":"2017-04-09"}, -{"geonameId":"1273104","name":"Bariya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19703,"modificationDate":"2020-06-10"}, -{"geonameId":"8858107","name":"La Ermita","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":19703,"modificationDate":"2014-04-11"}, -{"geonameId":"2245704","name":"Sedhiu","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19702,"modificationDate":"2020-06-10"}, -{"geonameId":"3013549","name":"Hem","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19699,"modificationDate":"2016-02-18"}, -{"geonameId":"1174211","name":"Khangarh","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":19698,"modificationDate":"2019-12-06"}, -{"geonameId":"3443413","name":"Canelones","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":19698,"modificationDate":"2018-02-22"}, -{"geonameId":"2792235","name":"Lochristi","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":19696,"modificationDate":"2012-01-18"}, -{"geonameId":"1166066","name":"Sarai Naurang","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":19694,"modificationDate":"2019-12-06"}, -{"geonameId":"159267","name":"Ikungi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19692,"modificationDate":"2016-07-26"}, -{"geonameId":"1279158","name":"Ajnāla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19691,"modificationDate":"2015-09-06"}, -{"geonameId":"2990264","name":"Nogent-sur-Oise","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19690,"modificationDate":"2016-02-18"}, -{"geonameId":"462822","name":"Zhukovka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19690,"modificationDate":"2020-03-07"}, -{"geonameId":"1253127","name":"Vadakku Viravanallur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19689,"modificationDate":"2017-08-02"}, -{"geonameId":"5809333","name":"Salmon Creek","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19686,"modificationDate":"2011-05-14"}, -{"geonameId":"4038659","name":"Tamuning-Tumon-Harmon Village","countryName":"Guam","timeZoneName":"Pacific/Guam","timeZoneOffsetNameWithoutDst":"Chamorro Time","population":19685,"modificationDate":"2013-07-07"}, -{"geonameId":"7874631","name":"Tamuning","countryName":"Guam","timeZoneName":"Pacific/Guam","timeZoneOffsetNameWithoutDst":"Chamorro Time","population":19685,"modificationDate":"2017-12-13"}, -{"geonameId":"1279115","name":"Aklera","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19683,"modificationDate":"2015-06-07"}, -{"geonameId":"3570429","name":"Le François","countryName":"Martinique","timeZoneName":"America/Martinique","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":19682,"modificationDate":"2017-07-04"}, -{"geonameId":"3392345","name":"Pentecoste","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19680,"modificationDate":"2012-08-03"}, -{"geonameId":"2746215","name":"Tongelre","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":19680,"modificationDate":"2012-01-17"}, -{"geonameId":"1255788","name":"Sonāri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19672,"modificationDate":"2018-11-17"}, -{"geonameId":"1685622","name":"Suay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":19672,"modificationDate":"2017-12-13"}, -{"geonameId":"3461368","name":"Imbituva","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19671,"modificationDate":"2012-08-03"}, -{"geonameId":"1267923","name":"Kāpren","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19671,"modificationDate":"2014-10-14"}, -{"geonameId":"3598025","name":"Comitancillo","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":19669,"modificationDate":"2017-02-04"}, -{"geonameId":"2328151","name":"Obudu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19668,"modificationDate":"2016-01-30"}, -{"geonameId":"802078","name":"Alagir","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19665,"modificationDate":"2019-09-05"}, -{"geonameId":"2175974","name":"Bexley","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":19664,"modificationDate":"2019-07-18"}, -{"geonameId":"3590316","name":"San Cristóbal Verapaz","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":19664,"modificationDate":"2014-07-24"}, -{"geonameId":"3186781","name":"Zaprešić","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":19664,"modificationDate":"2018-07-31"}, -{"geonameId":"2657255","name":"Antrim","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19661,"modificationDate":"2016-12-04"}, -{"geonameId":"3103365","name":"Bieruń","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":19659,"modificationDate":"2014-09-14"}, -{"geonameId":"2026696","name":"Bikin","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":19659,"modificationDate":"2019-09-05"}, -{"geonameId":"2794981","name":"Jambes","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":19658,"modificationDate":"2020-04-05"}, -{"geonameId":"7261553","name":"La Crescenta-Montrose","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19653,"modificationDate":"2011-05-14"}, -{"geonameId":"2751834","name":"Leek","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":19651,"modificationDate":"2019-01-20"}, -{"geonameId":"4409591","name":"Spanish Lake","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19650,"modificationDate":"2017-05-23"}, -{"geonameId":"3532414","name":"Banderilla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":19649,"modificationDate":"2018-11-03"}, -{"geonameId":"3049519","name":"Ujszony","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":19646,"modificationDate":"2020-06-10"}, -{"geonameId":"3556334","name":"Jatibonico","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":19644,"modificationDate":"2016-01-07"}, -{"geonameId":"422232","name":"Makamba","countryName":"Burundi","timeZoneName":"Africa/Bujumbura","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":19642,"modificationDate":"2012-01-19"}, -{"geonameId":"1514330","name":"Buka","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":19642,"modificationDate":"2020-06-10"}, -{"geonameId":"3035396","name":"Bagnols","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19640,"modificationDate":"2020-06-10"}, -{"geonameId":"5052916","name":"Willmar","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19638,"modificationDate":"2017-05-23"}, -{"geonameId":"3681797","name":"Concordia","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":19637,"modificationDate":"2020-06-11"}, -{"geonameId":"3394817","name":"Miracema do Tocantins","countryName":"Brazil","timeZoneName":"America/Araguaina","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19634,"modificationDate":"2019-07-21"}, -{"geonameId":"2645261","name":"Kirkintilloch","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19630,"modificationDate":"2017-06-15"}, -{"geonameId":"1260793","name":"Pālakkodu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19630,"modificationDate":"2014-10-14"}, -{"geonameId":"4790534","name":"Tysons Corner","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19627,"modificationDate":"2011-05-14"}, -{"geonameId":"543728","name":"Kotelnikowskij","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":19622,"modificationDate":"2020-06-10"}, -{"geonameId":"5027117","name":"Forest Lake","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19618,"modificationDate":"2017-05-23"}, -{"geonameId":"2340446","name":"Gombi","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19616,"modificationDate":"2016-01-30"}, -{"geonameId":"1729814","name":"Baao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":19612,"modificationDate":"2017-12-13"}, -{"geonameId":"3452216","name":"Prudentópolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19611,"modificationDate":"2012-08-03"}, -{"geonameId":"2561124","name":"Ahfir","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":19611,"modificationDate":"2016-11-02"}, -{"geonameId":"3530908","name":"Chignahuapan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":19608,"modificationDate":"2018-11-03"}, -{"geonameId":"3061822","name":"Žatec","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":19607,"modificationDate":"2019-03-20"}, -{"geonameId":"1064978","name":"Fenoarivo Be","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19605,"modificationDate":"2018-09-10"}, -{"geonameId":"1508943","name":"Borodino","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":19602,"modificationDate":"2019-09-05"}, -{"geonameId":"3518593","name":"San Juan Zitlaltepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":19600,"modificationDate":"2018-11-03"}, -{"geonameId":"508034","name":"Podporoshje","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19600,"modificationDate":"2020-06-10"}, -{"geonameId":"685785","name":"Băileşti","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19599,"modificationDate":"2012-06-12"}, -{"geonameId":"1672551","name":"Lugu","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":19599,"modificationDate":"2018-03-09"}, -{"geonameId":"3686540","name":"Chinú","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":19596,"modificationDate":"2018-07-04"}, -{"geonameId":"301350","name":"Seferihisar","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":19596,"modificationDate":"2016-03-09"}, -{"geonameId":"371870","name":"Kuraymah","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":19593,"modificationDate":"2012-01-19"}, -{"geonameId":"1274673","name":"Chāndor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19592,"modificationDate":"2015-09-06"}, -{"geonameId":"2751651","name":"Lichtenvoorde","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":19590,"modificationDate":"2017-10-17"}, -{"geonameId":"4530372","name":"Bethany","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19589,"modificationDate":"2017-03-09"}, -{"geonameId":"8184212","name":"Rahat","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":19586,"modificationDate":"2019-05-04"}, -{"geonameId":"3401830","name":"Condado","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19585,"modificationDate":"2012-08-03"}, -{"geonameId":"3074893","name":"Hranice","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":19582,"modificationDate":"2019-03-20"}, -{"geonameId":"1260082","name":"Patnāgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19582,"modificationDate":"2014-10-14"}, -{"geonameId":"5978765","name":"Huntsville","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19579,"modificationDate":"2009-05-19"}, -{"geonameId":"5399901","name":"Sun City","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19579,"modificationDate":"2018-04-18"}, -{"geonameId":"6693007","name":"Earl Shilton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19578,"modificationDate":"2018-07-03"}, -{"geonameId":"3865424","name":"Arroyito","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":19577,"modificationDate":"2016-01-30"}, -{"geonameId":"2111827","name":"Motegi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":19575,"modificationDate":"2017-04-09"}, -{"geonameId":"3461606","name":"Ibicaraí","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19574,"modificationDate":"2012-08-03"}, -{"geonameId":"3385109","name":"Viçosa","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19573,"modificationDate":"2012-08-03"}, -{"geonameId":"3434291","name":"El Soberbio","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":19571,"modificationDate":"2016-01-30"}, -{"geonameId":"1689973","name":"San Francisco","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":19570,"modificationDate":"2017-12-13"}, -{"geonameId":"4773677","name":"Montclair","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19570,"modificationDate":"2011-05-14"}, -{"geonameId":"3388145","name":"São Raimundo Nonato","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19569,"modificationDate":"2012-08-03"}, -{"geonameId":"2833242","name":"Seligenstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19569,"modificationDate":"2019-09-05"}, -{"geonameId":"2513791","name":"Moguer","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":19569,"modificationDate":"2012-03-04"}, -{"geonameId":"3176407","name":"Galatina","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19569,"modificationDate":"2014-04-13"}, -{"geonameId":"322391","name":"Bahçe","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":19566,"modificationDate":"2010-08-03"}, -{"geonameId":"3091150","name":"Nakło nad Notecią","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":19565,"modificationDate":"2020-04-25"}, -{"geonameId":"514259","name":"Ostashkov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19563,"modificationDate":"2019-09-05"}, -{"geonameId":"1221997","name":"Chubek","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":19563,"modificationDate":"2012-11-08"}, -{"geonameId":"933271","name":"Mosopa","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":19561,"modificationDate":"2012-01-18"}, -{"geonameId":"5125523","name":"Lynbrook","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19558,"modificationDate":"2017-05-23"}, -{"geonameId":"469005","name":"Yaransk","countryName":"Russia","timeZoneName":"Europe/Kirov","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":19557,"modificationDate":"2012-01-17"}, -{"geonameId":"1264989","name":"Lāwar Khās","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19556,"modificationDate":"2014-10-14"}, -{"geonameId":"5805815","name":"Orchards","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19556,"modificationDate":"2011-05-14"}, -{"geonameId":"877581","name":"Nanyamba","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19555,"modificationDate":"2016-07-26"}, -{"geonameId":"5116118","name":"Eastchester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19554,"modificationDate":"2017-10-21"}, -{"geonameId":"2953525","name":"Bad Driburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19553,"modificationDate":"2015-09-05"}, -{"geonameId":"1255625","name":"Srīrāmnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19550,"modificationDate":"2014-10-10"}, -{"geonameId":"5779548","name":"Payson","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":19548,"modificationDate":"2017-03-09"}, -{"geonameId":"3116478","name":"Monforte de Lemos","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":19546,"modificationDate":"2015-06-07"}, -{"geonameId":"3859384","name":"Diamante","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":19545,"modificationDate":"2016-01-30"}, -{"geonameId":"3450288","name":"Santa Cruz Cabrália","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19545,"modificationDate":"2012-03-10"}, -{"geonameId":"2635762","name":"Tiverton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19544,"modificationDate":"2018-07-03"}, -{"geonameId":"522945","name":"Neftegorsk","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":19542,"modificationDate":"2012-01-17"}, -{"geonameId":"2511371","name":"San Isidro","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":19541,"modificationDate":"2013-08-07"}, -{"geonameId":"1272832","name":"Dharamsala","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19540,"modificationDate":"2016-12-09"}, -{"geonameId":"705883","name":"Kiliya","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19540,"modificationDate":"2020-02-25"}, -{"geonameId":"5052467","name":"West Saint Paul","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19540,"modificationDate":"2017-05-23"}, -{"geonameId":"2169220","name":"Deception Bay","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":19539,"modificationDate":"2019-07-18"}, -{"geonameId":"3468121","name":"Cajuru","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19539,"modificationDate":"2012-08-03"}, -{"geonameId":"4299670","name":"Madisonville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19539,"modificationDate":"2017-03-09"}, -{"geonameId":"3388615","name":"São João dos Patos","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19538,"modificationDate":"2012-08-03"}, -{"geonameId":"2788726","name":"Poperinge","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":19537,"modificationDate":"2012-01-18"}, -{"geonameId":"2965529","name":"Celbridge","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19537,"modificationDate":"2019-01-09"}, -{"geonameId":"3199394","name":"Herceg Novi","countryName":"Montenegro","timeZoneName":"Europe/Podgorica","timeZoneOffsetNameWithoutDst":"Central European Time","population":19536,"modificationDate":"2020-02-07"}, -{"geonameId":"1863973","name":"Fukumitsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":19535,"modificationDate":"2017-04-09"}, -{"geonameId":"2815137","name":"Waldbröl","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19533,"modificationDate":"2015-09-04"}, -{"geonameId":"329114","name":"Sebeta","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19533,"modificationDate":"2012-01-19"}, -{"geonameId":"767605","name":"Krasnystaw","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":19532,"modificationDate":"2019-09-05"}, -{"geonameId":"2823567","name":"Teltow","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19530,"modificationDate":"2015-09-05"}, -{"geonameId":"158024","name":"Kibakwe","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19526,"modificationDate":"2016-07-26"}, -{"geonameId":"4159896","name":"Ives Estates","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19525,"modificationDate":"2011-05-14"}, -{"geonameId":"1178587","name":"Gharo","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":19524,"modificationDate":"2019-12-06"}, -{"geonameId":"696943","name":"Pidhorodne","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19524,"modificationDate":"2020-05-23"}, -{"geonameId":"1283628","name":"Bhadrapur","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":19523,"modificationDate":"2019-10-19"}, -{"geonameId":"2501873","name":"Chabet el Ameur","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":19522,"modificationDate":"2012-01-19"}, -{"geonameId":"1875506","name":"Kujang-ŭp","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":19522,"modificationDate":"2012-01-19"}, -{"geonameId":"4089114","name":"Selma","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19519,"modificationDate":"2017-03-09"}, -{"geonameId":"3170272","name":"Pontedera","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19518,"modificationDate":"2014-04-13"}, -{"geonameId":"543508","name":"Kovdor","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19518,"modificationDate":"2019-09-05"}, -{"geonameId":"787716","name":"Negotino","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":19515,"modificationDate":"2014-04-30"}, -{"geonameId":"1485627","name":"Yuzhnyy","countryName":"Russia","timeZoneName":"Asia/Barnaul","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":19515,"modificationDate":"2012-01-17"}, -{"geonameId":"1259647","name":"Pināhat","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19511,"modificationDate":"2015-08-07"}, -{"geonameId":"1734841","name":"Kuala Pilah","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":19510,"modificationDate":"2012-01-17"}, -{"geonameId":"5074792","name":"Papillion","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19510,"modificationDate":"2017-03-09"}, -{"geonameId":"559654","name":"Gorodishche","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":19509,"modificationDate":"2012-01-17"}, -{"geonameId":"708878","name":"Henichesk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19501,"modificationDate":"2020-05-20"}, -{"geonameId":"6967865","name":"Al Qarara","countryName":"Palestinian Territory","timeZoneName":"Asia/Gaza","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19500,"modificationDate":"2020-06-12"}, -{"geonameId":"543348","name":"Kozel’sk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19500,"modificationDate":"2012-01-17"}, -{"geonameId":"2744324","name":"Wisch","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":19496,"modificationDate":"2011-06-04"}, -{"geonameId":"2749756","name":"Nunspeet","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":19496,"modificationDate":"2017-10-17"}, -{"geonameId":"3468704","name":"Butiá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19494,"modificationDate":"2012-08-03"}, -{"geonameId":"504831","name":"Proletarsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19493,"modificationDate":"2019-09-05"}, -{"geonameId":"2861914","name":"Nördlingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19492,"modificationDate":"2013-02-19"}, -{"geonameId":"3202220","name":"Đakovo","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":19491,"modificationDate":"2016-12-24"}, -{"geonameId":"3193161","name":"Pljevlja","countryName":"Montenegro","timeZoneName":"Europe/Podgorica","timeZoneOffsetNameWithoutDst":"Central European Time","population":19489,"modificationDate":"2019-02-26"}, -{"geonameId":"4902559","name":"Montgomery","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19489,"modificationDate":"2017-05-23"}, -{"geonameId":"2786641","name":"Sint-Katelijne-Waver","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":19487,"modificationDate":"2011-02-10"}, -{"geonameId":"3449056","name":"São Gonçalo do Sapucaí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19487,"modificationDate":"2012-08-03"}, -{"geonameId":"689304","name":"Woltschansk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19486,"modificationDate":"2020-06-10"}, -{"geonameId":"3110516","name":"Vilassar de Mar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":19482,"modificationDate":"2015-06-13"}, -{"geonameId":"5879898","name":"Badger","countryName":"United States","timeZoneName":"America/Anchorage","timeZoneOffsetNameWithoutDst":"Alaska Time","population":19482,"modificationDate":"2011-05-14"}, -{"geonameId":"2657658","name":"Adwick le Street","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19481,"modificationDate":"2017-06-12"}, -{"geonameId":"1619650","name":"Ban Dung","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":19479,"modificationDate":"2012-01-16"}, -{"geonameId":"4264617","name":"Seymour","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19478,"modificationDate":"2017-05-23"}, -{"geonameId":"4360201","name":"Lake Shore","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19477,"modificationDate":"2011-05-14"}, -{"geonameId":"2228675","name":"Mamfe","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19472,"modificationDate":"2015-01-28"}, -{"geonameId":"2264736","name":"Piedade","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":19472,"modificationDate":"2018-01-31"}, -{"geonameId":"878073","name":"Maposeni","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19472,"modificationDate":"2018-12-04"}, -{"geonameId":"1703355","name":"Malabanban Norte","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":19471,"modificationDate":"2017-12-13"}, -{"geonameId":"3453767","name":"Pinheiral","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19469,"modificationDate":"2012-08-03"}, -{"geonameId":"1275694","name":"Bijāwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19468,"modificationDate":"2015-08-07"}, -{"geonameId":"583785","name":"Akhtyrskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19468,"modificationDate":"2012-01-17"}, -{"geonameId":"1269227","name":"Jānsath","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19467,"modificationDate":"2015-05-06"}, -{"geonameId":"1275097","name":"Būndu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19467,"modificationDate":"2017-08-02"}, -{"geonameId":"3023324","name":"Couëron","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19466,"modificationDate":"2016-02-18"}, -{"geonameId":"2634204","name":"Weybridge","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19463,"modificationDate":"2015-05-05"}, -{"geonameId":"1870413","name":"Sil-li","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":19463,"modificationDate":"2012-01-19"}, -{"geonameId":"2637355","name":"South Ockendon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19460,"modificationDate":"2017-06-12"}, -{"geonameId":"1258164","name":"Richha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19459,"modificationDate":"2015-10-04"}, -{"geonameId":"1276013","name":"Bhayawadar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19458,"modificationDate":"2020-06-10"}, -{"geonameId":"118805","name":"Ram Shahr","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":19454,"modificationDate":"2020-06-10"}, -{"geonameId":"2619377","name":"Ishøj","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":19453,"modificationDate":"2017-10-18"}, -{"geonameId":"5200499","name":"McKeesport","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19453,"modificationDate":"2017-05-23"}, -{"geonameId":"3178087","name":"Cormano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19452,"modificationDate":"2015-08-01"}, -{"geonameId":"4168590","name":"Pinecrest","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19452,"modificationDate":"2017-03-09"}, -{"geonameId":"3170457","name":"Poggiomarino","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19451,"modificationDate":"2015-08-01"}, -{"geonameId":"5280822","name":"Weirton Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19450,"modificationDate":"2006-01-17"}, -{"geonameId":"5807212","name":"Port Angeles","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19448,"modificationDate":"2017-03-09"}, -{"geonameId":"964712","name":"Plettenberg Bay","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":19445,"modificationDate":"2018-01-01"}, -{"geonameId":"430952","name":"Kayanza","countryName":"Burundi","timeZoneName":"Africa/Bujumbura","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":19443,"modificationDate":"2012-01-19"}, -{"geonameId":"6162949","name":"Terrace","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19443,"modificationDate":"2019-02-26"}, -{"geonameId":"2646042","name":"Irlam","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19442,"modificationDate":"2011-03-03"}, -{"geonameId":"2858245","name":"Ochtrup","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19441,"modificationDate":"2015-09-04"}, -{"geonameId":"6089404","name":"North Battleford","countryName":"Canada","timeZoneName":"America/Regina","timeZoneOffsetNameWithoutDst":"Central Time","population":19440,"modificationDate":"2013-10-06"}, -{"geonameId":"1703051","name":"Malapatan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":19439,"modificationDate":"2017-12-13"}, -{"geonameId":"3020392","name":"Écully","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19437,"modificationDate":"2019-06-05"}, -{"geonameId":"2835342","name":"Schwalmtal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19435,"modificationDate":"2011-04-25"}, -{"geonameId":"5796984","name":"Hazel Dell","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19435,"modificationDate":"2011-05-14"}, -{"geonameId":"2653229","name":"Chessington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19433,"modificationDate":"2012-06-01"}, -{"geonameId":"3153823","name":"Harstad","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":19433,"modificationDate":"2019-12-12"}, -{"geonameId":"237478","name":"Mobaye","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19431,"modificationDate":"2016-06-22"}, -{"geonameId":"637067","name":"Sibbo","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19430,"modificationDate":"2014-09-25"}, -{"geonameId":"3165275","name":"Trecate","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19430,"modificationDate":"2014-04-13"}, -{"geonameId":"2942341","name":"Französisch Buchholz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19429,"modificationDate":"2012-06-09"}, -{"geonameId":"4670866","name":"Angleton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19429,"modificationDate":"2017-07-15"}, -{"geonameId":"7302860","name":"Aistala","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19425,"modificationDate":"2014-10-14"}, -{"geonameId":"3399132","name":"Gameleira","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19423,"modificationDate":"2012-08-03"}, -{"geonameId":"158684","name":"Kabanga","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19421,"modificationDate":"2018-07-04"}, -{"geonameId":"2441482","name":"Magaria","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19419,"modificationDate":"2013-10-06"}, -{"geonameId":"2510573","name":"Teguise","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":19418,"modificationDate":"2012-03-04"}, -{"geonameId":"5504003","name":"Fernley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19418,"modificationDate":"2017-03-09"}, -{"geonameId":"2497714","name":"El Malah","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":19415,"modificationDate":"2019-11-14"}, -{"geonameId":"2872649","name":"Mayen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19414,"modificationDate":"2015-09-05"}, -{"geonameId":"3464329","name":"Elói Mendes","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19413,"modificationDate":"2012-08-03"}, -{"geonameId":"8858108","name":"Lomas del Sur","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":19413,"modificationDate":"2014-04-11"}, -{"geonameId":"1271613","name":"Gannavaram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19410,"modificationDate":"2016-04-10"}, -{"geonameId":"4670234","name":"Alice","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19408,"modificationDate":"2018-04-30"}, -{"geonameId":"4899012","name":"Lake Forest","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19408,"modificationDate":"2019-06-14"}, -{"geonameId":"5786485","name":"Battle Ground","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19407,"modificationDate":"2017-03-09"}, -{"geonameId":"2740174","name":"Custoias","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":19406,"modificationDate":"2018-12-04"}, -{"geonameId":"1256333","name":"Sikka","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19404,"modificationDate":"2014-10-13"}, -{"geonameId":"1255858","name":"Sojītra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19403,"modificationDate":"2014-10-13"}, -{"geonameId":"1256124","name":"Singur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19402,"modificationDate":"2014-10-14"}, -{"geonameId":"2908495","name":"Hechingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19400,"modificationDate":"2013-02-16"}, -{"geonameId":"1258816","name":"Rajpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19396,"modificationDate":"2016-01-07"}, -{"geonameId":"1276495","name":"Belsand","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19396,"modificationDate":"2014-10-14"}, -{"geonameId":"2758765","name":"Bodegraven","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":19395,"modificationDate":"2017-10-17"}, -{"geonameId":"113632","name":"Taft","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":19394,"modificationDate":"2013-10-04"}, -{"geonameId":"2946478","name":"Bönen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19393,"modificationDate":"2015-03-04"}, -{"geonameId":"3056523","name":"Žiar nad Hronom","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":19392,"modificationDate":"2019-06-09"}, -{"geonameId":"1265773","name":"Kuju","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19390,"modificationDate":"2017-08-02"}, -{"geonameId":"5343303","name":"Dixon","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19390,"modificationDate":"2017-03-09"}, -{"geonameId":"728448","name":"Panagyurishte","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19389,"modificationDate":"2017-09-05"}, -{"geonameId":"2823590","name":"Telgte","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19389,"modificationDate":"2015-09-05"}, -{"geonameId":"2836413","name":"Schopfheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19386,"modificationDate":"2013-02-15"}, -{"geonameId":"1268344","name":"Kalmeshwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19386,"modificationDate":"2018-12-04"}, -{"geonameId":"1607865","name":"Phak Hai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":19386,"modificationDate":"2012-01-16"}, -{"geonameId":"1264455","name":"Maham","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19383,"modificationDate":"2015-08-07"}, -{"geonameId":"4195701","name":"Forest Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19383,"modificationDate":"2017-03-09"}, -{"geonameId":"2429296","name":"Laï","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19382,"modificationDate":"2017-07-16"}, -{"geonameId":"1505260","name":"Ivdel’","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":19379,"modificationDate":"2018-08-21"}, -{"geonameId":"1276026","name":"Bhawānīgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19376,"modificationDate":"2015-08-07"}, -{"geonameId":"5125738","name":"Mamaroneck","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19375,"modificationDate":"2017-05-23"}, -{"geonameId":"4896353","name":"Homewood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19373,"modificationDate":"2017-05-23"}, -{"geonameId":"1252892","name":"Wazīrganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19372,"modificationDate":"2015-10-04"}, -{"geonameId":"4141363","name":"Bear","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19371,"modificationDate":"2011-05-14"}, -{"geonameId":"1256720","name":"Shāhpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19370,"modificationDate":"2015-08-07"}, -{"geonameId":"2143887","name":"Wheelers Hill","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":19369,"modificationDate":"2019-07-18"}, -{"geonameId":"2396253","name":"Tchibanga","countryName":"Gabon","timeZoneName":"Africa/Libreville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19365,"modificationDate":"2014-09-07"}, -{"geonameId":"2688250","name":"Norrtälje","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":19365,"modificationDate":"2017-03-18"}, -{"geonameId":"3587091","name":"Chalatenango","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":19364,"modificationDate":"2019-09-05"}, -{"geonameId":"4007676","name":"Pueblo Nuevo","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":19363,"modificationDate":"2015-06-22"}, -{"geonameId":"2331528","name":"Magumeri","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19363,"modificationDate":"2016-06-22"}, -{"geonameId":"145233","name":"Ābdānān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":19360,"modificationDate":"2018-05-08"}, -{"geonameId":"2525207","name":"Casarano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19359,"modificationDate":"2015-07-23"}, -{"geonameId":"1273272","name":"Denkanikota","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19358,"modificationDate":"2014-10-14"}, -{"geonameId":"2851782","name":"Puchheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19357,"modificationDate":"2011-07-31"}, -{"geonameId":"2642786","name":"Melksham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19357,"modificationDate":"2017-06-12"}, -{"geonameId":"1217540","name":"Chiroqchi","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":19356,"modificationDate":"2012-01-17"}, -{"geonameId":"284583","name":"As Samū‘","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19355,"modificationDate":"2019-05-03"}, -{"geonameId":"4315768","name":"Bayou Cane","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19355,"modificationDate":"2011-05-14"}, -{"geonameId":"3022700","name":"Cran-Gevrier","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19354,"modificationDate":"2017-05-29"}, -{"geonameId":"3595560","name":"Gualán","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":19354,"modificationDate":"2014-07-21"}, -{"geonameId":"2514893","name":"Lora del Río","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":19352,"modificationDate":"2012-03-04"}, -{"geonameId":"2646558","name":"Horsforth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19350,"modificationDate":"2015-05-06"}, -{"geonameId":"4716805","name":"Orange","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19347,"modificationDate":"2019-09-19"}, -{"geonameId":"1877872","name":"Chunghwa","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":19346,"modificationDate":"2012-01-19"}, -{"geonameId":"2141394","name":"Dumbéa","countryName":"New Caledonia","timeZoneName":"Pacific/Noumea","timeZoneOffsetNameWithoutDst":"New Caledonia Time","population":19346,"modificationDate":"2018-10-05"}, -{"geonameId":"4883207","name":"Alsip","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19346,"modificationDate":"2017-05-23"}, -{"geonameId":"2661265","name":"Carouge","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":19344,"modificationDate":"2015-06-08"}, -{"geonameId":"4163033","name":"Lutz","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19344,"modificationDate":"2011-05-14"}, -{"geonameId":"2828994","name":"Steilshoop","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19343,"modificationDate":"2017-08-14"}, -{"geonameId":"1252744","name":"Yellāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19343,"modificationDate":"2015-12-05"}, -{"geonameId":"1264356","name":"Maholi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19343,"modificationDate":"2014-10-14"}, -{"geonameId":"518325","name":"Novopokrovskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19342,"modificationDate":"2013-05-07"}, -{"geonameId":"1856938","name":"Mitake","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":19340,"modificationDate":"2017-04-09"}, -{"geonameId":"551794","name":"Katav-Ivanovsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":19339,"modificationDate":"2019-09-05"}, -{"geonameId":"2812625","name":"Weil der Stadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19338,"modificationDate":"2019-04-10"}, -{"geonameId":"2786739","name":"Sint-Andries","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":19336,"modificationDate":"2020-05-25"}, -{"geonameId":"1538648","name":"Toktogul","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":19336,"modificationDate":"2015-05-26"}, -{"geonameId":"1275614","name":"Bilhaur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19333,"modificationDate":"2014-10-14"}, -{"geonameId":"3188225","name":"Velika Kladuša","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":19330,"modificationDate":"2016-06-05"}, -{"geonameId":"3043019","name":"Vecsés","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":19327,"modificationDate":"2014-11-05"}, -{"geonameId":"2271985","name":"Algés","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":19327,"modificationDate":"2019-01-14"}, -{"geonameId":"2111567","name":"Ōarai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":19326,"modificationDate":"2017-04-09"}, -{"geonameId":"4356783","name":"Green Haven","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19326,"modificationDate":"2006-01-17"}, -{"geonameId":"4475773","name":"Lexington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19326,"modificationDate":"2019-01-04"}, -{"geonameId":"1182607","name":"Bhit Shah","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":19325,"modificationDate":"2019-12-06"}, -{"geonameId":"514796","name":"Orlovskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19325,"modificationDate":"2012-01-17"}, -{"geonameId":"1608462","name":"Nam Som","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":19324,"modificationDate":"2012-01-16"}, -{"geonameId":"710098","name":"Derhachi","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19322,"modificationDate":"2014-07-08"}, -{"geonameId":"2967438","name":"Wasquehal","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19320,"modificationDate":"2016-02-18"}, -{"geonameId":"749644","name":"Çatalca","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":19316,"modificationDate":"2010-12-30"}, -{"geonameId":"3386042","name":"Trindade","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19313,"modificationDate":"2012-08-03"}, -{"geonameId":"3673404","name":"Padua","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":19311,"modificationDate":"2018-08-31"}, -{"geonameId":"1254948","name":"Tāoru","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19310,"modificationDate":"2015-01-07"}, -{"geonameId":"3946985","name":"Ayaviri","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":19310,"modificationDate":"2012-07-19"}, -{"geonameId":"3465769","name":"Conceição da Barra","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19309,"modificationDate":"2012-08-03"}, -{"geonameId":"2707399","name":"Hässleholm","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":19309,"modificationDate":"2019-09-05"}, -{"geonameId":"925498","name":"Mzimba","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":19308,"modificationDate":"2011-04-25"}, -{"geonameId":"4884434","name":"Bellwood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19308,"modificationDate":"2017-05-23"}, -{"geonameId":"2652734","name":"Clydach","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19307,"modificationDate":"2011-07-31"}, -{"geonameId":"2650815","name":"Dukinfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19306,"modificationDate":"2013-07-11"}, -{"geonameId":"467854","name":"Yelizavetinskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19306,"modificationDate":"2013-04-03"}, -{"geonameId":"3447473","name":"Sobradinho","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19304,"modificationDate":"2018-12-05"}, -{"geonameId":"4460943","name":"Clayton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19304,"modificationDate":"2019-09-19"}, -{"geonameId":"5221341","name":"Central Falls","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19303,"modificationDate":"2017-05-23"}, -{"geonameId":"1274618","name":"Chāpar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19301,"modificationDate":"2014-10-13"}, -{"geonameId":"2785476","name":"Tielt","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":19299,"modificationDate":"2020-04-11"}, -{"geonameId":"1263309","name":"Mau","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19299,"modificationDate":"2014-10-14"}, -{"geonameId":"5513307","name":"Sun Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19299,"modificationDate":"2011-05-14"}, -{"geonameId":"155921","name":"Liwale","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19296,"modificationDate":"2016-07-26"}, -{"geonameId":"899825","name":"Petauke","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":19296,"modificationDate":"2016-09-22"}, -{"geonameId":"2504136","name":"Berrahal","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":19294,"modificationDate":"2012-01-19"}, -{"geonameId":"1733502","name":"Ranau","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":19294,"modificationDate":"2016-02-28"}, -{"geonameId":"2112019","name":"Makabe","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":19293,"modificationDate":"2017-04-09"}, -{"geonameId":"3471061","name":"Baixo Guandu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19292,"modificationDate":"2012-08-03"}, -{"geonameId":"2996255","name":"Mandelieu-la-Napoule","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19292,"modificationDate":"2019-08-07"}, -{"geonameId":"447273","name":"Dalaman","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":19292,"modificationDate":"2014-07-18"}, -{"geonameId":"3120811","name":"Hernani","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":19289,"modificationDate":"2010-04-22"}, -{"geonameId":"5523369","name":"Horizon City","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":19288,"modificationDate":"2017-03-09"}, -{"geonameId":"5751632","name":"Sherwood","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19283,"modificationDate":"2017-03-09"}, -{"geonameId":"1272985","name":"Dhanaula","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19281,"modificationDate":"2015-05-06"}, -{"geonameId":"8480031","name":"Waterford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19281,"modificationDate":"2017-05-23"}, -{"geonameId":"1270454","name":"Hamīrpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19280,"modificationDate":"2014-10-13"}, -{"geonameId":"521509","name":"Nikol’skoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19280,"modificationDate":"2016-12-18"}, -{"geonameId":"726546","name":"Svilengrad","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19279,"modificationDate":"2016-11-23"}, -{"geonameId":"2835345","name":"Schwalmstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19279,"modificationDate":"2019-09-05"}, -{"geonameId":"5379678","name":"Orinda","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19279,"modificationDate":"2017-03-09"}, -{"geonameId":"1733353","name":"Papar","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":19278,"modificationDate":"2012-01-17"}, -{"geonameId":"2925629","name":"Frankenberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19276,"modificationDate":"2017-09-20"}, -{"geonameId":"3678097","name":"La Plata","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":19275,"modificationDate":"2018-08-08"}, -{"geonameId":"3456137","name":"Nova Olímpia","countryName":"Brazil","timeZoneName":"America/Cuiaba","timeZoneOffsetNameWithoutDst":"Amazon Time","population":19274,"modificationDate":"2012-08-03"}, -{"geonameId":"1265811","name":"Kudachi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19272,"modificationDate":"2014-10-14"}, -{"geonameId":"2426370","name":"Oum Hadjer","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19271,"modificationDate":"2019-03-09"}, -{"geonameId":"1265208","name":"Laksar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19270,"modificationDate":"2015-04-08"}, -{"geonameId":"5383187","name":"Pinole","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19269,"modificationDate":"2017-03-09"}, -{"geonameId":"2944354","name":"Bremervörde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19268,"modificationDate":"2015-09-05"}, -{"geonameId":"3166236","name":"Spoleto","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19266,"modificationDate":"2015-07-23"}, -{"geonameId":"5106529","name":"Woodbridge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19265,"modificationDate":"2017-05-23"}, -{"geonameId":"1272540","name":"Dindori","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19263,"modificationDate":"2015-09-06"}, -{"geonameId":"2522776","name":"Vibo Valentia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19263,"modificationDate":"2014-04-13"}, -{"geonameId":"2438678","name":"Tillabery","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19262,"modificationDate":"2020-06-10"}, -{"geonameId":"723713","name":"Rožňava","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":19261,"modificationDate":"2019-06-09"}, -{"geonameId":"342641","name":"Batie","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19260,"modificationDate":"2020-06-11"}, -{"geonameId":"610445","name":"Balykshi","countryName":"Kazakhstan","timeZoneName":"Asia/Atyrau","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":19260,"modificationDate":"2017-11-07"}, -{"geonameId":"1277590","name":"Bāli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19259,"modificationDate":"2014-10-14"}, -{"geonameId":"4174317","name":"Sun City Center","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19258,"modificationDate":"2011-05-15"}, -{"geonameId":"4367372","name":"Rosedale","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19257,"modificationDate":"2011-05-14"}, -{"geonameId":"5711149","name":"Altamont","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19257,"modificationDate":"2011-05-14"}, -{"geonameId":"739015","name":"Taşova","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":19253,"modificationDate":"2014-06-26"}, -{"geonameId":"5257029","name":"Howard","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19250,"modificationDate":"2017-05-23"}, -{"geonameId":"3096328","name":"Kęty","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":19249,"modificationDate":"2010-10-17"}, -{"geonameId":"2518729","name":"El Arahal","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":19248,"modificationDate":"2012-01-19"}, -{"geonameId":"4670074","name":"Alamo","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19246,"modificationDate":"2017-03-09"}, -{"geonameId":"259245","name":"Kos","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19244,"modificationDate":"2019-02-01"}, -{"geonameId":"2232997","name":"Dizangué","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19243,"modificationDate":"2018-10-11"}, -{"geonameId":"1445378","name":"Ghatkesar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19243,"modificationDate":"2014-10-10"}, -{"geonameId":"2248409","name":"Mékhé","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19242,"modificationDate":"2012-01-17"}, -{"geonameId":"656130","name":"Jakobstad","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19238,"modificationDate":"2018-01-11"}, -{"geonameId":"3082722","name":"Wadowice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":19238,"modificationDate":"2019-09-05"}, -{"geonameId":"1277338","name":"Banga","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19234,"modificationDate":"2015-09-06"}, -{"geonameId":"1768664","name":"Kampong Kadok","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":19233,"modificationDate":"2018-12-04"}, -{"geonameId":"762120","name":"Pisz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":19232,"modificationDate":"2014-06-26"}, -{"geonameId":"3070862","name":"Mělník","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":19231,"modificationDate":"2019-03-19"}, -{"geonameId":"1736305","name":"Kuala Kedah","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":19231,"modificationDate":"2006-01-17"}, -{"geonameId":"519062","name":"Novoanninskiy","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":19231,"modificationDate":"2020-01-08"}, -{"geonameId":"5148273","name":"Broadview Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19229,"modificationDate":"2017-05-23"}, -{"geonameId":"5216895","name":"Upper Saint Clair","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19229,"modificationDate":"2017-05-23"}, -{"geonameId":"2970110","name":"Vendôme","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19226,"modificationDate":"2019-09-05"}, -{"geonameId":"617302","name":"Strășeni","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19225,"modificationDate":"2016-11-29"}, -{"geonameId":"1274351","name":"Chhaprauli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19224,"modificationDate":"2015-06-07"}, -{"geonameId":"2591159","name":"Degema Hulk","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19223,"modificationDate":"2016-01-30"}, -{"geonameId":"2997336","name":"Louviers","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19220,"modificationDate":"2016-02-18"}, -{"geonameId":"4995514","name":"Haslett","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19220,"modificationDate":"2017-05-23"}, -{"geonameId":"4915987","name":"West Elsdon","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19219,"modificationDate":"2017-12-13"}, -{"geonameId":"2796012","name":"Herent","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":19218,"modificationDate":"2011-02-04"}, -{"geonameId":"484856","name":"Takmalachuk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":19217,"modificationDate":"2020-06-10"}, -{"geonameId":"2922230","name":"Gauting","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19216,"modificationDate":"2011-04-25"}, -{"geonameId":"4276248","name":"Newton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19216,"modificationDate":"2017-05-23"}, -{"geonameId":"4501931","name":"Glassboro","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19216,"modificationDate":"2017-05-23"}, -{"geonameId":"2940942","name":"Burscheid","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19215,"modificationDate":"2017-04-26"}, -{"geonameId":"4529292","name":"Altus","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19214,"modificationDate":"2017-03-09"}, -{"geonameId":"3541999","name":"Rodas","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":19212,"modificationDate":"2016-01-07"}, -{"geonameId":"2839335","name":"Schifferstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19209,"modificationDate":"2015-09-05"}, -{"geonameId":"9191693","name":"Goderich","countryName":"Sierra Leone","timeZoneName":"Africa/Freetown","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19209,"modificationDate":"2020-05-08"}, -{"geonameId":"3166397","name":"Sondrio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19208,"modificationDate":"2014-04-13"}, -{"geonameId":"5329649","name":"Blythe","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19208,"modificationDate":"2017-03-09"}, -{"geonameId":"1707049","name":"Laur","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":19206,"modificationDate":"2017-12-13"}, -{"geonameId":"1830377","name":"Lumphat","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":19205,"modificationDate":"2017-05-08"}, -{"geonameId":"2855935","name":"Ottobrunn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19204,"modificationDate":"2011-04-25"}, -{"geonameId":"5810490","name":"Silverdale","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19204,"modificationDate":"2011-05-14"}, -{"geonameId":"2837291","name":"Schneverdingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19199,"modificationDate":"2015-09-05"}, -{"geonameId":"495206","name":"Shchigry","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19198,"modificationDate":"2019-09-05"}, -{"geonameId":"3585473","name":"Izalco","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":19197,"modificationDate":"2019-09-05"}, -{"geonameId":"5791159","name":"Covington","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19197,"modificationDate":"2017-03-09"}, -{"geonameId":"2149847","name":"Seven Hills","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":19196,"modificationDate":"2019-07-18"}, -{"geonameId":"1710612","name":"Ipil","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":19195,"modificationDate":"2017-12-13"}, -{"geonameId":"4901445","name":"Matteson","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19195,"modificationDate":"2017-05-23"}, -{"geonameId":"5895650","name":"Beaconsfield","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19194,"modificationDate":"2019-03-18"}, -{"geonameId":"2647985","name":"Great Wyrley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19193,"modificationDate":"2018-07-03"}, -{"geonameId":"2747364","name":"'s-Gravenzande","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":19190,"modificationDate":"2017-10-17"}, -{"geonameId":"5814095","name":"Tumwater","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19190,"modificationDate":"2017-03-09"}, -{"geonameId":"2514190","name":"Manzanares","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":19186,"modificationDate":"2012-03-04"}, -{"geonameId":"3176072","name":"Giovinazzo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19186,"modificationDate":"2014-04-13"}, -{"geonameId":"522470","name":"Nesterovskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19186,"modificationDate":"2012-08-04"}, -{"geonameId":"3853491","name":"Joaquín V. González","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":19185,"modificationDate":"2019-03-22"}, -{"geonameId":"156098","name":"Laela","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19185,"modificationDate":"2018-12-04"}, -{"geonameId":"3014175","name":"Gujan-Mestras","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19184,"modificationDate":"2020-01-08"}, -{"geonameId":"2633415","name":"Yarm","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19184,"modificationDate":"2017-06-12"}, -{"geonameId":"7315274","name":"Old Jamestown","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19184,"modificationDate":"2017-05-23"}, -{"geonameId":"3620269","name":"Corinto","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":19183,"modificationDate":"2018-08-08"}, -{"geonameId":"3448207","name":"São Sepé","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19181,"modificationDate":"2012-08-03"}, -{"geonameId":"1266414","name":"Kodarma","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19180,"modificationDate":"2020-06-10"}, -{"geonameId":"3176366","name":"Gallipoli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19176,"modificationDate":"2015-07-23"}, -{"geonameId":"2637916","name":"Shoreham-by-Sea","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19175,"modificationDate":"2015-03-29"}, -{"geonameId":"5280814","name":"Weirton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19175,"modificationDate":"2017-03-09"}, -{"geonameId":"538601","name":"Kurovskoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19173,"modificationDate":"2012-01-17"}, -{"geonameId":"2524126","name":"Misilmeri","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19171,"modificationDate":"2015-07-23"}, -{"geonameId":"717635","name":"Mezőtúr","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":19168,"modificationDate":"2014-11-05"}, -{"geonameId":"2262644","name":"Tomar","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":19168,"modificationDate":"2018-02-10"}, -{"geonameId":"4528259","name":"White Oak","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19167,"modificationDate":"2017-05-23"}, -{"geonameId":"2976258","name":"Sanary-sur-Mer","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19166,"modificationDate":"2019-08-07"}, -{"geonameId":"1266178","name":"Konnūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19166,"modificationDate":"2014-10-14"}, -{"geonameId":"1269690","name":"Irugūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19166,"modificationDate":"2017-03-04"}, -{"geonameId":"1277666","name":"Bālāchor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19166,"modificationDate":"2016-07-04"}, -{"geonameId":"259251","name":"Koropí","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19164,"modificationDate":"2019-10-23"}, -{"geonameId":"3514437","name":"Xochitepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":19164,"modificationDate":"2018-11-03"}, -{"geonameId":"1274675","name":"Chāndūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19163,"modificationDate":"2015-08-07"}, -{"geonameId":"3592105","name":"Nuevo San Carlos","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":19162,"modificationDate":"2019-01-09"}, -{"geonameId":"2855441","name":"Parchim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19161,"modificationDate":"2016-07-03"}, -{"geonameId":"2975088","name":"Senlis","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19160,"modificationDate":"2019-04-10"}, -{"geonameId":"499975","name":"Rybnoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19159,"modificationDate":"2012-01-17"}, -{"geonameId":"2640275","name":"Pinner","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19158,"modificationDate":"2012-05-18"}, -{"geonameId":"1255346","name":"Suriānwān","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19157,"modificationDate":"2015-08-07"}, -{"geonameId":"2511202","name":"Santa Brígida","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":19154,"modificationDate":"2012-03-04"}, -{"geonameId":"1820071","name":"Tutong","countryName":"Brunei","timeZoneName":"Asia/Brunei","timeZoneOffsetNameWithoutDst":"Brunei Darussalam Time","population":19151,"modificationDate":"2019-04-10"}, -{"geonameId":"3351014","name":"Camacupa","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19150,"modificationDate":"2012-01-17"}, -{"geonameId":"581671","name":"Anna","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19148,"modificationDate":"2012-01-17"}, -{"geonameId":"3071507","name":"Louny","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":19147,"modificationDate":"2019-03-20"}, -{"geonameId":"2521855","name":"Almordi","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":19147,"modificationDate":"2020-06-11"}, -{"geonameId":"1850589","name":"Tarumizu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":19146,"modificationDate":"2017-07-22"}, -{"geonameId":"477656","name":"Uva","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":19143,"modificationDate":"2014-06-27"}, -{"geonameId":"3584384","name":"Metapán","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":19143,"modificationDate":"2012-01-18"}, -{"geonameId":"5183234","name":"Carlisle","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19143,"modificationDate":"2017-05-23"}, -{"geonameId":"1859647","name":"Kawasaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":19141,"modificationDate":"2017-04-09"}, -{"geonameId":"2760123","name":"Aalten","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":19141,"modificationDate":"2017-10-17"}, -{"geonameId":"379630","name":"El Bauga","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":19141,"modificationDate":"2012-01-19"}, -{"geonameId":"2847689","name":"Rhede","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19140,"modificationDate":"2015-09-04"}, -{"geonameId":"4019819","name":"Acaponeta","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":19140,"modificationDate":"2018-11-03"}, -{"geonameId":"5127134","name":"Mineola","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19139,"modificationDate":"2017-05-23"}, -{"geonameId":"2958533","name":"Alfeld","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19138,"modificationDate":"2014-07-22"}, -{"geonameId":"3182886","name":"Arese","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19138,"modificationDate":"2015-07-23"}, -{"geonameId":"622997","name":"Pruzhany","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19135,"modificationDate":"2014-06-26"}, -{"geonameId":"3472808","name":"Aimorés","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19133,"modificationDate":"2012-08-03"}, -{"geonameId":"4264688","name":"Shelbyville","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19133,"modificationDate":"2017-05-23"}, -{"geonameId":"2354349","name":"Titao","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19131,"modificationDate":"2018-04-06"}, -{"geonameId":"1605018","name":"Wiset Chaichan","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":19129,"modificationDate":"2012-01-16"}, -{"geonameId":"4663494","name":"Tullahoma","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19128,"modificationDate":"2017-03-09"}, -{"geonameId":"282476","name":"Kubatiya","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19127,"modificationDate":"2020-06-10"}, -{"geonameId":"3429949","name":"Pirané","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":19124,"modificationDate":"2015-04-22"}, -{"geonameId":"686818","name":"Zuhres","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":19121,"modificationDate":"2014-06-26"}, -{"geonameId":"4402245","name":"Ozark","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19120,"modificationDate":"2017-05-23"}, -{"geonameId":"3128291","name":"Benavente","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":19119,"modificationDate":"2012-03-04"}, -{"geonameId":"2798987","name":"Eeklo","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":19116,"modificationDate":"2013-03-05"}, -{"geonameId":"1605509","name":"Tha Ruea","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":19116,"modificationDate":"2017-03-22"}, -{"geonameId":"2949470","name":"Bexbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19115,"modificationDate":"2015-09-05"}, -{"geonameId":"3598073","name":"Colomba","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":19115,"modificationDate":"2019-01-09"}, -{"geonameId":"3038266","name":"Albertville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19113,"modificationDate":"2019-09-05"}, -{"geonameId":"2917221","name":"Gröbenzell","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19110,"modificationDate":"2015-03-04"}, -{"geonameId":"11523847","name":"Wollongong city centre","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":19108,"modificationDate":"2019-07-20"}, -{"geonameId":"2130612","name":"Ashibetsu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":19108,"modificationDate":"2017-07-22"}, -{"geonameId":"3453896","name":"Pilar do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19107,"modificationDate":"2012-08-03"}, -{"geonameId":"741347","name":"Nallıhan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":19106,"modificationDate":"2012-01-18"}, -{"geonameId":"3453635","name":"Piraí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19105,"modificationDate":"2012-08-03"}, -{"geonameId":"3466933","name":"Carlos Barbosa","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19105,"modificationDate":"2012-08-03"}, -{"geonameId":"2998305","name":"Limeil-Breyannes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19104,"modificationDate":"2020-06-10"}, -{"geonameId":"5104504","name":"Secaucus","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19104,"modificationDate":"2017-05-23"}, -{"geonameId":"4241704","name":"Jacksonville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19103,"modificationDate":"2017-03-09"}, -{"geonameId":"5794097","name":"Fairwood","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19102,"modificationDate":"2011-05-15"}, -{"geonameId":"3427388","name":"Villa Ocampo","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":19101,"modificationDate":"2016-01-30"}, -{"geonameId":"3398003","name":"Itabaiana","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19100,"modificationDate":"2012-08-03"}, -{"geonameId":"1490277","name":"Talitsa","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":19100,"modificationDate":"2012-01-17"}, -{"geonameId":"4838116","name":"Madison","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19100,"modificationDate":"2017-05-23"}, -{"geonameId":"3462374","name":"Goiás","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19098,"modificationDate":"2012-08-03"}, -{"geonameId":"3401340","name":"Cupira","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19096,"modificationDate":"2012-08-03"}, -{"geonameId":"3147474","name":"Lillehammer","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":19096,"modificationDate":"2019-12-12"}, -{"geonameId":"4350288","name":"Camp Springs","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19096,"modificationDate":"2019-12-14"}, -{"geonameId":"2284589","name":"Mankono","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19095,"modificationDate":"2016-12-03"}, -{"geonameId":"3583379","name":"San Rafael Oriente","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":19095,"modificationDate":"2012-01-18"}, -{"geonameId":"7932670","name":"Redbank Plains","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":19094,"modificationDate":"2019-07-18"}, -{"geonameId":"3832653","name":"Villa Paula de Sarmiento","countryName":"Argentina","timeZoneName":"America/Argentina/San_Juan","timeZoneOffsetNameWithoutDst":"Argentina Time","population":19092,"modificationDate":"2016-01-30"}, -{"geonameId":"3623580","name":"Guápiles","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":19092,"modificationDate":"2017-02-19"}, -{"geonameId":"3173931","name":"Marina di Massa","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19092,"modificationDate":"2018-12-06"}, -{"geonameId":"3526446","name":"Cardel","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":19092,"modificationDate":"2020-06-10"}, -{"geonameId":"2650023","name":"Ely","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19090,"modificationDate":"2018-07-03"}, -{"geonameId":"2255285","name":"Sibiti","countryName":"Republic of the Congo","timeZoneName":"Africa/Brazzaville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":19089,"modificationDate":"2011-10-26"}, -{"geonameId":"585763","name":"Kyurdarmir","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":19088,"modificationDate":"2019-07-10"}, -{"geonameId":"3466763","name":"Casimiro de Abreu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19087,"modificationDate":"2012-08-03"}, -{"geonameId":"3012162","name":"Jouy-le-Moutier","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19087,"modificationDate":"2016-02-18"}, -{"geonameId":"161204","name":"Bashanet","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19087,"modificationDate":"2016-07-26"}, -{"geonameId":"155321","name":"Magomeni","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19086,"modificationDate":"2016-07-26"}, -{"geonameId":"904422","name":"Mumbwa","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":19086,"modificationDate":"2012-06-05"}, -{"geonameId":"2742416","name":"Barcelos","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":19085,"modificationDate":"2018-01-29"}, -{"geonameId":"2502034","name":"Brezina","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":19084,"modificationDate":"2012-01-19"}, -{"geonameId":"629018","name":"Dobrush","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":19083,"modificationDate":"2014-06-27"}, -{"geonameId":"155307","name":"Kihangara","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19082,"modificationDate":"2016-07-26"}, -{"geonameId":"5134316","name":"Ronkonkoma","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19082,"modificationDate":"2017-05-23"}, -{"geonameId":"2144728","name":"Wantirna South","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":19081,"modificationDate":"2019-07-18"}, -{"geonameId":"758651","name":"Sokółka","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":19079,"modificationDate":"2019-09-05"}, -{"geonameId":"4977222","name":"Saco","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19078,"modificationDate":"2017-05-23"}, -{"geonameId":"4502901","name":"Maple Shade","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19077,"modificationDate":"2017-05-23"}, -{"geonameId":"2303060","name":"Bibiani","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":19076,"modificationDate":"2019-12-06"}, -{"geonameId":"3584003","name":"Puerto El Triunfo","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":19074,"modificationDate":"2012-01-18"}, -{"geonameId":"5098909","name":"Hawthorne","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19074,"modificationDate":"2017-05-23"}, -{"geonameId":"2522091","name":"Alcúdia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":19071,"modificationDate":"2016-06-09"}, -{"geonameId":"3859965","name":"Cosquín","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":19070,"modificationDate":"2016-01-30"}, -{"geonameId":"2995642","name":"Marmande","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19069,"modificationDate":"2020-01-08"}, -{"geonameId":"4692400","name":"Fresno","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19069,"modificationDate":"2011-05-14"}, -{"geonameId":"5115962","name":"East Massapequa","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19069,"modificationDate":"2017-05-23"}, -{"geonameId":"4929023","name":"Amherst Center","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19065,"modificationDate":"2017-05-23"}, -{"geonameId":"1254797","name":"Tekāri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19063,"modificationDate":"2015-12-05"}, -{"geonameId":"5431710","name":"Montrose","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":19062,"modificationDate":"2018-01-01"}, -{"geonameId":"2664855","name":"Värnamo","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":19061,"modificationDate":"2017-03-18"}, -{"geonameId":"1272819","name":"Fatheabad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19060,"modificationDate":"2020-06-10"}, -{"geonameId":"1713857","name":"Saravia","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":19060,"modificationDate":"2017-12-13"}, -{"geonameId":"1735274","name":"Kampar","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":19056,"modificationDate":"2012-01-17"}, -{"geonameId":"3573899","name":"Point Fortin","countryName":"Trinidad and Tobago","timeZoneName":"America/Port_of_Spain","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":19056,"modificationDate":"2017-10-04"}, -{"geonameId":"1567681","name":"Sơn La","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":19054,"modificationDate":"2013-06-30"}, -{"geonameId":"8581647","name":"Kirandul","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19053,"modificationDate":"2014-10-14"}, -{"geonameId":"2953398","name":"Bad Münstereifel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19051,"modificationDate":"2015-09-04"}, -{"geonameId":"1260553","name":"French Rocks","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19051,"modificationDate":"2015-11-08"}, -{"geonameId":"2921061","name":"Gerlingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19050,"modificationDate":"2013-02-16"}, -{"geonameId":"12047617","name":"Osiedle Kosmonautów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":19048,"modificationDate":"2019-06-03"}, -{"geonameId":"1152562","name":"Kui Buri","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":19046,"modificationDate":"2012-01-16"}, -{"geonameId":"152718","name":"Mtwango","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19040,"modificationDate":"2016-07-26"}, -{"geonameId":"760917","name":"Pułtusk","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":19039,"modificationDate":"2019-09-05"}, -{"geonameId":"1278774","name":"Āmlāgora","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19038,"modificationDate":"2019-02-21"}, -{"geonameId":"1269876","name":"Hungund","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19036,"modificationDate":"2015-08-07"}, -{"geonameId":"2522767","name":"Villabate","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":19031,"modificationDate":"2014-04-13"}, -{"geonameId":"4676798","name":"Brownwood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19031,"modificationDate":"2017-03-09"}, -{"geonameId":"4951594","name":"Southbridge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":19030,"modificationDate":"2017-05-23"}, -{"geonameId":"3496150","name":"Monte Llano","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":19029,"modificationDate":"2018-03-15"}, -{"geonameId":"3380892","name":"Rémire-Montjoly","countryName":"French Guiana","timeZoneName":"America/Cayenne","timeZoneOffsetNameWithoutDst":"French Guiana Time","population":19029,"modificationDate":"2011-12-14"}, -{"geonameId":"1073482","name":"Anjozorobe","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":19027,"modificationDate":"2018-09-10"}, -{"geonameId":"1871484","name":"Samho-rodongjagu","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":19025,"modificationDate":"2012-01-19"}, -{"geonameId":"2743997","name":"Zeewolde","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":19022,"modificationDate":"2017-10-17"}, -{"geonameId":"1253357","name":"Vāsudevanallūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19021,"modificationDate":"2017-09-05"}, -{"geonameId":"11903641","name":"Andritz","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":19020,"modificationDate":"2018-07-29"}, -{"geonameId":"297564","name":"Yatağan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":19020,"modificationDate":"2013-08-06"}, -{"geonameId":"585379","name":"Nassosny","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":19019,"modificationDate":"2020-06-10"}, -{"geonameId":"4889668","name":"Deerfield","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19019,"modificationDate":"2017-05-23"}, -{"geonameId":"2512127","name":"Puçol","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":19018,"modificationDate":"2012-03-04"}, -{"geonameId":"3087628","name":"Pyskowice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":19018,"modificationDate":"2011-07-31"}, -{"geonameId":"2982343","name":"Royan","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19017,"modificationDate":"2019-11-06"}, -{"geonameId":"1736372","name":"Pasir Mas","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":19017,"modificationDate":"2012-01-17"}, -{"geonameId":"5334799","name":"Castaic","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19015,"modificationDate":"2011-05-14"}, -{"geonameId":"3116653","name":"Moaña","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":19014,"modificationDate":"2018-12-03"}, -{"geonameId":"2538898","name":"Oulmes","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":19014,"modificationDate":"2020-01-11"}, -{"geonameId":"1283499","name":"Dandelhura","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":19014,"modificationDate":"2020-06-10"}, -{"geonameId":"3448227","name":"São Sebastião do Caí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":19012,"modificationDate":"2012-08-03"}, -{"geonameId":"2880077","name":"Laupheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19012,"modificationDate":"2013-02-15"}, -{"geonameId":"2904992","name":"Heusenstamm","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":19012,"modificationDate":"2015-09-04"}, -{"geonameId":"2995041","name":"Maurepas","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":19009,"modificationDate":"2016-02-18"}, -{"geonameId":"1253972","name":"Udangudi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19008,"modificationDate":"2017-09-05"}, -{"geonameId":"4689311","name":"Ennis","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":19007,"modificationDate":"2017-03-09"}, -{"geonameId":"5793639","name":"Ellensburg","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":19001,"modificationDate":"2017-03-09"}, -{"geonameId":"1278534","name":"Anshing","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":19000,"modificationDate":"2015-08-07"}, -{"geonameId":"1637730","name":"Vila de liquissa","countryName":"Timor Leste","timeZoneName":"Asia/Dili","timeZoneOffsetNameWithoutDst":"East Timor Time","population":19000,"modificationDate":"2020-06-10"}, -{"geonameId":"788731","name":"Leposaviq","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":19000,"modificationDate":"2015-02-22"}, -{"geonameId":"4533580","name":"Claremore","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18997,"modificationDate":"2017-03-09"}, -{"geonameId":"1276092","name":"Bhasāwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18996,"modificationDate":"2016-07-03"}, -{"geonameId":"678261","name":"Filiaşi","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18995,"modificationDate":"2020-02-12"}, -{"geonameId":"3060405","name":"Dolný Kubín","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":18995,"modificationDate":"2019-06-09"}, -{"geonameId":"3592362","name":"Morales","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":18994,"modificationDate":"2019-10-10"}, -{"geonameId":"293308","name":"Tirat Karmel","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":18993,"modificationDate":"2017-07-05"}, -{"geonameId":"1278054","name":"Bābra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18993,"modificationDate":"2014-10-13"}, -{"geonameId":"986717","name":"Kruisfontein","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":18991,"modificationDate":"2016-03-10"}, -{"geonameId":"2880221","name":"Lauchhammer","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18990,"modificationDate":"2015-09-05"}, -{"geonameId":"1260313","name":"Parīchhatgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18990,"modificationDate":"2015-07-03"}, -{"geonameId":"4880981","name":"Waukee","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18990,"modificationDate":"2017-05-23"}, -{"geonameId":"2343273","name":"Enugu-Ezike","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":18989,"modificationDate":"2016-01-30"}, -{"geonameId":"4160100","name":"Jasmine Estates","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18989,"modificationDate":"2011-05-14"}, -{"geonameId":"3021382","name":"Digne-les-Bains","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18986,"modificationDate":"2016-02-18"}, -{"geonameId":"5126555","name":"Melville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18985,"modificationDate":"2017-05-23"}, -{"geonameId":"1727043","name":"Bantayan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":18984,"modificationDate":"2017-12-13"}, -{"geonameId":"5123344","name":"Kew Gardens","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18983,"modificationDate":"2017-04-16"}, -{"geonameId":"1275836","name":"Bhor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18982,"modificationDate":"2014-10-13"}, -{"geonameId":"2510880","name":"Silla","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18979,"modificationDate":"2015-11-16"}, -{"geonameId":"3175990","name":"Gorgonzola","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18979,"modificationDate":"2014-04-13"}, -{"geonameId":"5262838","name":"Middleton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18979,"modificationDate":"2017-05-23"}, -{"geonameId":"301209","name":"Şemdinli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":18978,"modificationDate":"2012-01-18"}, -{"geonameId":"1265716","name":"Kulpahār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18976,"modificationDate":"2015-08-07"}, -{"geonameId":"3098619","name":"Gostynin","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18976,"modificationDate":"2010-10-15"}, -{"geonameId":"341742","name":"Bonga","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18973,"modificationDate":"2018-03-21"}, -{"geonameId":"2991551","name":"Mougins","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18973,"modificationDate":"2019-08-07"}, -{"geonameId":"2646653","name":"Hook","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18973,"modificationDate":"2019-10-01"}, -{"geonameId":"4146723","name":"Bartow","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18972,"modificationDate":"2017-03-09"}, -{"geonameId":"1275499","name":"Bīrpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18968,"modificationDate":"2014-10-14"}, -{"geonameId":"5173572","name":"Sylvania","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18965,"modificationDate":"2017-05-23"}, -{"geonameId":"1270343","name":"Hārij","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18964,"modificationDate":"2014-10-13"}, -{"geonameId":"2736521","name":"Pedroso","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":18963,"modificationDate":"2018-12-04"}, -{"geonameId":"5311433","name":"Rio Rico","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":18962,"modificationDate":"2011-05-14"}, -{"geonameId":"2759178","name":"Benthuizen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":18959,"modificationDate":"2017-10-17"}, -{"geonameId":"3385022","name":"Viseu","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18958,"modificationDate":"2012-08-03"}, -{"geonameId":"4302035","name":"Murray","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18954,"modificationDate":"2017-03-09"}, -{"geonameId":"1849183","name":"Ureshinomachi-shimojuku","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":18953,"modificationDate":"2017-04-09"}, -{"geonameId":"1253278","name":"Velur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18951,"modificationDate":"2014-10-14"}, -{"geonameId":"3670719","name":"Riosucio","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":18950,"modificationDate":"2018-07-04"}, -{"geonameId":"1255482","name":"Sulya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18950,"modificationDate":"2015-11-08"}, -{"geonameId":"5785868","name":"Arlington","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18949,"modificationDate":"2017-03-09"}, -{"geonameId":"3027513","name":"Challans","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18947,"modificationDate":"2016-02-18"}, -{"geonameId":"4212995","name":"North Druid Hills","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18947,"modificationDate":"2011-05-14"}, -{"geonameId":"1486913","name":"Vorgashor","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18946,"modificationDate":"2012-08-04"}, -{"geonameId":"1276686","name":"Baud","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18945,"modificationDate":"2017-10-04"}, -{"geonameId":"3523450","name":"Matías Romero","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18944,"modificationDate":"2018-11-03"}, -{"geonameId":"2732475","name":"Vilar de Andorinho","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":18944,"modificationDate":"2018-09-04"}, -{"geonameId":"4885689","name":"Brookfield","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18944,"modificationDate":"2017-05-23"}, -{"geonameId":"5128898","name":"North Bay Shore","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18944,"modificationDate":"2017-05-23"}, -{"geonameId":"890983","name":"Gokwe","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":18942,"modificationDate":"2012-05-05"}, -{"geonameId":"2975233","name":"Schlettstadt","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18941,"modificationDate":"2020-06-10"}, -{"geonameId":"301827","name":"Seraikeui","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":18937,"modificationDate":"2020-06-10"}, -{"geonameId":"228971","name":"Mubende","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18936,"modificationDate":"2016-06-22"}, -{"geonameId":"2785364","name":"Torhout","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":18933,"modificationDate":"2012-01-18"}, -{"geonameId":"6077315","name":"Mont-Royal","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18933,"modificationDate":"2016-06-22"}, -{"geonameId":"3061188","name":"Bánovce nad Bebravou","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":18933,"modificationDate":"2019-06-09"}, -{"geonameId":"2956715","name":"Alzenau in Unterfranken","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18932,"modificationDate":"2013-02-19"}, -{"geonameId":"730442","name":"Harmanli","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18931,"modificationDate":"2016-08-03"}, -{"geonameId":"4209448","name":"Milledgeville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18931,"modificationDate":"2017-03-09"}, -{"geonameId":"3016675","name":"Garches","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18930,"modificationDate":"2016-02-18"}, -{"geonameId":"1170677","name":"Matiari","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":18929,"modificationDate":"2019-12-06"}, -{"geonameId":"1262553","name":"Mulgund","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18928,"modificationDate":"2014-10-14"}, -{"geonameId":"5898138","name":"Beloeil","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18927,"modificationDate":"2019-03-18"}, -{"geonameId":"3178956","name":"Cesenatico","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18925,"modificationDate":"2014-01-11"}, -{"geonameId":"2263326","name":"São João da Talha","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":18925,"modificationDate":"2018-01-29"}, -{"geonameId":"5048814","name":"Stillwater","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18924,"modificationDate":"2017-05-23"}, -{"geonameId":"289962","name":"Al Khawr","countryName":"Qatar","timeZoneName":"Asia/Qatar","timeZoneOffsetNameWithoutDst":"Arabian Time","population":18923,"modificationDate":"2012-01-18"}, -{"geonameId":"2926670","name":"Finsterwalde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18922,"modificationDate":"2018-12-04"}, -{"geonameId":"2859103","name":"Oberschöneweide","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18919,"modificationDate":"2012-06-09"}, -{"geonameId":"294387","name":"Mughar","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":18915,"modificationDate":"2020-06-10"}, -{"geonameId":"616435","name":"Masis","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":18911,"modificationDate":"2020-04-04"}, -{"geonameId":"3456324","name":"Nepomuceno","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18911,"modificationDate":"2015-06-24"}, -{"geonameId":"2464809","name":"Tajerouine","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":18909,"modificationDate":"2018-08-05"}, -{"geonameId":"3406996","name":"Atalaia","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18908,"modificationDate":"2012-08-03"}, -{"geonameId":"2129513","name":"Shimokizukuri","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":18907,"modificationDate":"2017-04-09"}, -{"geonameId":"707155","name":"Kalynivka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18907,"modificationDate":"2020-05-14"}, -{"geonameId":"5113790","name":"Cortland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18907,"modificationDate":"2017-05-23"}, -{"geonameId":"3461857","name":"Guaratuba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18906,"modificationDate":"2012-08-03"}, -{"geonameId":"293187","name":"Yif‘at","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":18905,"modificationDate":"2020-04-25"}, -{"geonameId":"293254","name":"Yafa an-Nasirah","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":18905,"modificationDate":"2020-04-25"}, -{"geonameId":"3177664","name":"Cusano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18904,"modificationDate":"2019-02-12"}, -{"geonameId":"60019","name":"Eyl","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18904,"modificationDate":"2017-02-10"}, -{"geonameId":"585226","name":"Qazax","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":18903,"modificationDate":"2014-06-26"}, -{"geonameId":"931865","name":"Balaka","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":18902,"modificationDate":"2011-11-08"}, -{"geonameId":"2624112","name":"Birkerød","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":18901,"modificationDate":"2017-10-18"}, -{"geonameId":"1490266","name":"Tal’menka","countryName":"Russia","timeZoneName":"Asia/Barnaul","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":18900,"modificationDate":"2012-04-26"}, -{"geonameId":"1259429","name":"Ponda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18898,"modificationDate":"2014-10-14"}, -{"geonameId":"3170778","name":"Pietrasanta","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18897,"modificationDate":"2015-07-22"}, -{"geonameId":"492448","name":"Skhodnya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18897,"modificationDate":"2012-01-17"}, -{"geonameId":"2942634","name":"Buchen in Odenwald","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18890,"modificationDate":"2019-04-10"}, -{"geonameId":"1636322","name":"Manismata","countryName":"Indonesia","timeZoneName":"Asia/Pontianak","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":18888,"modificationDate":"2018-12-04"}, -{"geonameId":"696677","name":"Polohy","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18886,"modificationDate":"2020-05-22"}, -{"geonameId":"3127889","name":"Boiro","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18883,"modificationDate":"2015-06-16"}, -{"geonameId":"2216645","name":"Hon","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18878,"modificationDate":"2020-06-10"}, -{"geonameId":"11808241","name":"Azeitão","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":18877,"modificationDate":"2018-01-18"}, -{"geonameId":"545277","name":"Konstantinovsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18876,"modificationDate":"2019-09-05"}, -{"geonameId":"9972579","name":"Altona Meadows","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":18874,"modificationDate":"2019-07-18"}, -{"geonameId":"1256713","name":"Shāhpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18874,"modificationDate":"2015-09-06"}, -{"geonameId":"1619437","name":"Bang Krathum","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":18874,"modificationDate":"2012-01-16"}, -{"geonameId":"5147097","name":"Berea","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18874,"modificationDate":"2017-05-23"}, -{"geonameId":"3403362","name":"Canguaretama","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18873,"modificationDate":"2012-08-03"}, -{"geonameId":"1263567","name":"Mārahra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18873,"modificationDate":"2015-08-07"}, -{"geonameId":"5174550","name":"Twinsburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18872,"modificationDate":"2017-05-23"}, -{"geonameId":"5143198","name":"Wantagh","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18871,"modificationDate":"2017-05-23"}, -{"geonameId":"3025144","name":"Chilly-Mazarin","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18870,"modificationDate":"2016-02-18"}, -{"geonameId":"3030990","name":"Bourg-la-Reine","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18870,"modificationDate":"2016-02-18"}, -{"geonameId":"159218","name":"Ilembula","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18870,"modificationDate":"2016-07-26"}, -{"geonameId":"3993457","name":"Paracho de Verduzco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18868,"modificationDate":"2018-11-03"}, -{"geonameId":"704492","name":"Krasyliv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18868,"modificationDate":"2020-05-12"}, -{"geonameId":"3526467","name":"Jojutla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18867,"modificationDate":"2013-08-01"}, -{"geonameId":"3085941","name":"Sierpc","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18866,"modificationDate":"2010-09-19"}, -{"geonameId":"1274265","name":"Chicholi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18864,"modificationDate":"2015-08-07"}, -{"geonameId":"1524308","name":"Otegen Batyra","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":18864,"modificationDate":"2017-12-07"}, -{"geonameId":"160172","name":"Dongobesh","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18864,"modificationDate":"2016-07-26"}, -{"geonameId":"3457566","name":"Mascote","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18863,"modificationDate":"2012-08-03"}, -{"geonameId":"2881276","name":"Langen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18863,"modificationDate":"2015-11-29"}, -{"geonameId":"3019960","name":"Équeurdreville-Hainneville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18862,"modificationDate":"2016-12-10"}, -{"geonameId":"5143832","name":"West Hempstead","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18862,"modificationDate":"2017-05-23"}, -{"geonameId":"2962290","name":"Droichead Nua","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18860,"modificationDate":"2012-01-18"}, -{"geonameId":"893549","name":"Chipinge","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":18860,"modificationDate":"2015-04-24"}, -{"geonameId":"3463920","name":"Esplanada","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18859,"modificationDate":"2012-08-03"}, -{"geonameId":"3167393","name":"Sant'Antonio Abate","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18859,"modificationDate":"2014-04-13"}, -{"geonameId":"3453457","name":"Pitangui","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18858,"modificationDate":"2012-08-03"}, -{"geonameId":"1264007","name":"Malwan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18858,"modificationDate":"2020-06-10"}, -{"geonameId":"3068690","name":"Otrokovice","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":18857,"modificationDate":"2019-03-20"}, -{"geonameId":"3350372","name":"Catabola","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":18855,"modificationDate":"2013-06-04"}, -{"geonameId":"1260868","name":"Pahāsu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18854,"modificationDate":"2015-09-06"}, -{"geonameId":"5281551","name":"Ansonia","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18854,"modificationDate":"2017-05-23"}, -{"geonameId":"4094163","name":"Troy","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18853,"modificationDate":"2017-03-09"}, -{"geonameId":"3391991","name":"Piracuruca","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18852,"modificationDate":"2012-08-03"}, -{"geonameId":"4003908","name":"Jocotepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18852,"modificationDate":"2018-11-03"}, -{"geonameId":"3022988","name":"Cournon-d'Auvergne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18848,"modificationDate":"2019-12-03"}, -{"geonameId":"2093967","name":"Kimbe","countryName":"Papua New Guinea","timeZoneName":"Pacific/Port_Moresby","timeZoneOffsetNameWithoutDst":"Papua New Guinea Time","population":18847,"modificationDate":"2015-04-06"}, -{"geonameId":"3666395","name":"Urrao","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":18846,"modificationDate":"2016-01-28"}, -{"geonameId":"1258859","name":"Rājgurunagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18846,"modificationDate":"2014-10-13"}, -{"geonameId":"3471005","name":"Bambuí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18840,"modificationDate":"2012-08-03"}, -{"geonameId":"5162188","name":"Mayfield Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18840,"modificationDate":"2017-05-23"}, -{"geonameId":"3451241","name":"Rio Brilhante","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":18837,"modificationDate":"2012-08-03"}, -{"geonameId":"4433039","name":"Laurel","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18837,"modificationDate":"2017-03-09"}, -{"geonameId":"2637435","name":"South Elmsall","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18835,"modificationDate":"2013-07-11"}, -{"geonameId":"1279135","name":"Akbarpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18835,"modificationDate":"2016-03-10"}, -{"geonameId":"3529989","name":"Cuautepec de Hinojosa","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18835,"modificationDate":"2018-11-03"}, -{"geonameId":"3057963","name":"Púchov","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":18833,"modificationDate":"2019-08-28"}, -{"geonameId":"2267226","name":"Lagos","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":18831,"modificationDate":"2018-09-14"}, -{"geonameId":"2031533","name":"Dzüünharaa","countryName":"Mongolia","timeZoneName":"Asia/Ulaanbaatar","timeZoneOffsetNameWithoutDst":"Ulaanbaatar Time","population":18830,"modificationDate":"2018-01-07"}, -{"geonameId":"878041","name":"Matiri","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18830,"modificationDate":"2018-12-04"}, -{"geonameId":"702563","name":"Lutuhyne","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18830,"modificationDate":"2014-07-08"}, -{"geonameId":"2172293","name":"Carlton","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":18829,"modificationDate":"2019-07-18"}, -{"geonameId":"5140402","name":"Syosset","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18829,"modificationDate":"2017-05-23"}, -{"geonameId":"3083111","name":"Trzebinia","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18828,"modificationDate":"2010-10-21"}, -{"geonameId":"1258449","name":"Rānīpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18820,"modificationDate":"2015-08-07"}, -{"geonameId":"1264047","name":"Mallasamudram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18820,"modificationDate":"2017-09-05"}, -{"geonameId":"3400752","name":"Esperança","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18817,"modificationDate":"2012-08-03"}, -{"geonameId":"3472284","name":"Anastácio","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":18817,"modificationDate":"2012-08-03"}, -{"geonameId":"2892705","name":"Karow","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18817,"modificationDate":"2012-06-09"}, -{"geonameId":"2112583","name":"Ishikawa","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":18817,"modificationDate":"2017-04-09"}, -{"geonameId":"3524618","name":"Las Rosas","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18817,"modificationDate":"2018-11-03"}, -{"geonameId":"529505","name":"Manturovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18817,"modificationDate":"2012-01-17"}, -{"geonameId":"9129422","name":"Ascención de Guarayos","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":18816,"modificationDate":"2017-12-13"}, -{"geonameId":"2335015","name":"Kari","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":18812,"modificationDate":"2018-12-04"}, -{"geonameId":"3448455","name":"São Miguel do Araguaia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18809,"modificationDate":"2017-08-24"}, -{"geonameId":"5884051","name":"Alliston","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18809,"modificationDate":"2019-08-08"}, -{"geonameId":"2016422","name":"Slyudyanka","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":18809,"modificationDate":"2012-01-17"}, -{"geonameId":"5148326","name":"Brook Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18809,"modificationDate":"2017-05-23"}, -{"geonameId":"2647209","name":"Hebburn","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18808,"modificationDate":"2012-04-12"}, -{"geonameId":"2946172","name":"Borna","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18806,"modificationDate":"2019-05-03"}, -{"geonameId":"2662149","name":"Ystad","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":18806,"modificationDate":"2017-03-18"}, -{"geonameId":"3472869","name":"Águas de Lindóia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18805,"modificationDate":"2012-08-03"}, -{"geonameId":"2936909","name":"Dingolfing","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18805,"modificationDate":"2017-04-05"}, -{"geonameId":"7262428","name":"Union Hill-Novelty Hill","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18805,"modificationDate":"2011-05-14"}, -{"geonameId":"2803443","name":"Aalter","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":18802,"modificationDate":"2019-01-17"}, -{"geonameId":"689159","name":"Volochysk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18802,"modificationDate":"2020-05-12"}, -{"geonameId":"2642423","name":"Mirfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18800,"modificationDate":"2011-07-31"}, -{"geonameId":"229059","name":"Moyo","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18800,"modificationDate":"2016-06-22"}, -{"geonameId":"230617","name":"Kotido","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18800,"modificationDate":"2016-06-22"}, -{"geonameId":"4291255","name":"Erlanger","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18797,"modificationDate":"2017-03-09"}, -{"geonameId":"3665566","name":"Zaragoza","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":18795,"modificationDate":"2018-06-08"}, -{"geonameId":"709782","name":"Dolynska","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18792,"modificationDate":"2020-05-15"}, -{"geonameId":"5134449","name":"Rossville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18792,"modificationDate":"2017-04-16"}, -{"geonameId":"5241248","name":"South Burlington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18791,"modificationDate":"2017-05-23"}, -{"geonameId":"1277970","name":"Badnāwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18790,"modificationDate":"2014-10-14"}, -{"geonameId":"3982567","name":"Tamazula de Gordiano","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18787,"modificationDate":"2018-11-03"}, -{"geonameId":"2521410","name":"Bailén","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18785,"modificationDate":"2012-03-04"}, -{"geonameId":"488635","name":"Staroshcherbinovskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18785,"modificationDate":"2013-05-07"}, -{"geonameId":"2264299","name":"Quarteira","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":18783,"modificationDate":"2012-01-17"}, -{"geonameId":"4902900","name":"Mount Greenwood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18783,"modificationDate":"2017-12-13"}, -{"geonameId":"1274674","name":"Chāndūr Bāzār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18780,"modificationDate":"2015-08-07"}, -{"geonameId":"616877","name":"Ashtarak","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":18779,"modificationDate":"2016-10-07"}, -{"geonameId":"3610965","name":"El Paraíso","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":18779,"modificationDate":"2013-04-04"}, -{"geonameId":"3827256","name":"Santa María Totoltepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18779,"modificationDate":"2015-06-22"}, -{"geonameId":"3878456","name":"Nueva Imperial","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":18777,"modificationDate":"2013-01-11"}, -{"geonameId":"2650004","name":"Emsworth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18777,"modificationDate":"2017-06-12"}, -{"geonameId":"3176639","name":"Fossano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18773,"modificationDate":"2014-04-13"}, -{"geonameId":"3545981","name":"Niquero","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":18771,"modificationDate":"2016-01-07"}, -{"geonameId":"746252","name":"Akmescit","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":18771,"modificationDate":"2020-06-10"}, -{"geonameId":"1491953","name":"Shushenskoye","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":18770,"modificationDate":"2012-08-04"}, -{"geonameId":"692118","name":"Svatove","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18770,"modificationDate":"2014-12-03"}, -{"geonameId":"2524606","name":"Gioia Tauro","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18769,"modificationDate":"2014-04-13"}, -{"geonameId":"315758","name":"Zeydekan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":18769,"modificationDate":"2020-06-10"}, -{"geonameId":"1255763","name":"Sonepur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18768,"modificationDate":"2014-10-14"}, -{"geonameId":"2790796","name":"Montignies-sur-Sambre","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":18765,"modificationDate":"2020-05-25"}, -{"geonameId":"7261029","name":"Casa de Oro-Mount Helix","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18762,"modificationDate":"2011-05-14"}, -{"geonameId":"3901547","name":"Villamontes","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":18761,"modificationDate":"2013-01-11"}, -{"geonameId":"609924","name":"Embi","countryName":"Kazakhstan","timeZoneName":"Asia/Aqtobe","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":18760,"modificationDate":"2014-06-27"}, -{"geonameId":"3466436","name":"Ceres","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18759,"modificationDate":"2012-08-03"}, -{"geonameId":"3074020","name":"Kadaň","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":18759,"modificationDate":"2018-09-08"}, -{"geonameId":"3834971","name":"Sunchales","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":18757,"modificationDate":"2016-01-30"}, -{"geonameId":"3509578","name":"Ciudad Nueva","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":18756,"modificationDate":"2017-01-31"}, -{"geonameId":"613074","name":"Marneuli","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":18755,"modificationDate":"2019-12-03"}, -{"geonameId":"4360314","name":"Langley Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18755,"modificationDate":"2011-05-14"}, -{"geonameId":"155334","name":"Magole","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18753,"modificationDate":"2016-07-26"}, -{"geonameId":"1685349","name":"Sumag","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":18752,"modificationDate":"2018-12-12"}, -{"geonameId":"5771960","name":"Brigham City","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":18752,"modificationDate":"2017-03-09"}, -{"geonameId":"2881889","name":"Lahnstein","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18749,"modificationDate":"2015-09-04"}, -{"geonameId":"2657782","name":"Aberystwyth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18749,"modificationDate":"2020-06-14"}, -{"geonameId":"2851079","name":"Radeberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18747,"modificationDate":"2015-09-05"}, -{"geonameId":"2821807","name":"Torgau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18746,"modificationDate":"2019-09-05"}, -{"geonameId":"470338","name":"Vyselki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18746,"modificationDate":"2013-05-07"}, -{"geonameId":"2640861","name":"Oswestry","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18743,"modificationDate":"2017-06-12"}, -{"geonameId":"1262824","name":"Mon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18742,"modificationDate":"2014-10-14"}, -{"geonameId":"1278742","name":"Amod","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18742,"modificationDate":"2014-10-13"}, -{"geonameId":"4226348","name":"Thomasville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18742,"modificationDate":"2017-06-07"}, -{"geonameId":"2755272","name":"Groesbeek","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":18741,"modificationDate":"2017-10-17"}, -{"geonameId":"3078833","name":"Braník","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":18740,"modificationDate":"2018-09-13"}, -{"geonameId":"3675605","name":"Málaga","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":18739,"modificationDate":"2018-09-05"}, -{"geonameId":"1258501","name":"Rangāpāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18739,"modificationDate":"2014-10-13"}, -{"geonameId":"1276765","name":"Basi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18739,"modificationDate":"2015-08-07"}, -{"geonameId":"1261998","name":"Nanauta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18738,"modificationDate":"2015-04-08"}, -{"geonameId":"153352","name":"Mlowo","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18737,"modificationDate":"2018-09-09"}, -{"geonameId":"3025715","name":"Chaville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18735,"modificationDate":"2016-02-18"}, -{"geonameId":"2936974","name":"Dillingen an der Donau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18734,"modificationDate":"2014-01-09"}, -{"geonameId":"4805404","name":"Fairmont","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18733,"modificationDate":"2017-03-09"}, -{"geonameId":"4061234","name":"Fairhope","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18730,"modificationDate":"2017-03-09"}, -{"geonameId":"1180133","name":"Dhanot","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":18729,"modificationDate":"2019-12-11"}, -{"geonameId":"1274359","name":"Chhāpar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18727,"modificationDate":"2014-10-14"}, -{"geonameId":"1717051","name":"Compostela","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":18727,"modificationDate":"2017-12-13"}, -{"geonameId":"283621","name":"Idnah","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18727,"modificationDate":"2020-06-10"}, -{"geonameId":"2953400","name":"Bad Münder am Deister","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18726,"modificationDate":"2015-09-05"}, -{"geonameId":"149155","name":"Usa River","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18726,"modificationDate":"2016-07-26"}, -{"geonameId":"2990616","name":"Neuilly-Plaisance","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18725,"modificationDate":"2016-02-18"}, -{"geonameId":"1162589","name":"Warah","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":18724,"modificationDate":"2019-12-06"}, -{"geonameId":"3031709","name":"Bonneuil-sur-Marne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18723,"modificationDate":"2016-02-18"}, -{"geonameId":"1863953","name":"Fukura","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":18721,"modificationDate":"2017-04-09"}, -{"geonameId":"1689099","name":"San Marcelino","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":18721,"modificationDate":"2017-12-13"}, -{"geonameId":"7258671","name":"Greater Upper Marlboro","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18720,"modificationDate":"2017-12-13"}, -{"geonameId":"5795011","name":"Frederickson","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18719,"modificationDate":"2011-05-14"}, -{"geonameId":"2841386","name":"Sarstedt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18718,"modificationDate":"2015-09-05"}, -{"geonameId":"717771","name":"Mátészalka","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":18718,"modificationDate":"2014-11-05"}, -{"geonameId":"3524391","name":"Lerdo de Tejada","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18715,"modificationDate":"2018-11-03"}, -{"geonameId":"3047967","name":"Mohács","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":18711,"modificationDate":"2019-09-05"}, -{"geonameId":"2835382","name":"Schwalbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18708,"modificationDate":"2011-07-31"}, -{"geonameId":"1607793","name":"Phan Thong","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":18708,"modificationDate":"2012-01-16"}, -{"geonameId":"3395077","name":"Matriz de Camaragibe","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18705,"modificationDate":"2012-08-03"}, -{"geonameId":"3591512","name":"Patzún","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":18704,"modificationDate":"2019-01-09"}, -{"geonameId":"3527542","name":"Comalapa","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18704,"modificationDate":"2017-06-06"}, -{"geonameId":"2639926","name":"Prestatyn","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18701,"modificationDate":"2011-03-03"}, -{"geonameId":"3665934","name":"Villanueva","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":18699,"modificationDate":"2018-07-04"}, -{"geonameId":"2953522","name":"Bad Dürkheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18698,"modificationDate":"2015-09-05"}, -{"geonameId":"2698729","name":"Kungsbacka","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":18698,"modificationDate":"2011-12-20"}, -{"geonameId":"695965","name":"Pyatykhatky","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18698,"modificationDate":"2020-05-23"}, -{"geonameId":"2646542","name":"Horwich","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18696,"modificationDate":"2011-03-03"}, -{"geonameId":"3184935","name":"Lyesh","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":18695,"modificationDate":"2020-06-11"}, -{"geonameId":"2748591","name":"Pijnacker","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":18695,"modificationDate":"2017-10-17"}, -{"geonameId":"5099738","name":"Iselin","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18695,"modificationDate":"2017-06-18"}, -{"geonameId":"1825093","name":"Samraong","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":18694,"modificationDate":"2018-07-04"}, -{"geonameId":"4225309","name":"Suwanee","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18694,"modificationDate":"2017-03-09"}, -{"geonameId":"4528291","name":"Whitehall","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18694,"modificationDate":"2017-05-23"}, -{"geonameId":"5927969","name":"Corner Brook","countryName":"Canada","timeZoneName":"America/St_Johns","timeZoneOffsetNameWithoutDst":"Newfoundland Time","population":18693,"modificationDate":"2013-08-10"}, -{"geonameId":"2641319","name":"Lancing","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18692,"modificationDate":"2018-07-03"}, -{"geonameId":"298088","name":"Varto","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":18691,"modificationDate":"2015-06-08"}, -{"geonameId":"5103580","name":"Rutherford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18690,"modificationDate":"2017-05-23"}, -{"geonameId":"3468899","name":"Brotas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18689,"modificationDate":"2012-08-03"}, -{"geonameId":"5122413","name":"Islip","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18689,"modificationDate":"2017-05-23"}, -{"geonameId":"3103096","name":"Bogatynia","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18688,"modificationDate":"2015-09-03"}, -{"geonameId":"1270509","name":"Haldaur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18686,"modificationDate":"2015-08-07"}, -{"geonameId":"3670874","name":"Repelón","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":18685,"modificationDate":"2018-07-04"}, -{"geonameId":"4018320","name":"Arcelia","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18685,"modificationDate":"2018-11-03"}, -{"geonameId":"554199","name":"Kalininsk","countryName":"Russia","timeZoneName":"Europe/Saratov","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":18685,"modificationDate":"2019-09-05"}, -{"geonameId":"1348562","name":"Srirāmpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18682,"modificationDate":"2014-10-14"}, -{"geonameId":"3172718","name":"Montevarchi","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18682,"modificationDate":"2014-04-13"}, -{"geonameId":"3173124","name":"Monselice","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18682,"modificationDate":"2016-04-25"}, -{"geonameId":"2974188","name":"Sorgues","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18681,"modificationDate":"2016-02-18"}, -{"geonameId":"755889","name":"Wieliczka","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18677,"modificationDate":"2010-09-16"}, -{"geonameId":"767814","name":"Kozienice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18677,"modificationDate":"2019-02-16"}, -{"geonameId":"728317","name":"Peshtera","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18676,"modificationDate":"2018-01-10"}, -{"geonameId":"4512060","name":"Forest Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18676,"modificationDate":"2017-05-23"}, -{"geonameId":"12156884","name":"O'Connor-Parkview","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18675,"modificationDate":"2020-05-02"}, -{"geonameId":"2892051","name":"Kaulsdorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18675,"modificationDate":"2017-09-19"}, -{"geonameId":"294605","name":"Kafr Qari","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":18675,"modificationDate":"2020-06-10"}, -{"geonameId":"3495857","name":"Neiba","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":18670,"modificationDate":"2016-06-05"}, -{"geonameId":"4373238","name":"Westminster","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18670,"modificationDate":"2017-03-09"}, -{"geonameId":"736357","name":"Édessa","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18669,"modificationDate":"2014-03-08"}, -{"geonameId":"1263826","name":"Māndvi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18669,"modificationDate":"2019-02-21"}, -{"geonameId":"1870434","name":"Sinmak","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":18669,"modificationDate":"2016-12-03"}, -{"geonameId":"3091969","name":"Międzyrzecz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18669,"modificationDate":"2019-09-05"}, -{"geonameId":"2970148","name":"Vence","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18668,"modificationDate":"2016-02-18"}, -{"geonameId":"1689087","name":"San Mariano","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":18668,"modificationDate":"2017-12-13"}, -{"geonameId":"1723481","name":"Buenavista","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":18668,"modificationDate":"2017-12-13"}, -{"geonameId":"1252608","name":"Tsirang","countryName":"Bhutan","timeZoneName":"Asia/Thimphu","timeZoneOffsetNameWithoutDst":"Bhutan Time","population":18667,"modificationDate":"2013-08-02"}, -{"geonameId":"6087579","name":"New Glasgow","countryName":"Canada","timeZoneName":"America/Halifax","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":18665,"modificationDate":"2019-08-08"}, -{"geonameId":"1253512","name":"Vallabhipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18663,"modificationDate":"2020-06-10"}, -{"geonameId":"6534267","name":"Casavatore","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18663,"modificationDate":"2014-01-16"}, -{"geonameId":"147105","name":"Shushi","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":18662,"modificationDate":"2015-09-17"}, -{"geonameId":"147425","name":"Poselok Tresta","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":18661,"modificationDate":"2020-06-10"}, -{"geonameId":"11919779","name":"Saint-Barthélémy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18655,"modificationDate":"2018-08-22"}, -{"geonameId":"3591060","name":"Puerto San José","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":18655,"modificationDate":"2013-06-22"}, -{"geonameId":"4893037","name":"Frankfort","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18653,"modificationDate":"2017-05-23"}, -{"geonameId":"3453478","name":"Pitanga","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18652,"modificationDate":"2012-08-03"}, -{"geonameId":"3514518","name":"Xico","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18652,"modificationDate":"2018-11-03"}, -{"geonameId":"5164582","name":"Niles","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18651,"modificationDate":"2017-05-23"}, -{"geonameId":"712930","name":"Balaklava","countryName":"Ukraine","timeZoneName":"Europe/Simferopol","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18649,"modificationDate":"2017-03-28"}, -{"geonameId":"3590529","name":"Itzapa","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":18647,"modificationDate":"2020-06-10"}, -{"geonameId":"571557","name":"Bronnitsy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18645,"modificationDate":"2019-09-05"}, -{"geonameId":"683034","name":"Calafat","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18643,"modificationDate":"2019-03-01"}, -{"geonameId":"4018831","name":"Aldama","countryName":"Mexico","timeZoneName":"America/Chihuahua","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":18642,"modificationDate":"2018-11-03"}, -{"geonameId":"898188","name":"Siavonga","countryName":"Zambia","timeZoneName":"Africa/Lusaka","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":18638,"modificationDate":"2012-01-17"}, -{"geonameId":"487147","name":"Stroitel’","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18636,"modificationDate":"2012-01-17"}, -{"geonameId":"1066831","name":"Beroroha","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18632,"modificationDate":"2018-09-10"}, -{"geonameId":"3455425","name":"Palmeira","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18630,"modificationDate":"2012-08-03"}, -{"geonameId":"3127007","name":"Calella","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18627,"modificationDate":"2015-06-16"}, -{"geonameId":"3939386","name":"Huanta","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":18627,"modificationDate":"2012-07-19"}, -{"geonameId":"1148106","name":"Ārt Khwājah","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":18623,"modificationDate":"2018-02-17"}, -{"geonameId":"3207197","name":"Vellmar","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18623,"modificationDate":"2015-09-05"}, -{"geonameId":"1257503","name":"Samrāla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18623,"modificationDate":"2015-08-07"}, -{"geonameId":"5261969","name":"Marshfield","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18620,"modificationDate":"2017-05-23"}, -{"geonameId":"3002647","name":"Le Plessis-Trévise","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18618,"modificationDate":"2019-03-26"}, -{"geonameId":"2119932","name":"Vanino","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":18618,"modificationDate":"2014-06-27"}, -{"geonameId":"2639588","name":"Rawmarsh","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18616,"modificationDate":"2011-03-03"}, -{"geonameId":"12156821","name":"North St.James Town","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18615,"modificationDate":"2020-05-02"}, -{"geonameId":"3456240","name":"Nossa Senhora da Glória","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18612,"modificationDate":"2012-08-03"}, -{"geonameId":"2650309","name":"Eastwood","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18612,"modificationDate":"2018-07-03"}, -{"geonameId":"5931800","name":"Cranbrook","countryName":"Canada","timeZoneName":"America/Edmonton","timeZoneOffsetNameWithoutDst":"Mountain Time","population":18610,"modificationDate":"2019-02-26"}, -{"geonameId":"4770714","name":"Lorton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18610,"modificationDate":"2011-05-14"}, -{"geonameId":"3461151","name":"Ipameri","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18607,"modificationDate":"2012-08-03"}, -{"geonameId":"770966","name":"Hrubieszów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18605,"modificationDate":"2019-09-05"}, -{"geonameId":"2208330","name":"Whakatane","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":18602,"modificationDate":"2012-02-13"}, -{"geonameId":"1490281","name":"Talitsa","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":18602,"modificationDate":"2019-09-05"}, -{"geonameId":"2924915","name":"Freudenberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18601,"modificationDate":"2015-09-04"}, -{"geonameId":"583983","name":"Agryz","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18601,"modificationDate":"2019-09-05"}, -{"geonameId":"613762","name":"Kobuleti","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":18600,"modificationDate":"2019-12-03"}, -{"geonameId":"230299","name":"Kyenjojo","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18600,"modificationDate":"2016-06-22"}, -{"geonameId":"6111704","name":"Port Colborne","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18599,"modificationDate":"2010-09-22"}, -{"geonameId":"1266862","name":"Kharupatia Ghat","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18599,"modificationDate":"2020-06-10"}, -{"geonameId":"1609795","name":"Khon Buri","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":18596,"modificationDate":"2012-01-16"}, -{"geonameId":"3034911","name":"Bar-le-Duc","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18595,"modificationDate":"2018-02-06"}, -{"geonameId":"1528512","name":"Cholpon-Ata","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":18595,"modificationDate":"2015-06-07"}, -{"geonameId":"151929","name":"Nangwa","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18595,"modificationDate":"2016-07-26"}, -{"geonameId":"11951298","name":"Sachsenheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18594,"modificationDate":"2018-09-12"}, -{"geonameId":"3145580","name":"Molde","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":18594,"modificationDate":"2019-12-12"}, -{"geonameId":"562161","name":"Galich","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18594,"modificationDate":"2019-09-05"}, -{"geonameId":"5101427","name":"Morristown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18594,"modificationDate":"2017-05-23"}, -{"geonameId":"2715946","name":"Eslöv","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":18592,"modificationDate":"2017-03-18"}, -{"geonameId":"3448533","name":"São Marcos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18591,"modificationDate":"2012-08-03"}, -{"geonameId":"1276764","name":"Basi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18591,"modificationDate":"2015-09-06"}, -{"geonameId":"2520833","name":"Bormujos","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18590,"modificationDate":"2012-03-04"}, -{"geonameId":"2974655","name":"Seynod","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18590,"modificationDate":"2017-05-29"}, -{"geonameId":"3723841","name":"Hinche","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18590,"modificationDate":"2016-01-30"}, -{"geonameId":"8347871","name":"Cherrybrook","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":18588,"modificationDate":"2019-07-18"}, -{"geonameId":"12156835","name":"Eringate-Centennial-West Deane","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18588,"modificationDate":"2020-05-02"}, -{"geonameId":"3083878","name":"Szamotuły","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18588,"modificationDate":"2019-09-05"}, -{"geonameId":"6354897","name":"Rivière-du-Loup","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18586,"modificationDate":"2019-02-26"}, -{"geonameId":"2519477","name":"Chipiona","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18583,"modificationDate":"2012-03-04"}, -{"geonameId":"2143285","name":"Wodonga","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":18582,"modificationDate":"2019-07-18"}, -{"geonameId":"1688949","name":"San Miguel","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":18582,"modificationDate":"2017-12-13"}, -{"geonameId":"721592","name":"Csongrád","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":18580,"modificationDate":"2015-07-14"}, -{"geonameId":"8128721","name":"Peacehaven","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18579,"modificationDate":"2017-06-12"}, -{"geonameId":"3093902","name":"Łask","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18577,"modificationDate":"2010-10-15"}, -{"geonameId":"3591851","name":"Palencia","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":18574,"modificationDate":"2019-04-10"}, -{"geonameId":"2263523","name":"Santa Iria da Azóia","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":18573,"modificationDate":"2018-05-16"}, -{"geonameId":"311314","name":"Karahisar","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":18572,"modificationDate":"2020-06-10"}, -{"geonameId":"3446880","name":"Tapes","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18570,"modificationDate":"2012-08-03"}, -{"geonameId":"4427569","name":"Gautier","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18570,"modificationDate":"2017-03-09"}, -{"geonameId":"1610185","name":"Kaset Wisai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":18569,"modificationDate":"2012-01-16"}, -{"geonameId":"4885342","name":"Bourbonnais","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18569,"modificationDate":"2017-05-23"}, -{"geonameId":"4894061","name":"Goodings Grove","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18569,"modificationDate":"2017-05-23"}, -{"geonameId":"9972578","name":"Sunshine West","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":18568,"modificationDate":"2019-07-18"}, -{"geonameId":"1490085","name":"Tarko-Sale","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":18568,"modificationDate":"2019-09-05"}, -{"geonameId":"5939219","name":"Dieppe","countryName":"Canada","timeZoneName":"America/Moncton","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":18565,"modificationDate":"2010-09-22"}, -{"geonameId":"2836203","name":"Schramberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18565,"modificationDate":"2013-02-15"}, -{"geonameId":"3659599","name":"Catamayo","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":18565,"modificationDate":"2017-02-07"}, -{"geonameId":"2634340","name":"West Molesey","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18565,"modificationDate":"2012-04-12"}, -{"geonameId":"2650376","name":"East Molesey","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18565,"modificationDate":"2012-04-12"}, -{"geonameId":"3175458","name":"Ischia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18564,"modificationDate":"2014-07-16"}, -{"geonameId":"2993679","name":"Mitry-Mory","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18562,"modificationDate":"2016-02-18"}, -{"geonameId":"3028486","name":"Carvin","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18561,"modificationDate":"2016-02-18"}, -{"geonameId":"1272177","name":"Durgāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18561,"modificationDate":"2015-08-07"}, -{"geonameId":"2998311","name":"Limay","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18559,"modificationDate":"2016-02-18"}, -{"geonameId":"2699282","name":"Kristinehamn","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":18557,"modificationDate":"2017-03-18"}, -{"geonameId":"2523902","name":"Palmi","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18556,"modificationDate":"2015-07-18"}, -{"geonameId":"3678674","name":"La Jagua de Ibirico","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":18555,"modificationDate":"2018-07-04"}, -{"geonameId":"1261835","name":"Nāravārikuppam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18555,"modificationDate":"2014-10-14"}, -{"geonameId":"1488933","name":"Turinsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":18555,"modificationDate":"2019-09-05"}, -{"geonameId":"2954695","name":"Aue","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18554,"modificationDate":"2019-03-07"}, -{"geonameId":"2756619","name":"Driebergen-Rijsenburg","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":18553,"modificationDate":"2017-10-17"}, -{"geonameId":"3490165","name":"Half Way Tree","countryName":"Jamaica","timeZoneName":"America/Jamaica","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18552,"modificationDate":"2017-03-14"}, -{"geonameId":"2471475","name":"Douar Tindja","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":18551,"modificationDate":"2015-09-06"}, -{"geonameId":"477301","name":"Valday","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18549,"modificationDate":"2019-09-04"}, -{"geonameId":"578931","name":"Barysh","countryName":"Russia","timeZoneName":"Europe/Ulyanovsk","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":18547,"modificationDate":"2019-09-05"}, -{"geonameId":"4900817","name":"Macomb","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18547,"modificationDate":"2017-05-23"}, -{"geonameId":"1259818","name":"Phalauda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18545,"modificationDate":"2015-09-06"}, -{"geonameId":"161901","name":"Kaka","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":18545,"modificationDate":"2014-03-06"}, -{"geonameId":"1275804","name":"Bhoom","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18543,"modificationDate":"2020-06-10"}, -{"geonameId":"1690019","name":"San Francisco","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":18542,"modificationDate":"2017-12-13"}, -{"geonameId":"3455342","name":"Palmital","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18539,"modificationDate":"2012-08-03"}, -{"geonameId":"488852","name":"Starodub","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18539,"modificationDate":"2019-09-05"}, -{"geonameId":"1172513","name":"Lachi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":18537,"modificationDate":"2019-12-06"}, -{"geonameId":"3009443","name":"La Flèche","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18536,"modificationDate":"2016-02-18"}, -{"geonameId":"3179415","name":"Castiglione delle Stiviere","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18530,"modificationDate":"2014-04-13"}, -{"geonameId":"12129128","name":"Reni","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18530,"modificationDate":"2020-03-06"}, -{"geonameId":"159951","name":"Galappo","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18528,"modificationDate":"2016-07-26"}, -{"geonameId":"2518924","name":"Daimiel","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18527,"modificationDate":"2012-03-04"}, -{"geonameId":"2795398","name":"Hoogstraten","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":18524,"modificationDate":"2012-01-18"}, -{"geonameId":"2834978","name":"Schwarzenberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18523,"modificationDate":"2015-09-05"}, -{"geonameId":"5102796","name":"Point Pleasant","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18523,"modificationDate":"2017-05-23"}, -{"geonameId":"3167978","name":"San Mauro Torinese","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18521,"modificationDate":"2014-04-13"}, -{"geonameId":"4673353","name":"Bellaire","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18518,"modificationDate":"2017-03-09"}, -{"geonameId":"2511447","name":"San Bartolomé","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":18517,"modificationDate":"2012-03-04"}, -{"geonameId":"4535783","name":"El Reno","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18516,"modificationDate":"2017-03-09"}, -{"geonameId":"2637330","name":"Southsea","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18514,"modificationDate":"2012-03-29"}, -{"geonameId":"165929","name":"Katana","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18511,"modificationDate":"2020-06-10"}, -{"geonameId":"712886","name":"Balta","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18511,"modificationDate":"2020-03-31"}, -{"geonameId":"5336667","name":"Chowchilla","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18510,"modificationDate":"2017-03-09"}, -{"geonameId":"5371858","name":"Mead Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18510,"modificationDate":"2011-05-14"}, -{"geonameId":"3983820","name":"Santa Rosa Jauregui","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18508,"modificationDate":"2018-11-03"}, -{"geonameId":"2744344","name":"Winschoten","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":18506,"modificationDate":"2017-10-17"}, -{"geonameId":"1152919","name":"Khao Yoi","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":18506,"modificationDate":"2012-01-16"}, -{"geonameId":"2873291","name":"Marktoberdorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18505,"modificationDate":"2014-01-16"}, -{"geonameId":"6545105","name":"La Bordeta","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18505,"modificationDate":"2017-05-26"}, -{"geonameId":"2634801","name":"Wantage","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18505,"modificationDate":"2018-07-03"}, -{"geonameId":"2096742","name":"Goroka","countryName":"Papua New Guinea","timeZoneName":"Pacific/Port_Moresby","timeZoneOffsetNameWithoutDst":"Papua New Guinea Time","population":18503,"modificationDate":"2019-07-10"}, -{"geonameId":"682321","name":"Cernavodă","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18502,"modificationDate":"2014-10-04"}, -{"geonameId":"2986933","name":"Plaisance-du-Touch","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18501,"modificationDate":"2020-05-07"}, -{"geonameId":"4358821","name":"Hyattsville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18501,"modificationDate":"2017-03-09"}, -{"geonameId":"8299620","name":"Isle of Lewis","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18500,"modificationDate":"2014-03-08"}, -{"geonameId":"294981","name":"Giv'at Shmuel","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":18500,"modificationDate":"2017-07-02"}, -{"geonameId":"1491999","name":"Shumikha","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":18499,"modificationDate":"2019-09-05"}, -{"geonameId":"1266710","name":"Khirkiya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18498,"modificationDate":"2020-06-10"}, -{"geonameId":"2791424","name":"Meise","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":18497,"modificationDate":"2011-02-03"}, -{"geonameId":"3466750","name":"Cassilândia","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":18497,"modificationDate":"2017-02-13"}, -{"geonameId":"285603","name":"Janūb as Surrah","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":18496,"modificationDate":"2015-01-04"}, -{"geonameId":"1258592","name":"Rāmpura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18495,"modificationDate":"2016-03-10"}, -{"geonameId":"2435124","name":"Bitkine","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":18495,"modificationDate":"2012-01-18"}, -{"geonameId":"4563308","name":"Cayey","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":18494,"modificationDate":"2015-08-03"}, -{"geonameId":"5730183","name":"Happy Valley","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18493,"modificationDate":"2017-03-09"}, -{"geonameId":"2788499","name":"Quaregnon","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":18491,"modificationDate":"2009-01-17"}, -{"geonameId":"3450225","name":"Santa Gertrudes","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18490,"modificationDate":"2012-08-03"}, -{"geonameId":"3457595","name":"Martinópolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18488,"modificationDate":"2012-08-03"}, -{"geonameId":"2896538","name":"Illingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18488,"modificationDate":"2015-09-05"}, -{"geonameId":"2112354","name":"Karasuyama","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":18488,"modificationDate":"2017-04-09"}, -{"geonameId":"2839050","name":"Schkeuditz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18487,"modificationDate":"2015-09-05"}, -{"geonameId":"2015051","name":"Trudovoye","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":18484,"modificationDate":"2012-10-06"}, -{"geonameId":"3010237","name":"La Chapelle-sur-Erdre","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18481,"modificationDate":"2016-02-18"}, -{"geonameId":"288902","name":"Badiya","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":18479,"modificationDate":"2020-06-10"}, -{"geonameId":"1221259","name":"Kolkhozobod","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":18476,"modificationDate":"2012-02-28"}, -{"geonameId":"3117636","name":"Malgrat de Mar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18472,"modificationDate":"2012-03-04"}, -{"geonameId":"1863398","name":"Haibara-akanedai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":18472,"modificationDate":"2017-04-09"}, -{"geonameId":"4957003","name":"Augusta","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18471,"modificationDate":"2019-09-05"}, -{"geonameId":"3470117","name":"Belo Oriente","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18470,"modificationDate":"2012-08-03"}, -{"geonameId":"2906530","name":"Hemmingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18470,"modificationDate":"2015-09-04"}, -{"geonameId":"3035667","name":"Avion","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18470,"modificationDate":"2016-02-18"}, -{"geonameId":"3460267","name":"Jacutinga","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18469,"modificationDate":"2012-08-03"}, -{"geonameId":"2869994","name":"Moelln","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18469,"modificationDate":"2020-06-10"}, -{"geonameId":"709960","name":"Dniprorudne","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18468,"modificationDate":"2020-05-23"}, -{"geonameId":"5265702","name":"Onalaska","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18468,"modificationDate":"2017-05-23"}, -{"geonameId":"876177","name":"Luau","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":18465,"modificationDate":"2012-01-17"}, -{"geonameId":"2815559","name":"Wadgassen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18464,"modificationDate":"2011-04-25"}, -{"geonameId":"3110101","name":"Sant Quirze del Vallès","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18462,"modificationDate":"2012-03-04"}, -{"geonameId":"4908236","name":"Round Lake","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18461,"modificationDate":"2017-05-23"}, -{"geonameId":"3437954","name":"Itá","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":18459,"modificationDate":"2018-04-09"}, -{"geonameId":"1150154","name":"Thoen","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":18459,"modificationDate":"2012-01-16"}, -{"geonameId":"4734005","name":"Stafford","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18459,"modificationDate":"2017-03-09"}, -{"geonameId":"1260938","name":"Padampur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18454,"modificationDate":"2014-10-14"}, -{"geonameId":"2635243","name":"Uckfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18452,"modificationDate":"2018-07-03"}, -{"geonameId":"2736930","name":"Ovar","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":18452,"modificationDate":"2018-04-30"}, -{"geonameId":"1692199","name":"Quezon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":18451,"modificationDate":"2017-12-13"}, -{"geonameId":"4917298","name":"Yorkville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18451,"modificationDate":"2017-05-23"}, -{"geonameId":"2640351","name":"Peterhead","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18450,"modificationDate":"2019-09-29"}, -{"geonameId":"4313697","name":"Winchester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18446,"modificationDate":"2017-03-09"}, -{"geonameId":"5779036","name":"North Ogden","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":18446,"modificationDate":"2017-03-09"}, -{"geonameId":"3164582","name":"Ventimiglia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18442,"modificationDate":"2014-01-11"}, -{"geonameId":"2383523","name":"Paoua","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":18441,"modificationDate":"2016-06-22"}, -{"geonameId":"4884509","name":"Bensenville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18440,"modificationDate":"2017-05-23"}, -{"geonameId":"3089965","name":"Orzesze","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18438,"modificationDate":"2011-07-31"}, -{"geonameId":"1184075","name":"Baddomalhi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":18435,"modificationDate":"2019-12-06"}, -{"geonameId":"1262013","name":"Nāmrup","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18432,"modificationDate":"2014-10-13"}, -{"geonameId":"2021066","name":"Kyakhta","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":18431,"modificationDate":"2012-09-05"}, -{"geonameId":"152663","name":"Mugumu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18431,"modificationDate":"2019-02-21"}, -{"geonameId":"158179","name":"Katerero","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18430,"modificationDate":"2016-07-26"}, -{"geonameId":"569639","name":"Chegem","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18429,"modificationDate":"2019-10-16"}, -{"geonameId":"3461620","name":"Ibiá","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18428,"modificationDate":"2012-08-03"}, -{"geonameId":"151266","name":"Nyakabindi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18428,"modificationDate":"2016-07-26"}, -{"geonameId":"2926716","name":"Finnentrop","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18427,"modificationDate":"2019-04-08"}, -{"geonameId":"2707684","name":"Härnösand","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":18426,"modificationDate":"2018-10-23"}, -{"geonameId":"1278969","name":"Along","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18425,"modificationDate":"2014-10-14"}, -{"geonameId":"3458746","name":"Laranjeiras do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18424,"modificationDate":"2012-08-03"}, -{"geonameId":"2376719","name":"Sélibaby","countryName":"Mauritania","timeZoneName":"Africa/Nouakchott","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18424,"modificationDate":"2017-06-08"}, -{"geonameId":"3393091","name":"Paraipaba","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18423,"modificationDate":"2012-08-03"}, -{"geonameId":"3037514","name":"Annonay","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18423,"modificationDate":"2019-04-10"}, -{"geonameId":"2821515","name":"Traunstein","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18422,"modificationDate":"2014-01-18"}, -{"geonameId":"2644849","name":"Larne","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18421,"modificationDate":"2016-12-04"}, -{"geonameId":"2523998","name":"Noto","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18421,"modificationDate":"2014-04-13"}, -{"geonameId":"1517501","name":"Turar Ryskulov","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":18421,"modificationDate":"2017-12-06"}, -{"geonameId":"2754073","name":"Hillegom","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":18419,"modificationDate":"2017-10-17"}, -{"geonameId":"3449711","name":"Santo Amaro da Imperatriz","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18418,"modificationDate":"2012-08-03"}, -{"geonameId":"4691833","name":"Forney","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18418,"modificationDate":"2017-03-09"}, -{"geonameId":"2345152","name":"Darazo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":18415,"modificationDate":"2016-06-22"}, -{"geonameId":"2504739","name":"Beni Amrane","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":18414,"modificationDate":"2012-01-19"}, -{"geonameId":"757809","name":"Sulejówek","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18414,"modificationDate":"2010-10-17"}, -{"geonameId":"1860335","name":"Kamokata","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":18412,"modificationDate":"2020-06-11"}, -{"geonameId":"522301","name":"Nezlobnaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18412,"modificationDate":"2012-01-17"}, -{"geonameId":"5127315","name":"Monsey","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18412,"modificationDate":"2017-05-23"}, -{"geonameId":"3428359","name":"Santa Elena","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":18410,"modificationDate":"2018-11-30"}, -{"geonameId":"4291620","name":"Fern Creek","countryName":"United States","timeZoneName":"America/Kentucky/Louisville","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18409,"modificationDate":"2006-01-17"}, -{"geonameId":"8348081","name":"Ballajura","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":18408,"modificationDate":"2019-07-18"}, -{"geonameId":"3557332","name":"Guisa","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":18408,"modificationDate":"2016-01-07"}, -{"geonameId":"9511750","name":"San Jose de los Olvera","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18406,"modificationDate":"2018-11-03"}, -{"geonameId":"12070061","name":"San Ferdinando","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18404,"modificationDate":"2019-07-22"}, -{"geonameId":"3537845","name":"Santa Cruz del Norte","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":18402,"modificationDate":"2015-12-06"}, -{"geonameId":"1257482","name":"Sanaur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18401,"modificationDate":"2015-08-07"}, -{"geonameId":"2884245","name":"Kreuzau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18400,"modificationDate":"2013-04-22"}, -{"geonameId":"2306119","name":"Aburi","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18399,"modificationDate":"2019-12-06"}, -{"geonameId":"531820","name":"Malakhovka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18399,"modificationDate":"2012-01-17"}, -{"geonameId":"1608136","name":"Non Sung","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":18399,"modificationDate":"2013-01-09"}, -{"geonameId":"4341378","name":"Shenandoah","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18399,"modificationDate":"2011-05-14"}, -{"geonameId":"2525498","name":"Bronte","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18397,"modificationDate":"2014-04-13"}, -{"geonameId":"3080071","name":"Złotów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18395,"modificationDate":"2020-05-15"}, -{"geonameId":"683365","name":"Buhuşi","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18395,"modificationDate":"2012-06-12"}, -{"geonameId":"1257259","name":"Saraipali","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18394,"modificationDate":"2015-09-06"}, -{"geonameId":"1713027","name":"General Mamerto Natividad","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":18393,"modificationDate":"2017-12-13"}, -{"geonameId":"548622","name":"Kinel’-Cherkassy","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":18393,"modificationDate":"2019-08-31"}, -{"geonameId":"1269976","name":"Onore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18392,"modificationDate":"2020-06-10"}, -{"geonameId":"8348824","name":"Highton","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":18388,"modificationDate":"2019-07-18"}, -{"geonameId":"4109785","name":"El Dorado","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18386,"modificationDate":"2017-05-23"}, -{"geonameId":"3447562","name":"Simão Dias","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18385,"modificationDate":"2012-08-03"}, -{"geonameId":"1154677","name":"Ban Tak","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":18384,"modificationDate":"2012-01-16"}, -{"geonameId":"1253105","name":"Visavedar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18382,"modificationDate":"2020-06-10"}, -{"geonameId":"3180133","name":"Casamassima","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18380,"modificationDate":"2014-04-13"}, -{"geonameId":"5012521","name":"Trenton","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18380,"modificationDate":"2017-05-23"}, -{"geonameId":"2622306","name":"Farum","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":18376,"modificationDate":"2017-10-18"}, -{"geonameId":"250152","name":"Aydūn","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18376,"modificationDate":"2017-09-05"}, -{"geonameId":"3855244","name":"Gálvez","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":18374,"modificationDate":"2016-01-30"}, -{"geonameId":"2876755","name":"Lubij","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18374,"modificationDate":"2020-06-10"}, -{"geonameId":"3407194","name":"Areia Branca","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18372,"modificationDate":"2012-08-03"}, -{"geonameId":"1849706","name":"Tsukawaki","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":18371,"modificationDate":"2017-04-09"}, -{"geonameId":"314812","name":"Trajanopolis","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":18371,"modificationDate":"2020-06-10"}, -{"geonameId":"5146089","name":"Ashtabula","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18371,"modificationDate":"2017-08-17"}, -{"geonameId":"580218","name":"Avtury","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18370,"modificationDate":"2019-09-04"}, -{"geonameId":"3468902","name":"Brodósqui","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18366,"modificationDate":"2012-08-03"}, -{"geonameId":"4334720","name":"Natchitoches","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18365,"modificationDate":"2017-03-09"}, -{"geonameId":"2824841","name":"Sulzbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18364,"modificationDate":"2015-09-05"}, -{"geonameId":"2936253","name":"Donauwörth","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18364,"modificationDate":"2014-01-09"}, -{"geonameId":"3838506","name":"Rufino","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":18361,"modificationDate":"2016-01-30"}, -{"geonameId":"1260129","name":"Patharia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18358,"modificationDate":"2015-08-07"}, -{"geonameId":"3461576","name":"Ibirama","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18357,"modificationDate":"2017-06-13"}, -{"geonameId":"3102677","name":"Braniewo","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18356,"modificationDate":"2019-09-05"}, -{"geonameId":"2261639","name":"Vila Franca de Xira","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":18355,"modificationDate":"2014-04-06"}, -{"geonameId":"2699791","name":"Köping","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":18355,"modificationDate":"2017-03-18"}, -{"geonameId":"5249871","name":"Cudahy","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18353,"modificationDate":"2017-05-23"}, -{"geonameId":"2239001","name":"N'zeto","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":18352,"modificationDate":"2017-07-07"}, -{"geonameId":"3654055","name":"Montecristi","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":18351,"modificationDate":"2017-02-07"}, -{"geonameId":"2518040","name":"El Viso del Alcor","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18351,"modificationDate":"2012-01-19"}, -{"geonameId":"1271871","name":"Fort Gloster","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18350,"modificationDate":"2018-12-04"}, -{"geonameId":"3429403","name":"Saladas","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":18349,"modificationDate":"2016-03-10"}, -{"geonameId":"1852588","name":"Shibushi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":18349,"modificationDate":"2017-07-27"}, -{"geonameId":"1251459","name":"Ampara","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":18348,"modificationDate":"2018-12-17"}, -{"geonameId":"454768","name":"Tukums","countryName":"Latvia","timeZoneName":"Europe/Riga","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18348,"modificationDate":"2020-05-07"}, -{"geonameId":"2759915","name":"Alblasserdam","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":18348,"modificationDate":"2018-09-06"}, -{"geonameId":"3918937","name":"Cotoca","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":18347,"modificationDate":"2019-02-21"}, -{"geonameId":"5097315","name":"Dover","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18346,"modificationDate":"2017-05-23"}, -{"geonameId":"2207268","name":"Maroochydore","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":18342,"modificationDate":"2019-07-18"}, -{"geonameId":"4905006","name":"Ottawa","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18342,"modificationDate":"2017-05-23"}, -{"geonameId":"1254624","name":"Thāsra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18337,"modificationDate":"2014-10-13"}, -{"geonameId":"5394842","name":"Shafter","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18336,"modificationDate":"2017-03-09"}, -{"geonameId":"1864098","name":"Fujioka","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":18335,"modificationDate":"2017-04-09"}, -{"geonameId":"2110596","name":"Wakuya","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":18334,"modificationDate":"2017-04-09"}, -{"geonameId":"3515373","name":"Tlaquiltenango","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18334,"modificationDate":"2018-11-03"}, -{"geonameId":"1268545","name":"Kākori","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18332,"modificationDate":"2014-10-14"}, -{"geonameId":"2982944","name":"Ronchin","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18331,"modificationDate":"2016-02-18"}, -{"geonameId":"2643096","name":"Mansfield Woodhouse","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18330,"modificationDate":"2011-03-03"}, -{"geonameId":"3897557","name":"Cabrero","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":18327,"modificationDate":"2013-01-11"}, -{"geonameId":"3128885","name":"Banyoles","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18327,"modificationDate":"2012-03-04"}, -{"geonameId":"8012683","name":"Labrador","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":18326,"modificationDate":"2019-07-18"}, -{"geonameId":"1274394","name":"Chetput","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18326,"modificationDate":"2014-10-14"}, -{"geonameId":"379014","name":"El Qeteina","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":18321,"modificationDate":"2020-06-11"}, -{"geonameId":"2995121","name":"Mauguio","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18320,"modificationDate":"2020-06-10"}, -{"geonameId":"3204793","name":"Apatin","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":18320,"modificationDate":"2020-01-28"}, -{"geonameId":"1258658","name":"Rāmjībanpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18318,"modificationDate":"2014-10-14"}, -{"geonameId":"3466171","name":"Cícero Dantas","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18317,"modificationDate":"2012-08-03"}, -{"geonameId":"1283484","name":"Dārchulā","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":18317,"modificationDate":"2019-10-19"}, -{"geonameId":"3118228","name":"Laudio / Llodio","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18314,"modificationDate":"2020-03-18"}, -{"geonameId":"3025509","name":"Chennevières-sur-Marne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18314,"modificationDate":"2019-03-26"}, -{"geonameId":"1704758","name":"Maasin","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":18313,"modificationDate":"2017-12-13"}, -{"geonameId":"581179","name":"Ardon","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18313,"modificationDate":"2019-09-05"}, -{"geonameId":"4929004","name":"Amesbury","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18313,"modificationDate":"2017-05-23"}, -{"geonameId":"2647837","name":"Grove","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18312,"modificationDate":"2018-07-03"}, -{"geonameId":"8858109","name":"Parque Industrial Ciudad Mitras","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":18312,"modificationDate":"2014-04-11"}, -{"geonameId":"4893070","name":"Franklin Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18312,"modificationDate":"2017-05-23"}, -{"geonameId":"8480062","name":"Meadowbrook","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18312,"modificationDate":"2017-03-10"}, -{"geonameId":"4542367","name":"McAlester","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18310,"modificationDate":"2017-03-09"}, -{"geonameId":"4169455","name":"Punta Gorda Isles","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18306,"modificationDate":"2006-01-17"}, -{"geonameId":"926747","name":"Mchinji","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":18305,"modificationDate":"2011-11-08"}, -{"geonameId":"3711125","name":"El Chorrillo","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18302,"modificationDate":"2017-08-16"}, -{"geonameId":"2647679","name":"Hadleigh","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18300,"modificationDate":"2012-03-29"}, -{"geonameId":"505230","name":"Kyakisalmi","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18300,"modificationDate":"2020-06-10"}, -{"geonameId":"543731","name":"Kotel’niki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18300,"modificationDate":"2012-01-17"}, -{"geonameId":"1273756","name":"Daboh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18298,"modificationDate":"2014-10-14"}, -{"geonameId":"577901","name":"Beloozërskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18297,"modificationDate":"2019-05-08"}, -{"geonameId":"3859904","name":"Crespo","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":18296,"modificationDate":"2016-01-30"}, -{"geonameId":"3855554","name":"Firmat","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":18294,"modificationDate":"2016-01-30"}, -{"geonameId":"2877709","name":"Lilienthal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18293,"modificationDate":"2017-04-26"}, -{"geonameId":"2146793","name":"Thornbury","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":18292,"modificationDate":"2019-07-18"}, -{"geonameId":"4717232","name":"Palestine","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18288,"modificationDate":"2017-09-19"}, -{"geonameId":"2686162","name":"Oskarshamn","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":18287,"modificationDate":"2019-09-16"}, -{"geonameId":"2473420","name":"Ouardenine","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":18287,"modificationDate":"2018-08-05"}, -{"geonameId":"5438567","name":"Sherrelwood","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":18287,"modificationDate":"2011-05-14"}, -{"geonameId":"3035883","name":"Autun","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18283,"modificationDate":"2019-04-10"}, -{"geonameId":"3541446","name":"Sagua de Temamo","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":18282,"modificationDate":"2020-06-10"}, -{"geonameId":"2981492","name":"Saint-Avold","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18281,"modificationDate":"2020-05-17"}, -{"geonameId":"3446130","name":"Três de Maio","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18278,"modificationDate":"2012-08-03"}, -{"geonameId":"584596","name":"Zaqatala","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":18277,"modificationDate":"2017-07-19"}, -{"geonameId":"4382837","name":"Creve Coeur","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18276,"modificationDate":"2017-05-23"}, -{"geonameId":"3388868","name":"São Domingos do Maranhão","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18275,"modificationDate":"2012-08-03"}, -{"geonameId":"3094788","name":"Krapkowice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18275,"modificationDate":"2010-09-25"}, -{"geonameId":"246314","name":"Um el Semmaq","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18274,"modificationDate":"2020-06-10"}, -{"geonameId":"3523202","name":"Milpa Alta","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18274,"modificationDate":"2018-11-03"}, -{"geonameId":"4347839","name":"Ballenger Creek","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18274,"modificationDate":"2011-05-14"}, -{"geonameId":"4681485","name":"Cinco Ranch","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18274,"modificationDate":"2011-05-14"}, -{"geonameId":"2972270","name":"Tourlaville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18273,"modificationDate":"2016-12-10"}, -{"geonameId":"10958491","name":"Bni Bouayach","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":18271,"modificationDate":"2018-06-10"}, -{"geonameId":"2893437","name":"Kamenz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18270,"modificationDate":"2015-09-05"}, -{"geonameId":"2517750","name":"Felanitx","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18270,"modificationDate":"2011-07-31"}, -{"geonameId":"2853928","name":"Pfullingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18269,"modificationDate":"2013-02-15"}, -{"geonameId":"1252885","name":"Wer","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18268,"modificationDate":"2014-10-14"}, -{"geonameId":"766810","name":"Łańcut","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18266,"modificationDate":"2019-02-26"}, -{"geonameId":"1261721","name":"Nasrullahganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18265,"modificationDate":"2020-06-10"}, -{"geonameId":"3578599","name":"Pointe-à-Pitre","countryName":"Guadeloupe","timeZoneName":"America/Guadeloupe","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":18264,"modificationDate":"2019-02-26"}, -{"geonameId":"4066811","name":"Helena","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18264,"modificationDate":"2017-03-09"}, -{"geonameId":"3461935","name":"Guará","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18263,"modificationDate":"2012-08-03"}, -{"geonameId":"2941279","name":"Burghausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18263,"modificationDate":"2015-11-13"}, -{"geonameId":"3457192","name":"Miguelópolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18262,"modificationDate":"2012-08-03"}, -{"geonameId":"2643003","name":"Marlow","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18261,"modificationDate":"2018-07-03"}, -{"geonameId":"4946620","name":"Palmer","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18261,"modificationDate":"2017-05-23"}, -{"geonameId":"3471927","name":"Apiaí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18259,"modificationDate":"2012-08-03"}, -{"geonameId":"3110360","name":"San Martín de la Vega","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18256,"modificationDate":"2012-03-04"}, -{"geonameId":"3725276","name":"Fond Parisien","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18256,"modificationDate":"2017-04-07"}, -{"geonameId":"1266872","name":"Kharsia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18256,"modificationDate":"2015-09-06"}, -{"geonameId":"2865376","name":"Neufahrn bei Freising","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18255,"modificationDate":"2013-02-19"}, -{"geonameId":"2894755","name":"Johannisthal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18254,"modificationDate":"2017-09-19"}, -{"geonameId":"4147241","name":"Belle Glade","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18251,"modificationDate":"2017-03-09"}, -{"geonameId":"2977845","name":"Saint-Omer","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18250,"modificationDate":"2019-04-10"}, -{"geonameId":"2748178","name":"Rhoon","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":18250,"modificationDate":"2017-10-17"}, -{"geonameId":"2783081","name":"Zwijndrecht","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":18249,"modificationDate":"2011-02-07"}, -{"geonameId":"2883784","name":"Kronach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18248,"modificationDate":"2013-02-26"}, -{"geonameId":"1260156","name":"Pataudi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18248,"modificationDate":"2014-10-13"}, -{"geonameId":"7262761","name":"Makakilo","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":18248,"modificationDate":"2011-05-14"}, -{"geonameId":"8858110","name":"Mitras Poniente","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":18246,"modificationDate":"2014-04-11"}, -{"geonameId":"4759968","name":"Franconia","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18245,"modificationDate":"2013-08-17"}, -{"geonameId":"3050719","name":"Kalocsa","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":18242,"modificationDate":"2019-03-04"}, -{"geonameId":"2863716","name":"Nidda","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18241,"modificationDate":"2015-09-05"}, -{"geonameId":"2956710","name":"Alzey","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18241,"modificationDate":"2015-09-05"}, -{"geonameId":"2642999","name":"Marple","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18241,"modificationDate":"2017-06-12"}, -{"geonameId":"3983636","name":"Santiago Ixcuintla","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":18241,"modificationDate":"2018-11-03"}, -{"geonameId":"758626","name":"Sokołów Podlaski","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18241,"modificationDate":"2019-09-05"}, -{"geonameId":"79455","name":"Hazm","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":18241,"modificationDate":"2020-06-10"}, -{"geonameId":"1270627","name":"Gurmatkol","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18236,"modificationDate":"2020-06-10"}, -{"geonameId":"2790697","name":"Morlanwelz-Mariemont","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":18233,"modificationDate":"2012-01-18"}, -{"geonameId":"3458479","name":"Loanda","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18233,"modificationDate":"2012-08-03"}, -{"geonameId":"3515040","name":"Tulum","countryName":"Mexico","timeZoneName":"America/Cancun","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18233,"modificationDate":"2018-11-03"}, -{"geonameId":"5152833","name":"Eastlake","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18232,"modificationDate":"2017-05-23"}, -{"geonameId":"2256895","name":"Mossendjo","countryName":"Republic of the Congo","timeZoneName":"Africa/Brazzaville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":18231,"modificationDate":"2013-05-09"}, -{"geonameId":"3621440","name":"Siquirres","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":18231,"modificationDate":"2016-09-07"}, -{"geonameId":"2801858","name":"Blankenberge","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":18230,"modificationDate":"2018-04-04"}, -{"geonameId":"3037051","name":"Argentan","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18230,"modificationDate":"2019-04-10"}, -{"geonameId":"2562629","name":"Qormi","countryName":"Malta","timeZoneName":"Europe/Malta","timeZoneOffsetNameWithoutDst":"Central European Time","population":18230,"modificationDate":"2019-03-31"}, -{"geonameId":"2083537","name":"Wewak","countryName":"Papua New Guinea","timeZoneName":"Pacific/Port_Moresby","timeZoneOffsetNameWithoutDst":"Papua New Guinea Time","population":18230,"modificationDate":"2018-03-15"}, -{"geonameId":"4396915","name":"Manchester","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18229,"modificationDate":"2017-05-23"}, -{"geonameId":"5333282","name":"Cameron Park","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18228,"modificationDate":"2011-05-14"}, -{"geonameId":"3446979","name":"Tanabi","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18227,"modificationDate":"2012-08-03"}, -{"geonameId":"8858111","name":"Villa del Prado 2da Sección","countryName":"Mexico","timeZoneName":"America/Tijuana","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18226,"modificationDate":"2018-11-03"}, -{"geonameId":"6165719","name":"Thorold","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18224,"modificationDate":"2010-09-22"}, -{"geonameId":"3183587","name":"Abano Terme","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18224,"modificationDate":"2014-04-13"}, -{"geonameId":"1276600","name":"Behat","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18223,"modificationDate":"2015-09-06"}, -{"geonameId":"550671","name":"Kharabali","countryName":"Russia","timeZoneName":"Europe/Astrakhan","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":18223,"modificationDate":"2019-09-05"}, -{"geonameId":"3383714","name":"Lelydorp","countryName":"Suriname","timeZoneName":"America/Paramaribo","timeZoneOffsetNameWithoutDst":"Suriname Time","population":18223,"modificationDate":"2016-05-11"}, -{"geonameId":"1261375","name":"Nimāparha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18222,"modificationDate":"2014-10-14"}, -{"geonameId":"785345","name":"Studeničane","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":18219,"modificationDate":"2019-08-02"}, -{"geonameId":"5173048","name":"Steubenville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18219,"modificationDate":"2017-05-23"}, -{"geonameId":"3388435","name":"São José do Egito","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18218,"modificationDate":"2012-08-03"}, -{"geonameId":"784424","name":"Vinica","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":18218,"modificationDate":"2014-08-06"}, -{"geonameId":"2155787","name":"Narangba","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":18217,"modificationDate":"2019-07-18"}, -{"geonameId":"3532989","name":"Altepexi","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18217,"modificationDate":"2018-11-03"}, -{"geonameId":"4525304","name":"Springboro","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18213,"modificationDate":"2017-05-23"}, -{"geonameId":"3387204","name":"Soure","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18212,"modificationDate":"2012-08-03"}, -{"geonameId":"584126","name":"Afipskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18209,"modificationDate":"2013-04-03"}, -{"geonameId":"7257422","name":"Wallingford Center","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18209,"modificationDate":"2017-05-23"}, -{"geonameId":"6695247","name":"Chapel Allerton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18206,"modificationDate":"2008-07-24"}, -{"geonameId":"2873289","name":"Marktredwitz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18204,"modificationDate":"2013-02-19"}, -{"geonameId":"2521676","name":"Archena","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18202,"modificationDate":"2012-03-04"}, -{"geonameId":"3015902","name":"Givors","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18198,"modificationDate":"2019-06-05"}, -{"geonameId":"460570","name":"Cēsis","countryName":"Latvia","timeZoneName":"Europe/Riga","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18198,"modificationDate":"2016-12-02"}, -{"geonameId":"2510743","name":"Tavernes de la Valldigna","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18195,"modificationDate":"2015-05-30"}, -{"geonameId":"3175453","name":"Ischia Porto","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18192,"modificationDate":"2013-11-20"}, -{"geonameId":"2658011","name":"Wettingen","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":18191,"modificationDate":"2019-09-11"}, -{"geonameId":"1275066","name":"Burhar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18191,"modificationDate":"2014-10-14"}, -{"geonameId":"2523136","name":"Sestu","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18191,"modificationDate":"2014-04-13"}, -{"geonameId":"3179162","name":"Cento","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18191,"modificationDate":"2014-04-13"}, -{"geonameId":"3387663","name":"Sertânia","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18190,"modificationDate":"2012-08-03"}, -{"geonameId":"718739","name":"Kisvárda","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":18190,"modificationDate":"2019-05-04"}, -{"geonameId":"7258832","name":"Lanham-Seabrook","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18190,"modificationDate":"2017-12-13"}, -{"geonameId":"2661810","name":"Allschwil","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":18189,"modificationDate":"2019-09-11"}, -{"geonameId":"3591093","name":"Tiquisate","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":18189,"modificationDate":"2014-07-20"}, -{"geonameId":"2891014","name":"Kierspe","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18188,"modificationDate":"2015-09-05"}, -{"geonameId":"3901504","name":"Villa Yapacaní","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":18187,"modificationDate":"2012-02-02"}, -{"geonameId":"3398569","name":"Guaraciaba do Norte","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18186,"modificationDate":"2012-08-03"}, -{"geonameId":"584871","name":"Terter","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":18185,"modificationDate":"2018-08-07"}, -{"geonameId":"2756342","name":"Eersel","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":18185,"modificationDate":"2017-10-17"}, -{"geonameId":"542184","name":"Krasnovishersk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":18185,"modificationDate":"2012-01-17"}, -{"geonameId":"8062667","name":"Clark-Fulton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18185,"modificationDate":"2017-12-13"}, -{"geonameId":"2953413","name":"Bad Langensalza","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18183,"modificationDate":"2015-09-05"}, -{"geonameId":"148340","name":"Pushkino","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":18182,"modificationDate":"2019-01-29"}, -{"geonameId":"1276927","name":"Barkā Kānā","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18182,"modificationDate":"2017-08-02"}, -{"geonameId":"3670038","name":"San Benito Abad","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":18181,"modificationDate":"2018-09-05"}, -{"geonameId":"2759132","name":"Bergeijk","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":18181,"modificationDate":"2017-10-17"}, -{"geonameId":"4386289","name":"Farmington","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18181,"modificationDate":"2017-05-23"}, -{"geonameId":"3127451","name":"Burlata","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18178,"modificationDate":"2010-11-04"}, -{"geonameId":"285782","name":"Mahboola","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":18178,"modificationDate":"2020-06-10"}, -{"geonameId":"1269441","name":"Jalālī","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18177,"modificationDate":"2015-08-07"}, -{"geonameId":"5527953","name":"Pampa","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18177,"modificationDate":"2017-09-19"}, -{"geonameId":"3979822","name":"Zacoalco de Torres","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18172,"modificationDate":"2018-11-03"}, -{"geonameId":"316542","name":"Diyadin","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":18172,"modificationDate":"2012-01-18"}, -{"geonameId":"3460484","name":"Ivoti","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18171,"modificationDate":"2012-08-03"}, -{"geonameId":"715466","name":"Szarvas","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":18170,"modificationDate":"2014-11-05"}, -{"geonameId":"1176218","name":"Jand","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":18170,"modificationDate":"2019-12-06"}, -{"geonameId":"3470470","name":"Barreiro do Jaíba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18167,"modificationDate":"2018-12-05"}, -{"geonameId":"497610","name":"Sel’tso","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18167,"modificationDate":"2012-01-17"}, -{"geonameId":"3185060","name":"Kuçovë","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":18166,"modificationDate":"2012-06-02"}, -{"geonameId":"2523693","name":"Pozzallo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18166,"modificationDate":"2014-04-13"}, -{"geonameId":"4951248","name":"Somerset","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18165,"modificationDate":"2019-09-19"}, -{"geonameId":"3976999","name":"Cihuatlán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18164,"modificationDate":"2018-11-03"}, -{"geonameId":"3192241","name":"Ptuj","countryName":"Slovenia","timeZoneName":"Europe/Ljubljana","timeZoneOffsetNameWithoutDst":"Central European Time","population":18164,"modificationDate":"2019-02-27"}, -{"geonameId":"4155726","name":"Florida Ridge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18164,"modificationDate":"2011-05-14"}, -{"geonameId":"976358","name":"Middelburg","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":18164,"modificationDate":"2012-07-12"}, -{"geonameId":"281165","name":"‘Abasān al Kabīrah","countryName":"Palestinian Territory","timeZoneName":"Asia/Gaza","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18163,"modificationDate":"2019-05-03"}, -{"geonameId":"3114566","name":"Palamós","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18161,"modificationDate":"2012-03-04"}, -{"geonameId":"5794559","name":"Five Corners","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18159,"modificationDate":"2011-05-14"}, -{"geonameId":"4456703","name":"Boone","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18156,"modificationDate":"2017-05-23"}, -{"geonameId":"3838797","name":"Río Segundo","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":18155,"modificationDate":"2018-07-04"}, -{"geonameId":"2164422","name":"Griffith","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":18154,"modificationDate":"2019-07-18"}, -{"geonameId":"3012313","name":"Joinville-le-Pont","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18154,"modificationDate":"2016-02-18"}, -{"geonameId":"4172434","name":"Seminole","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18153,"modificationDate":"2017-03-09"}, -{"geonameId":"4169452","name":"Punta Gorda","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18150,"modificationDate":"2017-03-09"}, -{"geonameId":"5388735","name":"Rosamond","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18150,"modificationDate":"2011-05-14"}, -{"geonameId":"3449518","name":"Santo Antônio de Posse","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18148,"modificationDate":"2012-08-03"}, -{"geonameId":"3175775","name":"Grottaferrata","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18144,"modificationDate":"2015-07-22"}, -{"geonameId":"2761164","name":"Wilten","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":18142,"modificationDate":"2018-07-31"}, -{"geonameId":"3892454","name":"Diego de Almagro","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":18137,"modificationDate":"2012-05-03"}, -{"geonameId":"933535","name":"Letlhakane","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":18136,"modificationDate":"2018-05-20"}, -{"geonameId":"3684452","name":"El Copey","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":18136,"modificationDate":"2018-07-04"}, -{"geonameId":"2823368","name":"Tettnang","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18135,"modificationDate":"2012-08-30"}, -{"geonameId":"6075081","name":"Miramichi","countryName":"Canada","timeZoneName":"America/Moncton","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":18129,"modificationDate":"2013-08-10"}, -{"geonameId":"1253219","name":"Vettaikkaranpudur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18128,"modificationDate":"2014-10-14"}, -{"geonameId":"3470177","name":"Bela Vista","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":18127,"modificationDate":"2012-08-03"}, -{"geonameId":"1179305","name":"Chak Two Hundred Forty-nine Thal Development Authority","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":18126,"modificationDate":"2019-12-06"}, -{"geonameId":"3567546","name":"Bejucal","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":18123,"modificationDate":"2015-12-06"}, -{"geonameId":"1278508","name":"Anūppur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18122,"modificationDate":"2014-10-14"}, -{"geonameId":"1220905","name":"Norak","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":18122,"modificationDate":"2012-04-05"}, -{"geonameId":"293823","name":"Kiryat Tivon","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":18121,"modificationDate":"2020-06-10"}, -{"geonameId":"1180295","name":"Dera Bugti","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":18120,"modificationDate":"2019-12-06"}, -{"geonameId":"1090225","name":"Koungou","countryName":"Mayotte","timeZoneName":"Indian/Mayotte","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18118,"modificationDate":"2012-02-07"}, -{"geonameId":"3456863","name":"Monte Azul Paulista","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18117,"modificationDate":"2012-08-03"}, -{"geonameId":"4152564","name":"Cutler","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18117,"modificationDate":"2006-01-17"}, -{"geonameId":"3087281","name":"Reda","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18116,"modificationDate":"2010-10-21"}, -{"geonameId":"2808893","name":"Wildeshausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18114,"modificationDate":"2015-09-05"}, -{"geonameId":"1680040","name":"Veruela","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":18114,"modificationDate":"2017-12-13"}, -{"geonameId":"4244099","name":"Mattoon","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":18113,"modificationDate":"2017-09-03"}, -{"geonameId":"2654450","name":"Brymbo","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18111,"modificationDate":"2011-07-31"}, -{"geonameId":"3177099","name":"Fermo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18109,"modificationDate":"2017-08-02"}, -{"geonameId":"5324802","name":"Arroyo Grande","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18108,"modificationDate":"2017-03-09"}, -{"geonameId":"3401138","name":"Custódia","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18107,"modificationDate":"2012-08-03"}, -{"geonameId":"1708291","name":"Labo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":18105,"modificationDate":"2017-12-13"}, -{"geonameId":"3399518","name":"Floresta","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18100,"modificationDate":"2012-08-03"}, -{"geonameId":"5924579","name":"Cobourg","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18099,"modificationDate":"2013-11-02"}, -{"geonameId":"3095057","name":"Kostrzyn nad Odrą","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18099,"modificationDate":"2019-02-22"}, -{"geonameId":"3120501","name":"Humanes de Madrid","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18098,"modificationDate":"2012-03-04"}, -{"geonameId":"3128272","name":"Benicàssim","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18098,"modificationDate":"2010-04-22"}, -{"geonameId":"2867770","name":"Müllheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18097,"modificationDate":"2013-02-16"}, -{"geonameId":"648366","name":"Lempäälä","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18096,"modificationDate":"2015-11-09"}, -{"geonameId":"1512205","name":"Abaza","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":18094,"modificationDate":"2019-09-05"}, -{"geonameId":"5803786","name":"Monroe","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18090,"modificationDate":"2019-09-19"}, -{"geonameId":"5941925","name":"Dorval","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18088,"modificationDate":"2016-06-22"}, -{"geonameId":"1142404","name":"Kafir Qala","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":18086,"modificationDate":"2018-02-17"}, -{"geonameId":"2468285","name":"El Fahs","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":18083,"modificationDate":"2018-08-05"}, -{"geonameId":"5386015","name":"Rancho Mirage","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18083,"modificationDate":"2017-03-09"}, -{"geonameId":"2885412","name":"Korntal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18081,"modificationDate":"2010-11-15"}, -{"geonameId":"2929865","name":"Eppelborn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18079,"modificationDate":"2011-04-25"}, -{"geonameId":"2299645","name":"Keta","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18077,"modificationDate":"2019-12-06"}, -{"geonameId":"2794179","name":"Koersel","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":18076,"modificationDate":"2020-05-25"}, -{"geonameId":"3670370","name":"Salamina","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":18076,"modificationDate":"2018-07-04"}, -{"geonameId":"646723","name":"Mäntsälä","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":18074,"modificationDate":"2014-09-25"}, -{"geonameId":"791606","name":"Debar","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":18074,"modificationDate":"2014-10-01"}, -{"geonameId":"5198034","name":"Limerick","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18074,"modificationDate":"2017-05-23"}, -{"geonameId":"7091861","name":"Ban Chalong","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":18072,"modificationDate":"2011-07-22"}, -{"geonameId":"3395998","name":"Macau","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18070,"modificationDate":"2012-08-03"}, -{"geonameId":"2634843","name":"Waltham Abbey","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18069,"modificationDate":"2018-07-03"}, -{"geonameId":"2651294","name":"Devizes","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18064,"modificationDate":"2017-06-12"}, -{"geonameId":"3460825","name":"Itamarandiba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18063,"modificationDate":"2012-08-03"}, -{"geonameId":"3461680","name":"Herval","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18063,"modificationDate":"2012-08-03"}, -{"geonameId":"4845871","name":"Wilton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18062,"modificationDate":"2017-05-23"}, -{"geonameId":"2748185","name":"Rhenen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":18061,"modificationDate":"2017-10-17"}, -{"geonameId":"3664659","name":"Carauari","countryName":"Brazil","timeZoneName":"America/Manaus","timeZoneOffsetNameWithoutDst":"Amazon Time","population":18059,"modificationDate":"2012-08-03"}, -{"geonameId":"877702","name":"Nachingwea","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18058,"modificationDate":"2016-07-26"}, -{"geonameId":"1269026","name":"Jhalidā","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18057,"modificationDate":"2017-08-02"}, -{"geonameId":"12157093","name":"Santa Rosa","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":18057,"modificationDate":"2020-05-08"}, -{"geonameId":"3028535","name":"Carquefou","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18056,"modificationDate":"2016-02-18"}, -{"geonameId":"3084241","name":"Sulechów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":18055,"modificationDate":"2020-04-22"}, -{"geonameId":"715839","name":"Satoraijaujhely","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":18052,"modificationDate":"2020-06-10"}, -{"geonameId":"1271923","name":"Chaurian Fatehgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18051,"modificationDate":"2020-06-10"}, -{"geonameId":"5121636","name":"Huntington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18046,"modificationDate":"2017-05-23"}, -{"geonameId":"3108008","name":"Tolosa","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18044,"modificationDate":"2012-03-04"}, -{"geonameId":"425551","name":"Muramvya","countryName":"Burundi","timeZoneName":"Africa/Bujumbura","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":18041,"modificationDate":"2013-04-05"}, -{"geonameId":"523392","name":"Nar'yan-Mar","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18041,"modificationDate":"2017-01-22"}, -{"geonameId":"2953317","name":"Bad Wildungen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":18037,"modificationDate":"2019-06-03"}, -{"geonameId":"3027763","name":"Cestas","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18036,"modificationDate":"2020-01-08"}, -{"geonameId":"4166805","name":"Ojus","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18036,"modificationDate":"2011-05-14"}, -{"geonameId":"720284","name":"Hajdúnánás","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":18032,"modificationDate":"2014-11-05"}, -{"geonameId":"3173599","name":"Melzo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":18031,"modificationDate":"2014-04-13"}, -{"geonameId":"2428394","name":"Mao","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":18031,"modificationDate":"2012-01-18"}, -{"geonameId":"2798573","name":"Eupen","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":18029,"modificationDate":"2019-09-05"}, -{"geonameId":"2173911","name":"Broken Hill","countryName":"Australia","timeZoneName":"Australia/Broken_Hill","timeZoneOffsetNameWithoutDst":"Australian Central Time","population":18027,"modificationDate":"2019-07-18"}, -{"geonameId":"5393128","name":"Santa Fe Springs","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18026,"modificationDate":"2017-03-09"}, -{"geonameId":"468671","name":"Yasnogorsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18022,"modificationDate":"2014-06-27"}, -{"geonameId":"3115463","name":"Nigrán","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":18021,"modificationDate":"2012-03-04"}, -{"geonameId":"3060139","name":"Handlová","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":18018,"modificationDate":"2019-09-05"}, -{"geonameId":"3453242","name":"Pompéia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":18015,"modificationDate":"2012-08-03"}, -{"geonameId":"6091919","name":"Oak Bay","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":18015,"modificationDate":"2019-02-26"}, -{"geonameId":"1254373","name":"Tirumala","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18013,"modificationDate":"2014-10-10"}, -{"geonameId":"2960634","name":"Dudelange","countryName":"Luxembourg","timeZoneName":"Europe/Luxembourg","timeZoneOffsetNameWithoutDst":"Central European Time","population":18013,"modificationDate":"2019-02-26"}, -{"geonameId":"722636","name":"Balmazújváros","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":18012,"modificationDate":"2014-11-05"}, -{"geonameId":"4266307","name":"Vincennes","countryName":"United States","timeZoneName":"America/Indiana/Vincennes","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18012,"modificationDate":"2017-05-23"}, -{"geonameId":"3028337","name":"Castelnau-le-Lez","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":18011,"modificationDate":"2020-06-10"}, -{"geonameId":"2472722","name":"Beni Khiar","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":18011,"modificationDate":"2018-08-05"}, -{"geonameId":"158825","name":"Izazi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":18010,"modificationDate":"2016-07-26"}, -{"geonameId":"1275882","name":"Bhogpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18008,"modificationDate":"2014-10-14"}, -{"geonameId":"5107152","name":"Amsterdam","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18008,"modificationDate":"2017-05-23"}, -{"geonameId":"5420241","name":"Durango","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":18006,"modificationDate":"2017-03-09"}, -{"geonameId":"3827248","name":"San Andrés Cuexcontitlán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":18005,"modificationDate":"2018-11-03"}, -{"geonameId":"505806","name":"Povorino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18004,"modificationDate":"2019-09-05"}, -{"geonameId":"1276054","name":"Bhattiprolu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":18001,"modificationDate":"2014-10-10"}, -{"geonameId":"2041533","name":"Sakchu","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":18001,"modificationDate":"2020-06-11"}, -{"geonameId":"5097357","name":"Dumont","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":18001,"modificationDate":"2017-05-23"}, -{"geonameId":"2785169","name":"Tubize","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":18000,"modificationDate":"2020-05-01"}, -{"geonameId":"3895165","name":"Chicureo Abajo","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":18000,"modificationDate":"2013-04-25"}, -{"geonameId":"2647550","name":"Hampton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":18000,"modificationDate":"2012-06-01"}, -{"geonameId":"3203106","name":"Budva","countryName":"Montenegro","timeZoneName":"Europe/Podgorica","timeZoneOffsetNameWithoutDst":"Central European Time","population":18000,"modificationDate":"2018-12-08"}, -{"geonameId":"3530978","name":"Chichén-Itzá","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":18000,"modificationDate":"2015-06-22"}, -{"geonameId":"513896","name":"Otradnoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":18000,"modificationDate":"2013-04-02"}, -{"geonameId":"7290697","name":"Izluchinsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":18000,"modificationDate":"2019-01-21"}, -{"geonameId":"1276938","name":"Barjala","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17998,"modificationDate":"2018-12-04"}, -{"geonameId":"3712560","name":"Changuinola","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17997,"modificationDate":"2018-01-14"}, -{"geonameId":"578169","name":"Belaya Glina","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17997,"modificationDate":"2013-05-07"}, -{"geonameId":"4581023","name":"Hanahan","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17997,"modificationDate":"2011-05-14"}, -{"geonameId":"2738348","name":"Leça da Palmeira","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":17996,"modificationDate":"2012-01-17"}, -{"geonameId":"5718601","name":"Central Point","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17995,"modificationDate":"2017-03-09"}, -{"geonameId":"1267222","name":"Kesinga","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17994,"modificationDate":"2014-10-14"}, -{"geonameId":"3748726","name":"Kingstown Park","countryName":"Saint Vincent and the Grenadines","timeZoneName":"America/St_Vincent","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":17994,"modificationDate":"2016-10-28"}, -{"geonameId":"6179268","name":"Weston","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17992,"modificationDate":"2020-05-02"}, -{"geonameId":"3400567","name":"Extremoz","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17991,"modificationDate":"2012-08-03"}, -{"geonameId":"2917325","name":"Grimma","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17991,"modificationDate":"2015-09-04"}, -{"geonameId":"2786700","name":"Sint-Genesius-Rode","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17990,"modificationDate":"2011-02-02"}, -{"geonameId":"3531556","name":"Carlos A. Carrillo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17989,"modificationDate":"2018-11-03"}, -{"geonameId":"5775863","name":"Highland","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":17989,"modificationDate":"2017-03-09"}, -{"geonameId":"2656397","name":"Bangor","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17988,"modificationDate":"2020-05-07"}, -{"geonameId":"1264368","name":"Mahīshādal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17988,"modificationDate":"2014-10-14"}, -{"geonameId":"4465088","name":"Elizabeth City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17988,"modificationDate":"2017-05-23"}, -{"geonameId":"2651558","name":"Dalserf","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17985,"modificationDate":"2013-07-11"}, -{"geonameId":"1270824","name":"Gubbi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17983,"modificationDate":"2014-10-14"}, -{"geonameId":"1255816","name":"Sompeta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17982,"modificationDate":"2014-10-10"}, -{"geonameId":"4945256","name":"Newburyport","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17982,"modificationDate":"2017-05-23"}, -{"geonameId":"4948924","name":"Rockland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17982,"modificationDate":"2017-05-23"}, -{"geonameId":"2169145","name":"Deer Park","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17980,"modificationDate":"2019-07-18"}, -{"geonameId":"6620360","name":"Hedge End","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17978,"modificationDate":"2018-07-03"}, -{"geonameId":"468307","name":"Yegorlykskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17978,"modificationDate":"2013-05-07"}, -{"geonameId":"4982753","name":"Westbrook","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17978,"modificationDate":"2017-05-23"}, -{"geonameId":"2638600","name":"Sandbach","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17976,"modificationDate":"2017-06-12"}, -{"geonameId":"3708066","name":"La Cabima","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17975,"modificationDate":"2017-08-16"}, -{"geonameId":"548330","name":"Kirsanov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17975,"modificationDate":"2019-09-05"}, -{"geonameId":"743051","name":"Yabanabat","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":17975,"modificationDate":"2020-06-10"}, -{"geonameId":"3171586","name":"Palazzolo sull'Oglio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17973,"modificationDate":"2015-07-22"}, -{"geonameId":"3442778","name":"Delta del Tigre","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":17973,"modificationDate":"2018-02-22"}, -{"geonameId":"1348739","name":"Dumjor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17972,"modificationDate":"2014-10-14"}, -{"geonameId":"2324575","name":"Rano","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":17972,"modificationDate":"2016-06-22"}, -{"geonameId":"2641612","name":"New Mills","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17968,"modificationDate":"2018-07-03"}, -{"geonameId":"4220629","name":"St. Marys","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17968,"modificationDate":"2017-03-09"}, -{"geonameId":"8858112","name":"Tres de Mayo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17966,"modificationDate":"2014-04-11"}, -{"geonameId":"4886738","name":"Cary","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17965,"modificationDate":"2017-05-23"}, -{"geonameId":"5123718","name":"Lackawanna","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17965,"modificationDate":"2017-05-23"}, -{"geonameId":"1240723","name":"Kegalle","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":17962,"modificationDate":"2018-12-17"}, -{"geonameId":"2521964","name":"Aljaraque","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17960,"modificationDate":"2012-03-04"}, -{"geonameId":"3589852","name":"San Lucas","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":17959,"modificationDate":"2020-06-10"}, -{"geonameId":"964432","name":"Port Alfred","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":17959,"modificationDate":"2016-01-03"}, -{"geonameId":"3386931","name":"Tamandaré","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17954,"modificationDate":"2012-08-03"}, -{"geonameId":"3172996","name":"Montecatini-Terme","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17954,"modificationDate":"2014-04-13"}, -{"geonameId":"683760","name":"Breaza","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17949,"modificationDate":"2012-06-12"}, -{"geonameId":"6696932","name":"Kawage","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":17948,"modificationDate":"2017-04-09"}, -{"geonameId":"2408329","name":"Kabala","countryName":"Sierra Leone","timeZoneName":"Africa/Freetown","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17948,"modificationDate":"2014-12-03"}, -{"geonameId":"231139","name":"Kireka","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17947,"modificationDate":"2016-06-22"}, -{"geonameId":"941931","name":"Warrenton","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":17946,"modificationDate":"2012-07-12"}, -{"geonameId":"12156886","name":"Kensington-Chinatown","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17945,"modificationDate":"2020-05-02"}, -{"geonameId":"1261839","name":"Narauli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17945,"modificationDate":"2015-08-07"}, -{"geonameId":"1278345","name":"Arukutti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17944,"modificationDate":"2018-12-04"}, -{"geonameId":"3456125","name":"Nova Prata","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17943,"modificationDate":"2012-08-03"}, -{"geonameId":"6545288","name":"Charlottenburg-Nord","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17942,"modificationDate":"2012-06-09"}, -{"geonameId":"2886446","name":"Kolbermoor","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17941,"modificationDate":"2013-02-19"}, -{"geonameId":"6941937","name":"Murudeshwara","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17938,"modificationDate":"2010-07-26"}, -{"geonameId":"1501255","name":"Kurtamysh","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":17936,"modificationDate":"2019-09-05"}, -{"geonameId":"5225631","name":"Westerly","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17936,"modificationDate":"2017-05-23"}, -{"geonameId":"3543498","name":"Primero de Enero","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":17934,"modificationDate":"2016-01-07"}, -{"geonameId":"2166952","name":"Fairfield","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17932,"modificationDate":"2019-07-18"}, -{"geonameId":"3523590","name":"Mapastepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17931,"modificationDate":"2018-11-03"}, -{"geonameId":"1153386","name":"Hang Dong","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17931,"modificationDate":"2012-01-16"}, -{"geonameId":"4120792","name":"Maumelle","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17931,"modificationDate":"2017-05-23"}, -{"geonameId":"1267239","name":"Kerūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17928,"modificationDate":"2014-10-14"}, -{"geonameId":"2356454","name":"Pô","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17924,"modificationDate":"2017-05-21"}, -{"geonameId":"2520502","name":"Callosa de Segura","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17924,"modificationDate":"2012-03-04"}, -{"geonameId":"4475622","name":"Leland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17924,"modificationDate":"2017-05-23"}, -{"geonameId":"2659310","name":"Zürich (Kreis 11) / Oerlikon","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":17922,"modificationDate":"2006-10-21"}, -{"geonameId":"6691073","name":"Altstadt Nord","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17922,"modificationDate":"2013-08-03"}, -{"geonameId":"2250645","name":"Kédougou","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17922,"modificationDate":"2017-06-05"}, -{"geonameId":"2818067","name":"Uetersen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17921,"modificationDate":"2019-09-05"}, -{"geonameId":"2892874","name":"Karlsfeld","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17920,"modificationDate":"2018-04-26"}, -{"geonameId":"5884588","name":"Amos","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17918,"modificationDate":"2019-03-18"}, -{"geonameId":"3595171","name":"Jocotenango","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":17918,"modificationDate":"2019-04-10"}, -{"geonameId":"1257528","name":"Samdari","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17915,"modificationDate":"2014-10-14"}, -{"geonameId":"3090403","name":"Oborniki","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":17915,"modificationDate":"2011-07-31"}, -{"geonameId":"693709","name":"Skadovsk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17915,"modificationDate":"2020-05-20"}, -{"geonameId":"1619415","name":"Bang Len","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17914,"modificationDate":"2012-01-16"}, -{"geonameId":"2841125","name":"Saulgau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17911,"modificationDate":"2013-02-16"}, -{"geonameId":"1504251","name":"Kasli","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":17911,"modificationDate":"2019-09-05"}, -{"geonameId":"2992404","name":"Montigny","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17910,"modificationDate":"2020-06-10"}, -{"geonameId":"769981","name":"Józefów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":17910,"modificationDate":"2011-07-31"}, -{"geonameId":"8348768","name":"Yagoona","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17908,"modificationDate":"2019-07-18"}, -{"geonameId":"2428231","name":"Massaguet","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":17906,"modificationDate":"2019-03-09"}, -{"geonameId":"2520052","name":"Cartaya","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17905,"modificationDate":"2012-03-04"}, -{"geonameId":"3009791","name":"La Crau","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17905,"modificationDate":"2019-08-07"}, -{"geonameId":"287614","name":"Khasab","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":17904,"modificationDate":"2017-04-25"}, -{"geonameId":"3018455","name":"Firminy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17902,"modificationDate":"2019-06-05"}, -{"geonameId":"2856930","name":"Oschersleben","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17900,"modificationDate":"2017-09-17"}, -{"geonameId":"3460068","name":"Jarinu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17899,"modificationDate":"2012-08-03"}, -{"geonameId":"2656992","name":"Ascot","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17899,"modificationDate":"2016-06-22"}, -{"geonameId":"2144764","name":"Wangaratta","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17897,"modificationDate":"2019-07-18"}, -{"geonameId":"2440495","name":"Nguigmi","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":17897,"modificationDate":"2013-10-06"}, -{"geonameId":"5279436","name":"Wisconsin Rapids","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17897,"modificationDate":"2017-05-23"}, -{"geonameId":"2888523","name":"Kleinmachnow","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17892,"modificationDate":"2011-07-31"}, -{"geonameId":"3187609","name":"Visoko","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":17890,"modificationDate":"2016-06-05"}, -{"geonameId":"3110458","name":"San Lorenzo de El Escorial","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17889,"modificationDate":"2012-03-04"}, -{"geonameId":"4475640","name":"Lenoir","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17888,"modificationDate":"2017-05-23"}, -{"geonameId":"8348101","name":"Willetton","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":17887,"modificationDate":"2019-07-18"}, -{"geonameId":"2807240","name":"Wittlich","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17887,"modificationDate":"2015-09-05"}, -{"geonameId":"462984","name":"Zhirnovsk","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":17887,"modificationDate":"2014-06-26"}, -{"geonameId":"5129134","name":"North Massapequa","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17886,"modificationDate":"2017-05-23"}, -{"geonameId":"2247381","name":"Nguékhokh","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17885,"modificationDate":"2018-11-30"}, -{"geonameId":"5136433","name":"Scarsdale","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17885,"modificationDate":"2017-05-23"}, -{"geonameId":"5128266","name":"Nanuet","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17882,"modificationDate":"2017-05-23"}, -{"geonameId":"1253578","name":"Vadlapūdi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17881,"modificationDate":"2017-01-04"}, -{"geonameId":"2831852","name":"Sinzig","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17880,"modificationDate":"2015-09-05"}, -{"geonameId":"4326575","name":"Gretna","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17880,"modificationDate":"2017-03-09"}, -{"geonameId":"2885672","name":"Konz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17879,"modificationDate":"2015-09-05"}, -{"geonameId":"3175743","name":"Grumo Nevano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17879,"modificationDate":"2014-01-16"}, -{"geonameId":"1562548","name":"Vieh Yen","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17876,"modificationDate":"2020-06-09"}, -{"geonameId":"3386372","name":"Timbiras","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17875,"modificationDate":"2012-08-03"}, -{"geonameId":"2515701","name":"la Nucia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17874,"modificationDate":"2010-04-22"}, -{"geonameId":"5838198","name":"Sheridan","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":17873,"modificationDate":"2017-03-09"}, -{"geonameId":"2475740","name":"Tizi Rached","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":17872,"modificationDate":"2012-01-19"}, -{"geonameId":"342856","name":"Bako","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17872,"modificationDate":"2012-01-19"}, -{"geonameId":"490067","name":"Sovetsk","countryName":"Russia","timeZoneName":"Europe/Kirov","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":17869,"modificationDate":"2019-09-05"}, -{"geonameId":"8948694","name":"V.S.K.Valasai (Dindigul-Dist.)","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17865,"modificationDate":"2014-10-14"}, -{"geonameId":"505060","name":"Privolzhsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17864,"modificationDate":"2012-01-17"}, -{"geonameId":"5128884","name":"North Amityville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17862,"modificationDate":"2017-05-23"}, -{"geonameId":"1270437","name":"Handiā","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17861,"modificationDate":"2015-08-07"}, -{"geonameId":"152933","name":"Msowero","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17861,"modificationDate":"2018-12-04"}, -{"geonameId":"218253","name":"Bondo","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":17860,"modificationDate":"2016-11-22"}, -{"geonameId":"1257093","name":"Sarwār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17860,"modificationDate":"2014-10-14"}, -{"geonameId":"1255212","name":"Takhatpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17859,"modificationDate":"2015-09-06"}, -{"geonameId":"695344","name":"Rozdilna","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17858,"modificationDate":"2020-05-01"}, -{"geonameId":"3145614","name":"Mo i Rana","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":17853,"modificationDate":"2010-12-07"}, -{"geonameId":"659935","name":"Forssa","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17852,"modificationDate":"2014-09-25"}, -{"geonameId":"2658656","name":"Zürich (Kreis 11) / Seebach","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":17851,"modificationDate":"2006-10-21"}, -{"geonameId":"2513052","name":"Osuna","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17851,"modificationDate":"2015-05-31"}, -{"geonameId":"1830205","name":"Pailin","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17850,"modificationDate":"2013-04-04"}, -{"geonameId":"1257260","name":"Sarāi Mīr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17849,"modificationDate":"2015-09-06"}, -{"geonameId":"611583","name":"Tqvarch'eli","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":17847,"modificationDate":"2014-01-29"}, -{"geonameId":"1679678","name":"Wao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":17845,"modificationDate":"2017-12-13"}, -{"geonameId":"5558953","name":"Arcata","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17843,"modificationDate":"2017-03-09"}, -{"geonameId":"9957350","name":"Sunnybank Hills","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17842,"modificationDate":"2019-07-18"}, -{"geonameId":"3114957","name":"Oria","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17842,"modificationDate":"2012-11-19"}, -{"geonameId":"3130137","name":"Amorebieta","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17842,"modificationDate":"2012-12-01"}, -{"geonameId":"2848762","name":"Reinheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17841,"modificationDate":"2015-09-05"}, -{"geonameId":"4389418","name":"Hannibal","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17839,"modificationDate":"2017-05-23"}, -{"geonameId":"248414","name":"Kurayyimah","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17837,"modificationDate":"2016-05-07"}, -{"geonameId":"544293","name":"Kosaya Gora","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17836,"modificationDate":"2012-01-17"}, -{"geonameId":"2143973","name":"Westmead","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17835,"modificationDate":"2019-07-18"}, -{"geonameId":"3093457","name":"Libiąż","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":17834,"modificationDate":"2019-09-05"}, -{"geonameId":"782661","name":"Kukus","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":17832,"modificationDate":"2020-06-11"}, -{"geonameId":"1855203","name":"Nishinoomote","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":17832,"modificationDate":"2017-07-22"}, -{"geonameId":"522410","name":"Newel","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17832,"modificationDate":"2020-06-10"}, -{"geonameId":"1274899","name":"Chākia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17831,"modificationDate":"2014-10-14"}, -{"geonameId":"3182289","name":"Bastia umbra","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17831,"modificationDate":"2014-04-13"}, -{"geonameId":"1693839","name":"Pilar","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":17831,"modificationDate":"2017-12-13"}, -{"geonameId":"2167445","name":"Eltham","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17829,"modificationDate":"2019-07-18"}, -{"geonameId":"3183490","name":"Acqui Terme","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17828,"modificationDate":"2019-09-27"}, -{"geonameId":"9972527","name":"Frankston South","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17826,"modificationDate":"2019-07-18"}, -{"geonameId":"712559","name":"Bilopillya","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17824,"modificationDate":"2014-11-05"}, -{"geonameId":"3468023","name":"Camanducaia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17822,"modificationDate":"2012-08-03"}, -{"geonameId":"3454139","name":"Perdões","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17821,"modificationDate":"2012-08-03"}, -{"geonameId":"2899538","name":"Holzwickede","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17821,"modificationDate":"2011-07-31"}, -{"geonameId":"3179109","name":"Cercola","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17821,"modificationDate":"2014-04-13"}, -{"geonameId":"5853992","name":"Wahiawā","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":17821,"modificationDate":"2017-09-05"}, -{"geonameId":"4753671","name":"Colonial Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17820,"modificationDate":"2017-03-09"}, -{"geonameId":"326036","name":"Yeabelo","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17819,"modificationDate":"2020-06-11"}, -{"geonameId":"711894","name":"Bohodukhiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17818,"modificationDate":"2014-07-08"}, -{"geonameId":"2989204","name":"Orsay","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17817,"modificationDate":"2016-02-18"}, -{"geonameId":"584716","name":"Yelenendorf","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":17816,"modificationDate":"2020-03-04"}, -{"geonameId":"1267537","name":"Katangi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17816,"modificationDate":"2015-08-07"}, -{"geonameId":"12156868","name":"St.Andrew-Windfields","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17812,"modificationDate":"2020-05-02"}, -{"geonameId":"2659070","name":"Renens","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":17811,"modificationDate":"2019-09-10"}, -{"geonameId":"7117885","name":"Raduzhnyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17811,"modificationDate":"2015-10-01"}, -{"geonameId":"2945542","name":"Brakel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17808,"modificationDate":"2015-09-04"}, -{"geonameId":"2981839","name":"Saint-Amand-les-Eaux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17808,"modificationDate":"2016-02-18"}, -{"geonameId":"3108165","name":"Teo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17807,"modificationDate":"2012-03-04"}, -{"geonameId":"3556077","name":"Jobabo","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":17804,"modificationDate":"2012-01-18"}, -{"geonameId":"2509305","name":"Zubia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17803,"modificationDate":"2012-01-19"}, -{"geonameId":"4243899","name":"Marion","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17803,"modificationDate":"2017-03-09"}, -{"geonameId":"2744904","name":"Weesp","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":17802,"modificationDate":"2017-10-17"}, -{"geonameId":"749279","name":"Mecidiye","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":17802,"modificationDate":"2020-06-10"}, -{"geonameId":"2811909","name":"Weißenburg in Bayern","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17801,"modificationDate":"2013-02-19"}, -{"geonameId":"1528091","name":"Kara Suu","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":17800,"modificationDate":"2016-07-04"}, -{"geonameId":"1256176","name":"Singaraya Konda Pagoda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17796,"modificationDate":"2020-06-10"}, -{"geonameId":"596238","name":"Palanga","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17796,"modificationDate":"2019-10-03"}, -{"geonameId":"2266319","name":"Moita","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":17795,"modificationDate":"2014-04-06"}, -{"geonameId":"5096798","name":"Colonia","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17795,"modificationDate":"2017-05-23"}, -{"geonameId":"2510599","name":"Tarifa","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17793,"modificationDate":"2019-09-05"}, -{"geonameId":"4922968","name":"Logansport","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17793,"modificationDate":"2017-05-23"}, -{"geonameId":"2167840","name":"Eastwood","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17792,"modificationDate":"2019-07-18"}, -{"geonameId":"2823812","name":"Taufkirchen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17791,"modificationDate":"2013-02-15"}, -{"geonameId":"599757","name":"Druskininkai","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17791,"modificationDate":"2019-09-05"}, -{"geonameId":"2791194","name":"Middelkerke","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17789,"modificationDate":"2012-01-18"}, -{"geonameId":"2562704","name":"Mosta","countryName":"Malta","timeZoneName":"Europe/Malta","timeZoneOffsetNameWithoutDst":"Central European Time","population":17789,"modificationDate":"2012-07-04"}, -{"geonameId":"464790","name":"Zapolyarnyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17789,"modificationDate":"2014-06-26"}, -{"geonameId":"2156578","name":"Mount Martha","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17788,"modificationDate":"2019-07-18"}, -{"geonameId":"3007221","name":"La Pomme","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17787,"modificationDate":"2018-08-22"}, -{"geonameId":"5130081","name":"Oswego","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17787,"modificationDate":"2017-05-23"}, -{"geonameId":"3002499","name":"Le Pré-Saint-Gervais","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17786,"modificationDate":"2016-02-18"}, -{"geonameId":"3817809","name":"Santa María Ajoloapan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17784,"modificationDate":"2018-11-03"}, -{"geonameId":"3119027","name":"Lasarte","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17782,"modificationDate":"2012-11-19"}, -{"geonameId":"344901","name":"Mendefera","countryName":"Eritrea","timeZoneName":"Africa/Asmara","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17781,"modificationDate":"2020-02-29"}, -{"geonameId":"2997246","name":"Lucé","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17780,"modificationDate":"2016-02-18"}, -{"geonameId":"581321","name":"Aprelevka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17780,"modificationDate":"2019-09-05"}, -{"geonameId":"121240","name":"Pawah","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":17779,"modificationDate":"2020-06-10"}, -{"geonameId":"3177532","name":"Domodossola","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17778,"modificationDate":"2014-01-11"}, -{"geonameId":"221527","name":"Obock","countryName":"Djibouti","timeZoneName":"Africa/Djibouti","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17776,"modificationDate":"2019-09-05"}, -{"geonameId":"3001402","name":"Les Clayes-sous-Bois","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17776,"modificationDate":"2016-02-18"}, -{"geonameId":"3019766","name":"La Baule-Escoublac","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17775,"modificationDate":"2016-02-18"}, -{"geonameId":"773357","name":"Dęblin","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":17775,"modificationDate":"2010-09-27"}, -{"geonameId":"281793","name":"Sa‘īr","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17775,"modificationDate":"2012-01-18"}, -{"geonameId":"159107","name":"Ipinda","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17775,"modificationDate":"2016-07-26"}, -{"geonameId":"2794070","name":"Kortenberg","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17774,"modificationDate":"2011-02-03"}, -{"geonameId":"3058897","name":"Malacky","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":17773,"modificationDate":"2019-09-05"}, -{"geonameId":"1150728","name":"San Pa Tong","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17773,"modificationDate":"2012-01-16"}, -{"geonameId":"5366531","name":"Linda","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17773,"modificationDate":"2011-05-14"}, -{"geonameId":"5105433","name":"Tinton Falls","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17772,"modificationDate":"2017-05-23"}, -{"geonameId":"2958128","name":"Alsfeld","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17771,"modificationDate":"2019-09-05"}, -{"geonameId":"760584","name":"Rawa Mazowiecka","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":17770,"modificationDate":"2011-07-31"}, -{"geonameId":"2657812","name":"Abergele","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17769,"modificationDate":"2011-03-03"}, -{"geonameId":"2637235","name":"Spennymoor","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17766,"modificationDate":"2017-06-12"}, -{"geonameId":"1273593","name":"Dāmnagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17766,"modificationDate":"2014-10-13"}, -{"geonameId":"2794663","name":"Kasterlee","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17765,"modificationDate":"2011-02-10"}, -{"geonameId":"1708056","name":"Laguilayan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":17764,"modificationDate":"2018-02-06"}, -{"geonameId":"704858","name":"Korsun-Shevchenkivskyy","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17763,"modificationDate":"2020-05-17"}, -{"geonameId":"1218420","name":"Seydi","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":17762,"modificationDate":"2013-10-30"}, -{"geonameId":"1218436","name":"Saýat","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":17762,"modificationDate":"2012-01-17"}, -{"geonameId":"933000","name":"Tonota","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":17759,"modificationDate":"2012-04-10"}, -{"geonameId":"4239509","name":"Godfrey","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17759,"modificationDate":"2017-05-23"}, -{"geonameId":"3573576","name":"Tunapuna","countryName":"Trinidad and Tobago","timeZoneName":"America/Port_of_Spain","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":17758,"modificationDate":"2017-10-04"}, -{"geonameId":"12156883","name":"Brookhaven-Amesbury","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17757,"modificationDate":"2020-05-02"}, -{"geonameId":"2056881","name":"Markova","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":17756,"modificationDate":"2020-01-09"}, -{"geonameId":"5224082","name":"Portsmouth","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17756,"modificationDate":"2017-05-23"}, -{"geonameId":"152743","name":"Mto wa Mbu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17754,"modificationDate":"2016-07-26"}, -{"geonameId":"2750523","name":"Naaldwijk","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":17753,"modificationDate":"2017-10-17"}, -{"geonameId":"3667887","name":"Socorro","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":17752,"modificationDate":"2018-09-05"}, -{"geonameId":"1503940","name":"Kedrovka","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":17752,"modificationDate":"2019-10-26"}, -{"geonameId":"2246606","name":"Pout","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17752,"modificationDate":"2018-11-30"}, -{"geonameId":"1272476","name":"Doda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17748,"modificationDate":"2015-09-06"}, -{"geonameId":"2651095","name":"Dorking","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17747,"modificationDate":"2017-06-12"}, -{"geonameId":"2867542","name":"Munster","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17746,"modificationDate":"2015-09-05"}, -{"geonameId":"8642860","name":"Gartenstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17745,"modificationDate":"2015-09-05"}, -{"geonameId":"3691094","name":"Uchiza","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":17742,"modificationDate":"2017-09-04"}, -{"geonameId":"149132","name":"Usevia","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17742,"modificationDate":"2016-07-26"}, -{"geonameId":"4916003","name":"West Garfield Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17742,"modificationDate":"2017-12-13"}, -{"geonameId":"1855852","name":"Nakanojōmachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":17741,"modificationDate":"2017-04-09"}, -{"geonameId":"2639668","name":"Ramsbottom","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17738,"modificationDate":"2013-07-11"}, -{"geonameId":"2515151","name":"La Unión","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17737,"modificationDate":"2012-01-19"}, -{"geonameId":"4845823","name":"Willimantic","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17737,"modificationDate":"2017-05-23"}, -{"geonameId":"2523796","name":"Piazza Armerina","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17736,"modificationDate":"2014-04-13"}, -{"geonameId":"8858113","name":"Don Antonio","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17736,"modificationDate":"2014-04-11"}, -{"geonameId":"1270291","name":"Harpālpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17731,"modificationDate":"2014-10-14"}, -{"geonameId":"2883754","name":"Kronberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17730,"modificationDate":"2016-01-05"}, -{"geonameId":"3204509","name":"Bar","countryName":"Montenegro","timeZoneName":"Europe/Podgorica","timeZoneOffsetNameWithoutDst":"Central European Time","population":17727,"modificationDate":"2019-11-06"}, -{"geonameId":"3394549","name":"Monteiro","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17726,"modificationDate":"2012-08-03"}, -{"geonameId":"1268476","name":"Kalānaur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17725,"modificationDate":"2015-08-07"}, -{"geonameId":"4350160","name":"Calverton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17724,"modificationDate":"2011-05-14"}, -{"geonameId":"3668323","name":"Santuario","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":17722,"modificationDate":"2018-06-08"}, -{"geonameId":"4364759","name":"Oxon Hill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17722,"modificationDate":"2011-05-14"}, -{"geonameId":"3396769","name":"Lagoa do Itaenga","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17719,"modificationDate":"2012-08-03"}, -{"geonameId":"6690592","name":"Amersham on the Hill","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17719,"modificationDate":"2018-07-03"}, -{"geonameId":"2690170","name":"Nässjö","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":17719,"modificationDate":"2017-03-18"}, -{"geonameId":"2263667","name":"Sacavém","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":17718,"modificationDate":"2011-08-28"}, -{"geonameId":"1715812","name":"Danao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":17716,"modificationDate":"2017-12-13"}, -{"geonameId":"4370890","name":"Takoma Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17713,"modificationDate":"2017-03-09"}, -{"geonameId":"2292179","name":"Bangolo","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17712,"modificationDate":"2016-12-05"}, -{"geonameId":"4845056","name":"Wallingford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17712,"modificationDate":"2017-05-23"}, -{"geonameId":"4913110","name":"Sycamore","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17712,"modificationDate":"2017-05-23"}, -{"geonameId":"1521230","name":"Makinsk","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":17711,"modificationDate":"2016-05-07"}, -{"geonameId":"4151440","name":"Cocoa","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17711,"modificationDate":"2017-03-09"}, -{"geonameId":"2838059","name":"Schmalkalden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17710,"modificationDate":"2019-03-13"}, -{"geonameId":"934631","name":"Centre de Flacq","countryName":"Mauritius","timeZoneName":"Indian/Mauritius","timeZoneOffsetNameWithoutDst":"Mauritius Time","population":17710,"modificationDate":"2008-03-15"}, -{"geonameId":"937136","name":"Zeerust","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":17708,"modificationDate":"2012-07-12"}, -{"geonameId":"2334306","name":"Kiyawa","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":17704,"modificationDate":"2016-06-22"}, -{"geonameId":"1509819","name":"Bolotnoye","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":17704,"modificationDate":"2012-01-17"}, -{"geonameId":"2169956","name":"Cronulla","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17703,"modificationDate":"2019-07-18"}, -{"geonameId":"717652","name":"Mezőkövesd","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":17701,"modificationDate":"2019-10-08"}, -{"geonameId":"1591538","name":"Bak Kan","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17701,"modificationDate":"2020-06-09"}, -{"geonameId":"2208655","name":"Zelten","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17700,"modificationDate":"2020-06-10"}, -{"geonameId":"472750","name":"Volgorechensk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17700,"modificationDate":"2014-06-26"}, -{"geonameId":"4813878","name":"Martinsburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17700,"modificationDate":"2017-07-07"}, -{"geonameId":"2799412","name":"Diepenbeek","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17699,"modificationDate":"2010-07-31"}, -{"geonameId":"3707899","name":"La Concepción","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17698,"modificationDate":"2017-08-16"}, -{"geonameId":"1163595","name":"Tharu Shah","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":17698,"modificationDate":"2019-12-06"}, -{"geonameId":"712374","name":"Berezhany","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17697,"modificationDate":"2020-05-08"}, -{"geonameId":"1262794","name":"Moram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17696,"modificationDate":"2018-12-04"}, -{"geonameId":"3494121","name":"Quisqueya","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":17694,"modificationDate":"2016-06-05"}, -{"geonameId":"2633274","name":"Akureyri","countryName":"Iceland","timeZoneName":"Atlantic/Reykjavik","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17693,"modificationDate":"2019-09-05"}, -{"geonameId":"3814568","name":"La Breita","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":17693,"modificationDate":"2016-01-08"}, -{"geonameId":"3404722","name":"Buriti Bravo","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17692,"modificationDate":"2012-08-03"}, -{"geonameId":"4163388","name":"Marco Island","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17690,"modificationDate":"2017-03-09"}, -{"geonameId":"2792567","name":"Lessines","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17687,"modificationDate":"2012-01-18"}, -{"geonameId":"5173930","name":"Tiffin","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17687,"modificationDate":"2017-05-23"}, -{"geonameId":"3078545","name":"Bruntál","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":17686,"modificationDate":"2018-09-08"}, -{"geonameId":"736229","name":"Flórina","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17686,"modificationDate":"2015-04-11"}, -{"geonameId":"3091256","name":"Myślenice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":17686,"modificationDate":"2010-10-23"}, -{"geonameId":"2974494","name":"Sin-le-Noble","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17682,"modificationDate":"2016-02-18"}, -{"geonameId":"2433055","name":"Dourbali","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":17682,"modificationDate":"2019-07-10"}, -{"geonameId":"3470341","name":"Bastos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17680,"modificationDate":"2012-08-03"}, -{"geonameId":"2972350","name":"Toul","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17680,"modificationDate":"2019-04-10"}, -{"geonameId":"1275905","name":"Bhitarwār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17679,"modificationDate":"2015-08-07"}, -{"geonameId":"462522","name":"Zimovniki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17678,"modificationDate":"2013-05-07"}, -{"geonameId":"3107139","name":"Utebo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17677,"modificationDate":"2015-06-13"}, -{"geonameId":"3168775","name":"Rutigliano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17674,"modificationDate":"2014-04-13"}, -{"geonameId":"5016024","name":"Albert Lea","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17674,"modificationDate":"2017-05-23"}, -{"geonameId":"1493687","name":"Reftinskiy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":17673,"modificationDate":"2012-01-17"}, -{"geonameId":"2953558","name":"Bad Aibling","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17672,"modificationDate":"2013-02-19"}, -{"geonameId":"934750","name":"Bel Air Rivière Sèche","countryName":"Mauritius","timeZoneName":"Indian/Mauritius","timeZoneOffsetNameWithoutDst":"Mauritius Time","population":17671,"modificationDate":"2014-05-18"}, -{"geonameId":"2345029","name":"Deba","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":17671,"modificationDate":"2016-01-30"}, -{"geonameId":"2642204","name":"Moreton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17670,"modificationDate":"2012-04-05"}, -{"geonameId":"2512340","name":"Pozoblanco","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17669,"modificationDate":"2012-03-04"}, -{"geonameId":"2655708","name":"Biddulph","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17669,"modificationDate":"2018-07-03"}, -{"geonameId":"4008224","name":"El Quince","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17669,"modificationDate":"2018-12-04"}, -{"geonameId":"2745677","name":"Velp","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":17669,"modificationDate":"2017-10-17"}, -{"geonameId":"3682330","name":"Fresno","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":17668,"modificationDate":"2018-09-05"}, -{"geonameId":"8199394","name":"Ariel","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":17668,"modificationDate":"2018-02-25"}, -{"geonameId":"1725799","name":"Baybay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":17668,"modificationDate":"2017-12-13"}, -{"geonameId":"2655557","name":"Bishopstoke","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17667,"modificationDate":"2018-07-03"}, -{"geonameId":"3149563","name":"Kongsberg","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":17667,"modificationDate":"2019-12-12"}, -{"geonameId":"2338660","name":"Igbor","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":17666,"modificationDate":"2018-12-04"}, -{"geonameId":"3470597","name":"Barra Velha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17665,"modificationDate":"2012-08-03"}, -{"geonameId":"563472","name":"Enem","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17665,"modificationDate":"2013-04-03"}, -{"geonameId":"2523619","name":"Ribera","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17664,"modificationDate":"2014-04-13"}, -{"geonameId":"2516852","name":"Güimar","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":17662,"modificationDate":"2015-05-31"}, -{"geonameId":"1259917","name":"Pennādam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17662,"modificationDate":"2017-09-05"}, -{"geonameId":"1582926","name":"Ðông Hà","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17662,"modificationDate":"2010-11-04"}, -{"geonameId":"1271676","name":"Gangāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17661,"modificationDate":"2014-10-14"}, -{"geonameId":"485432","name":"Svobody","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17661,"modificationDate":"2014-06-27"}, -{"geonameId":"3151770","name":"Horten","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":17660,"modificationDate":"2019-12-12"}, -{"geonameId":"1848933","name":"Wakimachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":17659,"modificationDate":"2017-04-09"}, -{"geonameId":"768905","name":"Kobyłka","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":17659,"modificationDate":"2011-07-31"}, -{"geonameId":"2786694","name":"Sint-Gillis-Waas","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17658,"modificationDate":"2014-02-21"}, -{"geonameId":"2660108","name":"Kreuzlingen","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":17655,"modificationDate":"2019-09-10"}, -{"geonameId":"2660221","name":"Jona","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":17655,"modificationDate":"2013-04-02"}, -{"geonameId":"2145092","name":"Wahroonga","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17652,"modificationDate":"2019-07-18"}, -{"geonameId":"4951397","name":"South Hadley","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17652,"modificationDate":"2017-05-23"}, -{"geonameId":"3200396","name":"Goražde","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":17650,"modificationDate":"2016-06-05"}, -{"geonameId":"2911384","name":"Halver","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17650,"modificationDate":"2015-09-04"}, -{"geonameId":"6691927","name":"Ferndown","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17650,"modificationDate":"2018-07-03"}, -{"geonameId":"3403534","name":"Campos Sales","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17648,"modificationDate":"2012-08-03"}, -{"geonameId":"2156340","name":"Mulgrave","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17647,"modificationDate":"2018-11-12"}, -{"geonameId":"3400617","name":"Estreito","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17647,"modificationDate":"2018-07-04"}, -{"geonameId":"2516542","name":"Huércal-Overa","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17645,"modificationDate":"2018-07-06"}, -{"geonameId":"1513957","name":"Hazorasp","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":17643,"modificationDate":"2020-04-08"}, -{"geonameId":"8374203","name":"‘Ar‘ara BaNegev","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":17640,"modificationDate":"2020-04-29"}, -{"geonameId":"3526681","name":"Ixtapan de la Sal","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17640,"modificationDate":"2018-11-03"}, -{"geonameId":"3088848","name":"Pleszew","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":17640,"modificationDate":"2020-06-21"}, -{"geonameId":"4140463","name":"Shaw","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17639,"modificationDate":"2019-08-30"}, -{"geonameId":"4439506","name":"Ocean Springs","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17636,"modificationDate":"2017-03-09"}, -{"geonameId":"8224092","name":"Bellaria-Igea Marina","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17635,"modificationDate":"2015-07-21"}, -{"geonameId":"3453435","name":"Piúma","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17634,"modificationDate":"2012-08-03"}, -{"geonameId":"2823533","name":"Templin","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17634,"modificationDate":"2015-09-05"}, -{"geonameId":"250420","name":"‘Anjarah","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17634,"modificationDate":"2020-03-08"}, -{"geonameId":"3114267","name":"Parets del Vallès","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17632,"modificationDate":"2011-12-23"}, -{"geonameId":"1169143","name":"Naushahro Firoz","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":17631,"modificationDate":"2019-12-24"}, -{"geonameId":"4563122","name":"Candelaria","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":17631,"modificationDate":"2015-08-03"}, -{"geonameId":"7284897","name":"Marseille 16","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17630,"modificationDate":"2018-08-19"}, -{"geonameId":"7648817","name":"Зуунмод","countryName":"Mongolia","timeZoneName":"Asia/Ulaanbaatar","timeZoneOffsetNameWithoutDst":"Ulaanbaatar Time","population":17630,"modificationDate":"2019-09-23"}, -{"geonameId":"1180752","name":"Dajal","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":17630,"modificationDate":"2020-01-08"}, -{"geonameId":"4896012","name":"Hinsdale","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17628,"modificationDate":"2017-05-23"}, -{"geonameId":"3686272","name":"Ciénaga de Oro","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":17623,"modificationDate":"2018-07-04"}, -{"geonameId":"2868506","name":"Mühldorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17622,"modificationDate":"2015-03-04"}, -{"geonameId":"3523061","name":"Santiago Momoxpan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17622,"modificationDate":"2013-08-01"}, -{"geonameId":"707679","name":"Ilovays’k","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17621,"modificationDate":"2012-01-18"}, -{"geonameId":"4262072","name":"New Castle","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17621,"modificationDate":"2017-05-23"}, -{"geonameId":"2656258","name":"Barrhead","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17620,"modificationDate":"2017-06-12"}, -{"geonameId":"4955993","name":"Winthrop","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17618,"modificationDate":"2017-05-23"}, -{"geonameId":"1265607","name":"Kundgol","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17617,"modificationDate":"2014-10-14"}, -{"geonameId":"3167184","name":"San Vito dei Normanni","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17617,"modificationDate":"2014-04-13"}, -{"geonameId":"2348507","name":"Babana","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":17617,"modificationDate":"2018-12-04"}, -{"geonameId":"4502687","name":"Lindenwold","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17613,"modificationDate":"2017-05-23"}, -{"geonameId":"2343943","name":"Egbe","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":17612,"modificationDate":"2016-01-30"}, -{"geonameId":"787718","name":"Negotin","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":17612,"modificationDate":"2012-04-16"}, -{"geonameId":"2740313","name":"Covilhã","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":17610,"modificationDate":"2018-01-25"}, -{"geonameId":"2931871","name":"Eilenburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17609,"modificationDate":"2014-01-02"}, -{"geonameId":"294610","name":"Kafr Qanah","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":17606,"modificationDate":"2020-06-10"}, -{"geonameId":"455898","name":"Salaspils","countryName":"Latvia","timeZoneName":"Europe/Riga","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17606,"modificationDate":"2016-12-02"}, -{"geonameId":"1856392","name":"Muroto-misakicho","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":17601,"modificationDate":"2017-04-09"}, -{"geonameId":"4898401","name":"Kenwood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17601,"modificationDate":"2017-12-13"}, -{"geonameId":"1517060","name":"Zaysan","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":17600,"modificationDate":"2013-06-02"}, -{"geonameId":"3044141","name":"Tapolca","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":17598,"modificationDate":"2014-11-05"}, -{"geonameId":"4829307","name":"Bay City","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17598,"modificationDate":"2017-08-19"}, -{"geonameId":"2837954","name":"Schmelz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17596,"modificationDate":"2011-04-25"}, -{"geonameId":"3155573","name":"Gjøvik","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":17596,"modificationDate":"2019-12-12"}, -{"geonameId":"2167949","name":"Earlwood","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17592,"modificationDate":"2019-07-18"}, -{"geonameId":"5030670","name":"Hopkins","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17591,"modificationDate":"2017-05-23"}, -{"geonameId":"2354176","name":"Tougan","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17590,"modificationDate":"2012-06-05"}, -{"geonameId":"6690989","name":"Bethnal Green","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17590,"modificationDate":"2011-03-03"}, -{"geonameId":"1276982","name":"Bargi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17588,"modificationDate":"2015-08-07"}, -{"geonameId":"2525792","name":"Aci Castello","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17588,"modificationDate":"2014-04-13"}, -{"geonameId":"6154636","name":"Squamish","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17587,"modificationDate":"2019-08-26"}, -{"geonameId":"2907551","name":"Heiligensee","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17587,"modificationDate":"2013-02-01"}, -{"geonameId":"285856","name":"Ad Dasmah","countryName":"Kuwait","timeZoneName":"Asia/Kuwait","timeZoneOffsetNameWithoutDst":"Arabian Time","population":17585,"modificationDate":"2015-01-04"}, -{"geonameId":"2691440","name":"Mölnlycke","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":17579,"modificationDate":"2017-11-29"}, -{"geonameId":"4984029","name":"Allendale","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17579,"modificationDate":"2017-05-23"}, -{"geonameId":"1180374","name":"Daur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":17577,"modificationDate":"2019-12-06"}, -{"geonameId":"2634777","name":"Ware","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17576,"modificationDate":"2018-07-03"}, -{"geonameId":"1269183","name":"Jarwal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17576,"modificationDate":"2015-08-07"}, -{"geonameId":"2968546","name":"Villeneuve-le-Roi","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17575,"modificationDate":"2019-03-26"}, -{"geonameId":"4013085","name":"Compostela","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":17573,"modificationDate":"2018-11-03"}, -{"geonameId":"5262596","name":"Menasha","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17572,"modificationDate":"2017-05-23"}, -{"geonameId":"1253782","name":"Una","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17569,"modificationDate":"2014-10-13"}, -{"geonameId":"1261451","name":"Nichlaul","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17567,"modificationDate":"2014-10-14"}, -{"geonameId":"3085495","name":"Słubice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":17567,"modificationDate":"2015-09-06"}, -{"geonameId":"1611106","name":"Chon Daen","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17567,"modificationDate":"2012-01-16"}, -{"geonameId":"3044821","name":"Százhalombatta","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":17566,"modificationDate":"2019-03-04"}, -{"geonameId":"4905263","name":"Palos Hills","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17565,"modificationDate":"2017-05-23"}, -{"geonameId":"2474583","name":"Zeralda","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":17563,"modificationDate":"2012-05-06"}, -{"geonameId":"668129","name":"Salonta","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17561,"modificationDate":"2017-08-08"}, -{"geonameId":"2913192","name":"Haar","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17560,"modificationDate":"2011-02-09"}, -{"geonameId":"5385082","name":"Prunedale","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17560,"modificationDate":"2015-06-16"}, -{"geonameId":"4754966","name":"Culpeper","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17557,"modificationDate":"2017-03-09"}, -{"geonameId":"6690773","name":"Stevenson Ranch","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17557,"modificationDate":"2017-03-10"}, -{"geonameId":"3607254","name":"La Paz","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":17555,"modificationDate":"2013-01-10"}, -{"geonameId":"2750884","name":"Middelharnis","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":17554,"modificationDate":"2017-10-17"}, -{"geonameId":"3079467","name":"Beroun","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":17550,"modificationDate":"2019-03-19"}, -{"geonameId":"12035575","name":"Kronberg Tal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17550,"modificationDate":"2019-03-13"}, -{"geonameId":"3169056","name":"Romano di Lombardia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17549,"modificationDate":"2015-07-21"}, -{"geonameId":"3463939","name":"Espinosa","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17548,"modificationDate":"2012-08-03"}, -{"geonameId":"4733042","name":"South Houston","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17544,"modificationDate":"2017-03-09"}, -{"geonameId":"1064366","name":"Ifanadiana","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17543,"modificationDate":"2018-09-10"}, -{"geonameId":"3517285","name":"Heroica Ciudad de Tlaxiaco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17543,"modificationDate":"2018-11-03"}, -{"geonameId":"3055601","name":"Balassagyarmat","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":17541,"modificationDate":"2020-06-10"}, -{"geonameId":"1258972","name":"Raipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17537,"modificationDate":"2014-10-14"}, -{"geonameId":"1266390","name":"Kodoli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17537,"modificationDate":"2014-10-13"}, -{"geonameId":"3460738","name":"Itapemirim","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17536,"modificationDate":"2012-08-03"}, -{"geonameId":"3395380","name":"Mari","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17535,"modificationDate":"2012-08-03"}, -{"geonameId":"2264087","name":"Ramada","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":17535,"modificationDate":"2018-02-14"}, -{"geonameId":"2740761","name":"Chaves","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":17535,"modificationDate":"2018-04-30"}, -{"geonameId":"1696041","name":"Palo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":17534,"modificationDate":"2017-12-13"}, -{"geonameId":"1259231","name":"Pūndri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17533,"modificationDate":"2015-01-07"}, -{"geonameId":"1276353","name":"Bhadaur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17532,"modificationDate":"2015-05-06"}, -{"geonameId":"316102","name":"Dursunbey","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":17532,"modificationDate":"2013-06-05"}, -{"geonameId":"294622","name":"Judeida Makr","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":17530,"modificationDate":"2020-04-23"}, -{"geonameId":"2924577","name":"Friedrichshagen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17529,"modificationDate":"2017-09-19"}, -{"geonameId":"1255224","name":"Tājpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17529,"modificationDate":"2015-08-07"}, -{"geonameId":"1764318","name":"Kampung Simpang Renggam","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":17528,"modificationDate":"2012-01-17"}, -{"geonameId":"2994895","name":"Mazargues","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17527,"modificationDate":"2018-08-22"}, -{"geonameId":"3452141","name":"Quatro Barras","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17526,"modificationDate":"2012-08-03"}, -{"geonameId":"342559","name":"Bedessa","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17526,"modificationDate":"2020-06-11"}, -{"geonameId":"710548","name":"Krasnopartizanskiy","countryName":"Ukraine","timeZoneName":"Europe/Zaporozhye","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17526,"modificationDate":"2020-06-10"}, -{"geonameId":"1013550","name":"Christiana","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":17523,"modificationDate":"2012-07-12"}, -{"geonameId":"3468560","name":"Caçapava do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17522,"modificationDate":"2014-10-23"}, -{"geonameId":"2979316","name":"Saint-Jean-de-la-Ruelle","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17522,"modificationDate":"2016-02-18"}, -{"geonameId":"5055787","name":"Kirksville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17520,"modificationDate":"2017-05-23"}, -{"geonameId":"745530","name":"Hopa","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":17519,"modificationDate":"2013-05-20"}, -{"geonameId":"787715","name":"Negotino","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":17518,"modificationDate":"2017-09-05"}, -{"geonameId":"753276","name":"Zielonka","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":17518,"modificationDate":"2015-09-05"}, -{"geonameId":"2991772","name":"Morlaix","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17516,"modificationDate":"2020-06-10"}, -{"geonameId":"1261186","name":"North Guwāhāti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17516,"modificationDate":"2014-10-13"}, -{"geonameId":"2643144","name":"Maltby","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17513,"modificationDate":"2017-06-12"}, -{"geonameId":"5173623","name":"Tallmadge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17512,"modificationDate":"2017-05-23"}, -{"geonameId":"12156873","name":"Victoria Village","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17510,"modificationDate":"2020-05-02"}, -{"geonameId":"5128886","name":"North Babylon","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17509,"modificationDate":"2017-05-23"}, -{"geonameId":"3063736","name":"Uherský Brod","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":17508,"modificationDate":"2018-09-08"}, -{"geonameId":"3532545","name":"Axochiapan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17508,"modificationDate":"2018-11-03"}, -{"geonameId":"3460172","name":"Jandaia do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17507,"modificationDate":"2012-08-03"}, -{"geonameId":"1152377","name":"Lat Yao","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17506,"modificationDate":"2012-01-16"}, -{"geonameId":"1213821","name":"Sigli","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":17504,"modificationDate":"2013-07-04"}, -{"geonameId":"3453605","name":"Pirajuí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17503,"modificationDate":"2012-08-03"}, -{"geonameId":"1278458","name":"Arang","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17503,"modificationDate":"2015-08-07"}, -{"geonameId":"3172828","name":"Montemurlo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17502,"modificationDate":"2013-09-10"}, -{"geonameId":"2784189","name":"Walcourt","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17501,"modificationDate":"2011-07-19"}, -{"geonameId":"629447","name":"Bykhaw","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17500,"modificationDate":"2019-09-05"}, -{"geonameId":"6545243","name":"Bayswater","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17500,"modificationDate":"2011-03-03"}, -{"geonameId":"1273098","name":"Devgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17500,"modificationDate":"2014-10-14"}, -{"geonameId":"1277426","name":"Bānapur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17499,"modificationDate":"2014-10-14"}, -{"geonameId":"2028078","name":"Aginskoye","countryName":"Russia","timeZoneName":"Asia/Chita","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":17496,"modificationDate":"2016-11-29"}, -{"geonameId":"5508180","name":"Mesquite","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17496,"modificationDate":"2017-09-09"}, -{"geonameId":"2951111","name":"Bendorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17495,"modificationDate":"2015-09-05"}, -{"geonameId":"1718393","name":"Carigara","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":17495,"modificationDate":"2017-12-13"}, -{"geonameId":"438400","name":"Denizciler","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":17495,"modificationDate":"2016-09-09"}, -{"geonameId":"1262444","name":"Murbād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17494,"modificationDate":"2014-10-13"}, -{"geonameId":"549741","name":"Kholmskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17494,"modificationDate":"2012-01-17"}, -{"geonameId":"578534","name":"Baymak","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":17493,"modificationDate":"2012-01-17"}, -{"geonameId":"3429732","name":"Puerto Rico","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":17491,"modificationDate":"2016-01-30"}, -{"geonameId":"1283333","name":"Ilām","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":17491,"modificationDate":"2019-10-19"}, -{"geonameId":"739061","name":"Taşköprü","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":17491,"modificationDate":"2012-01-18"}, -{"geonameId":"2634755","name":"Warminster","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17490,"modificationDate":"2017-06-12"}, -{"geonameId":"2361946","name":"Boulsa","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17489,"modificationDate":"2013-02-08"}, -{"geonameId":"3445939","name":"Tupanciretã","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17488,"modificationDate":"2012-08-03"}, -{"geonameId":"1259855","name":"Perundurai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17488,"modificationDate":"2014-10-14"}, -{"geonameId":"3182851","name":"Ariccia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17487,"modificationDate":"2015-07-21"}, -{"geonameId":"3521103","name":"Progreso de Alvaro Obregon","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17486,"modificationDate":"2018-11-03"}, -{"geonameId":"2339892","name":"Gwadabawa","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":17486,"modificationDate":"2016-06-22"}, -{"geonameId":"2794788","name":"Kalmthout","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17485,"modificationDate":"2011-02-11"}, -{"geonameId":"1137807","name":"Karukh","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":17484,"modificationDate":"2018-02-17"}, -{"geonameId":"5164390","name":"New Philadelphia","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17484,"modificationDate":"2017-05-23"}, -{"geonameId":"2506623","name":"Arbatache","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":17481,"modificationDate":"2018-10-01"}, -{"geonameId":"3087529","name":"Radlin","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":17479,"modificationDate":"2010-09-21"}, -{"geonameId":"7932573","name":"Melton West","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17477,"modificationDate":"2019-07-18"}, -{"geonameId":"3113157","name":"Porriño","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17475,"modificationDate":"2018-12-01"}, -{"geonameId":"3526864","name":"Ciudad de Huitzuco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17475,"modificationDate":"2018-11-03"}, -{"geonameId":"1497393","name":"Nizhnyaya Salda","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":17473,"modificationDate":"2012-01-17"}, -{"geonameId":"4307238","name":"Saint Matthews","countryName":"United States","timeZoneName":"America/Kentucky/Louisville","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17472,"modificationDate":"2011-05-14"}, -{"geonameId":"1220112","name":"Yovon","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":17471,"modificationDate":"2012-02-28"}, -{"geonameId":"3170086","name":"Portogruaro","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17468,"modificationDate":"2014-04-13"}, -{"geonameId":"877605","name":"Nanganga","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17468,"modificationDate":"2011-03-06"}, -{"geonameId":"2347330","name":"Beli","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":17467,"modificationDate":"2016-01-30"}, -{"geonameId":"1262491","name":"Mūndwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17465,"modificationDate":"2014-10-14"}, -{"geonameId":"2744483","name":"Wijk bij Duurstede","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":17465,"modificationDate":"2017-10-17"}, -{"geonameId":"2636132","name":"Teignmouth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17463,"modificationDate":"2019-12-19"}, -{"geonameId":"4163220","name":"Maitland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17463,"modificationDate":"2017-03-09"}, -{"geonameId":"2875623","name":"Lubnjow","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17461,"modificationDate":"2020-06-10"}, -{"geonameId":"2337680","name":"Illela","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":17461,"modificationDate":"2016-06-22"}, -{"geonameId":"2634826","name":"Walton-on-the-Naze","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17458,"modificationDate":"2018-07-03"}, -{"geonameId":"2993024","name":"Montargis","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17457,"modificationDate":"2019-04-10"}, -{"geonameId":"3660478","name":"Atuntaqui","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":17456,"modificationDate":"2018-05-09"}, -{"geonameId":"4903818","name":"North Aurora","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17456,"modificationDate":"2017-05-23"}, -{"geonameId":"7871306","name":"Morningside","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17455,"modificationDate":"2020-05-02"}, -{"geonameId":"285111","name":"Bethany","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17455,"modificationDate":"2020-06-10"}, -{"geonameId":"150276","name":"Same","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17455,"modificationDate":"2016-07-26"}, -{"geonameId":"4170797","name":"Safety Harbor","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17454,"modificationDate":"2017-03-09"}, -{"geonameId":"693615","name":"Skvyra","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17452,"modificationDate":"2018-10-21"}, -{"geonameId":"12070764","name":"Valley East","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17451,"modificationDate":"2019-08-09"}, -{"geonameId":"1699060","name":"Murcia","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":17448,"modificationDate":"2017-12-13"}, -{"geonameId":"2448442","name":"Yorosso","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17447,"modificationDate":"2013-11-09"}, -{"geonameId":"1273858","name":"Calangute","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17446,"modificationDate":"2008-10-07"}, -{"geonameId":"3947740","name":"Andahuaylas","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":17444,"modificationDate":"2018-01-16"}, -{"geonameId":"1257268","name":"Sarāi Ākil","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17443,"modificationDate":"2015-09-06"}, -{"geonameId":"2848175","name":"Renningen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17442,"modificationDate":"2013-04-03"}, -{"geonameId":"1732698","name":"Parit Raja","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":17441,"modificationDate":"2012-01-17"}, -{"geonameId":"5164706","name":"North Canton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17441,"modificationDate":"2017-05-23"}, -{"geonameId":"3178650","name":"Ciriè","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17439,"modificationDate":"2015-07-21"}, -{"geonameId":"3406196","name":"Barreirinhas","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17437,"modificationDate":"2013-04-01"}, -{"geonameId":"3461910","name":"Guaranésia","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17437,"modificationDate":"2012-08-03"}, -{"geonameId":"2974385","name":"Soisy-sous-Montmorency","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17436,"modificationDate":"2016-02-18"}, -{"geonameId":"2635269","name":"Tynemouth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17436,"modificationDate":"2011-03-03"}, -{"geonameId":"2953324","name":"Bad Tölz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17434,"modificationDate":"2019-09-05"}, -{"geonameId":"3032551","name":"Bischheim","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17434,"modificationDate":"2019-03-26"}, -{"geonameId":"1278808","name":"Amet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17434,"modificationDate":"2014-10-14"}, -{"geonameId":"3689905","name":"Andalucía","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":17432,"modificationDate":"2018-09-05"}, -{"geonameId":"3018339","name":"Flers","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17430,"modificationDate":"2019-12-03"}, -{"geonameId":"3064454","name":"Svitavy","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":17427,"modificationDate":"2018-09-08"}, -{"geonameId":"2861677","name":"Nümbrecht","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17427,"modificationDate":"2017-04-26"}, -{"geonameId":"3703229","name":"Pedregal","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17427,"modificationDate":"2017-08-16"}, -{"geonameId":"5344942","name":"East Hemet","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17418,"modificationDate":"2011-05-14"}, -{"geonameId":"791559","name":"Delcevo","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":17415,"modificationDate":"2014-03-01"}, -{"geonameId":"3095277","name":"Konstantynów Łódzki","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":17415,"modificationDate":"2010-10-16"}, -{"geonameId":"1614288","name":"Ban Phe","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17414,"modificationDate":"2017-09-19"}, -{"geonameId":"2112615","name":"Inawashiro","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":17413,"modificationDate":"2017-04-09"}, -{"geonameId":"498708","name":"Saraktash","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":17413,"modificationDate":"2019-08-28"}, -{"geonameId":"1613284","name":"Ban Selaphum","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17412,"modificationDate":"2006-01-17"}, -{"geonameId":"6105815","name":"Pitt Meadows","countryName":"Canada","timeZoneName":"America/Vancouver","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17410,"modificationDate":"2019-02-26"}, -{"geonameId":"3599788","name":"Alotenango","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":17410,"modificationDate":"2020-01-08"}, -{"geonameId":"2788348","name":"Ranst","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17405,"modificationDate":"2011-02-10"}, -{"geonameId":"2995652","name":"Marly-le-Roi","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17404,"modificationDate":"2016-02-18"}, -{"geonameId":"2857900","name":"Oerlinghausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17403,"modificationDate":"2015-09-04"}, -{"geonameId":"1261810","name":"Naregal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17403,"modificationDate":"2014-10-14"}, -{"geonameId":"4373449","name":"White Oak","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17403,"modificationDate":"2011-05-14"}, -{"geonameId":"4780837","name":"Radford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17403,"modificationDate":"2017-03-09"}, -{"geonameId":"5938513","name":"Deux-Montagnes","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17402,"modificationDate":"2016-06-22"}, -{"geonameId":"5955960","name":"Fort St. John","countryName":"Canada","timeZoneName":"America/Dawson_Creek","timeZoneOffsetNameWithoutDst":"Mountain Time","population":17402,"modificationDate":"2019-02-26"}, -{"geonameId":"625743","name":"Lyepyel’","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17400,"modificationDate":"2012-02-28"}, -{"geonameId":"649924","name":"Kuusamo","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17400,"modificationDate":"2020-05-18"}, -{"geonameId":"3827588","name":"Huilango","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17399,"modificationDate":"2013-07-31"}, -{"geonameId":"3364682","name":"Lansdowne","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":17399,"modificationDate":"2013-09-07"}, -{"geonameId":"4093753","name":"Tillmans Corner","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17398,"modificationDate":"2011-05-14"}, -{"geonameId":"6052788","name":"Les Coteaux","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17396,"modificationDate":"2019-08-08"}, -{"geonameId":"41428","name":"Pādegān-e Manjīl","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":17396,"modificationDate":"2017-12-12"}, -{"geonameId":"2965353","name":"Cluain Meala","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17394,"modificationDate":"2015-05-24"}, -{"geonameId":"3570785","name":"Ducos","countryName":"Martinique","timeZoneName":"America/Martinique","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":17394,"modificationDate":"2018-12-04"}, -{"geonameId":"1704021","name":"Maganoy","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":17394,"modificationDate":"2017-12-13"}, -{"geonameId":"1778290","name":"Bukit Rambai","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":17391,"modificationDate":"2012-01-17"}, -{"geonameId":"3006121","name":"Lattes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17390,"modificationDate":"2020-06-10"}, -{"geonameId":"1258278","name":"Raybagh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17389,"modificationDate":"2020-06-10"}, -{"geonameId":"8062662","name":"Detroit-Shoreway","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17382,"modificationDate":"2017-12-13"}, -{"geonameId":"2654179","name":"Bushey","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17380,"modificationDate":"2012-06-07"}, -{"geonameId":"3173370","name":"Mirandola","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17380,"modificationDate":"2014-04-13"}, -{"geonameId":"256622","name":"Néa Erythraía","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17379,"modificationDate":"2020-06-20"}, -{"geonameId":"567774","name":"Chudovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17377,"modificationDate":"2013-11-10"}, -{"geonameId":"2648728","name":"Gelligaer","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17376,"modificationDate":"2011-07-31"}, -{"geonameId":"3398920","name":"Glória do Goitá","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17374,"modificationDate":"2012-08-03"}, -{"geonameId":"204318","name":"Wamba","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":17373,"modificationDate":"2016-11-22"}, -{"geonameId":"3072929","name":"Kralupy nad Vltavou","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":17373,"modificationDate":"2019-03-20"}, -{"geonameId":"2793144","name":"Lebbeke","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17372,"modificationDate":"2012-01-18"}, -{"geonameId":"1277897","name":"Bagdogra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17372,"modificationDate":"2016-10-22"}, -{"geonameId":"1269752","name":"Indergarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17366,"modificationDate":"2014-10-14"}, -{"geonameId":"575410","name":"Boksitogorsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17366,"modificationDate":"2019-09-05"}, -{"geonameId":"2897674","name":"Hummelsbüttel","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17365,"modificationDate":"2017-08-14"}, -{"geonameId":"2756077","name":"Enkhuizen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":17365,"modificationDate":"2017-10-17"}, -{"geonameId":"2869449","name":"Moosburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17363,"modificationDate":"2013-02-19"}, -{"geonameId":"553092","name":"Kantyshevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17363,"modificationDate":"2012-08-04"}, -{"geonameId":"2807201","name":"Wittstock","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17361,"modificationDate":"2015-09-04"}, -{"geonameId":"3123667","name":"El Astillero","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17360,"modificationDate":"2012-01-19"}, -{"geonameId":"1261382","name":"Nilokheri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17360,"modificationDate":"2020-06-10"}, -{"geonameId":"2637659","name":"Sleaford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17359,"modificationDate":"2018-07-03"}, -{"geonameId":"468657","name":"Yasnyy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":17359,"modificationDate":"2012-01-17"}, -{"geonameId":"2156663","name":"Mount Eliza","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17358,"modificationDate":"2019-07-18"}, -{"geonameId":"2523461","name":"San Giovanni in Fiore","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17358,"modificationDate":"2015-07-21"}, -{"geonameId":"545788","name":"Kommunar","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17358,"modificationDate":"2019-09-05"}, -{"geonameId":"1279061","name":"Alangāyam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17357,"modificationDate":"2016-11-22"}, -{"geonameId":"3895061","name":"Chimbarongo","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":17356,"modificationDate":"2013-01-11"}, -{"geonameId":"1651816","name":"Aileu","countryName":"Timor Leste","timeZoneName":"Asia/Dili","timeZoneOffsetNameWithoutDst":"East Timor Time","population":17356,"modificationDate":"2016-11-27"}, -{"geonameId":"2264575","name":"Pombal","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":17355,"modificationDate":"2014-04-06"}, -{"geonameId":"3461525","name":"Ibotirama","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17354,"modificationDate":"2012-08-03"}, -{"geonameId":"1269927","name":"Howli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17354,"modificationDate":"2014-10-13"}, -{"geonameId":"561762","name":"Gavrilov-Yam","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17351,"modificationDate":"2018-04-20"}, -{"geonameId":"3689162","name":"Barrancas","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":17350,"modificationDate":"2018-07-04"}, -{"geonameId":"5016450","name":"Anoka","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17350,"modificationDate":"2017-05-23"}, -{"geonameId":"1277200","name":"Banūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17349,"modificationDate":"2015-09-06"}, -{"geonameId":"2032201","name":"Bulgan","countryName":"Mongolia","timeZoneName":"Asia/Ulaanbaatar","timeZoneOffsetNameWithoutDst":"Ulaanbaatar Time","population":17348,"modificationDate":"2012-12-15"}, -{"geonameId":"3168514","name":"San Bonifacio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17347,"modificationDate":"2015-07-21"}, -{"geonameId":"3391397","name":"Porto Calvo","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17346,"modificationDate":"2012-08-03"}, -{"geonameId":"1133574","name":"Miterlam","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":17345,"modificationDate":"2020-06-09"}, -{"geonameId":"2745932","name":"Urk","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":17345,"modificationDate":"2017-10-17"}, -{"geonameId":"379406","name":"Hilaliya","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":17345,"modificationDate":"2020-06-11"}, -{"geonameId":"5152599","name":"East Cleveland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17344,"modificationDate":"2017-05-23"}, -{"geonameId":"4952320","name":"Sudbury","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17343,"modificationDate":"2017-05-23"}, -{"geonameId":"159186","name":"Ilongero","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17342,"modificationDate":"2016-07-26"}, -{"geonameId":"1182577","name":"Bhopalwala","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":17341,"modificationDate":"2020-01-08"}, -{"geonameId":"2783820","name":"Wervik","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17340,"modificationDate":"2012-01-18"}, -{"geonameId":"365763","name":"Tonj","countryName":"South Sudan","timeZoneName":"Africa/Juba","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17338,"modificationDate":"2017-06-16"}, -{"geonameId":"2980935","name":"Saint-Cyr-sur-Loire","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17337,"modificationDate":"2016-02-18"}, -{"geonameId":"1259773","name":"Phirangipuram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17335,"modificationDate":"2014-10-10"}, -{"geonameId":"1274284","name":"Chhoti Sādri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17335,"modificationDate":"2014-10-14"}, -{"geonameId":"3183412","name":"Agropoli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17335,"modificationDate":"2015-07-21"}, -{"geonameId":"645691","name":"Munkkiniemi","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17334,"modificationDate":"2018-10-28"}, -{"geonameId":"2647265","name":"Haydock","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17333,"modificationDate":"2011-03-03"}, -{"geonameId":"3471940","name":"Aparecida do Taboado","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":17332,"modificationDate":"2012-08-03"}, -{"geonameId":"506763","name":"Polyarnyy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17332,"modificationDate":"2019-05-08"}, -{"geonameId":"3123688","name":"Ejea de los Caballeros","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17331,"modificationDate":"2012-04-29"}, -{"geonameId":"8948709","name":"Paolo VI","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17330,"modificationDate":"2014-04-13"}, -{"geonameId":"4840767","name":"Plainville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17328,"modificationDate":"2017-05-23"}, -{"geonameId":"2872519","name":"Meerane","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17325,"modificationDate":"2015-09-05"}, -{"geonameId":"1269439","name":"Jalalpore","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17325,"modificationDate":"2020-04-04"}, -{"geonameId":"3460542","name":"Itororó","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17324,"modificationDate":"2012-08-03"}, -{"geonameId":"12070069","name":"San Pietro a Patierno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17324,"modificationDate":"2019-07-22"}, -{"geonameId":"1274369","name":"Chhala","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17323,"modificationDate":"2018-12-04"}, -{"geonameId":"3467272","name":"Capim Grosso","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17322,"modificationDate":"2012-08-03"}, -{"geonameId":"3591181","name":"Poctum","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":17320,"modificationDate":"2020-06-10"}, -{"geonameId":"88962","name":"Al Jawf","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17320,"modificationDate":"2014-01-01"}, -{"geonameId":"3017651","name":"Fos-sur-Mer","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17317,"modificationDate":"2016-02-18"}, -{"geonameId":"1152202","name":"Mae Ramat","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17316,"modificationDate":"2012-01-16"}, -{"geonameId":"3110610","name":"Sanxenxo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17315,"modificationDate":"2018-09-12"}, -{"geonameId":"3179686","name":"Castelfranco Emilia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17315,"modificationDate":"2014-04-13"}, -{"geonameId":"2940204","name":"Cham","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17314,"modificationDate":"2014-01-09"}, -{"geonameId":"1609043","name":"Lom Sak","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17309,"modificationDate":"2012-01-16"}, -{"geonameId":"3457247","name":"Mendes","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17308,"modificationDate":"2012-08-03"}, -{"geonameId":"3037157","name":"Arcueil","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17308,"modificationDate":"2016-02-18"}, -{"geonameId":"2861402","name":"Oberasbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17306,"modificationDate":"2013-02-19"}, -{"geonameId":"3105805","name":"Vilaseca","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17305,"modificationDate":"2012-01-19"}, -{"geonameId":"3119231","name":"La Pineda","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17305,"modificationDate":"2017-10-31"}, -{"geonameId":"3164920","name":"Valenza","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17305,"modificationDate":"2015-07-21"}, -{"geonameId":"294604","name":"Kefar Qesem","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":17303,"modificationDate":"2020-06-10"}, -{"geonameId":"4529096","name":"Ada","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17303,"modificationDate":"2017-03-09"}, -{"geonameId":"5223358","name":"Middletown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17303,"modificationDate":"2017-05-23"}, -{"geonameId":"2659296","name":"Onex","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":17302,"modificationDate":"2016-08-03"}, -{"geonameId":"308220","name":"Kemer","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":17300,"modificationDate":"2011-11-06"}, -{"geonameId":"11839902","name":"Tres Valles","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17299,"modificationDate":"2018-11-03"}, -{"geonameId":"658629","name":"Haukipudas","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17298,"modificationDate":"2014-09-25"}, -{"geonameId":"615860","name":"Akhaltsikhe","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":17298,"modificationDate":"2019-09-05"}, -{"geonameId":"686669","name":"Adjud","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17298,"modificationDate":"2016-02-07"}, -{"geonameId":"2642096","name":"Mountsorrel","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17297,"modificationDate":"2018-07-03"}, -{"geonameId":"2644559","name":"Lewes","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17297,"modificationDate":"2017-06-12"}, -{"geonameId":"2635997","name":"Thorne","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17295,"modificationDate":"2017-06-12"}, -{"geonameId":"714697","name":"Tiszaszederken","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":17295,"modificationDate":"2020-06-10"}, -{"geonameId":"4356165","name":"Glassmanor","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17295,"modificationDate":"2011-05-14"}, -{"geonameId":"5104836","name":"South Orange","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17295,"modificationDate":"2017-05-23"}, -{"geonameId":"2786229","name":"Stabroek","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17294,"modificationDate":"2012-01-18"}, -{"geonameId":"1168633","name":"Paharpur","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":17294,"modificationDate":"2019-12-06"}, -{"geonameId":"1313479","name":"Loikaw","countryName":"Myanmar","timeZoneName":"Asia/Yangon","timeZoneOffsetNameWithoutDst":"Myanmar Time","population":17293,"modificationDate":"2018-01-03"}, -{"geonameId":"2783197","name":"Zolder","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17289,"modificationDate":"2020-05-25"}, -{"geonameId":"4765553","name":"Idylwood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17288,"modificationDate":"2011-05-14"}, -{"geonameId":"4369076","name":"Seabrook","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17287,"modificationDate":"2015-06-07"}, -{"geonameId":"3446087","name":"Três Passos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17286,"modificationDate":"2012-08-03"}, -{"geonameId":"3659926","name":"Calceta","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":17286,"modificationDate":"2017-02-07"}, -{"geonameId":"4535414","name":"Durant","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17286,"modificationDate":"2017-03-09"}, -{"geonameId":"1255213","name":"Takhatgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17285,"modificationDate":"2015-10-04"}, -{"geonameId":"2998224","name":"Lingolsheim","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17284,"modificationDate":"2019-03-26"}, -{"geonameId":"254698","name":"Préveza","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17283,"modificationDate":"2018-05-23"}, -{"geonameId":"289433","name":"Adam","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":17283,"modificationDate":"2018-04-06"}, -{"geonameId":"2815565","name":"Wadern","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17282,"modificationDate":"2015-09-05"}, -{"geonameId":"4837278","name":"Killingly Center","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17282,"modificationDate":"2017-05-23"}, -{"geonameId":"5123456","name":"Kings Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17282,"modificationDate":"2017-05-23"}, -{"geonameId":"7535681","name":"Saint-Augustin-de-Desmaures","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17281,"modificationDate":"2019-02-26"}, -{"geonameId":"2648215","name":"Grangemouth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17280,"modificationDate":"2017-06-12"}, -{"geonameId":"2871284","name":"Michelstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17279,"modificationDate":"2019-09-05"}, -{"geonameId":"3176722","name":"Fornacelle","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17278,"modificationDate":"2015-07-21"}, -{"geonameId":"2653974","name":"Calne","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17274,"modificationDate":"2017-06-12"}, -{"geonameId":"2806081","name":"Wörth am Rhein","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17272,"modificationDate":"2015-09-05"}, -{"geonameId":"5717758","name":"Canby","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17271,"modificationDate":"2017-03-09"}, -{"geonameId":"1257191","name":"Sardulgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17270,"modificationDate":"2014-10-14"}, -{"geonameId":"1276151","name":"Bhānpurī","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17270,"modificationDate":"2015-09-06"}, -{"geonameId":"3179795","name":"Cassano d'Adda","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17267,"modificationDate":"2015-07-21"}, -{"geonameId":"2967879","name":"Vitré","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17266,"modificationDate":"2016-02-18"}, -{"geonameId":"4404233","name":"Poplar Bluff","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17266,"modificationDate":"2017-05-23"}, -{"geonameId":"3517831","name":"San Salvador El Seco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17263,"modificationDate":"2018-11-03"}, -{"geonameId":"3107364","name":"Tui","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17262,"modificationDate":"2015-06-07"}, -{"geonameId":"2962361","name":"An Muileann gCearr","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17262,"modificationDate":"2019-09-05"}, -{"geonameId":"8858116","name":"Casa Blanca","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17262,"modificationDate":"2014-04-11"}, -{"geonameId":"1262073","name":"Naldurg","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17261,"modificationDate":"2014-10-13"}, -{"geonameId":"485871","name":"Suvorovskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17261,"modificationDate":"2012-01-17"}, -{"geonameId":"2838201","name":"Schlüchtern","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17260,"modificationDate":"2019-09-05"}, -{"geonameId":"2512432","name":"Pollença","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17260,"modificationDate":"2012-04-29"}, -{"geonameId":"1259026","name":"Rahimatpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17260,"modificationDate":"2014-10-13"}, -{"geonameId":"3935572","name":"Mala","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":17260,"modificationDate":"2012-07-19"}, -{"geonameId":"262719","name":"Ellinikó","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17259,"modificationDate":"2019-10-23"}, -{"geonameId":"1262546","name":"Mūlki","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17259,"modificationDate":"2015-10-04"}, -{"geonameId":"5374671","name":"Moraga","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17256,"modificationDate":"2017-03-09"}, -{"geonameId":"1255630","name":"Srīperumbūdūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17253,"modificationDate":"2014-10-14"}, -{"geonameId":"1735195","name":"Sabak Bernam","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":17251,"modificationDate":"2012-01-17"}, -{"geonameId":"2967856","name":"Vitry-le-François","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17250,"modificationDate":"2019-04-10"}, -{"geonameId":"3389006","name":"São Bento","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17245,"modificationDate":"2012-08-03"}, -{"geonameId":"732452","name":"Chirpan","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17243,"modificationDate":"2018-03-22"}, -{"geonameId":"580850","name":"Arsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17243,"modificationDate":"2012-01-17"}, -{"geonameId":"2151576","name":"Ringwood","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17242,"modificationDate":"2019-07-18"}, -{"geonameId":"147059","name":"Əhmədbəyli","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":17242,"modificationDate":"2018-08-07"}, -{"geonameId":"4366593","name":"Redland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17242,"modificationDate":"2011-05-14"}, -{"geonameId":"6295484","name":"Zürich (Kreis 11) / Affoltern","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":17241,"modificationDate":"2017-12-21"}, -{"geonameId":"1605957","name":"Tak Bai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17241,"modificationDate":"2012-01-16"}, -{"geonameId":"3066651","name":"Rožnov pod Radhoštěm","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":17238,"modificationDate":"2019-10-03"}, -{"geonameId":"1277514","name":"Bālugaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17238,"modificationDate":"2017-10-04"}, -{"geonameId":"2738707","name":"Ílhavo","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":17236,"modificationDate":"2018-04-30"}, -{"geonameId":"6620312","name":"Torvaianica","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17235,"modificationDate":"2015-07-21"}, -{"geonameId":"692129","name":"Svalyava","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17234,"modificationDate":"2020-05-08"}, -{"geonameId":"3449707","name":"Santo Anastácio","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17233,"modificationDate":"2012-08-03"}, -{"geonameId":"3667820","name":"Sonsón","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":17232,"modificationDate":"2018-06-08"}, -{"geonameId":"2455735","name":"Kangaba","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17232,"modificationDate":"2013-11-09"}, -{"geonameId":"5126187","name":"Massapequa Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17232,"modificationDate":"2017-05-23"}, -{"geonameId":"3374218","name":"Santa Maria","countryName":"Cabo Verde","timeZoneName":"Atlantic/Cape_Verde","timeZoneOffsetNameWithoutDst":"Cape Verde Time","population":17231,"modificationDate":"2017-07-12"}, -{"geonameId":"3020307","name":"Elbeuf","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":17231,"modificationDate":"2016-02-18"}, -{"geonameId":"2907545","name":"Heilbad Heiligenstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17230,"modificationDate":"2015-09-05"}, -{"geonameId":"3453827","name":"Pindobaçu","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17229,"modificationDate":"2012-08-03"}, -{"geonameId":"2513324","name":"Navalmoral de la Mata","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17228,"modificationDate":"2012-03-04"}, -{"geonameId":"1275589","name":"Bilthra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17228,"modificationDate":"2015-09-06"}, -{"geonameId":"315905","name":"Eğirdir","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":17228,"modificationDate":"2011-01-23"}, -{"geonameId":"985015","name":"Ladybrand","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":17228,"modificationDate":"2012-07-12"}, -{"geonameId":"2641892","name":"Nantwich","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17226,"modificationDate":"2017-06-12"}, -{"geonameId":"738907","name":"Tekke","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":17226,"modificationDate":"2020-06-10"}, -{"geonameId":"5597955","name":"Kuna","countryName":"United States","timeZoneName":"America/Boise","timeZoneOffsetNameWithoutDst":"Mountain Time","population":17226,"modificationDate":"2017-03-09"}, -{"geonameId":"3336587","name":"Askøy","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":17224,"modificationDate":"2019-12-12"}, -{"geonameId":"3396364","name":"Lavras da Mangabeira","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17221,"modificationDate":"2012-08-03"}, -{"geonameId":"558799","name":"Gribanovskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17220,"modificationDate":"2012-01-17"}, -{"geonameId":"3451709","name":"Regente Feijó","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17218,"modificationDate":"2012-08-03"}, -{"geonameId":"4062644","name":"Foley","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17218,"modificationDate":"2017-03-09"}, -{"geonameId":"1021360","name":"Ballito","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":17218,"modificationDate":"2017-01-13"}, -{"geonameId":"1267065","name":"Khānāpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17216,"modificationDate":"2014-10-14"}, -{"geonameId":"1494091","name":"Promyshlennaya","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":17216,"modificationDate":"2012-01-17"}, -{"geonameId":"3522118","name":"Palmarito Tochapan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17213,"modificationDate":"2018-11-03"}, -{"geonameId":"2265169","name":"Parede","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":17212,"modificationDate":"2012-02-01"}, -{"geonameId":"158016","name":"Kibara","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17211,"modificationDate":"2016-07-26"}, -{"geonameId":"587361","name":"Aghsu","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":17209,"modificationDate":"2018-03-08"}, -{"geonameId":"4170688","name":"Ruskin","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17208,"modificationDate":"2011-05-14"}, -{"geonameId":"3068766","name":"Ostrov","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":17206,"modificationDate":"2018-09-09"}, -{"geonameId":"4004126","name":"Jamay","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17204,"modificationDate":"2018-11-03"}, -{"geonameId":"5731070","name":"Hermiston","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17201,"modificationDate":"2017-03-09"}, -{"geonameId":"1686004","name":"Sitangkai","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":17200,"modificationDate":"2017-12-13"}, -{"geonameId":"3464255","name":"Encruzilhada do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17199,"modificationDate":"2012-08-03"}, -{"geonameId":"4713932","name":"Nederland","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17196,"modificationDate":"2017-03-09"}, -{"geonameId":"2250677","name":"Kayar","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17193,"modificationDate":"2012-12-05"}, -{"geonameId":"2806768","name":"Wolfratshausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17191,"modificationDate":"2013-02-19"}, -{"geonameId":"3392368","name":"Penalva","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17186,"modificationDate":"2012-08-03"}, -{"geonameId":"2951935","name":"Baumschulenweg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17186,"modificationDate":"2012-08-04"}, -{"geonameId":"1937274","name":"Lospalos","countryName":"Timor Leste","timeZoneName":"Asia/Dili","timeZoneOffsetNameWithoutDst":"East Timor Time","population":17186,"modificationDate":"2018-10-05"}, -{"geonameId":"5354172","name":"Greenfield","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17184,"modificationDate":"2017-03-09"}, -{"geonameId":"2947641","name":"Blomberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17183,"modificationDate":"2015-09-04"}, -{"geonameId":"2235776","name":"Akonolinga","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":17181,"modificationDate":"2012-01-16"}, -{"geonameId":"151678","name":"Ngerengere","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17181,"modificationDate":"2016-07-26"}, -{"geonameId":"12156867","name":"Danforth East York","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17180,"modificationDate":"2020-05-02"}, -{"geonameId":"1266744","name":"Khetri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17177,"modificationDate":"2014-10-14"}, -{"geonameId":"651299","name":"Korsholm","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17176,"modificationDate":"2014-09-25"}, -{"geonameId":"5244267","name":"Ashwaubenon","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17176,"modificationDate":"2017-05-23"}, -{"geonameId":"3664321","name":"Eirunepé","countryName":"Brazil","timeZoneName":"America/Eirunepe","timeZoneOffsetNameWithoutDst":"Acre Time","population":17175,"modificationDate":"2017-09-10"}, -{"geonameId":"3389358","name":"Santa Quitéria do Maranhão","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17174,"modificationDate":"2012-08-03"}, -{"geonameId":"1266302","name":"Kolāras","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17174,"modificationDate":"2015-08-07"}, -{"geonameId":"3444997","name":"Viradouro","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17172,"modificationDate":"2012-08-03"}, -{"geonameId":"3650721","name":"Tena","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":17172,"modificationDate":"2017-02-07"}, -{"geonameId":"2715568","name":"Falköping","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":17170,"modificationDate":"2017-03-18"}, -{"geonameId":"307211","name":"Serinhisar","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":17169,"modificationDate":"2013-08-06"}, -{"geonameId":"232371","name":"Kamwenge","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17169,"modificationDate":"2016-06-22"}, -{"geonameId":"3087418","name":"Radzionków","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":17167,"modificationDate":"2010-09-10"}, -{"geonameId":"2800445","name":"Châtelineau","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17166,"modificationDate":"2020-05-25"}, -{"geonameId":"1263142","name":"Mendarda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17166,"modificationDate":"2014-10-13"}, -{"geonameId":"674541","name":"Luduş","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17165,"modificationDate":"2020-02-12"}, -{"geonameId":"8050880","name":"Ermitagaña","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17163,"modificationDate":"2011-10-17"}, -{"geonameId":"2634672","name":"Wath upon Dearne","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17161,"modificationDate":"2011-03-03"}, -{"geonameId":"2639189","name":"Romsey","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17161,"modificationDate":"2018-07-03"}, -{"geonameId":"3461134","name":"Iperó","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17160,"modificationDate":"2012-08-03"}, -{"geonameId":"3128201","name":"Berga","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17160,"modificationDate":"2013-09-17"}, -{"geonameId":"6354969","name":"Playa del Ingles","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":17158,"modificationDate":"2018-06-08"}, -{"geonameId":"764862","name":"Międzyrzec Podlaski","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":17158,"modificationDate":"2019-09-05"}, -{"geonameId":"5367314","name":"Live Oak","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17158,"modificationDate":"2011-05-14"}, -{"geonameId":"3165340","name":"Tradate","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17154,"modificationDate":"2014-04-13"}, -{"geonameId":"2652995","name":"Cirencester","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17153,"modificationDate":"2018-07-03"}, -{"geonameId":"1283679","name":"Panepa","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":17153,"modificationDate":"2020-06-10"}, -{"geonameId":"2847524","name":"Ribnitz-Damgarten","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17152,"modificationDate":"2015-09-04"}, -{"geonameId":"205970","name":"Sake","countryName":"Democratic Republic of the Congo","timeZoneName":"Africa/Lubumbashi","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":17151,"modificationDate":"2012-12-05"}, -{"geonameId":"545575","name":"Kondrovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17151,"modificationDate":"2012-01-17"}, -{"geonameId":"2519738","name":"Castilleja de la Cuesta","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17150,"modificationDate":"2012-03-04"}, -{"geonameId":"3460971","name":"Itabaianinha","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17149,"modificationDate":"2012-08-03"}, -{"geonameId":"1255131","name":"Taleigao","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17148,"modificationDate":"2014-10-14"}, -{"geonameId":"284446","name":"Balāţah","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17146,"modificationDate":"2017-09-05"}, -{"geonameId":"3700164","name":"Veracruz","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17144,"modificationDate":"2017-08-16"}, -{"geonameId":"1703598","name":"Mahayag","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":17144,"modificationDate":"2017-12-13"}, -{"geonameId":"2167312","name":"Engadine","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17141,"modificationDate":"2019-07-18"}, -{"geonameId":"4748993","name":"Bristol","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17141,"modificationDate":"2017-03-09"}, -{"geonameId":"513042","name":"Pallasovka","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":17139,"modificationDate":"2019-09-05"}, -{"geonameId":"517766","name":"Novoul’yanovsk","countryName":"Russia","timeZoneName":"Europe/Ulyanovsk","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":17139,"modificationDate":"2016-10-16"}, -{"geonameId":"2803870","name":"Zossen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17138,"modificationDate":"2015-09-05"}, -{"geonameId":"3165737","name":"Terzigno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17138,"modificationDate":"2014-04-13"}, -{"geonameId":"2746766","name":"Steenwijk","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":17138,"modificationDate":"2017-10-17"}, -{"geonameId":"2281120","name":"Tabou","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17134,"modificationDate":"2016-12-03"}, -{"geonameId":"4303012","name":"Okolona","countryName":"United States","timeZoneName":"America/Kentucky/Louisville","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17134,"modificationDate":"2006-01-17"}, -{"geonameId":"2833296","name":"Selb","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17132,"modificationDate":"2013-02-19"}, -{"geonameId":"2428042","name":"Mboursou Léré","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":17132,"modificationDate":"2019-03-12"}, -{"geonameId":"5559320","name":"Bayside","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17132,"modificationDate":"2010-10-07"}, -{"geonameId":"1735506","name":"Kepala Batas","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":17131,"modificationDate":"2012-01-17"}, -{"geonameId":"2796833","name":"Haaltert","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17129,"modificationDate":"2012-01-18"}, -{"geonameId":"2344245","name":"Dutse","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":17129,"modificationDate":"2016-06-22"}, -{"geonameId":"3517832","name":"San Salvador Atenco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":17124,"modificationDate":"2018-11-03"}, -{"geonameId":"738753","name":"Tirebolu","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":17124,"modificationDate":"2014-06-26"}, -{"geonameId":"5106615","name":"Wyckoff","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17124,"modificationDate":"2017-05-23"}, -{"geonameId":"5990916","name":"Kennedy Park","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17123,"modificationDate":"2020-05-02"}, -{"geonameId":"1253628","name":"Uttarkāshi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17123,"modificationDate":"2014-10-14"}, -{"geonameId":"3167751","name":"San Salvo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17123,"modificationDate":"2015-07-21"}, -{"geonameId":"3657670","name":"Gualaceo","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":17122,"modificationDate":"2017-02-07"}, -{"geonameId":"1607439","name":"Phu Khiao","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17122,"modificationDate":"2012-01-16"}, -{"geonameId":"1018673","name":"Bloemhof","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":17122,"modificationDate":"2012-07-12"}, -{"geonameId":"2172264","name":"Carnegie","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17121,"modificationDate":"2019-07-18"}, -{"geonameId":"5145028","name":"Woodmere","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17121,"modificationDate":"2017-05-23"}, -{"geonameId":"326308","name":"Wonji","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17120,"modificationDate":"2020-06-11"}, -{"geonameId":"3979505","name":"Guadalupe Victoria","countryName":"Mexico","timeZoneName":"America/Tijuana","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17119,"modificationDate":"2018-11-03"}, -{"geonameId":"2660306","name":"Zürich (Kreis 10) / Höngg","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":17117,"modificationDate":"2006-10-21"}, -{"geonameId":"2920842","name":"Gescher","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17115,"modificationDate":"2015-09-04"}, -{"geonameId":"2750521","name":"Naarden","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":17115,"modificationDate":"2017-10-17"}, -{"geonameId":"1258876","name":"Rājgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17113,"modificationDate":"2015-10-04"}, -{"geonameId":"3402271","name":"Chã Grande","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17112,"modificationDate":"2012-08-03"}, -{"geonameId":"3398076","name":"Ipueiras","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17111,"modificationDate":"2018-07-24"}, -{"geonameId":"1725983","name":"Bauang","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":17109,"modificationDate":"2017-12-13"}, -{"geonameId":"1262863","name":"Moirāng","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17103,"modificationDate":"2014-10-13"}, -{"geonameId":"3183343","name":"Albenga","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17103,"modificationDate":"2014-01-11"}, -{"geonameId":"1261285","name":"Nirmāli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17102,"modificationDate":"2014-10-14"}, -{"geonameId":"774747","name":"Busko-Zdrój","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":17095,"modificationDate":"2010-10-12"}, -{"geonameId":"4921725","name":"Huntington","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17095,"modificationDate":"2017-05-23"}, -{"geonameId":"5359052","name":"Imperial","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17095,"modificationDate":"2017-03-09"}, -{"geonameId":"648738","name":"Laukaa","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17093,"modificationDate":"2015-03-01"}, -{"geonameId":"150634","name":"Puma","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17092,"modificationDate":"2016-07-26"}, -{"geonameId":"11592111","name":"Blantyre","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17090,"modificationDate":"2017-06-14"}, -{"geonameId":"2522208","name":"Albolote","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17089,"modificationDate":"2012-03-04"}, -{"geonameId":"5926511","name":"Conception Bay South","countryName":"Canada","timeZoneName":"America/St_Johns","timeZoneOffsetNameWithoutDst":"Newfoundland Time","population":17087,"modificationDate":"2008-04-11"}, -{"geonameId":"2511180","name":"Santa Cruz de la Palma","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":17084,"modificationDate":"2017-10-31"}, -{"geonameId":"7289676","name":"Pokachi","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":17084,"modificationDate":"2017-12-06"}, -{"geonameId":"616250","name":"Sevan","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":17083,"modificationDate":"2016-09-08"}, -{"geonameId":"7304427","name":"Tensta","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":17083,"modificationDate":"2018-03-14"}, -{"geonameId":"1276152","name":"Bhānpura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17082,"modificationDate":"2014-10-14"}, -{"geonameId":"1278707","name":"Amroli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17082,"modificationDate":"2014-10-13"}, -{"geonameId":"1848016","name":"Yuza","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":17082,"modificationDate":"2017-04-09"}, -{"geonameId":"1274874","name":"Chalāla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17081,"modificationDate":"2014-10-13"}, -{"geonameId":"5014224","name":"Wayne","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17081,"modificationDate":"2017-05-23"}, -{"geonameId":"322051","name":"Banaz","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":17080,"modificationDate":"2013-08-06"}, -{"geonameId":"3182897","name":"Ardea","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17078,"modificationDate":"2015-07-21"}, -{"geonameId":"2740593","name":"Condeixa-a-Nova","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":17078,"modificationDate":"2018-02-14"}, -{"geonameId":"4741616","name":"White Settlement","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":17077,"modificationDate":"2017-03-09"}, -{"geonameId":"881164","name":"Shurugwi","countryName":"Zimbabwe","timeZoneName":"Africa/Harare","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":17075,"modificationDate":"2012-01-17"}, -{"geonameId":"745527","name":"Horasan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":17067,"modificationDate":"2014-11-05"}, -{"geonameId":"3394649","name":"Mombaça","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17065,"modificationDate":"2012-08-03"}, -{"geonameId":"2791700","name":"Mariakerke","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17062,"modificationDate":"2020-05-25"}, -{"geonameId":"5294167","name":"Eloy","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":17059,"modificationDate":"2017-03-09"}, -{"geonameId":"1465910","name":"Madambakkam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17058,"modificationDate":"2014-10-14"}, -{"geonameId":"3449045","name":"São Jerônimo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17056,"modificationDate":"2012-08-03"}, -{"geonameId":"3165240","name":"Trentola-Ducenta","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17056,"modificationDate":"2014-04-13"}, -{"geonameId":"4798308","name":"Beckley","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17056,"modificationDate":"2017-03-09"}, -{"geonameId":"2784548","name":"Visé","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":17054,"modificationDate":"2018-04-04"}, -{"geonameId":"1348775","name":"Mahiari","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17051,"modificationDate":"2014-10-14"}, -{"geonameId":"1494907","name":"Plast","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":17050,"modificationDate":"2019-09-05"}, -{"geonameId":"1261872","name":"Naraina","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17048,"modificationDate":"2014-10-14"}, -{"geonameId":"3173582","name":"Mentana","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17047,"modificationDate":"2014-04-13"}, -{"geonameId":"6930153","name":"Alfragide","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":17044,"modificationDate":"2018-02-20"}, -{"geonameId":"1252484","name":"Phuntsholing","countryName":"Bhutan","timeZoneName":"Asia/Thimphu","timeZoneOffsetNameWithoutDst":"Bhutan Time","population":17043,"modificationDate":"2019-09-05"}, -{"geonameId":"2660549","name":"Gossau","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":17043,"modificationDate":"2015-09-06"}, -{"geonameId":"3116224","name":"Monzón","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17042,"modificationDate":"2012-03-04"}, -{"geonameId":"934322","name":"Mahébourg","countryName":"Mauritius","timeZoneName":"Indian/Mauritius","timeZoneOffsetNameWithoutDst":"Mauritius Time","population":17042,"modificationDate":"2012-01-18"}, -{"geonameId":"877391","name":"Tandahimba","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17041,"modificationDate":"2016-07-26"}, -{"geonameId":"4254957","name":"Broad Ripple","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17041,"modificationDate":"2017-05-23"}, -{"geonameId":"605155","name":"Kiruna","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":17037,"modificationDate":"2019-09-05"}, -{"geonameId":"5345860","name":"El Segundo","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":17037,"modificationDate":"2017-03-09"}, -{"geonameId":"2150669","name":"Saint Ives","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17036,"modificationDate":"2019-07-18"}, -{"geonameId":"3387266","name":"Solânea","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":17030,"modificationDate":"2012-08-03"}, -{"geonameId":"3172297","name":"Nerviano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":17030,"modificationDate":"2014-04-13"}, -{"geonameId":"2172434","name":"Capalaba","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":17027,"modificationDate":"2019-07-18"}, -{"geonameId":"2903175","name":"Hochheim am Main","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":17027,"modificationDate":"2015-09-04"}, -{"geonameId":"1462733","name":"Adampur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17027,"modificationDate":"2017-11-19"}, -{"geonameId":"1278156","name":"Aurād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17019,"modificationDate":"2015-08-07"}, -{"geonameId":"1610943","name":"Den Chai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17019,"modificationDate":"2012-01-16"}, -{"geonameId":"3598415","name":"Chisec","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":17018,"modificationDate":"2019-12-03"}, -{"geonameId":"3617069","name":"Río Blanco","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":17018,"modificationDate":"2018-08-08"}, -{"geonameId":"6138617","name":"Saint-Lazare","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17016,"modificationDate":"2016-06-22"}, -{"geonameId":"2647001","name":"Heysham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17016,"modificationDate":"2019-06-19"}, -{"geonameId":"4939647","name":"Holden","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17016,"modificationDate":"2017-05-23"}, -{"geonameId":"1261642","name":"Nawābganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17015,"modificationDate":"2016-03-10"}, -{"geonameId":"3105148","name":"Villaquilambre","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":17013,"modificationDate":"2018-06-08"}, -{"geonameId":"1264504","name":"Maghar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17011,"modificationDate":"2015-09-06"}, -{"geonameId":"2734363","name":"São Pedro da Cova","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":17011,"modificationDate":"2018-01-24"}, -{"geonameId":"5095325","name":"Avenel","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17011,"modificationDate":"2017-05-23"}, -{"geonameId":"1217703","name":"Beshkent","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":17010,"modificationDate":"2010-08-09"}, -{"geonameId":"695019","name":"Ryl’sk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17007,"modificationDate":"2012-01-18"}, -{"geonameId":"5116060","name":"East Setauket","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17006,"modificationDate":"2017-05-23"}, -{"geonameId":"3084440","name":"Strzegom","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":17004,"modificationDate":"2010-09-10"}, -{"geonameId":"293181","name":"Yarkah","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":17003,"modificationDate":"2020-06-10"}, -{"geonameId":"1269153","name":"Jatāra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17002,"modificationDate":"2015-08-07"}, -{"geonameId":"3493174","name":"San Fernando de Monte Cristi","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":17001,"modificationDate":"2016-06-05"}, -{"geonameId":"2732438","name":"Vila Real","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":17001,"modificationDate":"2012-01-17"}, -{"geonameId":"1595679","name":"Nong Kung Si","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17001,"modificationDate":"2006-01-17"}, -{"geonameId":"727886","name":"Parvomay","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":17000,"modificationDate":"2018-03-22"}, -{"geonameId":"627083","name":"Kalodzishchy","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17000,"modificationDate":"2012-03-22"}, -{"geonameId":"6173404","name":"Vanier","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":17000,"modificationDate":"2019-08-07"}, -{"geonameId":"2301464","name":"Duayaw-Nkwanta","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17000,"modificationDate":"2019-12-08"}, -{"geonameId":"2303258","name":"Bechem","countryName":"Ghana","timeZoneName":"Africa/Accra","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":17000,"modificationDate":"2019-12-08"}, -{"geonameId":"1262510","name":"Mundgod","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":17000,"modificationDate":"2014-10-14"}, -{"geonameId":"1160110","name":"Keh","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":17000,"modificationDate":"2020-06-10"}, -{"geonameId":"1831732","name":"Banlung","countryName":"Cambodia","timeZoneName":"Asia/Phnom_Penh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":17000,"modificationDate":"2018-07-04"}, -{"geonameId":"1057688","name":"Sadabe","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17000,"modificationDate":"2018-09-10"}, -{"geonameId":"1079777","name":"Ambohitrolomahitsy","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17000,"modificationDate":"2018-09-10"}, -{"geonameId":"1081863","name":"Amboanjo","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17000,"modificationDate":"2018-09-10"}, -{"geonameId":"539907","name":"Kudepsta","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":17000,"modificationDate":"2012-06-14"}, -{"geonameId":"2122894","name":"Khonto","countryName":"Russia","timeZoneName":"Asia/Sakhalin","timeZoneOffsetNameWithoutDst":"Sakhalin Time","population":17000,"modificationDate":"2020-06-10"}, -{"geonameId":"3573703","name":"Scarborough","countryName":"Trinidad and Tobago","timeZoneName":"America/Port_of_Spain","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":17000,"modificationDate":"2017-05-24"}, -{"geonameId":"152632","name":"Muheza","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":17000,"modificationDate":"2016-07-26"}, -{"geonameId":"783770","name":"Zvečan","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":17000,"modificationDate":"2015-02-22"}, -{"geonameId":"2988670","name":"Pamiers","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16997,"modificationDate":"2019-04-10"}, -{"geonameId":"1610187","name":"Kaset Sombun","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":16996,"modificationDate":"2012-01-16"}, -{"geonameId":"4625282","name":"Goodlettsville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16994,"modificationDate":"2017-03-09"}, -{"geonameId":"2992671","name":"Montereau-Fault-Yonne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16993,"modificationDate":"2016-02-18"}, -{"geonameId":"3621926","name":"San Diego","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":16991,"modificationDate":"2016-09-07"}, -{"geonameId":"1699833","name":"Mercedes","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16991,"modificationDate":"2017-12-13"}, -{"geonameId":"1064275","name":"Ihosy","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16990,"modificationDate":"2018-09-07"}, -{"geonameId":"312134","name":"Hilvan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":16990,"modificationDate":"2012-01-18"}, -{"geonameId":"4194474","name":"Fayetteville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16990,"modificationDate":"2017-03-09"}, -{"geonameId":"2786087","name":"Stekene","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":16989,"modificationDate":"2012-01-18"}, -{"geonameId":"2634483","name":"Westbury","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16989,"modificationDate":"2017-06-12"}, -{"geonameId":"315401","name":"Ermenek","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":16986,"modificationDate":"2012-01-18"}, -{"geonameId":"5235024","name":"Colchester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16986,"modificationDate":"2017-05-23"}, -{"geonameId":"2928381","name":"Eutin","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16984,"modificationDate":"2015-09-04"}, -{"geonameId":"4846757","name":"Altoona","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16984,"modificationDate":"2017-05-23"}, -{"geonameId":"3450759","name":"Sacramento","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16982,"modificationDate":"2012-08-03"}, -{"geonameId":"3653130","name":"Piñas","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":16981,"modificationDate":"2017-02-07"}, -{"geonameId":"4736028","name":"Terrell","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16981,"modificationDate":"2017-03-09"}, -{"geonameId":"2510112","name":"Ubrique","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16979,"modificationDate":"2012-03-04"}, -{"geonameId":"2647785","name":"Guisborough","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16979,"modificationDate":"2017-06-12"}, -{"geonameId":"3350246","name":"Catumbela","countryName":"Angola","timeZoneName":"Africa/Luanda","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16977,"modificationDate":"2013-11-08"}, -{"geonameId":"8349243","name":"Hillside","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16976,"modificationDate":"2019-07-18"}, -{"geonameId":"3860217","name":"Coronda","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":16975,"modificationDate":"2016-01-30"}, -{"geonameId":"3470369","name":"Barroso","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16975,"modificationDate":"2012-08-03"}, -{"geonameId":"2656039","name":"Bedlington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16974,"modificationDate":"2017-06-12"}, -{"geonameId":"3569915","name":"Saint-Joseph","countryName":"Martinique","timeZoneName":"America/Martinique","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":16974,"modificationDate":"2018-12-04"}, -{"geonameId":"3053485","name":"Dunaharaszti","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":16973,"modificationDate":"2012-05-06"}, -{"geonameId":"1253363","name":"Vasind","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16970,"modificationDate":"2014-10-13"}, -{"geonameId":"3993893","name":"Palau","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":16970,"modificationDate":"2018-11-03"}, -{"geonameId":"2799647","name":"Denderleeuw","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":16969,"modificationDate":"2011-02-03"}, -{"geonameId":"2971482","name":"Tulle","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16969,"modificationDate":"2019-04-10"}, -{"geonameId":"377724","name":"Bārah","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":16969,"modificationDate":"2016-11-04"}, -{"geonameId":"2998127","name":"L'Isle-sur-la-Sorgue","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16968,"modificationDate":"2019-12-03"}, -{"geonameId":"3837980","name":"San Antonio Oeste","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":16966,"modificationDate":"2016-01-30"}, -{"geonameId":"3166595","name":"Sestri Levante","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16963,"modificationDate":"2014-01-11"}, -{"geonameId":"3177337","name":"Este","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16963,"modificationDate":"2016-04-25"}, -{"geonameId":"2344418","name":"Dukku","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16961,"modificationDate":"2016-01-30"}, -{"geonameId":"1182775","name":"Bhan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":16961,"modificationDate":"2019-12-06"}, -{"geonameId":"5324862","name":"Artesia","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16961,"modificationDate":"2017-03-09"}, -{"geonameId":"3165435","name":"Torremaggiore","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16955,"modificationDate":"2015-07-21"}, -{"geonameId":"5781783","name":"South Ogden","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":16955,"modificationDate":"2017-03-09"}, -{"geonameId":"946973","name":"Tzaneen","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":16954,"modificationDate":"2013-11-03"}, -{"geonameId":"1135158","name":"Kushk","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":16952,"modificationDate":"2018-02-17"}, -{"geonameId":"2233805","name":"Bogo","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16952,"modificationDate":"2018-12-04"}, -{"geonameId":"1222662","name":"Isfana","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":16952,"modificationDate":"2015-07-03"}, -{"geonameId":"2989755","name":"Octeville","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16951,"modificationDate":"2019-02-21"}, -{"geonameId":"1261736","name":"Narwar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16948,"modificationDate":"2014-10-14"}, -{"geonameId":"1068670","name":"Bealanana","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16948,"modificationDate":"2018-09-10"}, -{"geonameId":"1512978","name":"Koshkupyr","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":16948,"modificationDate":"2020-06-10"}, -{"geonameId":"1275925","name":"Bhindār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16945,"modificationDate":"2015-06-07"}, -{"geonameId":"3175445","name":"Isernia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16945,"modificationDate":"2015-07-21"}, -{"geonameId":"2023058","name":"Kavalerovo","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":16945,"modificationDate":"2017-01-22"}, -{"geonameId":"2513436","name":"Mula","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16941,"modificationDate":"2012-03-04"}, -{"geonameId":"2649049","name":"Frinton-on-Sea","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16941,"modificationDate":"2018-07-03"}, -{"geonameId":"527968","name":"Medvedovskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16941,"modificationDate":"2012-01-17"}, -{"geonameId":"1818446","name":"Tuen Mun","countryName":"Hong Kong","timeZoneName":"Asia/Hong_Kong","timeZoneOffsetNameWithoutDst":"Hong Kong Time","population":16940,"modificationDate":"2013-08-09"}, -{"geonameId":"1263691","name":"Manjhanpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16939,"modificationDate":"2015-08-07"}, -{"geonameId":"1726156","name":"Bato","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16939,"modificationDate":"2017-12-13"}, -{"geonameId":"662699","name":"Vişeu de Sus","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16938,"modificationDate":"2016-02-07"}, -{"geonameId":"3551184","name":"La Sierpe","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":16937,"modificationDate":"2016-01-07"}, -{"geonameId":"3128174","name":"Bermeo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16937,"modificationDate":"2012-11-09"}, -{"geonameId":"12156857","name":"Willowdale West","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16936,"modificationDate":"2020-05-02"}, -{"geonameId":"3874997","name":"Aysen","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":16936,"modificationDate":"2020-06-10"}, -{"geonameId":"1273181","name":"Depālpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16936,"modificationDate":"2015-09-06"}, -{"geonameId":"5975182","name":"Hillcrest Village","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16934,"modificationDate":"2020-05-02"}, -{"geonameId":"2265223","name":"Palmela","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":16934,"modificationDate":"2014-04-06"}, -{"geonameId":"3817731","name":"Tezoyuca","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16933,"modificationDate":"2018-11-03"}, -{"geonameId":"517739","name":"Novouzensk","countryName":"Russia","timeZoneName":"Europe/Saratov","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":16932,"modificationDate":"2019-09-05"}, -{"geonameId":"2747227","name":"Sint-Oedenrode","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":16931,"modificationDate":"2017-10-17"}, -{"geonameId":"1171757","name":"Mach","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":16930,"modificationDate":"2019-12-06"}, -{"geonameId":"63689","name":"Buulobarde","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16928,"modificationDate":"2012-01-16"}, -{"geonameId":"8348765","name":"Calamvale","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16927,"modificationDate":"2019-07-18"}, -{"geonameId":"2659522","name":"Muttenz","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":16927,"modificationDate":"2019-09-10"}, -{"geonameId":"1527497","name":"Kyzyl-Suu","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":16927,"modificationDate":"2015-05-25"}, -{"geonameId":"3387082","name":"Tabira","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16926,"modificationDate":"2012-08-03"}, -{"geonameId":"1278973","name":"Alnāvar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16926,"modificationDate":"2014-10-14"}, -{"geonameId":"3128795","name":"Barbastro","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16924,"modificationDate":"2019-10-09"}, -{"geonameId":"2160744","name":"Lakemba","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16921,"modificationDate":"2019-07-18"}, -{"geonameId":"5071665","name":"La Vista","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16921,"modificationDate":"2017-03-09"}, -{"geonameId":"3443341","name":"Carmelo","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":16921,"modificationDate":"2018-02-22"}, -{"geonameId":"2973317","name":"Tassin-la-Demi-Lune","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16920,"modificationDate":"2016-02-18"}, -{"geonameId":"234178","name":"Bundibugyo","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16919,"modificationDate":"2016-06-22"}, -{"geonameId":"3521476","name":"Pijijiapan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16917,"modificationDate":"2018-11-03"}, -{"geonameId":"314665","name":"Gemerek","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":16916,"modificationDate":"2012-01-18"}, -{"geonameId":"155056","name":"Malampaka","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16916,"modificationDate":"2018-12-04"}, -{"geonameId":"227592","name":"Ntungamo","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16915,"modificationDate":"2016-06-22"}, -{"geonameId":"3083185","name":"Trzcianka","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16914,"modificationDate":"2011-07-31"}, -{"geonameId":"3451474","name":"Riachão do Jacuípe","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16911,"modificationDate":"2012-08-03"}, -{"geonameId":"2464041","name":"Zaghouan","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":16911,"modificationDate":"2018-08-05"}, -{"geonameId":"2953371","name":"Bad Reichenhall","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16910,"modificationDate":"2019-09-05"}, -{"geonameId":"3818398","name":"Zarumilla","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":16907,"modificationDate":"2012-07-19"}, -{"geonameId":"4938836","name":"Hanover","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16906,"modificationDate":"2017-05-23"}, -{"geonameId":"1255027","name":"Tanakpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16905,"modificationDate":"2016-02-06"}, -{"geonameId":"3170659","name":"Piossasco","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16904,"modificationDate":"2014-04-13"}, -{"geonameId":"155743","name":"Lugoba","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16902,"modificationDate":"2018-12-04"}, -{"geonameId":"2962961","name":"Letterkenny","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16901,"modificationDate":"2012-02-28"}, -{"geonameId":"5316890","name":"Tanque Verde","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":16901,"modificationDate":"2011-05-14"}, -{"geonameId":"3167953","name":"San Miniato","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16900,"modificationDate":"2015-07-21"}, -{"geonameId":"617993","name":"Kotovskoye","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16900,"modificationDate":"2020-06-10"}, -{"geonameId":"293896","name":"Qalansuwa","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":16898,"modificationDate":"2020-04-29"}, -{"geonameId":"4156857","name":"Glenvar Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16898,"modificationDate":"2011-05-14"}, -{"geonameId":"505421","name":"Pridonskoy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16896,"modificationDate":"2020-02-07"}, -{"geonameId":"1502091","name":"Krasnoobsk","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":16894,"modificationDate":"2012-01-17"}, -{"geonameId":"2510245","name":"Torrox","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16890,"modificationDate":"2012-03-04"}, -{"geonameId":"151711","name":"Ngara","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16890,"modificationDate":"2016-07-26"}, -{"geonameId":"1513600","name":"Khoji-Abad","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":16889,"modificationDate":"2020-06-10"}, -{"geonameId":"3447591","name":"Silva Jardim","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16888,"modificationDate":"2012-08-03"}, -{"geonameId":"142554","name":"Sar Eskandar","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":16888,"modificationDate":"2020-06-10"}, -{"geonameId":"8299619","name":"Hayling Island","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16887,"modificationDate":"2012-06-01"}, -{"geonameId":"1269126","name":"Jāwad","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16887,"modificationDate":"2014-10-14"}, -{"geonameId":"3127035","name":"Caldes de Montbui","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16885,"modificationDate":"2012-03-04"}, -{"geonameId":"5745380","name":"Pendleton","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16881,"modificationDate":"2017-12-31"}, -{"geonameId":"2651101","name":"Dorchester","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16879,"modificationDate":"2010-10-16"}, -{"geonameId":"3447597","name":"Sidrolândia","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":16878,"modificationDate":"2012-08-03"}, -{"geonameId":"1265415","name":"Kurtiyana","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16877,"modificationDate":"2020-06-10"}, -{"geonameId":"2683034","name":"Råsunda","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":16877,"modificationDate":"2015-10-29"}, -{"geonameId":"5772654","name":"Centerville","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":16877,"modificationDate":"2017-03-09"}, -{"geonameId":"3896433","name":"Cartagena","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":16875,"modificationDate":"2013-01-11"}, -{"geonameId":"3837441","name":"San Jorge","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":16873,"modificationDate":"2018-07-04"}, -{"geonameId":"8349238","name":"Parafield Gardens","countryName":"Australia","timeZoneName":"Australia/Adelaide","timeZoneOffsetNameWithoutDst":"Australian Central Time","population":16872,"modificationDate":"2019-07-18"}, -{"geonameId":"2346812","name":"Bonny","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16868,"modificationDate":"2015-07-03"}, -{"geonameId":"2744042","name":"Zandvoort","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":16868,"modificationDate":"2018-05-08"}, -{"geonameId":"2739788","name":"Fafe","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":16868,"modificationDate":"2018-01-15"}, -{"geonameId":"775183","name":"Brzesko","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16866,"modificationDate":"2017-10-30"}, -{"geonameId":"3659711","name":"Cariamanga","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":16862,"modificationDate":"2017-02-07"}, -{"geonameId":"1607083","name":"Ra-ngae","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":16862,"modificationDate":"2012-01-16"}, -{"geonameId":"2799226","name":"Dour","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":16861,"modificationDate":"2009-01-18"}, -{"geonameId":"3110813","name":"Sant Celoni","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16860,"modificationDate":"2015-06-14"}, -{"geonameId":"2920433","name":"Gilching","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16859,"modificationDate":"2012-09-21"}, -{"geonameId":"1278899","name":"Amarpātan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16858,"modificationDate":"2015-08-07"}, -{"geonameId":"527529","name":"Menzelinsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16858,"modificationDate":"2019-09-05"}, -{"geonameId":"2761524","name":"Wels","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":16857,"modificationDate":"2018-07-28"}, -{"geonameId":"2791744","name":"Marche-en-Famenne","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":16856,"modificationDate":"2008-06-15"}, -{"geonameId":"3536259","name":"Poblado Sibanicu","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":16856,"modificationDate":"2020-06-10"}, -{"geonameId":"1268772","name":"Jūnāgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16856,"modificationDate":"2013-02-08"}, -{"geonameId":"3585157","name":"La Libertad","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":16855,"modificationDate":"2012-01-18"}, -{"geonameId":"2955421","name":"Bad Arolsen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16854,"modificationDate":"2015-09-05"}, -{"geonameId":"2799496","name":"Destelbergen","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":16853,"modificationDate":"2012-01-18"}, -{"geonameId":"933719","name":"Janeng","countryName":"Botswana","timeZoneName":"Africa/Gaborone","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":16853,"modificationDate":"2018-12-05"}, -{"geonameId":"5136421","name":"Sayville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16853,"modificationDate":"2017-05-23"}, -{"geonameId":"2153720","name":"Pascoe Vale","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16850,"modificationDate":"2019-07-18"}, -{"geonameId":"2925630","name":"Frankenberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16850,"modificationDate":"2015-09-05"}, -{"geonameId":"321786","name":"Bayındır","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":16850,"modificationDate":"2010-08-03"}, -{"geonameId":"12070063","name":"Pendino","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16848,"modificationDate":"2019-07-22"}, -{"geonameId":"4421935","name":"Clarksdale","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16847,"modificationDate":"2017-03-09"}, -{"geonameId":"2930646","name":"Eltville","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16845,"modificationDate":"2019-09-10"}, -{"geonameId":"2826909","name":"Stockach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16844,"modificationDate":"2013-02-16"}, -{"geonameId":"2441217","name":"Matamey","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16844,"modificationDate":"2012-01-18"}, -{"geonameId":"3832662","name":"Villa Nueva","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":16841,"modificationDate":"2018-07-04"}, -{"geonameId":"1274861","name":"Challapalle","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16841,"modificationDate":"2016-07-04"}, -{"geonameId":"1619276","name":"Bang Rakam","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":16841,"modificationDate":"2012-01-16"}, -{"geonameId":"7576707","name":"Helensvale","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16839,"modificationDate":"2019-07-18"}, -{"geonameId":"1260417","name":"Papanasam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16837,"modificationDate":"2014-10-14"}, -{"geonameId":"3493482","name":"Sabana Grande de Boyá","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":16834,"modificationDate":"2016-06-05"}, -{"geonameId":"1266220","name":"Konarka","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16834,"modificationDate":"2020-06-10"}, -{"geonameId":"3815375","name":"La Magdalena Tlaltelulco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16834,"modificationDate":"2018-11-03"}, -{"geonameId":"2641435","name":"Northallerton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16832,"modificationDate":"2017-06-12"}, -{"geonameId":"1611492","name":"Bua Yai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":16832,"modificationDate":"2012-01-16"}, -{"geonameId":"606531","name":"Boden","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":16830,"modificationDate":"2017-03-18"}, -{"geonameId":"686803","name":"Zvenihorodka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16830,"modificationDate":"2020-05-16"}, -{"geonameId":"12156851","name":"Leaside-Bennington","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16828,"modificationDate":"2020-05-02"}, -{"geonameId":"1264344","name":"Mahudha","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16828,"modificationDate":"2014-10-13"}, -{"geonameId":"4238132","name":"Fairview Heights","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16827,"modificationDate":"2017-05-23"}, -{"geonameId":"5165101","name":"Norwalk","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16827,"modificationDate":"2017-05-23"}, -{"geonameId":"1681676","name":"Tiwi","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16826,"modificationDate":"2017-12-13"}, -{"geonameId":"480685","name":"Tuchkovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16826,"modificationDate":"2014-06-26"}, -{"geonameId":"1606350","name":"Sawang Daen Din","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":16825,"modificationDate":"2012-01-16"}, -{"geonameId":"3031268","name":"Bouguenais","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16824,"modificationDate":"2016-02-18"}, -{"geonameId":"4171782","name":"San Carlos Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16824,"modificationDate":"2011-05-14"}, -{"geonameId":"153709","name":"Mwandiga","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16822,"modificationDate":"2016-07-26"}, -{"geonameId":"3988169","name":"Salinas de Hidalgo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16821,"modificationDate":"2018-11-03"}, -{"geonameId":"787516","name":"Obrenovac","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":16821,"modificationDate":"2012-04-14"}, -{"geonameId":"2793077","name":"Lede","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":16813,"modificationDate":"2012-01-18"}, -{"geonameId":"3581194","name":"San Ignacio","countryName":"Belize","timeZoneName":"America/Belize","timeZoneOffsetNameWithoutDst":"Central Time","population":16812,"modificationDate":"2016-10-16"}, -{"geonameId":"2482390","name":"Saoula","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":16812,"modificationDate":"2012-01-19"}, -{"geonameId":"3514278","name":"Yecapixtla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16811,"modificationDate":"2013-07-31"}, -{"geonameId":"4933743","name":"Concord","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16810,"modificationDate":"2017-05-23"}, -{"geonameId":"2657996","name":"Wil","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":16808,"modificationDate":"2014-04-04"}, -{"geonameId":"2643696","name":"Longfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16808,"modificationDate":"2018-07-03"}, -{"geonameId":"567183","name":"Danilov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16808,"modificationDate":"2019-09-05"}, -{"geonameId":"4659557","name":"Springfield","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16808,"modificationDate":"2017-03-09"}, -{"geonameId":"2615961","name":"Nykøbing Falster","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":16807,"modificationDate":"2019-10-10"}, -{"geonameId":"2725201","name":"Årsta","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":16807,"modificationDate":"2010-08-28"}, -{"geonameId":"3105247","name":"Villanueva de la Cañada","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16804,"modificationDate":"2012-03-04"}, -{"geonameId":"5101766","name":"New Milford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16801,"modificationDate":"2017-05-23"}, -{"geonameId":"2638864","name":"Saint Andrews","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16800,"modificationDate":"2020-06-04"}, -{"geonameId":"295435","name":"Skythopolis","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":16800,"modificationDate":"2020-06-10"}, -{"geonameId":"3167034","name":"Savigliano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16800,"modificationDate":"2014-04-13"}, -{"geonameId":"611182","name":"Vasil’yevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16800,"modificationDate":"2019-10-16"}, -{"geonameId":"2659422","name":"Nyon","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":16797,"modificationDate":"2017-09-13"}, -{"geonameId":"7257726","name":"North Attleborough Center","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16796,"modificationDate":"2017-12-13"}, -{"geonameId":"3461055","name":"Iracemápolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16795,"modificationDate":"2012-08-03"}, -{"geonameId":"539689","name":"Kukmor","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16795,"modificationDate":"2014-03-12"}, -{"geonameId":"4888892","name":"Country Club Hills","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16795,"modificationDate":"2017-05-23"}, -{"geonameId":"72968","name":"Ma'rib","countryName":"Yemen","timeZoneName":"Asia/Aden","timeZoneOffsetNameWithoutDst":"Arabian Time","population":16794,"modificationDate":"2017-02-10"}, -{"geonameId":"770157","name":"Jędrzejów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16792,"modificationDate":"2010-10-13"}, -{"geonameId":"2969796","name":"Verneuil-sur-Seine","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16790,"modificationDate":"2016-02-18"}, -{"geonameId":"2969692","name":"Verrières-le-Buisson","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16789,"modificationDate":"2016-02-18"}, -{"geonameId":"4899581","name":"Lemont","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16788,"modificationDate":"2017-05-23"}, -{"geonameId":"5046001","name":"Sartell","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16788,"modificationDate":"2017-05-23"}, -{"geonameId":"1167501","name":"Goth Radhan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":16786,"modificationDate":"2019-12-06"}, -{"geonameId":"1153850","name":"Bo Phloi","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":16786,"modificationDate":"2013-01-09"}, -{"geonameId":"3403611","name":"Campo Alegre","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16785,"modificationDate":"2012-08-03"}, -{"geonameId":"3149312","name":"Kristiansund","countryName":"Norway","timeZoneName":"Europe/Oslo","timeZoneOffsetNameWithoutDst":"Central European Time","population":16785,"modificationDate":"2017-04-27"}, -{"geonameId":"2837470","name":"Schneeberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16784,"modificationDate":"2015-09-05"}, -{"geonameId":"2937317","name":"Diepholz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16783,"modificationDate":"2015-09-04"}, -{"geonameId":"3471840","name":"Aragarças","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16781,"modificationDate":"2017-07-20"}, -{"geonameId":"4619800","name":"Dyersburg","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16781,"modificationDate":"2017-03-09"}, -{"geonameId":"153871","name":"Mikumi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16780,"modificationDate":"2016-07-26"}, -{"geonameId":"3128978","name":"Balaguer","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16779,"modificationDate":"2016-04-22"}, -{"geonameId":"661164","name":"Anjala","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16779,"modificationDate":"2019-08-13"}, -{"geonameId":"1255950","name":"Sivagiri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16779,"modificationDate":"2017-06-06"}, -{"geonameId":"584298","name":"Achkhoy-Martan","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16779,"modificationDate":"2019-08-07"}, -{"geonameId":"3407258","name":"Arari","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16777,"modificationDate":"2012-08-03"}, -{"geonameId":"5151861","name":"Defiance","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16776,"modificationDate":"2017-05-23"}, -{"geonameId":"12156854","name":"Mount Pleasant East","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16775,"modificationDate":"2020-05-02"}, -{"geonameId":"1526797","name":"Akkol’","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":16773,"modificationDate":"2019-04-04"}, -{"geonameId":"4348353","name":"Beltsville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16772,"modificationDate":"2018-10-08"}, -{"geonameId":"3052542","name":"Fót","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":16770,"modificationDate":"2012-05-06"}, -{"geonameId":"664074","name":"Urziceni","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16770,"modificationDate":"2012-06-12"}, -{"geonameId":"2360238","name":"Gourcy","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16765,"modificationDate":"2012-06-05"}, -{"geonameId":"3447928","name":"Seabra","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16764,"modificationDate":"2015-06-20"}, -{"geonameId":"265252","name":"Amaliáda","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16763,"modificationDate":"2015-09-16"}, -{"geonameId":"509052","name":"Plavsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16763,"modificationDate":"2019-09-05"}, -{"geonameId":"3460774","name":"Itaocara","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16762,"modificationDate":"2012-08-03"}, -{"geonameId":"6137780","name":"Sainte-Catherine","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16762,"modificationDate":"2017-02-01"}, -{"geonameId":"1055059","name":"Tsaratanana","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16761,"modificationDate":"2018-09-10"}, -{"geonameId":"1262266","name":"Nāgamangala","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16760,"modificationDate":"2015-11-08"}, -{"geonameId":"618329","name":"Floreshty","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16759,"modificationDate":"2020-06-10"}, -{"geonameId":"1688058","name":"Santa Maria","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16758,"modificationDate":"2017-12-13"}, -{"geonameId":"3407440","name":"Apodi","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16757,"modificationDate":"2012-08-03"}, -{"geonameId":"336454","name":"Ginir","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16757,"modificationDate":"2013-05-08"}, -{"geonameId":"2907887","name":"Heidenau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16756,"modificationDate":"2019-03-24"}, -{"geonameId":"3183472","name":"Adelfia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16756,"modificationDate":"2014-04-13"}, -{"geonameId":"1269970","name":"Honnāli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16753,"modificationDate":"2014-10-14"}, -{"geonameId":"1278703","name":"Āmta","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16753,"modificationDate":"2014-10-14"}, -{"geonameId":"301089","name":"Serinyol","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":16753,"modificationDate":"2013-09-08"}, -{"geonameId":"5789683","name":"Centralia","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16753,"modificationDate":"2017-03-09"}, -{"geonameId":"2986160","name":"Pontivy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16752,"modificationDate":"2019-04-10"}, -{"geonameId":"2112008","name":"Marumori","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":16752,"modificationDate":"2017-04-09"}, -{"geonameId":"4319518","name":"Chalmette","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16751,"modificationDate":"2014-08-30"}, -{"geonameId":"1268667","name":"Kadod","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16747,"modificationDate":"2014-10-13"}, -{"geonameId":"8858117","name":"La Providencia Siglo XXI","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16747,"modificationDate":"2014-04-11"}, -{"geonameId":"4911418","name":"Shorewood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16747,"modificationDate":"2017-05-23"}, -{"geonameId":"3686585","name":"Chimichagua","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":16746,"modificationDate":"2018-07-04"}, -{"geonameId":"685823","name":"Baia Sprie","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16746,"modificationDate":"2012-06-12"}, -{"geonameId":"4354821","name":"Ferndale","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16746,"modificationDate":"2011-05-14"}, -{"geonameId":"5163799","name":"Mount Vernon","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16742,"modificationDate":"2017-05-23"}, -{"geonameId":"2998854","name":"Le Vésinet","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16740,"modificationDate":"2016-02-18"}, -{"geonameId":"2155542","name":"Nerang","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16739,"modificationDate":"2019-07-18"}, -{"geonameId":"2639265","name":"Rochford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16739,"modificationDate":"2018-07-03"}, -{"geonameId":"2646979","name":"High Blantyre","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16739,"modificationDate":"2011-03-03"}, -{"geonameId":"3453659","name":"Piracanjuba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16736,"modificationDate":"2012-08-03"}, -{"geonameId":"589165","name":"Rakvere","countryName":"Estonia","timeZoneName":"Europe/Tallinn","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16736,"modificationDate":"2019-09-05"}, -{"geonameId":"824288","name":"Ts’q’alt’ubo","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":16736,"modificationDate":"2019-12-16"}, -{"geonameId":"1270271","name":"Harsūd","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16736,"modificationDate":"2015-11-08"}, -{"geonameId":"1276502","name":"Belonia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16735,"modificationDate":"2018-07-13"}, -{"geonameId":"742658","name":"Korgan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":16733,"modificationDate":"2014-06-27"}, -{"geonameId":"3449516","name":"Santo Antônio do Amparo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16730,"modificationDate":"2012-08-03"}, -{"geonameId":"4916140","name":"Westchester","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16729,"modificationDate":"2017-05-23"}, -{"geonameId":"4571722","name":"Bluffton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16728,"modificationDate":"2017-03-09"}, -{"geonameId":"1276437","name":"Beri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16727,"modificationDate":"2020-06-10"}, -{"geonameId":"1217569","name":"Chelak","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":16727,"modificationDate":"2020-02-07"}, -{"geonameId":"3103034","name":"Boguszów-Gorce","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16726,"modificationDate":"2015-09-04"}, -{"geonameId":"2976406","name":"Sallanches","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16725,"modificationDate":"2017-10-31"}, -{"geonameId":"1266448","name":"Koāth","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16725,"modificationDate":"2015-10-04"}, -{"geonameId":"1707398","name":"Laoang","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16725,"modificationDate":"2017-12-13"}, -{"geonameId":"4226552","name":"Tifton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16725,"modificationDate":"2017-03-09"}, -{"geonameId":"6141900","name":"Scarborough Village","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16724,"modificationDate":"2020-05-06"}, -{"geonameId":"2652689","name":"Cobham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16724,"modificationDate":"2010-08-03"}, -{"geonameId":"3101943","name":"Bytów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16724,"modificationDate":"2010-09-24"}, -{"geonameId":"4929417","name":"Auburn","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16724,"modificationDate":"2017-05-23"}, -{"geonameId":"1273153","name":"Deshnoke","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16720,"modificationDate":"2014-10-14"}, -{"geonameId":"3098201","name":"Gryfice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16720,"modificationDate":"2019-09-05"}, -{"geonameId":"761218","name":"Przasnysz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16718,"modificationDate":"2010-09-19"}, -{"geonameId":"2864053","name":"Neustadt bei Coburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16715,"modificationDate":"2013-02-19"}, -{"geonameId":"152546","name":"Mungaa","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16715,"modificationDate":"2016-07-26"}, -{"geonameId":"5377100","name":"Nipomo","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16714,"modificationDate":"2011-05-14"}, -{"geonameId":"3547260","name":"Media Luna","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":16713,"modificationDate":"2016-01-07"}, -{"geonameId":"4768678","name":"Laurel","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16713,"modificationDate":"2011-05-14"}, -{"geonameId":"1268032","name":"Kānke","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16712,"modificationDate":"2017-08-02"}, -{"geonameId":"3569741","name":"Abreus","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":16711,"modificationDate":"2016-01-07"}, -{"geonameId":"2752420","name":"Korrewegwijk","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":16710,"modificationDate":"2011-04-19"}, -{"geonameId":"2741865","name":"Cabeceiras de Basto","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":16710,"modificationDate":"2018-02-11"}, -{"geonameId":"3689205","name":"Barbosa","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":16707,"modificationDate":"2018-06-08"}, -{"geonameId":"3173631","name":"Melegnano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16707,"modificationDate":"2014-04-13"}, -{"geonameId":"2992367","name":"Montivilliers","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16706,"modificationDate":"2016-02-18"}, -{"geonameId":"537107","name":"Lakinsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16706,"modificationDate":"2019-09-05"}, -{"geonameId":"3090558","name":"Nowogard","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16703,"modificationDate":"2019-09-05"}, -{"geonameId":"3987224","name":"San Felipe","countryName":"Mexico","timeZoneName":"America/Tijuana","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16702,"modificationDate":"2018-11-03"}, -{"geonameId":"4735702","name":"Taylor","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16702,"modificationDate":"2017-03-09"}, -{"geonameId":"6943558","name":"Bracken Ridge","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16701,"modificationDate":"2019-07-18"}, -{"geonameId":"3522232","name":"Ozumba de Alzate","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16700,"modificationDate":"2018-11-03"}, -{"geonameId":"3673424","name":"Pacho","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":16698,"modificationDate":"2018-07-04"}, -{"geonameId":"4212992","name":"North Decatur","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16698,"modificationDate":"2011-05-14"}, -{"geonameId":"1512423","name":"Vobkent Shahri","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":16697,"modificationDate":"2020-02-07"}, -{"geonameId":"2817202","name":"Vilshofen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16695,"modificationDate":"2015-03-08"}, -{"geonameId":"2654663","name":"Brixham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16693,"modificationDate":"2017-06-12"}, -{"geonameId":"4480219","name":"Morganton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16692,"modificationDate":"2017-05-23"}, -{"geonameId":"3515163","name":"Santa Rosa Treinta","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16691,"modificationDate":"2018-11-03"}, -{"geonameId":"3182904","name":"Arcore","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16690,"modificationDate":"2014-04-13"}, -{"geonameId":"4289445","name":"Danville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16690,"modificationDate":"2017-03-09"}, -{"geonameId":"1270036","name":"Hirekerūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16688,"modificationDate":"2014-10-14"}, -{"geonameId":"6967990","name":"Az Zuwaydah","countryName":"Palestinian Territory","timeZoneName":"Asia/Gaza","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16688,"modificationDate":"2020-06-12"}, -{"geonameId":"6942645","name":"Buckingham","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16685,"modificationDate":"2019-08-08"}, -{"geonameId":"1273228","name":"Deoli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16685,"modificationDate":"2015-08-07"}, -{"geonameId":"2791315","name":"Merelbeke","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":16684,"modificationDate":"2020-05-01"}, -{"geonameId":"3460752","name":"Itapecerica","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16684,"modificationDate":"2012-08-03"}, -{"geonameId":"3021150","name":"Domont","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16684,"modificationDate":"2016-02-18"}, -{"geonameId":"3523909","name":"Los Reyes","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16683,"modificationDate":"2020-06-10"}, -{"geonameId":"2156671","name":"Mount Druitt","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16682,"modificationDate":"2019-07-18"}, -{"geonameId":"2947449","name":"Bobingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16682,"modificationDate":"2013-02-19"}, -{"geonameId":"3671418","name":"Puerto López","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":16678,"modificationDate":"2018-04-19"}, -{"geonameId":"2443304","name":"Ilella","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16678,"modificationDate":"2020-06-10"}, -{"geonameId":"3171900","name":"Orta Nova","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16677,"modificationDate":"2014-04-13"}, -{"geonameId":"2121909","name":"Poronaysk","countryName":"Russia","timeZoneName":"Asia/Sakhalin","timeZoneOffsetNameWithoutDst":"Sakhalin Time","population":16677,"modificationDate":"2012-10-06"}, -{"geonameId":"1259801","name":"Phaphūnd","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16675,"modificationDate":"2015-12-05"}, -{"geonameId":"693920","name":"Shpola","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16674,"modificationDate":"2020-05-16"}, -{"geonameId":"3397904","name":"Itapissuma","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16673,"modificationDate":"2012-08-03"}, -{"geonameId":"588686","name":"Suvilad","countryName":"Estonia","timeZoneName":"Europe/Tallinn","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16672,"modificationDate":"2020-06-10"}, -{"geonameId":"1698887","name":"Nabunturan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16671,"modificationDate":"2017-12-13"}, -{"geonameId":"1278052","name":"Babrāla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16670,"modificationDate":"2015-08-07"}, -{"geonameId":"5220798","name":"Barrington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16669,"modificationDate":"2017-10-28"}, -{"geonameId":"1505933","name":"Ilanskiy","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":16668,"modificationDate":"2012-08-04"}, -{"geonameId":"1849154","name":"Ushibukamachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":16667,"modificationDate":"2017-04-09"}, -{"geonameId":"1278216","name":"Athgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16665,"modificationDate":"2020-06-10"}, -{"geonameId":"4915545","name":"Washington","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16664,"modificationDate":"2017-05-23"}, -{"geonameId":"2698767","name":"Kumla","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":16663,"modificationDate":"2017-03-18"}, -{"geonameId":"3407758","name":"Amaraji","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16660,"modificationDate":"2012-08-03"}, -{"geonameId":"2875831","name":"Losheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16660,"modificationDate":"2015-09-05"}, -{"geonameId":"5205849","name":"Phoenixville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16658,"modificationDate":"2017-05-23"}, -{"geonameId":"3467026","name":"Carandaí","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16657,"modificationDate":"2012-08-03"}, -{"geonameId":"4710749","name":"Mercedes","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16657,"modificationDate":"2017-03-09"}, -{"geonameId":"2388614","name":"Boda","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16655,"modificationDate":"2016-06-22"}, -{"geonameId":"3077920","name":"Česká Třebová","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":16655,"modificationDate":"2018-09-08"}, -{"geonameId":"4054378","name":"Center Point","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16655,"modificationDate":"2017-03-09"}, -{"geonameId":"3620544","name":"Camoapa","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":16653,"modificationDate":"2018-08-08"}, -{"geonameId":"1264085","name":"Malīhābād","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16649,"modificationDate":"2014-10-14"}, -{"geonameId":"2789162","name":"Péruwelz","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":16647,"modificationDate":"2009-01-17"}, -{"geonameId":"3883035","name":"Llaillay","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":16646,"modificationDate":"2013-01-11"}, -{"geonameId":"2523180","name":"Scordia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16645,"modificationDate":"2014-04-13"}, -{"geonameId":"4394905","name":"Lemay","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16645,"modificationDate":"2017-05-23"}, -{"geonameId":"6545023","name":"Edmundston","countryName":"Canada","timeZoneName":"America/Moncton","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":16643,"modificationDate":"2010-09-22"}, -{"geonameId":"3459922","name":"Jeremoabo","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16642,"modificationDate":"2012-08-03"}, -{"geonameId":"1268929","name":"Pratishthanpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16642,"modificationDate":"2020-06-10"}, -{"geonameId":"2755584","name":"Gennep","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":16642,"modificationDate":"2017-10-17"}, -{"geonameId":"298326","name":"Ürgüp","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":16642,"modificationDate":"2015-10-20"}, -{"geonameId":"2813786","name":"Wassenberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16641,"modificationDate":"2015-09-04"}, -{"geonameId":"4845984","name":"Wolcott","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16639,"modificationDate":"2017-05-23"}, -{"geonameId":"3464274","name":"Encantado","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16637,"modificationDate":"2012-08-03"}, -{"geonameId":"3516499","name":"Suchiapa","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16637,"modificationDate":"2018-11-03"}, -{"geonameId":"962847","name":"Reitz","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":16637,"modificationDate":"2012-07-12"}, -{"geonameId":"3385106","name":"Viçosa do Ceará","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16636,"modificationDate":"2012-08-03"}, -{"geonameId":"3032340","name":"Blanquefort","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16636,"modificationDate":"2020-01-08"}, -{"geonameId":"601475","name":"Tagta","countryName":"Turkmenistan","timeZoneName":"Asia/Ashgabat","timeZoneOffsetNameWithoutDst":"Turkmenistan Time","population":16635,"modificationDate":"2013-10-30"}, -{"geonameId":"4212888","name":"Norcross","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16634,"modificationDate":"2017-03-09"}, -{"geonameId":"3838902","name":"Río Ceballos","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":16632,"modificationDate":"2016-01-30"}, -{"geonameId":"5757477","name":"Troutdale","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16631,"modificationDate":"2017-03-09"}, -{"geonameId":"590447","name":"Maardu","countryName":"Estonia","timeZoneName":"Europe/Tallinn","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16630,"modificationDate":"2019-09-05"}, -{"geonameId":"3098130","name":"Gubin","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16629,"modificationDate":"2019-09-05"}, -{"geonameId":"5743731","name":"Oak Grove","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16629,"modificationDate":"2011-05-14"}, -{"geonameId":"4013726","name":"Anáhuac","countryName":"Mexico","timeZoneName":"America/Matamoros","timeZoneOffsetNameWithoutDst":"Central Time","population":16628,"modificationDate":"2018-11-03"}, -{"geonameId":"5129248","name":"North Valley Stream","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16628,"modificationDate":"2017-05-23"}, -{"geonameId":"3168730","name":"Sacile","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16626,"modificationDate":"2014-01-11"}, -{"geonameId":"2634155","name":"Whickham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16625,"modificationDate":"2019-06-20"}, -{"geonameId":"3178402","name":"Colle di Val d'Elsa","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16625,"modificationDate":"2016-01-21"}, -{"geonameId":"3514349","name":"Yajalón","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16622,"modificationDate":"2018-11-03"}, -{"geonameId":"2870318","name":"Mittweida","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16619,"modificationDate":"2015-09-05"}, -{"geonameId":"2346951","name":"Bode Saadu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16619,"modificationDate":"2019-12-03"}, -{"geonameId":"1691441","name":"Roxas","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16618,"modificationDate":"2017-12-13"}, -{"geonameId":"1731212","name":"Amadeo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16618,"modificationDate":"2017-12-13"}, -{"geonameId":"579432","name":"Balezino","countryName":"Russia","timeZoneName":"Europe/Samara","timeZoneOffsetNameWithoutDst":"Samara Time","population":16618,"modificationDate":"2012-04-05"}, -{"geonameId":"3456816","name":"Monte Santo de Minas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16617,"modificationDate":"2012-08-03"}, -{"geonameId":"4353962","name":"Easton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16617,"modificationDate":"2017-03-09"}, -{"geonameId":"1150210","name":"Thap Than","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":16615,"modificationDate":"2012-01-16"}, -{"geonameId":"3451051","name":"Rio Verde de Mato Grosso","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":16613,"modificationDate":"2012-08-03"}, -{"geonameId":"2324504","name":"Rijau","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16613,"modificationDate":"2016-01-30"}, -{"geonameId":"3080074","name":"Złotoryja","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16612,"modificationDate":"2019-03-18"}, -{"geonameId":"4935582","name":"Easthampton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16611,"modificationDate":"2017-05-23"}, -{"geonameId":"3171848","name":"Osimo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16610,"modificationDate":"2015-07-20"}, -{"geonameId":"7315409","name":"Bothell West","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16607,"modificationDate":"2017-03-10"}, -{"geonameId":"109915","name":"Al Baţţālīyah","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":16606,"modificationDate":"2012-01-16"}, -{"geonameId":"8348920","name":"Pacific Pines","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16605,"modificationDate":"2019-07-18"}, -{"geonameId":"1270718","name":"Gummidipundi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16605,"modificationDate":"2014-10-14"}, -{"geonameId":"1256483","name":"Shirhatti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16604,"modificationDate":"2014-10-14"}, -{"geonameId":"3534432","name":"Venezuela","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":16601,"modificationDate":"2016-01-07"}, -{"geonameId":"2866930","name":"Nauen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16600,"modificationDate":"2015-09-05"}, -{"geonameId":"6246634","name":"Taradale","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":16599,"modificationDate":"2011-08-01"}, -{"geonameId":"411849","name":"Yanqul","countryName":"Oman","timeZoneName":"Asia/Muscat","timeZoneOffsetNameWithoutDst":"Gulf Time","population":16599,"modificationDate":"2018-01-11"}, -{"geonameId":"3183187","name":"Alpignano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16598,"modificationDate":"2015-07-20"}, -{"geonameId":"551986","name":"Kashin","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16598,"modificationDate":"2019-09-05"}, -{"geonameId":"4552707","name":"Tahlequah","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16598,"modificationDate":"2017-03-09"}, -{"geonameId":"1665357","name":"Yujing","countryName":"Taiwan","timeZoneName":"Asia/Taipei","timeZoneOffsetNameWithoutDst":"Taipei Time","population":16597,"modificationDate":"2017-09-24"}, -{"geonameId":"692315","name":"Sudak","countryName":"Ukraine","timeZoneName":"Europe/Simferopol","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16597,"modificationDate":"2017-03-29"}, -{"geonameId":"4995664","name":"Hazel Park","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16597,"modificationDate":"2017-05-23"}, -{"geonameId":"3126317","name":"Cardedeu","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16596,"modificationDate":"2012-01-19"}, -{"geonameId":"4018254","name":"Ario de Rosales","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16595,"modificationDate":"2018-11-03"}, -{"geonameId":"3437063","name":"San Juan Bautista","countryName":"Paraguay","timeZoneName":"America/Asuncion","timeZoneOffsetNameWithoutDst":"Paraguay Summer Time","population":16593,"modificationDate":"2018-04-09"}, -{"geonameId":"2832232","name":"Sigmaringen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16592,"modificationDate":"2019-09-05"}, -{"geonameId":"1703773","name":"Magsaysay","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16592,"modificationDate":"2017-12-13"}, -{"geonameId":"5293083","name":"Douglas","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":16592,"modificationDate":"2017-03-09"}, -{"geonameId":"4336153","name":"Opelousas","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16591,"modificationDate":"2017-03-09"}, -{"geonameId":"3020996","name":"Douarnenez","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16590,"modificationDate":"2016-02-18"}, -{"geonameId":"3053836","name":"Dabas","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":16590,"modificationDate":"2014-11-05"}, -{"geonameId":"3086511","name":"Rypin","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16589,"modificationDate":"2010-09-15"}, -{"geonameId":"1619616","name":"Bang Ban","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":16588,"modificationDate":"2012-01-16"}, -{"geonameId":"315697","name":"Elmalı","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":16587,"modificationDate":"2012-01-18"}, -{"geonameId":"1153241","name":"Huai Yot","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":16586,"modificationDate":"2012-04-05"}, -{"geonameId":"11919749","name":"Le Camas","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16585,"modificationDate":"2018-08-22"}, -{"geonameId":"2657408","name":"Alton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16584,"modificationDate":"2019-09-19"}, -{"geonameId":"337152","name":"Gebre Guracha","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16583,"modificationDate":"2012-01-19"}, -{"geonameId":"4938048","name":"Grafton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16583,"modificationDate":"2017-05-23"}, -{"geonameId":"7260095","name":"Sandalfoot Cove","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16582,"modificationDate":"2017-12-13"}, -{"geonameId":"3685871","name":"Corinto","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":16579,"modificationDate":"2018-07-04"}, -{"geonameId":"2759113","name":"Bergschenhoek","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":16579,"modificationDate":"2017-10-17"}, -{"geonameId":"4676206","name":"Brenham","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16579,"modificationDate":"2017-03-09"}, -{"geonameId":"1254732","name":"Teonthar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16578,"modificationDate":"2015-08-07"}, -{"geonameId":"2953770","name":"Babenhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16575,"modificationDate":"2015-09-04"}, -{"geonameId":"2785612","name":"Tessenderlo","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":16574,"modificationDate":"2011-03-14"}, -{"geonameId":"2523705","name":"Porto Empedocle","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16574,"modificationDate":"2015-07-20"}, -{"geonameId":"2916630","name":"Großenhain","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16573,"modificationDate":"2015-09-05"}, -{"geonameId":"2661567","name":"Bellinzona","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":16572,"modificationDate":"2013-04-21"}, -{"geonameId":"3653287","name":"Pelileo","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":16572,"modificationDate":"2017-02-07"}, -{"geonameId":"3531904","name":"Cacahoatán","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16572,"modificationDate":"2018-11-03"}, -{"geonameId":"728075","name":"Popovo","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16571,"modificationDate":"2012-01-18"}, -{"geonameId":"238566","name":"Ippy","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16571,"modificationDate":"2016-06-22"}, -{"geonameId":"2924302","name":"Frohnau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16571,"modificationDate":"2017-09-19"}, -{"geonameId":"3575635","name":"Roseau","countryName":"Dominica","timeZoneName":"America/Dominica","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":16571,"modificationDate":"2019-09-05"}, -{"geonameId":"3166006","name":"Suzzara","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16571,"modificationDate":"2015-07-20"}, -{"geonameId":"6534252","name":"San Felice A Cancello","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16571,"modificationDate":"2015-07-20"}, -{"geonameId":"496269","name":"Severo-Zadonsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16569,"modificationDate":"2012-01-17"}, -{"geonameId":"3394745","name":"Mocajuba","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16567,"modificationDate":"2012-08-03"}, -{"geonameId":"2904725","name":"Hille","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16567,"modificationDate":"2011-07-31"}, -{"geonameId":"1683342","name":"Tanauan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16567,"modificationDate":"2017-12-13"}, -{"geonameId":"4167003","name":"Opa-locka","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16565,"modificationDate":"2019-12-15"}, -{"geonameId":"5245193","name":"Beaver Dam","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16564,"modificationDate":"2017-05-23"}, -{"geonameId":"5338196","name":"Coalinga","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16564,"modificationDate":"2017-03-09"}, -{"geonameId":"2826861","name":"Stockelsdorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16562,"modificationDate":"2012-03-09"}, -{"geonameId":"3994912","name":"Nochistlán de Mejía","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16562,"modificationDate":"2018-11-03"}, -{"geonameId":"4842818","name":"Seymour","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16562,"modificationDate":"2017-05-23"}, -{"geonameId":"1275364","name":"Bokajan O. Noajan","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16561,"modificationDate":"2020-06-10"}, -{"geonameId":"1261242","name":"Noāmundi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16558,"modificationDate":"2014-10-14"}, -{"geonameId":"3059179","name":"Kysucké Nové Mesto","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":16558,"modificationDate":"2019-06-09"}, -{"geonameId":"1257588","name":"Sālūmbar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16557,"modificationDate":"2014-10-14"}, -{"geonameId":"2333490","name":"Kumagunnam","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16557,"modificationDate":"2016-06-22"}, -{"geonameId":"7870920","name":"Trinity-Bellwoods","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16556,"modificationDate":"2020-05-02"}, -{"geonameId":"1277273","name":"Bānki","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16555,"modificationDate":"2014-10-14"}, -{"geonameId":"1260734","name":"Palera","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16554,"modificationDate":"2015-08-07"}, -{"geonameId":"3488613","name":"Savanna-la-Mar","countryName":"Jamaica","timeZoneName":"America/Jamaica","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16553,"modificationDate":"2017-03-14"}, -{"geonameId":"2516004","name":"L'Eliana","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16552,"modificationDate":"2010-04-22"}, -{"geonameId":"2655689","name":"Biggleswade","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16551,"modificationDate":"2017-06-12"}, -{"geonameId":"734771","name":"Panórama","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16551,"modificationDate":"2012-03-04"}, -{"geonameId":"527888","name":"Medweshegorsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16551,"modificationDate":"2020-06-10"}, -{"geonameId":"2166370","name":"Footscray","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16550,"modificationDate":"2019-07-18"}, -{"geonameId":"3885509","name":"Laja","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":16550,"modificationDate":"2018-10-05"}, -{"geonameId":"2953363","name":"Bad Säckingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16549,"modificationDate":"2015-03-04"}, -{"geonameId":"3557758","name":"Guane","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":16548,"modificationDate":"2016-01-07"}, -{"geonameId":"2508180","name":"Oued Imbert","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":16548,"modificationDate":"2020-06-11"}, -{"geonameId":"768216","name":"Konstancin-Jeziorna","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16548,"modificationDate":"2014-06-26"}, -{"geonameId":"3182361","name":"Bareggio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16546,"modificationDate":"2015-07-20"}, -{"geonameId":"2989130","name":"Osny","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16545,"modificationDate":"2016-03-01"}, -{"geonameId":"2795912","name":"Herve","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":16544,"modificationDate":"2012-01-18"}, -{"geonameId":"3446866","name":"Tapiramutá","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16544,"modificationDate":"2012-08-03"}, -{"geonameId":"2901420","name":"Hohenstein-Ernstthal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16542,"modificationDate":"2015-09-05"}, -{"geonameId":"3181641","name":"Bovisio-Masciago","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16542,"modificationDate":"2014-04-13"}, -{"geonameId":"3068445","name":"Pelhřimov","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":16541,"modificationDate":"2018-09-08"}, -{"geonameId":"766307","name":"Lidzbark Warmiński","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16540,"modificationDate":"2014-06-27"}, -{"geonameId":"3108285","name":"Tàrrega","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16539,"modificationDate":"2012-03-04"}, -{"geonameId":"786341","name":"Resen","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":16539,"modificationDate":"2017-09-05"}, -{"geonameId":"1721695","name":"Cabayangan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16539,"modificationDate":"2017-12-13"}, -{"geonameId":"3168936","name":"Roseto degli Abruzzi","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16538,"modificationDate":"2014-04-13"}, -{"geonameId":"4997500","name":"Jenison","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16538,"modificationDate":"2017-05-23"}, -{"geonameId":"5113142","name":"Cohoes","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16538,"modificationDate":"2017-05-23"}, -{"geonameId":"3168609","name":"Saluzzo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16537,"modificationDate":"2018-12-13"}, -{"geonameId":"3179218","name":"Ceglie Messapica","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16536,"modificationDate":"2014-04-13"}, -{"geonameId":"3002984","name":"Le Pecq","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16534,"modificationDate":"2016-02-18"}, -{"geonameId":"6545108","name":"Las Tres Torres","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16532,"modificationDate":"2017-05-26"}, -{"geonameId":"2404041","name":"Segbwema","countryName":"Sierra Leone","timeZoneName":"Africa/Freetown","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16532,"modificationDate":"2014-12-03"}, -{"geonameId":"2293428","name":"Adiaké","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16531,"modificationDate":"2016-12-03"}, -{"geonameId":"3661980","name":"Tarauacá","countryName":"Brazil","timeZoneName":"America/Rio_Branco","timeZoneOffsetNameWithoutDst":"Acre Time","population":16526,"modificationDate":"2013-04-21"}, -{"geonameId":"4952487","name":"Swansea","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16525,"modificationDate":"2017-05-23"}, -{"geonameId":"4022735","name":"Hidalgo","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":16524,"modificationDate":"2018-11-03"}, -{"geonameId":"1514125","name":"Dustlik","countryName":"Uzbekistan","timeZoneName":"Asia/Tashkent","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":16524,"modificationDate":"2020-06-10"}, -{"geonameId":"2795908","name":"Herzele","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":16523,"modificationDate":"2012-01-18"}, -{"geonameId":"3014392","name":"Guérande","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16523,"modificationDate":"2016-02-18"}, -{"geonameId":"4686593","name":"Donna","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16523,"modificationDate":"2017-03-09"}, -{"geonameId":"2896546","name":"Illertissen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16522,"modificationDate":"2011-04-13"}, -{"geonameId":"304196","name":"Mucur","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":16522,"modificationDate":"2012-01-18"}, -{"geonameId":"4791160","name":"Vienna","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16522,"modificationDate":"2017-03-09"}, -{"geonameId":"4168659","name":"Pinewood","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16520,"modificationDate":"2011-05-14"}, -{"geonameId":"1680613","name":"Tupi","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16518,"modificationDate":"2017-12-15"}, -{"geonameId":"6534203","name":"L'Ancienne-Lorette","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16516,"modificationDate":"2019-02-26"}, -{"geonameId":"3387926","name":"Senador Pompeu","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16515,"modificationDate":"2012-08-03"}, -{"geonameId":"707296","name":"Izyaslav","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16515,"modificationDate":"2020-05-12"}, -{"geonameId":"1850004","name":"Tonoshō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":16514,"modificationDate":"2017-04-09"}, -{"geonameId":"5197159","name":"Lansdale","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16512,"modificationDate":"2017-05-23"}, -{"geonameId":"2515284","name":"La Solana","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16511,"modificationDate":"2012-01-19"}, -{"geonameId":"2966110","name":"Blanchardstown","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16511,"modificationDate":"2013-12-08"}, -{"geonameId":"3519249","name":"San Francisco Tlalcilalcalpan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16509,"modificationDate":"2018-11-03"}, -{"geonameId":"471457","name":"Vostryakovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16509,"modificationDate":"2014-06-26"}, -{"geonameId":"705730","name":"Kivertsi","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16509,"modificationDate":"2018-06-09"}, -{"geonameId":"151108","name":"Nyamuswa","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16507,"modificationDate":"2016-07-26"}, -{"geonameId":"4005380","name":"Ciudad Guadalupe Victoria","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":16506,"modificationDate":"2018-11-03"}, -{"geonameId":"3165595","name":"Tolentino","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16504,"modificationDate":"2015-07-20"}, -{"geonameId":"2652191","name":"Cowley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16500,"modificationDate":"2014-09-30"}, -{"geonameId":"8581595","name":"Harringay","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16500,"modificationDate":"2013-07-17"}, -{"geonameId":"1024697","name":"Chinde","countryName":"Mozambique","timeZoneName":"Africa/Maputo","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":16500,"modificationDate":"2018-11-24"}, -{"geonameId":"2750939","name":"Merenwijk","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":16500,"modificationDate":"2016-12-27"}, -{"geonameId":"1271495","name":"Garui","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16499,"modificationDate":"2018-12-04"}, -{"geonameId":"711867","name":"Bohuslav","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16498,"modificationDate":"2018-12-05"}, -{"geonameId":"3018246","name":"Floirac","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16497,"modificationDate":"2020-01-08"}, -{"geonameId":"2111310","name":"Ozuchi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":16497,"modificationDate":"2020-06-11"}, -{"geonameId":"3591523","name":"Patzicía","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":16494,"modificationDate":"2019-05-08"}, -{"geonameId":"2756295","name":"Eibergen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":16493,"modificationDate":"2017-10-17"}, -{"geonameId":"1606343","name":"Seka","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":16493,"modificationDate":"2012-02-01"}, -{"geonameId":"2147821","name":"Surry Hills","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16492,"modificationDate":"2019-07-18"}, -{"geonameId":"6620290","name":"Turgutreis","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":16490,"modificationDate":"2013-11-10"}, -{"geonameId":"4656585","name":"Sevierville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16490,"modificationDate":"2017-03-09"}, -{"geonameId":"3042287","name":"Saint Peter Port","countryName":"Guernsey","timeZoneName":"Europe/Guernsey","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16488,"modificationDate":"2019-09-05"}, -{"geonameId":"4533029","name":"Chickasha","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16488,"modificationDate":"2017-03-09"}, -{"geonameId":"4204007","name":"Kingsland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16487,"modificationDate":"2017-03-09"}, -{"geonameId":"3597804","name":"Cuilapa","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":16484,"modificationDate":"2012-12-05"}, -{"geonameId":"1266838","name":"Khātra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16484,"modificationDate":"2014-10-14"}, -{"geonameId":"1723893","name":"Borongan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16484,"modificationDate":"2017-12-13"}, -{"geonameId":"925789","name":"Mulanje","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":16483,"modificationDate":"2011-11-08"}, -{"geonameId":"1162862","name":"Uthal","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":16483,"modificationDate":"2019-12-06"}, -{"geonameId":"6295512","name":"Zürich (Kreis 9) / Albisrieden","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":16480,"modificationDate":"2006-10-21"}, -{"geonameId":"699078","name":"Novoukrayinka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16479,"modificationDate":"2020-05-15"}, -{"geonameId":"3388847","name":"São Félix do Xingu","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16477,"modificationDate":"2017-02-13"}, -{"geonameId":"2913537","name":"Gunzenhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16477,"modificationDate":"2014-01-23"}, -{"geonameId":"3183319","name":"Albignasego","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16477,"modificationDate":"2015-07-20"}, -{"geonameId":"4738721","name":"Uvalde","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16476,"modificationDate":"2017-03-09"}, -{"geonameId":"3067051","name":"Rakovník","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":16473,"modificationDate":"2018-09-08"}, -{"geonameId":"12156898","name":"Clanton Park","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16472,"modificationDate":"2020-05-02"}, -{"geonameId":"1271538","name":"Garhshankar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16470,"modificationDate":"2014-10-14"}, -{"geonameId":"3619853","name":"El Crucero","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":16469,"modificationDate":"2018-08-08"}, -{"geonameId":"4358082","name":"Hillcrest Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16469,"modificationDate":"2011-05-14"}, -{"geonameId":"1254249","name":"Tondi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16468,"modificationDate":"2018-07-04"}, -{"geonameId":"2904808","name":"Hilchenbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16467,"modificationDate":"2015-09-04"}, -{"geonameId":"2515493","name":"Las Cabezas de San Juan","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16464,"modificationDate":"2012-01-19"}, -{"geonameId":"3385504","name":"Varjota","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16462,"modificationDate":"2012-08-03"}, -{"geonameId":"4174201","name":"Stuart","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16462,"modificationDate":"2017-03-09"}, -{"geonameId":"3594703","name":"La Esperanza","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":16461,"modificationDate":"2018-12-05"}, -{"geonameId":"3121881","name":"Hondarribia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16458,"modificationDate":"2013-05-24"}, -{"geonameId":"1518431","name":"Tasbuget","countryName":"Kazakhstan","timeZoneName":"Asia/Qyzylorda","timeZoneOffsetNameWithoutDst":"West Kazakhstan Time","population":16455,"modificationDate":"2020-03-07"}, -{"geonameId":"4936087","name":"Fairhaven","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16453,"modificationDate":"2017-05-23"}, -{"geonameId":"4254021","name":"Avon","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16451,"modificationDate":"2017-05-23"}, -{"geonameId":"2775260","name":"Innere Stadt","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":16450,"modificationDate":"2018-07-29"}, -{"geonameId":"3655117","name":"La Maná","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":16450,"modificationDate":"2017-02-07"}, -{"geonameId":"4346788","name":"Zachary","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16448,"modificationDate":"2017-03-09"}, -{"geonameId":"2643312","name":"Lymington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16446,"modificationDate":"2018-07-03"}, -{"geonameId":"1503082","name":"Koyschenewo","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":16446,"modificationDate":"2020-06-10"}, -{"geonameId":"5042773","name":"Red Wing","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16445,"modificationDate":"2017-05-23"}, -{"geonameId":"3408175","name":"Água Preta","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16444,"modificationDate":"2012-08-03"}, -{"geonameId":"2902559","name":"Hofgeismar","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16444,"modificationDate":"2015-09-05"}, -{"geonameId":"3533490","name":"San Antonio Acahualco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16442,"modificationDate":"2018-11-03"}, -{"geonameId":"2332249","name":"Lapai","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16442,"modificationDate":"2016-05-23"}, -{"geonameId":"154321","name":"Mbuguni","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16442,"modificationDate":"2016-07-26"}, -{"geonameId":"1514839","name":"Proletar","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":16441,"modificationDate":"2012-04-05"}, -{"geonameId":"3440571","name":"San Juan Bautista","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":16438,"modificationDate":"2020-06-10"}, -{"geonameId":"4408672","name":"Sikeston","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16436,"modificationDate":"2017-05-23"}, -{"geonameId":"1710258","name":"Jasaan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16435,"modificationDate":"2017-12-13"}, -{"geonameId":"2276600","name":"Greenville","countryName":"Liberia","timeZoneName":"Africa/Monrovia","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16434,"modificationDate":"2015-05-06"}, -{"geonameId":"3945985","name":"Camaná","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":16434,"modificationDate":"2012-11-08"}, -{"geonameId":"766783","name":"Łapy","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16434,"modificationDate":"2014-06-27"}, -{"geonameId":"599506","name":"Gorzdy","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16433,"modificationDate":"2020-06-10"}, -{"geonameId":"3177372","name":"Erba","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16431,"modificationDate":"2014-04-13"}, -{"geonameId":"5108955","name":"Bethpage","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16429,"modificationDate":"2017-05-23"}, -{"geonameId":"712587","name":"Bilohirsk","countryName":"Ukraine","timeZoneName":"Europe/Simferopol","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16428,"modificationDate":"2018-11-20"}, -{"geonameId":"2037485","name":"Erenhot","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":16427,"modificationDate":"2017-12-29"}, -{"geonameId":"3069844","name":"Neratovice","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":16427,"modificationDate":"2018-09-08"}, -{"geonameId":"3398105","name":"Ipubi","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16424,"modificationDate":"2012-08-03"}, -{"geonameId":"2509377","name":"Zafra","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16424,"modificationDate":"2018-12-19"}, -{"geonameId":"3455784","name":"Orleans","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16422,"modificationDate":"2012-08-03"}, -{"geonameId":"4382072","name":"Concord","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16421,"modificationDate":"2017-05-23"}, -{"geonameId":"2645541","name":"Kilwinning","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16420,"modificationDate":"2017-06-12"}, -{"geonameId":"3689899","name":"Andes","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":16419,"modificationDate":"2016-01-30"}, -{"geonameId":"2885800","name":"Königslutter am Elm","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16419,"modificationDate":"2019-09-05"}, -{"geonameId":"2643553","name":"Louth","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16419,"modificationDate":"2018-07-03"}, -{"geonameId":"5294937","name":"Flowing Wells","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":16419,"modificationDate":"2011-05-14"}, -{"geonameId":"1262115","name":"Nainwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16415,"modificationDate":"2014-10-14"}, -{"geonameId":"934032","name":"Saint Pierre","countryName":"Mauritius","timeZoneName":"Indian/Mauritius","timeZoneOffsetNameWithoutDst":"Mauritius Time","population":16414,"modificationDate":"2020-06-10"}, -{"geonameId":"2208313","name":"Umina Beach","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16413,"modificationDate":"2019-07-18"}, -{"geonameId":"2659297","name":"Olten","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":16411,"modificationDate":"2019-09-10"}, -{"geonameId":"342190","name":"Bichena","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16411,"modificationDate":"2012-01-19"}, -{"geonameId":"1266731","name":"Khilchipur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16411,"modificationDate":"2014-10-14"}, -{"geonameId":"1276095","name":"Bharwāri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16411,"modificationDate":"2015-08-07"}, -{"geonameId":"2953357","name":"Bad Salzungen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16410,"modificationDate":"2015-09-05"}, -{"geonameId":"2346317","name":"Burutu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16410,"modificationDate":"2016-01-30"}, -{"geonameId":"3453622","name":"Piraí do Sul","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16409,"modificationDate":"2012-08-03"}, -{"geonameId":"3472848","name":"Águas Vermelhas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16409,"modificationDate":"2012-08-03"}, -{"geonameId":"1267456","name":"Kātpādi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16408,"modificationDate":"2014-10-14"}, -{"geonameId":"528056","name":"Medvedevo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16407,"modificationDate":"2016-11-23"}, -{"geonameId":"4885573","name":"Bridgeview","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16407,"modificationDate":"2017-05-23"}, -{"geonameId":"5153680","name":"Fairview Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16407,"modificationDate":"2017-05-23"}, -{"geonameId":"3408100","name":"Alagoa Grande","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16406,"modificationDate":"2012-08-03"}, -{"geonameId":"833357","name":"Ilinden","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":16406,"modificationDate":"2013-11-11"}, -{"geonameId":"5364369","name":"Laguna Woods","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16406,"modificationDate":"2017-03-09"}, -{"geonameId":"467525","name":"Yemva","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16404,"modificationDate":"2018-10-09"}, -{"geonameId":"5785657","name":"Anacortes","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16403,"modificationDate":"2017-03-09"}, -{"geonameId":"3385922","name":"Tuntum","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16402,"modificationDate":"2012-08-03"}, -{"geonameId":"1276265","name":"Bhainsdehi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16400,"modificationDate":"2015-08-07"}, -{"geonameId":"1710357","name":"Jalajala","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16400,"modificationDate":"2017-12-13"}, -{"geonameId":"5002656","name":"Mount Clemens","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16400,"modificationDate":"2017-05-23"}, -{"geonameId":"5416005","name":"Cañon City","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":16400,"modificationDate":"2013-07-21"}, -{"geonameId":"5045258","name":"Saint Michael","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16399,"modificationDate":"2017-05-23"}, -{"geonameId":"5104853","name":"South River","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16399,"modificationDate":"2017-05-23"}, -{"geonameId":"3508952","name":"Dajabón","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":16398,"modificationDate":"2016-06-05"}, -{"geonameId":"698131","name":"Ovruch","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16398,"modificationDate":"2019-09-05"}, -{"geonameId":"4292071","name":"Fort Thomas","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16398,"modificationDate":"2017-03-09"}, -{"geonameId":"1465825","name":"Madipakkam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16396,"modificationDate":"2014-10-14"}, -{"geonameId":"3987402","name":"Tlaltenango","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16396,"modificationDate":"2020-06-10"}, -{"geonameId":"3337504","name":"Seeheim-Jugenheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16395,"modificationDate":"2011-04-25"}, -{"geonameId":"461920","name":"Zvenigorod","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16395,"modificationDate":"2012-01-17"}, -{"geonameId":"1763412","name":"Kampung Tanjung Karang","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":16393,"modificationDate":"2012-01-17"}, -{"geonameId":"3894177","name":"Collipulli","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":16392,"modificationDate":"2013-01-11"}, -{"geonameId":"3130606","name":"Alcañiz","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16392,"modificationDate":"2012-03-04"}, -{"geonameId":"1255082","name":"Talwandi Bhai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16391,"modificationDate":"2015-02-06"}, -{"geonameId":"1265670","name":"Kumbhrāj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16391,"modificationDate":"2015-08-07"}, -{"geonameId":"2645951","name":"Johnstone","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16390,"modificationDate":"2017-06-12"}, -{"geonameId":"1271062","name":"Gokavaram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16389,"modificationDate":"2017-12-13"}, -{"geonameId":"690312","name":"Vatutine","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16389,"modificationDate":"2020-05-16"}, -{"geonameId":"4174425","name":"Sunset","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16389,"modificationDate":"2011-05-14"}, -{"geonameId":"1260940","name":"Padampur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16387,"modificationDate":"2015-09-06"}, -{"geonameId":"8349003","name":"Paralowie","countryName":"Australia","timeZoneName":"Australia/Adelaide","timeZoneOffsetNameWithoutDst":"Australian Central Time","population":16386,"modificationDate":"2019-07-18"}, -{"geonameId":"4906882","name":"Prospect Heights","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16386,"modificationDate":"2017-05-23"}, -{"geonameId":"2875645","name":"Loxstedt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16382,"modificationDate":"2011-04-25"}, -{"geonameId":"2890504","name":"Kirchhain","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16381,"modificationDate":"2015-09-05"}, -{"geonameId":"724503","name":"Kežmarok","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":16381,"modificationDate":"2020-01-18"}, -{"geonameId":"3493383","name":"Sabaneta","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":16380,"modificationDate":"2016-06-05"}, -{"geonameId":"4920986","name":"Griffith","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16378,"modificationDate":"2017-05-23"}, -{"geonameId":"3393017","name":"Parelhas","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16377,"modificationDate":"2012-08-03"}, -{"geonameId":"6534234","name":"Caronno Pertusella","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16377,"modificationDate":"2014-01-16"}, -{"geonameId":"4323873","name":"Estelle","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16377,"modificationDate":"2011-05-14"}, -{"geonameId":"3091141","name":"Namysłów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16376,"modificationDate":"2010-09-25"}, -{"geonameId":"2739723","name":"Feira","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":16376,"modificationDate":"2018-06-07"}, -{"geonameId":"160798","name":"Butiama","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16376,"modificationDate":"2016-07-26"}, -{"geonameId":"6943585","name":"The Gap","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16371,"modificationDate":"2019-07-18"}, -{"geonameId":"156963","name":"Kishapu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16371,"modificationDate":"2018-12-04"}, -{"geonameId":"2158051","name":"Mernda","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16370,"modificationDate":"2019-07-18"}, -{"geonameId":"7262790","name":"Schofield Barracks","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":16370,"modificationDate":"2015-03-22"}, -{"geonameId":"2898098","name":"Hückeswagen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16369,"modificationDate":"2015-09-04"}, -{"geonameId":"6559641","name":"Las Gabias","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16369,"modificationDate":"2015-06-15"}, -{"geonameId":"4748305","name":"Bon Air","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16366,"modificationDate":"2011-05-14"}, -{"geonameId":"5924618","name":"Cochrane","countryName":"Canada","timeZoneName":"America/Edmonton","timeZoneOffsetNameWithoutDst":"Mountain Time","population":16365,"modificationDate":"2008-04-11"}, -{"geonameId":"2980942","name":"Saint-Cyr","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16365,"modificationDate":"2020-06-10"}, -{"geonameId":"3060219","name":"Galanta","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":16365,"modificationDate":"2019-06-09"}, -{"geonameId":"2653634","name":"Carterton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16364,"modificationDate":"2018-07-03"}, -{"geonameId":"2639323","name":"Ripon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16363,"modificationDate":"2018-07-03"}, -{"geonameId":"2111964","name":"Matsushima","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":16363,"modificationDate":"2018-01-18"}, -{"geonameId":"1850878","name":"Takedamachi","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":16361,"modificationDate":"2017-04-09"}, -{"geonameId":"3711699","name":"Curundú","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16361,"modificationDate":"2017-08-16"}, -{"geonameId":"1175283","name":"Kaleke Mandi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":16361,"modificationDate":"2019-12-06"}, -{"geonameId":"2655210","name":"Bonnyrigg","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16360,"modificationDate":"2017-06-12"}, -{"geonameId":"5265499","name":"Oconomowoc","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16360,"modificationDate":"2017-05-23"}, -{"geonameId":"2147381","name":"Taree","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16359,"modificationDate":"2019-07-18"}, -{"geonameId":"1853371","name":"Ryotu","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":16359,"modificationDate":"2020-06-11"}, -{"geonameId":"5158067","name":"Hough","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16359,"modificationDate":"2017-12-13"}, -{"geonameId":"4176409","name":"Vero Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16358,"modificationDate":"2017-03-09"}, -{"geonameId":"6295536","name":"Oberwinterthur (Kreis 2)","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":16356,"modificationDate":"2016-07-27"}, -{"geonameId":"3176177","name":"Ghedi","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16351,"modificationDate":"2015-07-20"}, -{"geonameId":"1267202","name":"Khada","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16350,"modificationDate":"2014-10-14"}, -{"geonameId":"684490","name":"Bocşa","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16349,"modificationDate":"2012-06-12"}, -{"geonameId":"2915196","name":"Großostheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16346,"modificationDate":"2015-03-04"}, -{"geonameId":"2625070","name":"Aabenraa","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":16344,"modificationDate":"2019-08-01"}, -{"geonameId":"1255488","name":"Sultanpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16344,"modificationDate":"2015-09-06"}, -{"geonameId":"877471","name":"Nyangao","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16343,"modificationDate":"2016-07-26"}, -{"geonameId":"723030","name":"Abony","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":16342,"modificationDate":"2012-01-18"}, -{"geonameId":"2890425","name":"Kirchlengern","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16338,"modificationDate":"2011-04-25"}, -{"geonameId":"1269175","name":"Jasidih","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16338,"modificationDate":"2014-10-14"}, -{"geonameId":"305089","name":"Lice","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":16336,"modificationDate":"2015-02-07"}, -{"geonameId":"3433956","name":"Federal","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":16333,"modificationDate":"2016-01-30"}, -{"geonameId":"1501365","name":"Kupino","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":16333,"modificationDate":"2012-01-17"}, -{"geonameId":"3466903","name":"Carmo do Cajuru","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16332,"modificationDate":"2012-08-03"}, -{"geonameId":"3471428","name":"Arroio do Meio","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16331,"modificationDate":"2012-08-03"}, -{"geonameId":"932886","name":"Butha-Buthe","countryName":"Lesotho","timeZoneName":"Africa/Maseru","timeZoneOffsetNameWithoutDst":"South Africa Time","population":16330,"modificationDate":"2012-01-18"}, -{"geonameId":"2516902","name":"Guardamar del Segura","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16329,"modificationDate":"2012-04-29"}, -{"geonameId":"3393465","name":"Orós","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16328,"modificationDate":"2012-08-03"}, -{"geonameId":"3074204","name":"Jičín","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":16328,"modificationDate":"2019-03-20"}, -{"geonameId":"5812604","name":"Sunnyside","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16325,"modificationDate":"2017-03-09"}, -{"geonameId":"5736218","name":"Lebanon","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16324,"modificationDate":"2017-03-09"}, -{"geonameId":"2897436","name":"Hünfeld","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16323,"modificationDate":"2015-09-05"}, -{"geonameId":"3005417","name":"Laxou","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16323,"modificationDate":"2018-11-06"}, -{"geonameId":"4146934","name":"Bayshore Gardens","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16323,"modificationDate":"2011-05-14"}, -{"geonameId":"1175712","name":"Jiwani","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":16322,"modificationDate":"2019-12-06"}, -{"geonameId":"2812522","name":"Weilerswist","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16321,"modificationDate":"2017-09-20"}, -{"geonameId":"3357247","name":"Gobabis","countryName":"Namibia","timeZoneName":"Africa/Windhoek","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":16321,"modificationDate":"2012-01-14"}, -{"geonameId":"3081046","name":"Ząbkowice Śląskie","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16321,"modificationDate":"2010-09-12"}, -{"geonameId":"2525571","name":"Belpasso","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16319,"modificationDate":"2014-04-13"}, -{"geonameId":"3516347","name":"Villa de Guerrero","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16318,"modificationDate":"2020-06-10"}, -{"geonameId":"2775742","name":"Hohenems","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":16317,"modificationDate":"2018-07-28"}, -{"geonameId":"1752256","name":"Pantai Remis","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":16317,"modificationDate":"2012-01-17"}, -{"geonameId":"3017921","name":"Fontenay-le-Comte","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16316,"modificationDate":"2019-04-10"}, -{"geonameId":"877384","name":"Tingi","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16315,"modificationDate":"2016-07-26"}, -{"geonameId":"3877348","name":"Panguipulli","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":16312,"modificationDate":"2018-06-18"}, -{"geonameId":"1705871","name":"Loboc","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16312,"modificationDate":"2017-12-13"}, -{"geonameId":"5173210","name":"Streetsboro","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16312,"modificationDate":"2017-05-23"}, -{"geonameId":"6062163","name":"Lutes Mountain","countryName":"Canada","timeZoneName":"America/Moncton","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":16311,"modificationDate":"2016-06-29"}, -{"geonameId":"1257476","name":"Sancoale","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16311,"modificationDate":"2014-10-14"}, -{"geonameId":"1175678","name":"Johi","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":16311,"modificationDate":"2019-12-06"}, -{"geonameId":"4185657","name":"Calhoun","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16309,"modificationDate":"2017-03-09"}, -{"geonameId":"3456866","name":"Monte Aprazível","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16308,"modificationDate":"2012-08-03"}, -{"geonameId":"3533440","name":"Acatlán de Osorio","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16307,"modificationDate":"2018-11-03"}, -{"geonameId":"4902754","name":"Morton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16306,"modificationDate":"2017-05-23"}, -{"geonameId":"2147140","name":"Templestowe","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16305,"modificationDate":"2019-07-18"}, -{"geonameId":"2747597","name":"Schiebroek","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":16305,"modificationDate":"2017-03-24"}, -{"geonameId":"3093708","name":"Lędziny","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16305,"modificationDate":"2011-07-31"}, -{"geonameId":"5262634","name":"Menomonie","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16305,"modificationDate":"2017-05-23"}, -{"geonameId":"2339756","name":"Gwarzo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16303,"modificationDate":"2016-06-22"}, -{"geonameId":"2647398","name":"Hartley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16302,"modificationDate":"2018-07-03"}, -{"geonameId":"1818673","name":"Tai Po","countryName":"Hong Kong","timeZoneName":"Asia/Hong_Kong","timeZoneOffsetNameWithoutDst":"Hong Kong Time","population":16302,"modificationDate":"2015-02-07"}, -{"geonameId":"1181022","name":"Chhor","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":16301,"modificationDate":"2019-12-06"}, -{"geonameId":"1635826","name":"Maubara","countryName":"Timor Leste","timeZoneName":"Asia/Dili","timeZoneOffsetNameWithoutDst":"East Timor Time","population":16300,"modificationDate":"2016-11-27"}, -{"geonameId":"1261771","name":"Nārnaund","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16299,"modificationDate":"2015-08-07"}, -{"geonameId":"1605119","name":"Wang Nam Yen","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":16299,"modificationDate":"2012-01-16"}, -{"geonameId":"5403676","name":"Truckee","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16299,"modificationDate":"2017-03-09"}, -{"geonameId":"5155207","name":"Fremont","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16297,"modificationDate":"2017-05-23"}, -{"geonameId":"109059","name":"Al Munayzilah","countryName":"Saudi Arabia","timeZoneName":"Asia/Riyadh","timeZoneOffsetNameWithoutDst":"Arabian Time","population":16296,"modificationDate":"2012-01-16"}, -{"geonameId":"3979174","name":"Lázaro Cárdenas","countryName":"Mexico","timeZoneName":"America/Tijuana","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16294,"modificationDate":"2018-11-03"}, -{"geonameId":"4749627","name":"Buckhall","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16293,"modificationDate":"2011-05-14"}, -{"geonameId":"2764279","name":"Stockerau","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":16292,"modificationDate":"2019-09-05"}, -{"geonameId":"2903237","name":"Hochfeld","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16292,"modificationDate":"2018-12-04"}, -{"geonameId":"4692746","name":"Gainesville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16292,"modificationDate":"2017-03-09"}, -{"geonameId":"2660127","name":"Kloten","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":16289,"modificationDate":"2013-03-28"}, -{"geonameId":"2560922","name":"Aïn Beni Mathar","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":16289,"modificationDate":"2018-08-15"}, -{"geonameId":"2848335","name":"Remagen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16280,"modificationDate":"2015-09-05"}, -{"geonameId":"3406961","name":"Augusto Corrêa","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16279,"modificationDate":"2012-08-03"}, -{"geonameId":"3675409","name":"Manzanares","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":16278,"modificationDate":"2018-07-04"}, -{"geonameId":"3176970","name":"Fiorano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16278,"modificationDate":"2015-07-19"}, -{"geonameId":"5785243","name":"Aberdeen","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16276,"modificationDate":"2017-03-09"}, -{"geonameId":"3671325","name":"Puerto Santander","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":16275,"modificationDate":"2018-08-08"}, -{"geonameId":"5108186","name":"Baychester","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16274,"modificationDate":"2017-04-22"}, -{"geonameId":"3669332","name":"San Martín","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":16273,"modificationDate":"2018-08-08"}, -{"geonameId":"1271729","name":"Ganderbal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16271,"modificationDate":"2020-06-10"}, -{"geonameId":"3855041","name":"General Villegas","countryName":"Argentina","timeZoneName":"America/Argentina/Buenos_Aires","timeZoneOffsetNameWithoutDst":"Argentina Time","population":16270,"modificationDate":"2016-11-29"}, -{"geonameId":"2764178","name":"Straßgang","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":16268,"modificationDate":"2018-07-29"}, -{"geonameId":"1274422","name":"Chennimalai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16268,"modificationDate":"2017-04-06"}, -{"geonameId":"792227","name":"Brvenica","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":16267,"modificationDate":"2014-10-01"}, -{"geonameId":"5099292","name":"Hopatcong Hills","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16267,"modificationDate":"2017-05-23"}, -{"geonameId":"7302862","name":"Bahula","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16264,"modificationDate":"2014-10-14"}, -{"geonameId":"1171050","name":"Mangla","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":16264,"modificationDate":"2019-12-06"}, -{"geonameId":"2659127","name":"Pully","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":16263,"modificationDate":"2013-02-19"}, -{"geonameId":"1283448","name":"Dhulikhel","countryName":"Nepal","timeZoneName":"Asia/Kathmandu","timeZoneOffsetNameWithoutDst":"Nepal Time","population":16263,"modificationDate":"2019-10-19"}, -{"geonameId":"4982236","name":"Waterville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16261,"modificationDate":"2017-05-23"}, -{"geonameId":"5379759","name":"Oroville","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16260,"modificationDate":"2017-03-09"}, -{"geonameId":"2993572","name":"Moissy-Cramayel","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16259,"modificationDate":"2016-02-18"}, -{"geonameId":"5134323","name":"Roosevelt","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16258,"modificationDate":"2017-05-23"}, -{"geonameId":"3079508","name":"Benešov","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":16257,"modificationDate":"2019-03-19"}, -{"geonameId":"1275619","name":"Bilgi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16257,"modificationDate":"2014-10-14"}, -{"geonameId":"595213","name":"Rokiškis","countryName":"Lithuania","timeZoneName":"Europe/Vilnius","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16255,"modificationDate":"2016-11-28"}, -{"geonameId":"3456412","name":"Muzambinho","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16253,"modificationDate":"2012-08-03"}, -{"geonameId":"2521413","name":"Baeza","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16253,"modificationDate":"2012-03-04"}, -{"geonameId":"3123063","name":"Ermua","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16252,"modificationDate":"2015-05-31"}, -{"geonameId":"3448828","name":"São Joaquim","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16250,"modificationDate":"2012-08-03"}, -{"geonameId":"8858118","name":"Ampliación San Mateo (Colonia Solidaridad)","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16250,"modificationDate":"2014-04-11"}, -{"geonameId":"3703068","name":"Penonomé","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16250,"modificationDate":"2017-08-16"}, -{"geonameId":"3692310","name":"San Pedro de Lloc","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":16250,"modificationDate":"2012-10-07"}, -{"geonameId":"3082756","name":"Ustka","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16250,"modificationDate":"2019-10-03"}, -{"geonameId":"2953197","name":"Baiersbronn","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16248,"modificationDate":"2013-04-02"}, -{"geonameId":"1265734","name":"Kulgam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16246,"modificationDate":"2019-03-16"}, -{"geonameId":"3120989","name":"Gernika-Lumo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16244,"modificationDate":"2012-11-12"}, -{"geonameId":"3468732","name":"Buritis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16243,"modificationDate":"2012-08-03"}, -{"geonameId":"2976050","name":"Saran","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16243,"modificationDate":"2016-02-18"}, -{"geonameId":"1271722","name":"Gandevi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16240,"modificationDate":"2014-10-13"}, -{"geonameId":"1515007","name":"Uliastay","countryName":"Mongolia","timeZoneName":"Asia/Hovd","timeZoneOffsetNameWithoutDst":"Hovd Time","population":16240,"modificationDate":"2016-11-02"}, -{"geonameId":"3515938","name":"Teopisca","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16240,"modificationDate":"2018-11-03"}, -{"geonameId":"3518475","name":"Teolocholco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16240,"modificationDate":"2013-08-01"}, -{"geonameId":"253394","name":"Sparta","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16239,"modificationDate":"2020-06-10"}, -{"geonameId":"3104475","name":"Viveiro","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16238,"modificationDate":"2012-03-04"}, -{"geonameId":"1277949","name":"Badvel","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16238,"modificationDate":"2017-01-04"}, -{"geonameId":"2513604","name":"Montijo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16236,"modificationDate":"2012-03-04"}, -{"geonameId":"3173391","name":"Minturno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16236,"modificationDate":"2015-07-19"}, -{"geonameId":"2519651","name":"Cehegín","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16235,"modificationDate":"2010-05-24"}, -{"geonameId":"1689052","name":"San Mateo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16233,"modificationDate":"2017-12-13"}, -{"geonameId":"878367","name":"Kitama","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16232,"modificationDate":"2018-12-04"}, -{"geonameId":"3109050","name":"Seseña","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16231,"modificationDate":"2011-07-31"}, -{"geonameId":"2712993","name":"Gamla Uppsala","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":16231,"modificationDate":"2014-10-12"}, -{"geonameId":"2469262","name":"Mennzel Bou Zelfa","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":16231,"modificationDate":"2018-08-05"}, -{"geonameId":"3453494","name":"Piritiba","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16230,"modificationDate":"2012-08-03"}, -{"geonameId":"2748130","name":"Rijen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":16230,"modificationDate":"2017-10-17"}, -{"geonameId":"3402724","name":"Carolina","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16228,"modificationDate":"2014-01-01"}, -{"geonameId":"2523927","name":"Palagonia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16227,"modificationDate":"2014-04-13"}, -{"geonameId":"5088438","name":"Laconia","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16227,"modificationDate":"2017-05-23"}, -{"geonameId":"633221","name":"Uusikaupunki","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16226,"modificationDate":"2019-09-05"}, -{"geonameId":"3029706","name":"Bry-sur-Marne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16226,"modificationDate":"2016-02-18"}, -{"geonameId":"3792376","name":"Ciudad Bolívar","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":16225,"modificationDate":"2016-01-28"}, -{"geonameId":"1264196","name":"Makum-Junction","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16225,"modificationDate":"2020-06-10"}, -{"geonameId":"3027767","name":"Cesson-Sévigné","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16222,"modificationDate":"2016-02-18"}, -{"geonameId":"2399959","name":"Koulamoutou","countryName":"Gabon","timeZoneName":"Africa/Libreville","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16222,"modificationDate":"2016-11-27"}, -{"geonameId":"1268276","name":"Kamalganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16222,"modificationDate":"2015-08-07"}, -{"geonameId":"734880","name":"Orestiáda","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16221,"modificationDate":"2013-12-20"}, -{"geonameId":"2811292","name":"Wendelstein","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16220,"modificationDate":"2013-02-19"}, -{"geonameId":"2817813","name":"Vechelde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16219,"modificationDate":"2014-05-16"}, -{"geonameId":"2878673","name":"Leopoldshöhe","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16219,"modificationDate":"2015-03-04"}, -{"geonameId":"1182682","name":"Bhawana","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":16218,"modificationDate":"2019-12-06"}, -{"geonameId":"5108707","name":"Bellmore","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16218,"modificationDate":"2017-05-23"}, -{"geonameId":"785559","name":"Stara Pazova","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":16217,"modificationDate":"2016-05-18"}, -{"geonameId":"751931","name":"Arhavi","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":16217,"modificationDate":"2013-12-12"}, -{"geonameId":"3455061","name":"Paranapanema","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16215,"modificationDate":"2014-06-28"}, -{"geonameId":"2946366","name":"Boppard","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16215,"modificationDate":"2015-09-05"}, -{"geonameId":"486110","name":"Surkhakhi","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16215,"modificationDate":"2012-08-04"}, -{"geonameId":"3996910","name":"Magdalena","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16214,"modificationDate":"2018-11-03"}, -{"geonameId":"2911408","name":"Halstenbek","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16212,"modificationDate":"2011-07-31"}, -{"geonameId":"6137781","name":"Sainte-Catherine","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16211,"modificationDate":"2016-06-22"}, -{"geonameId":"2919880","name":"Glinde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16210,"modificationDate":"2015-09-04"}, -{"geonameId":"2160188","name":"Lilydale","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16209,"modificationDate":"2019-07-18"}, -{"geonameId":"3115907","name":"Mungia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16209,"modificationDate":"2015-06-03"}, -{"geonameId":"2802435","name":"Beerse","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":16208,"modificationDate":"2012-01-18"}, -{"geonameId":"671382","name":"Pantelimon","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16206,"modificationDate":"2012-06-12"}, -{"geonameId":"5030005","name":"Hibbing","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16204,"modificationDate":"2017-05-23"}, -{"geonameId":"4788145","name":"Sudley","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16203,"modificationDate":"2011-05-14"}, -{"geonameId":"295584","name":"Azor","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":16201,"modificationDate":"2020-01-24"}, -{"geonameId":"1507636","name":"Chunskiy","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":16199,"modificationDate":"2012-01-17"}, -{"geonameId":"4192205","name":"Dublin","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16197,"modificationDate":"2017-03-09"}, -{"geonameId":"3526662","name":"Izamal","countryName":"Mexico","timeZoneName":"America/Merida","timeZoneOffsetNameWithoutDst":"Central Time","population":16195,"modificationDate":"2018-11-03"}, -{"geonameId":"2862423","name":"Nikolassee","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16194,"modificationDate":"2012-06-09"}, -{"geonameId":"2952252","name":"Bassum","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16191,"modificationDate":"2015-09-04"}, -{"geonameId":"553248","name":"Kamyzyak","countryName":"Russia","timeZoneName":"Europe/Astrakhan","timeZoneOffsetNameWithoutDst":"GMT+04:00","population":16191,"modificationDate":"2016-04-10"}, -{"geonameId":"3179347","name":"Cattolica","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16189,"modificationDate":"2014-04-13"}, -{"geonameId":"3164080","name":"Vimodrone","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16183,"modificationDate":"2014-04-13"}, -{"geonameId":"284324","name":"Bayt Jālā","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16183,"modificationDate":"2017-09-06"}, -{"geonameId":"6295520","name":"Stadt Winterthur (Kreis 1)","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":16182,"modificationDate":"2006-10-05"}, -{"geonameId":"3002570","name":"Le Pontet","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16182,"modificationDate":"2016-02-18"}, -{"geonameId":"5720495","name":"Coos Bay","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":16182,"modificationDate":"2017-03-09"}, -{"geonameId":"2476917","name":"Thenia","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":16180,"modificationDate":"2012-01-19"}, -{"geonameId":"3458245","name":"Macatuba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16179,"modificationDate":"2012-08-03"}, -{"geonameId":"2511287","name":"San Miguel De Abona","countryName":"Spain","timeZoneName":"Atlantic/Canary","timeZoneOffsetNameWithoutDst":"Western European Time","population":16179,"modificationDate":"2015-12-04"}, -{"geonameId":"1689994","name":"Aurora","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16178,"modificationDate":"2017-12-13"}, -{"geonameId":"2429344","name":"Kiyabi","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16177,"modificationDate":"2020-06-10"}, -{"geonameId":"2864034","name":"Neustadt in Holstein","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16176,"modificationDate":"2017-09-19"}, -{"geonameId":"1264383","name":"Mahgawān","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16176,"modificationDate":"2014-10-14"}, -{"geonameId":"1278073","name":"Bābai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16176,"modificationDate":"2014-10-14"}, -{"geonameId":"689916","name":"Verkhnodniprovsk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16176,"modificationDate":"2020-05-23"}, -{"geonameId":"961152","name":"Riversdale","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":16176,"modificationDate":"2016-03-09"}, -{"geonameId":"2656407","name":"Banbridge","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16173,"modificationDate":"2016-12-04"}, -{"geonameId":"1259148","name":"Pushkar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16173,"modificationDate":"2015-10-04"}, -{"geonameId":"3939168","name":"Huarmey","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":16172,"modificationDate":"2012-07-19"}, -{"geonameId":"2158867","name":"Manly","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16170,"modificationDate":"2019-07-18"}, -{"geonameId":"2865716","name":"Neuenhagen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16170,"modificationDate":"2015-09-05"}, -{"geonameId":"2653256","name":"Chepstow","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16169,"modificationDate":"2017-06-12"}, -{"geonameId":"542334","name":"Krasnogvardeyskoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16169,"modificationDate":"2012-01-17"}, -{"geonameId":"3652684","name":"Pajili","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":16168,"modificationDate":"2020-06-10"}, -{"geonameId":"1277776","name":"Baihar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16168,"modificationDate":"2015-09-06"}, -{"geonameId":"3996299","name":"Medina","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16166,"modificationDate":"2013-07-31"}, -{"geonameId":"1165486","name":"Shahr Sultan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":16166,"modificationDate":"2019-12-06"}, -{"geonameId":"1277362","name":"Bāndīkūi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16165,"modificationDate":"2014-10-14"}, -{"geonameId":"12156849","name":"Lansing-Westgate","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16164,"modificationDate":"2020-05-02"}, -{"geonameId":"2992890","name":"Montbrison","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16164,"modificationDate":"2019-04-10"}, -{"geonameId":"284999","name":"Al Yāmūn","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16164,"modificationDate":"2019-05-03"}, -{"geonameId":"3019153","name":"Faches-Thumesnil","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16163,"modificationDate":"2016-02-18"}, -{"geonameId":"4471851","name":"Hope Mills","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16163,"modificationDate":"2017-05-23"}, -{"geonameId":"9972964","name":"West Pennant Hills","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16162,"modificationDate":"2019-07-18"}, -{"geonameId":"5417041","name":"Cimarron Hills","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":16161,"modificationDate":"2018-03-23"}, -{"geonameId":"494427","name":"Shilovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16159,"modificationDate":"2012-01-17"}, -{"geonameId":"4702732","name":"Katy","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16158,"modificationDate":"2017-03-09"}, -{"geonameId":"4184845","name":"Brunswick","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16157,"modificationDate":"2017-03-09"}, -{"geonameId":"954161","name":"Somerset East","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":16155,"modificationDate":"2012-07-12"}, -{"geonameId":"3204672","name":"Bačka Topola","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":16154,"modificationDate":"2012-04-15"}, -{"geonameId":"789228","name":"Kosovo Polje","countryName":"Kosovo","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":16154,"modificationDate":"2015-02-22"}, -{"geonameId":"3465764","name":"Conceição das Alagoas","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16152,"modificationDate":"2012-08-03"}, -{"geonameId":"3472048","name":"Antonina","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16152,"modificationDate":"2012-08-03"}, -{"geonameId":"3583747","name":"San Francisco","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":16152,"modificationDate":"2012-01-14"}, -{"geonameId":"4802316","name":"Clarksburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16152,"modificationDate":"2017-03-09"}, -{"geonameId":"3176097","name":"Ginosa","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16151,"modificationDate":"2014-04-13"}, -{"geonameId":"4701458","name":"Jollyville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16151,"modificationDate":"2011-05-14"}, -{"geonameId":"3061284","name":"Dvůr Králové nad Labem","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":16150,"modificationDate":"2019-09-05"}, -{"geonameId":"2945545","name":"Brake (Unterweser)","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16150,"modificationDate":"2015-09-05"}, -{"geonameId":"4697645","name":"Highland Village","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16149,"modificationDate":"2017-03-09"}, -{"geonameId":"2149975","name":"Seaford","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16148,"modificationDate":"2019-07-18"}, -{"geonameId":"751838","name":"Arsin","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":16148,"modificationDate":"2015-02-07"}, -{"geonameId":"3468535","name":"Cachoeira","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16145,"modificationDate":"2016-03-26"}, -{"geonameId":"2836084","name":"Schrobenhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16143,"modificationDate":"2013-02-19"}, -{"geonameId":"1152432","name":"Lang Suan","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":16142,"modificationDate":"2012-04-05"}, -{"geonameId":"4503346","name":"Ocean Acres","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16142,"modificationDate":"2017-05-23"}, -{"geonameId":"2850887","name":"Rahden","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16140,"modificationDate":"2015-09-05"}, -{"geonameId":"3925476","name":"Yunguyo","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":16140,"modificationDate":"2012-07-19"}, -{"geonameId":"2967934","name":"Viroflay","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16137,"modificationDate":"2016-02-18"}, -{"geonameId":"758252","name":"Staszów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16137,"modificationDate":"2010-09-29"}, -{"geonameId":"558236","name":"Gryazovets","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16133,"modificationDate":"2012-01-17"}, -{"geonameId":"1278692","name":"Anamalais","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16131,"modificationDate":"2017-03-04"}, -{"geonameId":"4794350","name":"Wolf Trap","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16131,"modificationDate":"2011-05-14"}, -{"geonameId":"3450843","name":"Rubiataba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16128,"modificationDate":"2012-08-03"}, -{"geonameId":"586340","name":"Yeni-Surakhany","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":16127,"modificationDate":"2020-06-10"}, -{"geonameId":"2876147","name":"Lohr am Main","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16127,"modificationDate":"2013-11-19"}, -{"geonameId":"1262034","name":"Nambiyūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16126,"modificationDate":"2017-04-06"}, -{"geonameId":"5100748","name":"Madison","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16126,"modificationDate":"2017-05-23"}, -{"geonameId":"3514597","name":"Santa Ana Xalmimilulco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16125,"modificationDate":"2018-11-03"}, -{"geonameId":"2882440","name":"Künzell","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16124,"modificationDate":"2015-03-04"}, -{"geonameId":"3986985","name":"San Francisco de los Romo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16124,"modificationDate":"2018-11-03"}, -{"geonameId":"2790357","name":"Neerpelt","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":16122,"modificationDate":"2019-01-07"}, -{"geonameId":"1273793","name":"Cuncolim","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16122,"modificationDate":"2014-10-14"}, -{"geonameId":"2692613","name":"Mariestad","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":16122,"modificationDate":"2017-03-18"}, -{"geonameId":"2659873","name":"Littau","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":16121,"modificationDate":"2015-06-08"}, -{"geonameId":"2751582","name":"Lindenholt","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":16121,"modificationDate":"2009-01-17"}, -{"geonameId":"2754817","name":"Harlingen","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":16119,"modificationDate":"2017-10-17"}, -{"geonameId":"3455580","name":"Padre Bernardo","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16118,"modificationDate":"2013-03-05"}, -{"geonameId":"2661646","name":"Baden","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":16118,"modificationDate":"2015-07-03"}, -{"geonameId":"173312","name":"Quteifeh","countryName":"Syria","timeZoneName":"Asia/Damascus","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16118,"modificationDate":"2020-06-10"}, -{"geonameId":"3460773","name":"Itapaci","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16117,"modificationDate":"2012-08-03"}, -{"geonameId":"3471422","name":"Arroio Grande","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16117,"modificationDate":"2012-08-03"}, -{"geonameId":"1699204","name":"Morong","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16117,"modificationDate":"2017-12-13"}, -{"geonameId":"1687409","name":"San Vicente","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16116,"modificationDate":"2017-12-13"}, -{"geonameId":"4720131","name":"Portland","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16116,"modificationDate":"2017-03-09"}, -{"geonameId":"7315234","name":"Midway","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16115,"modificationDate":"2017-03-10"}, -{"geonameId":"1083676","name":"Ambarakaraka","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16114,"modificationDate":"2018-09-10"}, -{"geonameId":"2905904","name":"Hermsdorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16113,"modificationDate":"2019-07-19"}, -{"geonameId":"2640465","name":"Penicuik","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16110,"modificationDate":"2017-06-12"}, -{"geonameId":"1720499","name":"Calatagan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":16110,"modificationDate":"2017-12-13"}, -{"geonameId":"2523192","name":"Scicli","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16109,"modificationDate":"2015-07-19"}, -{"geonameId":"2943336","name":"Brüggen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16105,"modificationDate":"2015-03-04"}, -{"geonameId":"2999683","name":"Les Sables-d'Olonne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16105,"modificationDate":"2019-12-16"}, -{"geonameId":"1879544","name":"Ayang-ni","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":16104,"modificationDate":"2017-02-04"}, -{"geonameId":"2738347","name":"Leça do Bailio","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":16103,"modificationDate":"2018-06-28"}, -{"geonameId":"625367","name":"Mosty","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16102,"modificationDate":"2019-09-05"}, -{"geonameId":"3164919","name":"Valenzano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16101,"modificationDate":"2015-07-19"}, -{"geonameId":"481350","name":"Trubchevsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16100,"modificationDate":"2012-01-17"}, -{"geonameId":"486665","name":"Sukhinichi","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16100,"modificationDate":"2019-09-05"}, -{"geonameId":"1259535","name":"Piriyāpatna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16099,"modificationDate":"2015-11-08"}, -{"geonameId":"4734909","name":"Sulphur Springs","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16098,"modificationDate":"2017-03-09"}, -{"geonameId":"12156840","name":"Newtonbrook East","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16097,"modificationDate":"2020-05-02"}, -{"geonameId":"3404513","name":"Cabrobó","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16096,"modificationDate":"2012-08-03"}, -{"geonameId":"686928","name":"Zmiyiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16095,"modificationDate":"2014-07-08"}, -{"geonameId":"2638894","name":"Ryton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16093,"modificationDate":"2011-07-31"}, -{"geonameId":"4361831","name":"Maryland City","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16093,"modificationDate":"2019-07-20"}, -{"geonameId":"4566137","name":"Manatí","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":16092,"modificationDate":"2015-08-03"}, -{"geonameId":"722324","name":"Berettyóújfalu","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":16090,"modificationDate":"2014-11-05"}, -{"geonameId":"2261697","name":"Vialonga","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":16088,"modificationDate":"2018-01-15"}, -{"geonameId":"512052","name":"Pavlovsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16087,"modificationDate":"2019-09-05"}, -{"geonameId":"3515906","name":"Tepatlaxco de Hidalgo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16085,"modificationDate":"2018-11-14"}, -{"geonameId":"2978722","name":"Saint-Loup","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16084,"modificationDate":"2018-08-22"}, -{"geonameId":"2473876","name":"El Alia","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":16083,"modificationDate":"2018-08-05"}, -{"geonameId":"2929247","name":"Erwitte","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16081,"modificationDate":"2015-09-04"}, -{"geonameId":"2704613","name":"Hudiksvall","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":16081,"modificationDate":"2017-03-18"}, -{"geonameId":"4131116","name":"Siloam Springs","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16081,"modificationDate":"2017-05-23"}, -{"geonameId":"618370","name":"Drochia","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16080,"modificationDate":"2015-04-08"}, -{"geonameId":"2854923","name":"Penzberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16079,"modificationDate":"2013-02-19"}, -{"geonameId":"1607435","name":"Phu Kradueng","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":16079,"modificationDate":"2012-01-16"}, -{"geonameId":"3516982","name":"Santiago Tulantepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16078,"modificationDate":"2018-11-03"}, -{"geonameId":"828055","name":"Belidzhi","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16078,"modificationDate":"2012-01-19"}, -{"geonameId":"2333563","name":"Kukawa","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16077,"modificationDate":"2016-06-22"}, -{"geonameId":"3084085","name":"Świdwin","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16076,"modificationDate":"2019-09-05"}, -{"geonameId":"2978768","name":"Saint-Leu","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16075,"modificationDate":"2020-06-10"}, -{"geonameId":"8858119","name":"Fraccionamiento Ciudad Olmeca","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16074,"modificationDate":"2014-04-11"}, -{"geonameId":"6295495","name":"Zürich (Kreis 2) / Wollishofen","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":16073,"modificationDate":"2006-10-21"}, -{"geonameId":"4562506","name":"Aguadilla","countryName":"Puerto Rico","timeZoneName":"America/Puerto_Rico","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":16073,"modificationDate":"2017-06-29"}, -{"geonameId":"3166571","name":"Sezze","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16071,"modificationDate":"2015-08-03"}, -{"geonameId":"760680","name":"Radzyń Podlaski","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":16071,"modificationDate":"2019-09-05"}, -{"geonameId":"3179560","name":"Castel Maggiore","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16068,"modificationDate":"2012-02-15"}, -{"geonameId":"2464795","name":"Thala","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":16068,"modificationDate":"2018-08-05"}, -{"geonameId":"734712","name":"Peraía","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16067,"modificationDate":"2012-05-09"}, -{"geonameId":"1175762","name":"Jhol","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":16067,"modificationDate":"2020-01-08"}, -{"geonameId":"3395458","name":"Maragogi","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16066,"modificationDate":"2012-08-03"}, -{"geonameId":"1609278","name":"Laem Sing","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":16066,"modificationDate":"2012-01-16"}, -{"geonameId":"337010","name":"Gelemso","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16065,"modificationDate":"2012-01-19"}, -{"geonameId":"2953389","name":"Bad Neustadt an der Saale","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16064,"modificationDate":"2017-09-22"}, -{"geonameId":"1256731","name":"Shāhi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16064,"modificationDate":"2015-10-04"}, -{"geonameId":"5029181","name":"Ham Lake","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16062,"modificationDate":"2017-05-23"}, -{"geonameId":"3698176","name":"Chongoyape","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":16061,"modificationDate":"2012-07-19"}, -{"geonameId":"3664207","name":"Fonte Boa","countryName":"Brazil","timeZoneName":"America/Manaus","timeZoneOffsetNameWithoutDst":"Amazon Time","population":16060,"modificationDate":"2013-05-08"}, -{"geonameId":"2515555","name":"La Roda","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16060,"modificationDate":"2020-05-17"}, -{"geonameId":"1261512","name":"Neral","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16060,"modificationDate":"2014-10-13"}, -{"geonameId":"4600541","name":"West Columbia","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16060,"modificationDate":"2017-03-09"}, -{"geonameId":"4920473","name":"Frankfort","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16060,"modificationDate":"2017-05-23"}, -{"geonameId":"143052","name":"Ardestān","countryName":"Iran","timeZoneName":"Asia/Tehran","timeZoneOffsetNameWithoutDst":"Iran Time","population":16058,"modificationDate":"2014-09-04"}, -{"geonameId":"1607801","name":"Phanom Sarakham","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":16057,"modificationDate":"2018-08-08"}, -{"geonameId":"3616253","name":"Siuna","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":16056,"modificationDate":"2018-08-08"}, -{"geonameId":"560756","name":"Golitsyno","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16056,"modificationDate":"2019-09-05"}, -{"geonameId":"2807184","name":"Witzenhausen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16055,"modificationDate":"2015-09-05"}, -{"geonameId":"663100","name":"Vatra Dornei","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16054,"modificationDate":"2014-01-19"}, -{"geonameId":"2980097","name":"Saint-Fons","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16053,"modificationDate":"2019-06-05"}, -{"geonameId":"295089","name":"Ganei Tikva","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":16053,"modificationDate":"2017-07-02"}, -{"geonameId":"2953341","name":"Bad Segeberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16052,"modificationDate":"2015-09-04"}, -{"geonameId":"3007874","name":"Landerneau","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16052,"modificationDate":"2020-06-10"}, -{"geonameId":"4712933","name":"Mount Pleasant","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16051,"modificationDate":"2017-09-04"}, -{"geonameId":"4919820","name":"Dyer","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16051,"modificationDate":"2017-03-09"}, -{"geonameId":"6117731","name":"Rayside-Balfour","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16050,"modificationDate":"2013-07-20"}, -{"geonameId":"8478257","name":"Agios Ioannis Rentis","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16050,"modificationDate":"2019-10-23"}, -{"geonameId":"3456127","name":"Nova Petrópolis","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16049,"modificationDate":"2012-08-03"}, -{"geonameId":"707752","name":"Horodok","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16046,"modificationDate":"2020-05-12"}, -{"geonameId":"5134693","name":"Rye","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16046,"modificationDate":"2017-05-23"}, -{"geonameId":"3389622","name":"Santa Helena","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16045,"modificationDate":"2012-08-03"}, -{"geonameId":"4046704","name":"Fort Hunt","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16045,"modificationDate":"2011-05-14"}, -{"geonameId":"521874","name":"Nikolayevsk","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":16044,"modificationDate":"2018-12-19"}, -{"geonameId":"8348615","name":"Alexandra Hills","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16043,"modificationDate":"2019-07-18"}, -{"geonameId":"2920329","name":"Ginsheim-Gustavsburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16043,"modificationDate":"2013-08-19"}, -{"geonameId":"3113035","name":"Poio","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16043,"modificationDate":"2015-06-03"}, -{"geonameId":"2098869","name":"Bulolo","countryName":"Papua New Guinea","timeZoneName":"Pacific/Port_Moresby","timeZoneOffsetNameWithoutDst":"Papua New Guinea Time","population":16042,"modificationDate":"2017-06-16"}, -{"geonameId":"1855395","name":"Nikkō","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":16041,"modificationDate":"2017-07-27"}, -{"geonameId":"8348142","name":"Glenwood","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":16040,"modificationDate":"2019-07-18"}, -{"geonameId":"2221394","name":"Tonga","countryName":"Cameroon","timeZoneName":"Africa/Douala","timeZoneOffsetNameWithoutDst":"West Africa Time","population":16036,"modificationDate":"2018-10-12"}, -{"geonameId":"8991407","name":"Đinh Văn","countryName":"Vietnam","timeZoneName":"Asia/Ho_Chi_Minh","timeZoneOffsetNameWithoutDst":"Indochina Time","population":16036,"modificationDate":"2018-02-08"}, -{"geonameId":"3938451","name":"Ilave","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":16033,"modificationDate":"2012-07-19"}, -{"geonameId":"2633561","name":"Worcester Park","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16031,"modificationDate":"2019-08-22"}, -{"geonameId":"4179667","name":"Americus","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16028,"modificationDate":"2017-03-09"}, -{"geonameId":"5193309","name":"Hermitage","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16028,"modificationDate":"2017-05-23"}, -{"geonameId":"1270612","name":"Guru Har Sahāi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16027,"modificationDate":"2014-10-14"}, -{"geonameId":"2518444","name":"El Grao","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16026,"modificationDate":"2016-10-12"}, -{"geonameId":"5019588","name":"Buffalo","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16026,"modificationDate":"2017-05-23"}, -{"geonameId":"2939167","name":"Damme","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16024,"modificationDate":"2015-09-05"}, -{"geonameId":"4919381","name":"Crawfordsville","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16024,"modificationDate":"2017-05-23"}, -{"geonameId":"3467319","name":"Capela","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16023,"modificationDate":"2012-08-03"}, -{"geonameId":"3126534","name":"Canovelles","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":16023,"modificationDate":"2010-04-22"}, -{"geonameId":"585220","name":"Qusar","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":16022,"modificationDate":"2014-06-27"}, -{"geonameId":"3526355","name":"Juchitepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":16021,"modificationDate":"2018-11-03"}, -{"geonameId":"4161373","name":"Lake Mary","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16021,"modificationDate":"2017-03-09"}, -{"geonameId":"11592296","name":"Viewpark","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16020,"modificationDate":"2017-06-14"}, -{"geonameId":"2814146","name":"Wardenburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16019,"modificationDate":"2011-04-25"}, -{"geonameId":"463217","name":"Zherdevka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":16019,"modificationDate":"2014-06-27"}, -{"geonameId":"2917816","name":"Grefrath","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16016,"modificationDate":"2011-04-25"}, -{"geonameId":"2992741","name":"Monte-Carlo","countryName":"Monaco","timeZoneName":"Europe/Monaco","timeZoneOffsetNameWithoutDst":"Central European Time","population":16012,"modificationDate":"2013-03-22"}, -{"geonameId":"2799090","name":"Duffel","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":16011,"modificationDate":"2011-02-10"}, -{"geonameId":"2657528","name":"Aldridge","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16008,"modificationDate":"2011-03-03"}, -{"geonameId":"156025","name":"Lembeni","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16008,"modificationDate":"2016-10-07"}, -{"geonameId":"2981512","name":"Saint-Avertin","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16007,"modificationDate":"2016-02-18"}, -{"geonameId":"6691766","name":"Longsight","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16007,"modificationDate":"2010-04-02"}, -{"geonameId":"3026285","name":"Châteaudun","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":16006,"modificationDate":"2019-04-10"}, -{"geonameId":"4405434","name":"Republic","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":16005,"modificationDate":"2017-05-23"}, -{"geonameId":"709429","name":"Dunayivtsi","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":16004,"modificationDate":"2020-05-12"}, -{"geonameId":"4452303","name":"Albemarle","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16003,"modificationDate":"2017-05-23"}, -{"geonameId":"3168231","name":"San Giovanni Valdarno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":16002,"modificationDate":"2015-07-19"}, -{"geonameId":"3468858","name":"Buerarema","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":16001,"modificationDate":"2012-08-03"}, -{"geonameId":"1261580","name":"Nayāgarh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":16001,"modificationDate":"2017-10-04"}, -{"geonameId":"3988416","name":"El Rosario","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":16001,"modificationDate":"2018-11-03"}, -{"geonameId":"292688","name":"Ar Ruways","countryName":"United Arab Emirates","timeZoneName":"Asia/Dubai","timeZoneOffsetNameWithoutDst":"Gulf Time","population":16000,"modificationDate":"2012-11-03"}, -{"geonameId":"2786634","name":"Sint-Kruis","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":16000,"modificationDate":"2016-08-02"}, -{"geonameId":"2856944","name":"Oschatz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":16000,"modificationDate":"2015-09-05"}, -{"geonameId":"2656196","name":"Basford","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":16000,"modificationDate":"2017-06-26"}, -{"geonameId":"1213442","name":"Tongging","countryName":"Indonesia","timeZoneName":"Asia/Jakarta","timeZoneOffsetNameWithoutDst":"Western Indonesia Time","population":16000,"modificationDate":"2015-03-31"}, -{"geonameId":"1061912","name":"Maintirano","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16000,"modificationDate":"2018-09-07"}, -{"geonameId":"1072711","name":"Ankazondandy","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16000,"modificationDate":"2018-09-10"}, -{"geonameId":"1084740","name":"Alarobia","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":16000,"modificationDate":"2018-09-10"}, -{"geonameId":"2753955","name":"Hoge Vucht","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":16000,"modificationDate":"2013-11-01"}, -{"geonameId":"2667109","name":"Tullinge","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":16000,"modificationDate":"2011-08-16"}, -{"geonameId":"723505","name":"Stará Ľubovňa","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":16000,"modificationDate":"2019-06-09"}, -{"geonameId":"1649539","name":"Baukau","countryName":"Timor Leste","timeZoneName":"Asia/Dili","timeZoneOffsetNameWithoutDst":"East Timor Time","population":16000,"modificationDate":"2018-10-04"}, -{"geonameId":"1943235","name":"Venilale","countryName":"Timor Leste","timeZoneName":"Asia/Dili","timeZoneOffsetNameWithoutDst":"East Timor Time","population":16000,"modificationDate":"2019-03-19"}, -{"geonameId":"6692524","name":"Sarigerme","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":16000,"modificationDate":"2009-01-05"}, -{"geonameId":"4752136","name":"Cherry Hill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":16000,"modificationDate":"2011-05-14"}, -{"geonameId":"8858120","name":"San Rafael Tlanalapan","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15998,"modificationDate":"2014-04-11"}, -{"geonameId":"4152064","name":"Country Walk","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15997,"modificationDate":"2011-05-14"}, -{"geonameId":"2755605","name":"Gemert","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":15995,"modificationDate":"2018-08-24"}, -{"geonameId":"9972515","name":"Cranbourne East","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15994,"modificationDate":"2019-07-18"}, -{"geonameId":"2798301","name":"Fléron","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":15994,"modificationDate":"2013-05-13"}, -{"geonameId":"708313","name":"Horodok","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15993,"modificationDate":"2019-03-08"}, -{"geonameId":"6693088","name":"Pasaia","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15990,"modificationDate":"2019-02-20"}, -{"geonameId":"716301","name":"Püspökladány","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":15990,"modificationDate":"2014-11-05"}, -{"geonameId":"4219001","name":"Riverdale","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15989,"modificationDate":"2017-03-09"}, -{"geonameId":"6101606","name":"Petawawa","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15988,"modificationDate":"2013-10-26"}, -{"geonameId":"683974","name":"Brad","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15988,"modificationDate":"2012-06-12"}, -{"geonameId":"2158538","name":"Mascot","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15985,"modificationDate":"2019-07-18"}, -{"geonameId":"2350806","name":"Akwanga","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15985,"modificationDate":"2016-01-30"}, -{"geonameId":"4928662","name":"Abington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15985,"modificationDate":"2017-05-23"}, -{"geonameId":"3012664","name":"Issoire","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15984,"modificationDate":"2019-04-10"}, -{"geonameId":"2951679","name":"Beckingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15983,"modificationDate":"2011-04-25"}, -{"geonameId":"4005857","name":"Vicente Guerrero","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":15982,"modificationDate":"2018-11-03"}, -{"geonameId":"1270522","name":"Hājo","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15977,"modificationDate":"2014-10-13"}, -{"geonameId":"1164679","name":"Sodhri","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":15977,"modificationDate":"2019-12-06"}, -{"geonameId":"1253132","name":"Vīrarājendrapet","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15976,"modificationDate":"2015-12-05"}, -{"geonameId":"2347155","name":"Billiri","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15976,"modificationDate":"2016-01-30"}, -{"geonameId":"1175365","name":"Kalabagh","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":15976,"modificationDate":"2019-12-06"}, -{"geonameId":"2660305","name":"Horgen","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":15973,"modificationDate":"2018-12-08"}, -{"geonameId":"3440963","name":"Progreso","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":15973,"modificationDate":"2019-03-30"}, -{"geonameId":"3461153","name":"Ipaba","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15970,"modificationDate":"2012-08-03"}, -{"geonameId":"1164776","name":"Sinjhoro","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":15970,"modificationDate":"2019-12-06"}, -{"geonameId":"515804","name":"Tsotsin-Yurt","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15970,"modificationDate":"2018-11-06"}, -{"geonameId":"3176748","name":"Forio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15969,"modificationDate":"2015-07-19"}, -{"geonameId":"5117438","name":"Floral Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15969,"modificationDate":"2017-05-23"}, -{"geonameId":"3573732","name":"Sangre Grande","countryName":"Trinidad and Tobago","timeZoneName":"America/Port_of_Spain","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":15968,"modificationDate":"2017-10-08"}, -{"geonameId":"1125896","name":"Shahrak","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":15967,"modificationDate":"2018-02-17"}, -{"geonameId":"4720833","name":"Prosper","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15967,"modificationDate":"2017-03-09"}, -{"geonameId":"3016097","name":"Gien","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15966,"modificationDate":"2016-02-18"}, -{"geonameId":"5407030","name":"Walnut Park","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15966,"modificationDate":"2011-05-14"}, -{"geonameId":"2170435","name":"Coorparoo","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15965,"modificationDate":"2019-07-18"}, -{"geonameId":"2645347","name":"Kippax","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15965,"modificationDate":"2017-06-12"}, -{"geonameId":"3163853","name":"Zola Predosa","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15965,"modificationDate":"2016-08-12"}, -{"geonameId":"1735485","name":"Gurun","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":15964,"modificationDate":"2012-01-17"}, -{"geonameId":"2948071","name":"Blankenburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15963,"modificationDate":"2015-09-04"}, -{"geonameId":"3034483","name":"Bayeux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15963,"modificationDate":"2016-02-18"}, -{"geonameId":"4718209","name":"Pecan Grove","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15963,"modificationDate":"2011-05-14"}, -{"geonameId":"2898364","name":"Hövelhof","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15962,"modificationDate":"2015-03-04"}, -{"geonameId":"3178112","name":"Cordenons","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15962,"modificationDate":"2014-04-13"}, -{"geonameId":"1275977","name":"Bhīkhi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15961,"modificationDate":"2015-05-06"}, -{"geonameId":"1616658","name":"Ban Mo","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15959,"modificationDate":"2012-01-16"}, -{"geonameId":"4402178","name":"Overland","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15959,"modificationDate":"2017-05-23"}, -{"geonameId":"3468802","name":"Buri","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15958,"modificationDate":"2012-08-03"}, -{"geonameId":"7115111","name":"Corvera de Asturias","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15955,"modificationDate":"2015-09-07"}, -{"geonameId":"6545104","name":"Hostafrancs","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15954,"modificationDate":"2017-05-26"}, -{"geonameId":"1269731","name":"Indri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15954,"modificationDate":"2015-04-08"}, -{"geonameId":"191038","name":"Kitui","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15954,"modificationDate":"2013-06-27"}, -{"geonameId":"938694","name":"White River","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":15954,"modificationDate":"2012-07-12"}, -{"geonameId":"5955815","name":"Fort Erie","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15953,"modificationDate":"2019-08-29"}, -{"geonameId":"1254694","name":"Thākurganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15953,"modificationDate":"2014-10-14"}, -{"geonameId":"4994391","name":"Grandville","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15953,"modificationDate":"2017-05-23"}, -{"geonameId":"2818094","name":"Uslar","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15951,"modificationDate":"2015-09-04"}, -{"geonameId":"3337476","name":"Konjic","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":15950,"modificationDate":"2018-12-27"}, -{"geonameId":"2905206","name":"Hettstedt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15949,"modificationDate":"2015-01-01"}, -{"geonameId":"5914826","name":"Candiac","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15947,"modificationDate":"2016-06-22"}, -{"geonameId":"5727382","name":"Four Corners","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15947,"modificationDate":"2011-05-14"}, -{"geonameId":"3986165","name":"San José del Castillo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15946,"modificationDate":"2018-11-03"}, -{"geonameId":"2788506","name":"Puurs","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":15944,"modificationDate":"2019-01-17"}, -{"geonameId":"2754837","name":"Harenkarspel","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":15941,"modificationDate":"2013-06-09"}, -{"geonameId":"5493403","name":"Sunland Park","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":15940,"modificationDate":"2017-03-09"}, -{"geonameId":"2619154","name":"Kalundborg","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":15939,"modificationDate":"2017-10-18"}, -{"geonameId":"3016292","name":"Gentilly","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15939,"modificationDate":"2016-02-18"}, -{"geonameId":"3445575","name":"Valparaíso","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15938,"modificationDate":"2012-08-03"}, -{"geonameId":"3026194","name":"Château-Thierry","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15938,"modificationDate":"2019-04-10"}, -{"geonameId":"2473826","name":"Bekalta","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":15937,"modificationDate":"2018-08-05"}, -{"geonameId":"2172995","name":"Burwood","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15935,"modificationDate":"2019-07-18"}, -{"geonameId":"5923921","name":"Cliffcrest","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15935,"modificationDate":"2020-05-02"}, -{"geonameId":"1253977","name":"Udalguri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15935,"modificationDate":"2014-10-13"}, -{"geonameId":"2337379","name":"Iperu","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15935,"modificationDate":"2018-12-04"}, -{"geonameId":"2986025","name":"Port-de-Bouc","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15934,"modificationDate":"2016-02-18"}, -{"geonameId":"2652458","name":"Conisbrough","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15934,"modificationDate":"2017-06-12"}, -{"geonameId":"1253374","name":"Vasa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15934,"modificationDate":"2014-10-13"}, -{"geonameId":"1520969","name":"Merke","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":15934,"modificationDate":"2018-08-02"}, -{"geonameId":"2026583","name":"Bodaybo","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":15933,"modificationDate":"2012-01-17"}, -{"geonameId":"4869195","name":"North Liberty","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15931,"modificationDate":"2017-05-23"}, -{"geonameId":"2660512","name":"Grenchen","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":15927,"modificationDate":"2019-09-10"}, -{"geonameId":"4286281","name":"Burlington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15926,"modificationDate":"2011-05-14"}, -{"geonameId":"2664050","name":"Västra Frölunda","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":15924,"modificationDate":"2019-06-14"}, -{"geonameId":"3439525","name":"Young","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":15924,"modificationDate":"2019-03-31"}, -{"geonameId":"4018227","name":"Armeria","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15923,"modificationDate":"2020-06-10"}, -{"geonameId":"763291","name":"Olecko","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15923,"modificationDate":"2011-07-31"}, -{"geonameId":"53157","name":"Qandala","countryName":"Somalia","timeZoneName":"Africa/Mogadishu","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15923,"modificationDate":"2017-02-10"}, -{"geonameId":"2468245","name":"Carthage","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":15922,"modificationDate":"2018-08-05"}, -{"geonameId":"321929","name":"Baskil","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":15922,"modificationDate":"2015-11-08"}, -{"geonameId":"4364964","name":"Parole","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15922,"modificationDate":"2011-05-14"}, -{"geonameId":"5406421","name":"Vincent","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15922,"modificationDate":"2011-05-14"}, -{"geonameId":"7262464","name":"Vincent","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15922,"modificationDate":"2017-03-10"}, -{"geonameId":"2850235","name":"Ratekau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15921,"modificationDate":"2011-04-25"}, -{"geonameId":"4173600","name":"Southchase","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15921,"modificationDate":"2011-05-14"}, -{"geonameId":"2160560","name":"Lara","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15919,"modificationDate":"2019-07-18"}, -{"geonameId":"2933959","name":"Ebersbach an der Fils","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15919,"modificationDate":"2013-02-16"}, -{"geonameId":"301172","name":"Senirkent","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":15919,"modificationDate":"2012-02-28"}, -{"geonameId":"5404476","name":"Ukiah","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15917,"modificationDate":"2017-03-09"}, -{"geonameId":"1681333","name":"Trento","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15916,"modificationDate":"2017-12-13"}, -{"geonameId":"712861","name":"Bar","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15913,"modificationDate":"2020-05-14"}, -{"geonameId":"772339","name":"Garwolin","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15912,"modificationDate":"2010-09-17"}, -{"geonameId":"8858121","name":"Tecámac de Felipe Villanueva","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15911,"modificationDate":"2014-04-11"}, -{"geonameId":"510364","name":"Pestovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15910,"modificationDate":"2012-01-17"}, -{"geonameId":"2788765","name":"Pont-à-Celles","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":15909,"modificationDate":"2013-05-13"}, -{"geonameId":"2925080","name":"Freilassing","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15909,"modificationDate":"2013-02-19"}, -{"geonameId":"2819974","name":"Unterkrozingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15908,"modificationDate":"2013-02-16"}, -{"geonameId":"1257940","name":"Rura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15908,"modificationDate":"2015-08-07"}, -{"geonameId":"4704027","name":"La Marque","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15908,"modificationDate":"2017-03-09"}, -{"geonameId":"6050263","name":"L'Assomption","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15906,"modificationDate":"2019-08-08"}, -{"geonameId":"2980636","name":"Saint-Égrève","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15904,"modificationDate":"2019-06-05"}, -{"geonameId":"5101873","name":"North Arlington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15904,"modificationDate":"2017-05-23"}, -{"geonameId":"5364022","name":"La Palma","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15904,"modificationDate":"2017-03-09"}, -{"geonameId":"527740","name":"Melenki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15902,"modificationDate":"2019-09-05"}, -{"geonameId":"3683233","name":"Reten","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":15901,"modificationDate":"2020-06-11"}, -{"geonameId":"12047636","name":"Kozanów","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15901,"modificationDate":"2019-06-03"}, -{"geonameId":"3856235","name":"Embalse","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":15900,"modificationDate":"2015-04-22"}, -{"geonameId":"2968368","name":"Villers","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15899,"modificationDate":"2020-06-10"}, -{"geonameId":"3167044","name":"Sava","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15898,"modificationDate":"2014-04-13"}, -{"geonameId":"1710518","name":"Isabela","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15897,"modificationDate":"2017-12-13"}, -{"geonameId":"3063375","name":"Varnsdorf","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":15895,"modificationDate":"2019-03-20"}, -{"geonameId":"3164241","name":"Villafranca di Verona","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15895,"modificationDate":"2015-06-24"}, -{"geonameId":"1861799","name":"Ikeda","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":15895,"modificationDate":"2020-06-11"}, -{"geonameId":"3391556","name":"Pombos","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15894,"modificationDate":"2012-08-03"}, -{"geonameId":"4727605","name":"Seagoville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15894,"modificationDate":"2017-03-09"}, -{"geonameId":"2176123","name":"Bentleigh","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15892,"modificationDate":"2019-07-18"}, -{"geonameId":"3030101","name":"Brie-Comte-Robert","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15892,"modificationDate":"2019-03-26"}, -{"geonameId":"4922673","name":"Lebanon","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15892,"modificationDate":"2017-05-23"}, -{"geonameId":"342711","name":"Barentu","countryName":"Eritrea","timeZoneName":"Africa/Asmara","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15891,"modificationDate":"2019-03-12"}, -{"geonameId":"3397898","name":"Itaporanga","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15890,"modificationDate":"2012-08-03"}, -{"geonameId":"234092","name":"Busembatia","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15889,"modificationDate":"2018-04-06"}, -{"geonameId":"3387987","name":"Satuba","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15887,"modificationDate":"2012-08-03"}, -{"geonameId":"1253595","name":"Vadamadurai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15886,"modificationDate":"2017-08-02"}, -{"geonameId":"1702002","name":"Mankayan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15886,"modificationDate":"2017-12-13"}, -{"geonameId":"2797652","name":"Gentbrugge","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":15885,"modificationDate":"2020-05-25"}, -{"geonameId":"4381478","name":"Clayton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15884,"modificationDate":"2019-09-19"}, -{"geonameId":"3178999","name":"Cerveteri","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15883,"modificationDate":"2020-06-07"}, -{"geonameId":"3385592","name":"Valença do Piauí","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15881,"modificationDate":"2012-08-03"}, -{"geonameId":"2516088","name":"La Carolina","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15880,"modificationDate":"2012-01-19"}, -{"geonameId":"3442750","name":"Dolores","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":15880,"modificationDate":"2019-03-31"}, -{"geonameId":"3031898","name":"Boissy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15877,"modificationDate":"2020-06-10"}, -{"geonameId":"6544577","name":"Barri Gòtic","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15876,"modificationDate":"2017-05-26"}, -{"geonameId":"5130780","name":"Pearl River","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15876,"modificationDate":"2017-05-23"}, -{"geonameId":"3624174","name":"Colima","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":15875,"modificationDate":"2016-09-07"}, -{"geonameId":"3979665","name":"Zinapecuaro","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15875,"modificationDate":"2020-06-10"}, -{"geonameId":"4189213","name":"Conyers","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15875,"modificationDate":"2017-03-09"}, -{"geonameId":"3052241","name":"Göd","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":15874,"modificationDate":"2012-01-18"}, -{"geonameId":"12156897","name":"Bathurst Manor","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15873,"modificationDate":"2020-05-02"}, -{"geonameId":"996930","name":"Hendrina","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":15871,"modificationDate":"2013-04-04"}, -{"geonameId":"1268007","name":"Kannod","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15870,"modificationDate":"2015-10-04"}, -{"geonameId":"4165519","name":"Myrtle Grove","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15870,"modificationDate":"2011-05-14"}, -{"geonameId":"4670146","name":"Aldine","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15869,"modificationDate":"2011-05-14"}, -{"geonameId":"2176934","name":"Banora Point","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15868,"modificationDate":"2019-07-18"}, -{"geonameId":"2361845","name":"Busse","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15868,"modificationDate":"2020-06-10"}, -{"geonameId":"3181550","name":"Bressanone","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15868,"modificationDate":"2016-01-26"}, -{"geonameId":"5223505","name":"Narragansett","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15868,"modificationDate":"2017-12-13"}, -{"geonameId":"3202888","name":"Csakathurn","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":15867,"modificationDate":"2020-06-11"}, -{"geonameId":"1175125","name":"Kamar Mushani","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":15867,"modificationDate":"2019-12-06"}, -{"geonameId":"507599","name":"Pokrov","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15867,"modificationDate":"2019-09-05"}, -{"geonameId":"509697","name":"Petushki","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15866,"modificationDate":"2019-09-05"}, -{"geonameId":"6185377","name":"Yellowknife","countryName":"Canada","timeZoneName":"America/Yellowknife","timeZoneOffsetNameWithoutDst":"Mountain Time","population":15865,"modificationDate":"2019-09-05"}, -{"geonameId":"1605118","name":"Wang Noi","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15865,"modificationDate":"2012-01-16"}, -{"geonameId":"1279154","name":"Ajra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15864,"modificationDate":"2014-10-13"}, -{"geonameId":"3072137","name":"Letňany","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":15862,"modificationDate":"2018-09-13"}, -{"geonameId":"2157410","name":"Mitcham","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15861,"modificationDate":"2019-07-18"}, -{"geonameId":"12041452","name":"Mezgor'e","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":15861,"modificationDate":"2019-04-18"}, -{"geonameId":"3385077","name":"Conde","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15859,"modificationDate":"2012-08-03"}, -{"geonameId":"1725863","name":"Bayambang","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15859,"modificationDate":"2017-12-13"}, -{"geonameId":"1259554","name":"Pipraich","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15856,"modificationDate":"2015-09-06"}, -{"geonameId":"252270","name":"Vári","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15855,"modificationDate":"2019-10-23"}, -{"geonameId":"1733874","name":"Beaufort","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":15855,"modificationDate":"2012-01-17"}, -{"geonameId":"2653755","name":"Carmarthen","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15854,"modificationDate":"2017-06-12"}, -{"geonameId":"5258296","name":"Kaukauna","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15854,"modificationDate":"2017-05-23"}, -{"geonameId":"3040051","name":"les Escaldes","countryName":"Andorra","timeZoneName":"Europe/Andorra","timeZoneOffsetNameWithoutDst":"Central European Time","population":15853,"modificationDate":"2008-10-15"}, -{"geonameId":"11903640","name":"Sankt Leonhard","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":15853,"modificationDate":"2018-07-29"}, -{"geonameId":"3014383","name":"Guéret","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15853,"modificationDate":"2019-09-04"}, -{"geonameId":"3762210","name":"Santiago Tlacotepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15853,"modificationDate":"2018-11-03"}, -{"geonameId":"2943408","name":"Bruckmühl","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15851,"modificationDate":"2015-03-04"}, -{"geonameId":"2272222","name":"Albufeira","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":15851,"modificationDate":"2015-11-13"}, -{"geonameId":"1256715","name":"Shāhpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15850,"modificationDate":"2015-10-04"}, -{"geonameId":"2742506","name":"Baguim do Monte","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":15850,"modificationDate":"2018-01-15"}, -{"geonameId":"2962725","name":"Malahide","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15846,"modificationDate":"2016-09-12"}, -{"geonameId":"5132029","name":"Port Washington","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15846,"modificationDate":"2017-05-23"}, -{"geonameId":"3590406","name":"Sanarate","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":15843,"modificationDate":"2019-04-10"}, -{"geonameId":"2646471","name":"Hoyland Nether","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15842,"modificationDate":"2013-07-11"}, -{"geonameId":"3597078","name":"El Estor","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":15842,"modificationDate":"2019-10-10"}, -{"geonameId":"4165869","name":"New Port Richey","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15842,"modificationDate":"2017-03-09"}, -{"geonameId":"3465459","name":"Coronel Vivida","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15841,"modificationDate":"2012-08-03"}, -{"geonameId":"1255425","name":"Sunel","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15840,"modificationDate":"2018-12-04"}, -{"geonameId":"580716","name":"Arzgir","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15838,"modificationDate":"2012-01-17"}, -{"geonameId":"5146233","name":"Aurora","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15838,"modificationDate":"2017-05-23"}, -{"geonameId":"1253754","name":"Unhel","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15837,"modificationDate":"2014-10-14"}, -{"geonameId":"1256003","name":"Sisauli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15837,"modificationDate":"2015-04-08"}, -{"geonameId":"2636333","name":"Tadley","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15836,"modificationDate":"2018-07-03"}, -{"geonameId":"3465767","name":"Conceição da Feira","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15834,"modificationDate":"2012-08-03"}, -{"geonameId":"1254000","name":"Bara Uchāna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15830,"modificationDate":"2015-08-07"}, -{"geonameId":"1263057","name":"Mihona","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15830,"modificationDate":"2015-08-07"}, -{"geonameId":"2451935","name":"Sagalo","countryName":"Mali","timeZoneName":"Africa/Bamako","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15830,"modificationDate":"2013-10-30"}, -{"geonameId":"4137457","name":"Adams Morgan","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15830,"modificationDate":"2018-11-24"}, -{"geonameId":"2645722","name":"Kidlington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15829,"modificationDate":"2018-07-03"}, -{"geonameId":"713245","name":"Apostolove","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15828,"modificationDate":"2016-05-07"}, -{"geonameId":"2616015","name":"Nyborg","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":15826,"modificationDate":"2017-10-18"}, -{"geonameId":"2129961","name":"Ichinohe","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":15825,"modificationDate":"2017-04-09"}, -{"geonameId":"705183","name":"Slobozhans’ke","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15825,"modificationDate":"2018-06-09"}, -{"geonameId":"5240509","name":"Rutland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15824,"modificationDate":"2017-05-23"}, -{"geonameId":"7871317","name":"Pleasant View","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15818,"modificationDate":"2020-05-02"}, -{"geonameId":"1268279","name":"Murhi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15818,"modificationDate":"2020-06-10"}, -{"geonameId":"5095281","name":"Asbury Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15818,"modificationDate":"2017-05-23"}, -{"geonameId":"2152658","name":"Port Melbourne","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15817,"modificationDate":"2019-07-18"}, -{"geonameId":"3167940","name":"Sannicandro Garganico","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15815,"modificationDate":"2019-12-12"}, -{"geonameId":"3929768","name":"San Clemente","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":15815,"modificationDate":"2012-07-19"}, -{"geonameId":"2857291","name":"Olsberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15814,"modificationDate":"2015-09-05"}, -{"geonameId":"7258897","name":"Lutherville-Timonium","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15814,"modificationDate":"2017-12-13"}, -{"geonameId":"2658145","name":"Vevey","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":15812,"modificationDate":"2019-09-11"}, -{"geonameId":"3109546","name":"Sant Just Desvern","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15811,"modificationDate":"2017-06-28"}, -{"geonameId":"2801494","name":"Boom","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":15810,"modificationDate":"2011-02-10"}, -{"geonameId":"2788088","name":"Riemst","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":15809,"modificationDate":"2011-03-02"}, -{"geonameId":"5925975","name":"Collingwood","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15809,"modificationDate":"2008-04-11"}, -{"geonameId":"2339786","name":"Gwaram","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15806,"modificationDate":"2016-06-22"}, -{"geonameId":"2032614","name":"Baruun-Urt","countryName":"Mongolia","timeZoneName":"Asia/Choibalsan","timeZoneOffsetNameWithoutDst":"Ulaanbaatar Time","population":15805,"modificationDate":"2019-05-08"}, -{"geonameId":"761131","name":"Przeworsk","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15805,"modificationDate":"2010-09-27"}, -{"geonameId":"1278393","name":"Arkalgūd","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15802,"modificationDate":"2015-11-08"}, -{"geonameId":"1279407","name":"Abhayāpuri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15802,"modificationDate":"2014-10-13"}, -{"geonameId":"4929283","name":"Ashland","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15802,"modificationDate":"2017-05-23"}, -{"geonameId":"4765520","name":"Hybla Valley","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15801,"modificationDate":"2011-05-14"}, -{"geonameId":"1516393","name":"Altai","countryName":"Mongolia","timeZoneName":"Asia/Hovd","timeZoneOffsetNameWithoutDst":"Hovd Time","population":15800,"modificationDate":"2013-08-04"}, -{"geonameId":"1175232","name":"Kallar Kahar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":15800,"modificationDate":"2019-12-06"}, -{"geonameId":"2272147","name":"Alcobaça","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":15800,"modificationDate":"2018-05-23"}, -{"geonameId":"3025496","name":"Chenôve","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15791,"modificationDate":"2016-02-18"}, -{"geonameId":"2523087","name":"Sinnai","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15791,"modificationDate":"2014-04-13"}, -{"geonameId":"3459352","name":"Ladário","countryName":"Brazil","timeZoneName":"America/Campo_Grande","timeZoneOffsetNameWithoutDst":"Amazon Time","population":15790,"modificationDate":"2012-08-03"}, -{"geonameId":"1268863","name":"Jodiya Bandar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15788,"modificationDate":"2014-10-13"}, -{"geonameId":"1269602","name":"Jagalūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15787,"modificationDate":"2015-11-08"}, -{"geonameId":"2997395","name":"Lourdes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15786,"modificationDate":"2020-04-08"}, -{"geonameId":"2694560","name":"Ljungby","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":15785,"modificationDate":"2017-03-18"}, -{"geonameId":"764749","name":"Milanówek","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15784,"modificationDate":"2014-06-26"}, -{"geonameId":"4942508","name":"Longmeadow","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15784,"modificationDate":"2017-05-23"}, -{"geonameId":"3168239","name":"San Giovanni in Persiceto","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15783,"modificationDate":"2014-04-13"}, -{"geonameId":"727791","name":"Rakovski","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15782,"modificationDate":"2018-07-18"}, -{"geonameId":"4354234","name":"Elkton","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15782,"modificationDate":"2017-03-09"}, -{"geonameId":"2639018","name":"Royston","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15781,"modificationDate":"2018-07-03"}, -{"geonameId":"1108161","name":"Chuhar Jamali","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":15781,"modificationDate":"2019-12-06"}, -{"geonameId":"2839316","name":"Schiffweiler","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15780,"modificationDate":"2016-06-03"}, -{"geonameId":"1272229","name":"Dumra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15778,"modificationDate":"2016-03-10"}, -{"geonameId":"3384986","name":"Vitória do Mearim","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15775,"modificationDate":"2012-08-03"}, -{"geonameId":"3600195","name":"Yoro","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":15774,"modificationDate":"2017-05-01"}, -{"geonameId":"1737185","name":"Kapit","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":15771,"modificationDate":"2017-12-01"}, -{"geonameId":"3596041","name":"El Tejar","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":15770,"modificationDate":"2019-05-08"}, -{"geonameId":"2469268","name":"Menzel Abderhaman","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":15769,"modificationDate":"2018-08-05"}, -{"geonameId":"2852280","name":"Preetz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15768,"modificationDate":"2015-09-04"}, -{"geonameId":"2656070","name":"Bebington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15768,"modificationDate":"2013-10-10"}, -{"geonameId":"2746839","name":"Staphorst","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":15765,"modificationDate":"2017-10-17"}, -{"geonameId":"3172116","name":"Oderzo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15764,"modificationDate":"2015-06-24"}, -{"geonameId":"3685273","name":"Darien","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":15763,"modificationDate":"2018-07-13"}, -{"geonameId":"4994871","name":"Grosse Pointe Woods","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15762,"modificationDate":"2017-05-23"}, -{"geonameId":"3668655","name":"Corregimiento Santa Lucia","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":15760,"modificationDate":"2020-06-11"}, -{"geonameId":"4670555","name":"Alton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15760,"modificationDate":"2017-03-09"}, -{"geonameId":"3199779","name":"Gračanica","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":15758,"modificationDate":"2016-06-05"}, -{"geonameId":"1259916","name":"Pennāgaram","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15758,"modificationDate":"2016-11-22"}, -{"geonameId":"3168627","name":"Salsomaggiore Terme","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15754,"modificationDate":"2014-04-13"}, -{"geonameId":"2658606","name":"Sierre","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":15752,"modificationDate":"2019-09-10"}, -{"geonameId":"4485272","name":"Pinehurst","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15752,"modificationDate":"2017-03-09"}, -{"geonameId":"4695317","name":"Groves","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15750,"modificationDate":"2017-03-09"}, -{"geonameId":"2967318","name":"Wittenheim","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15747,"modificationDate":"2018-11-06"}, -{"geonameId":"1605102","name":"Wang Saphung","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15747,"modificationDate":"2012-01-16"}, -{"geonameId":"12047651","name":"Różanka-Polanka","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15746,"modificationDate":"2019-06-03"}, -{"geonameId":"3028779","name":"Canteleu","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15742,"modificationDate":"2016-02-18"}, -{"geonameId":"3855074","name":"General Pinedo","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":15741,"modificationDate":"2016-01-30"}, -{"geonameId":"584791","name":"Ujar","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":15741,"modificationDate":"2014-06-26"}, -{"geonameId":"3455155","name":"Paraguaçu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15741,"modificationDate":"2012-08-03"}, -{"geonameId":"4741100","name":"West University Place","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15741,"modificationDate":"2017-03-09"}, -{"geonameId":"3079348","name":"Bílina","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":15738,"modificationDate":"2019-03-19"}, -{"geonameId":"1275814","name":"Bhudgaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15738,"modificationDate":"2014-10-13"}, -{"geonameId":"2939440","name":"Dahlem","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15737,"modificationDate":"2012-06-09"}, -{"geonameId":"1268035","name":"Kankauli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15735,"modificationDate":"2016-07-28"}, -{"geonameId":"1267174","name":"Khairagarh Raj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15734,"modificationDate":"2020-06-10"}, -{"geonameId":"3101613","name":"Choszczno","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15733,"modificationDate":"2019-09-05"}, -{"geonameId":"485639","name":"Svetogorsk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15733,"modificationDate":"2019-09-05"}, -{"geonameId":"2953464","name":"Bad Essen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15732,"modificationDate":"2011-07-31"}, -{"geonameId":"2636433","name":"Swanscombe","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15732,"modificationDate":"2018-07-03"}, -{"geonameId":"5219501","name":"Wilkinsburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15731,"modificationDate":"2017-05-23"}, -{"geonameId":"802714","name":"Persianovka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15730,"modificationDate":"2012-01-19"}, -{"geonameId":"3458902","name":"Lajinha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15729,"modificationDate":"2012-08-03"}, -{"geonameId":"2811204","name":"Wendlingen am Neckar","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15728,"modificationDate":"2013-02-19"}, -{"geonameId":"676527","name":"Gura Humorului","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15728,"modificationDate":"2012-06-12"}, -{"geonameId":"3445348","name":"Wenceslau Braz","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15726,"modificationDate":"2012-08-03"}, -{"geonameId":"4771414","name":"Manassas Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15726,"modificationDate":"2017-03-09"}, -{"geonameId":"5219619","name":"Willow Grove","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15726,"modificationDate":"2017-09-22"}, -{"geonameId":"4693150","name":"Gatesville","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15724,"modificationDate":"2017-03-09"}, -{"geonameId":"5146282","name":"Avon Center","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15724,"modificationDate":"2017-05-23"}, -{"geonameId":"5973973","name":"Henry Farm","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15723,"modificationDate":"2020-05-02"}, -{"geonameId":"2891834","name":"Kelheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15723,"modificationDate":"2014-01-15"}, -{"geonameId":"4898846","name":"La Grange","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15723,"modificationDate":"2017-05-23"}, -{"geonameId":"1072849","name":"Ankazobe","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15722,"modificationDate":"2018-09-10"}, -{"geonameId":"667101","name":"Şimleu Silvaniei","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15721,"modificationDate":"2012-06-12"}, -{"geonameId":"6077340","name":"Mont-Saint-Hilaire","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15720,"modificationDate":"2017-01-31"}, -{"geonameId":"3174748","name":"Lido","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15719,"modificationDate":"2014-01-11"}, -{"geonameId":"6295475","name":"Zürich (Kreis 10) / Wipkingen","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":15718,"modificationDate":"2006-10-21"}, -{"geonameId":"2813433","name":"Weener","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15718,"modificationDate":"2015-09-05"}, -{"geonameId":"2435508","name":"Benoy","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15717,"modificationDate":"2018-10-28"}, -{"geonameId":"4272340","name":"Great Bend","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15717,"modificationDate":"2017-05-23"}, -{"geonameId":"1733449","name":"Kinarut","countryName":"Malaysia","timeZoneName":"Asia/Kuching","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":15716,"modificationDate":"2012-01-17"}, -{"geonameId":"3456164","name":"Nova Granada","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15715,"modificationDate":"2012-08-03"}, -{"geonameId":"2322957","name":"Soba","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15715,"modificationDate":"2018-12-04"}, -{"geonameId":"1266843","name":"Khatīma","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15714,"modificationDate":"2015-10-04"}, -{"geonameId":"4308225","name":"Shively","countryName":"United States","timeZoneName":"America/Kentucky/Louisville","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15713,"modificationDate":"2017-03-09"}, -{"geonameId":"4764127","name":"Highland Springs","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15711,"modificationDate":"2011-05-14"}, -{"geonameId":"2656627","name":"Baildon","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15710,"modificationDate":"2011-07-31"}, -{"geonameId":"4068446","name":"Hueytown","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15710,"modificationDate":"2017-03-09"}, -{"geonameId":"4092788","name":"Talladega","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15709,"modificationDate":"2017-03-09"}, -{"geonameId":"4924104","name":"New Haven","countryName":"United States","timeZoneName":"America/Indiana/Indianapolis","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15709,"modificationDate":"2017-05-23"}, -{"geonameId":"7315418","name":"Mill Creek East","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15709,"modificationDate":"2017-03-10"}, -{"geonameId":"1148205","name":"Asmar","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":15708,"modificationDate":"2020-06-09"}, -{"geonameId":"740881","name":"Osmaneli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":15708,"modificationDate":"2012-05-06"}, -{"geonameId":"3603330","name":"Potrerillos","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":15707,"modificationDate":"2012-01-18"}, -{"geonameId":"2330719","name":"Marte","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15707,"modificationDate":"2018-10-24"}, -{"geonameId":"735215","name":"Nea Manemeni","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15706,"modificationDate":"2020-06-10"}, -{"geonameId":"2161185","name":"Kogarah","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15705,"modificationDate":"2019-07-18"}, -{"geonameId":"158492","name":"Kamachumu","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15701,"modificationDate":"2016-07-26"}, -{"geonameId":"622113","name":"Shchuchyn","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15700,"modificationDate":"2017-05-07"}, -{"geonameId":"475881","name":"Venëv","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15700,"modificationDate":"2019-08-10"}, -{"geonameId":"566155","name":"Divnoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15700,"modificationDate":"2019-09-02"}, -{"geonameId":"3464724","name":"Diamantino","countryName":"Brazil","timeZoneName":"America/Cuiaba","timeZoneOffsetNameWithoutDst":"Amazon Time","population":15699,"modificationDate":"2012-08-03"}, -{"geonameId":"3176379","name":"Galliate","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15699,"modificationDate":"2016-04-26"}, -{"geonameId":"3688989","name":"Belén de Umbría","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":15698,"modificationDate":"2018-09-05"}, -{"geonameId":"656073","name":"Janakkala","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15698,"modificationDate":"2014-09-25"}, -{"geonameId":"3460594","name":"Itatinga","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15696,"modificationDate":"2012-08-03"}, -{"geonameId":"5162851","name":"Middleburg Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15696,"modificationDate":"2017-05-23"}, -{"geonameId":"8348477","name":"Casula","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15695,"modificationDate":"2019-07-18"}, -{"geonameId":"3526603","name":"Jalpa","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15695,"modificationDate":"2020-06-10"}, -{"geonameId":"3013862","name":"Haubourdin","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15694,"modificationDate":"2016-02-18"}, -{"geonameId":"3022569","name":"Crépy-en-Valois","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15694,"modificationDate":"2016-02-18"}, -{"geonameId":"1870742","name":"Sinanju","countryName":"North Korea","timeZoneName":"Asia/Pyongyang","timeZoneOffsetNameWithoutDst":"Korean Time","population":15693,"modificationDate":"2012-01-19"}, -{"geonameId":"1275368","name":"Boisar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15692,"modificationDate":"2014-10-13"}, -{"geonameId":"9212568","name":"Neelankarai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15688,"modificationDate":"2014-10-14"}, -{"geonameId":"2761436","name":"Wetzelsdorf","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":15687,"modificationDate":"2018-07-29"}, -{"geonameId":"5914653","name":"Camrose","countryName":"Canada","timeZoneName":"America/Edmonton","timeZoneOffsetNameWithoutDst":"Mountain Time","population":15686,"modificationDate":"2008-04-11"}, -{"geonameId":"3472138","name":"Anicuns","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15684,"modificationDate":"2012-08-03"}, -{"geonameId":"12156845","name":"Taylor-Massey","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15683,"modificationDate":"2020-05-02"}, -{"geonameId":"2804748","name":"Zerbst","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15680,"modificationDate":"2015-09-04"}, -{"geonameId":"3385745","name":"União","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15677,"modificationDate":"2012-08-03"}, -{"geonameId":"315061","name":"Ezine","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":15677,"modificationDate":"2012-05-06"}, -{"geonameId":"3033416","name":"Berck-Plage","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15675,"modificationDate":"2016-02-18"}, -{"geonameId":"5380437","name":"Pacific Grove","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15674,"modificationDate":"2017-03-09"}, -{"geonameId":"2640054","name":"Porthcawl","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15672,"modificationDate":"2017-06-12"}, -{"geonameId":"1277930","name":"Bagar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15670,"modificationDate":"2015-08-07"}, -{"geonameId":"1503037","name":"Kodinsk","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":15670,"modificationDate":"2019-09-05"}, -{"geonameId":"6185607","name":"Yorkton","countryName":"Canada","timeZoneName":"America/Regina","timeZoneOffsetNameWithoutDst":"Central Time","population":15669,"modificationDate":"2013-10-06"}, -{"geonameId":"3690316","name":"Aguazul","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":15669,"modificationDate":"2018-07-04"}, -{"geonameId":"1177089","name":"Harnoli","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":15669,"modificationDate":"2019-12-06"}, -{"geonameId":"5229794","name":"Mitchell","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15669,"modificationDate":"2017-03-09"}, -{"geonameId":"1506260","name":"Gornyak","countryName":"Russia","timeZoneName":"Asia/Barnaul","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":15668,"modificationDate":"2012-01-17"}, -{"geonameId":"3187694","name":"Virovitica","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":15665,"modificationDate":"2012-11-23"}, -{"geonameId":"1255620","name":"Srivaikuntam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15665,"modificationDate":"2014-10-14"}, -{"geonameId":"4699442","name":"Humble","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15665,"modificationDate":"2017-03-09"}, -{"geonameId":"3000648","name":"Les Herbiers","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15664,"modificationDate":"2016-02-18"}, -{"geonameId":"5423908","name":"Greenwood Village","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":15663,"modificationDate":"2017-03-09"}, -{"geonameId":"3447961","name":"Saubara","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15662,"modificationDate":"2012-08-03"}, -{"geonameId":"2264923","name":"Peniche","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":15662,"modificationDate":"2011-08-28"}, -{"geonameId":"2885760","name":"Königstein im Taunus","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15661,"modificationDate":"2016-07-14"}, -{"geonameId":"1263610","name":"Manthani","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15661,"modificationDate":"2014-10-10"}, -{"geonameId":"3199744","name":"Gradačac","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":15659,"modificationDate":"2016-06-05"}, -{"geonameId":"3013701","name":"Yutz","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15659,"modificationDate":"2016-02-21"}, -{"geonameId":"2647644","name":"Hale","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15657,"modificationDate":"2018-07-03"}, -{"geonameId":"4002745","name":"La Cruz","countryName":"Mexico","timeZoneName":"America/Mazatlan","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":15657,"modificationDate":"2018-11-03"}, -{"geonameId":"3108317","name":"Tarancón","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15651,"modificationDate":"2012-03-04"}, -{"geonameId":"2523113","name":"Siderno","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15651,"modificationDate":"2014-01-11"}, -{"geonameId":"8348511","name":"Cranebrook","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15649,"modificationDate":"2019-07-18"}, -{"geonameId":"2988936","name":"Outreau","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15648,"modificationDate":"2016-02-18"}, -{"geonameId":"2847033","name":"Riegelsberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15647,"modificationDate":"2011-04-25"}, -{"geonameId":"2832023","name":"Simmerath","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15646,"modificationDate":"2011-04-25"}, -{"geonameId":"7260966","name":"Bryn Mawr-Skyway","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15645,"modificationDate":"2011-05-14"}, -{"geonameId":"7932646","name":"Brighton East","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15644,"modificationDate":"2019-07-18"}, -{"geonameId":"463828","name":"Zelenogradsk","countryName":"Russia","timeZoneName":"Europe/Kaliningrad","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15644,"modificationDate":"2019-03-07"}, -{"geonameId":"2887716","name":"Klingenstein","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15643,"modificationDate":"2017-08-27"}, -{"geonameId":"2645733","name":"Keynsham","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15641,"modificationDate":"2017-06-12"}, -{"geonameId":"3082751","name":"Ustroń","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15637,"modificationDate":"2011-07-31"}, -{"geonameId":"1487882","name":"Uzhur","countryName":"Russia","timeZoneName":"Asia/Krasnoyarsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":15637,"modificationDate":"2019-09-05"}, -{"geonameId":"1688912","name":"San Narciso","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15636,"modificationDate":"2017-12-13"}, -{"geonameId":"11549807","name":"les Roquetes","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15633,"modificationDate":"2017-05-24"}, -{"geonameId":"12157094","name":"San Antonio","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":15633,"modificationDate":"2020-05-08"}, -{"geonameId":"1732312","name":"Abuyog","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15632,"modificationDate":"2017-12-13"}, -{"geonameId":"1166062","name":"Sarai Sidhu","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":15632,"modificationDate":"2019-12-06"}, -{"geonameId":"492944","name":"Sim","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":15632,"modificationDate":"2012-01-17"}, -{"geonameId":"1264523","name":"Madukkūr","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15631,"modificationDate":"2017-07-04"}, -{"geonameId":"1504636","name":"Karabash","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":15630,"modificationDate":"2019-09-05"}, -{"geonameId":"12156557","name":"Binyamina-Giv'at Ada","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":15627,"modificationDate":"2020-04-23"}, -{"geonameId":"2830637","name":"Spenge","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15625,"modificationDate":"2015-09-05"}, -{"geonameId":"2650110","name":"Elland","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15625,"modificationDate":"2017-06-12"}, -{"geonameId":"2934020","name":"Eberbach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15624,"modificationDate":"2013-02-15"}, -{"geonameId":"295174","name":"Er Reina","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":15621,"modificationDate":"2018-12-04"}, -{"geonameId":"695859","name":"Rakhiv","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15621,"modificationDate":"2020-05-07"}, -{"geonameId":"1217340","name":"Galaosiyo Shahri","countryName":"Uzbekistan","timeZoneName":"Asia/Samarkand","timeZoneOffsetNameWithoutDst":"Uzbekistan Time","population":15620,"modificationDate":"2020-02-07"}, -{"geonameId":"3862655","name":"Carcarañá","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":15619,"modificationDate":"2016-01-30"}, -{"geonameId":"2858103","name":"Odenthal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15619,"modificationDate":"2011-04-25"}, -{"geonameId":"2514868","name":"Los Alcázares","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15619,"modificationDate":"2010-04-22"}, -{"geonameId":"1504212","name":"Kataysk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":15619,"modificationDate":"2012-01-17"}, -{"geonameId":"1266596","name":"Khūtār","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15618,"modificationDate":"2014-10-14"}, -{"geonameId":"3056495","name":"Zlaté Moravce","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":15618,"modificationDate":"2019-09-05"}, -{"geonameId":"4885418","name":"Bradley","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15617,"modificationDate":"2017-05-23"}, -{"geonameId":"1276939","name":"Bari Sādri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15616,"modificationDate":"2014-10-14"}, -{"geonameId":"1619400","name":"Bang Mun Nak","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15616,"modificationDate":"2012-01-16"}, -{"geonameId":"641489","name":"Pirkkala","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15615,"modificationDate":"2014-09-25"}, -{"geonameId":"552977","name":"Karabanovo","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15615,"modificationDate":"2019-09-05"}, -{"geonameId":"2773913","name":"Klosterneuburg","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":15614,"modificationDate":"2019-09-05"}, -{"geonameId":"4901710","name":"McKinley Park","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15612,"modificationDate":"2017-12-13"}, -{"geonameId":"3033415","name":"Berck","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15609,"modificationDate":"2016-02-18"}, -{"geonameId":"2923507","name":"Füssen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15608,"modificationDate":"2020-06-16"}, -{"geonameId":"2948164","name":"Bitterfeld-Wolfen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15608,"modificationDate":"2017-12-31"}, -{"geonameId":"3599639","name":"Mita","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":15608,"modificationDate":"2020-06-10"}, -{"geonameId":"930025","name":"Dedza","countryName":"Malawi","timeZoneName":"Africa/Blantyre","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":15608,"modificationDate":"2011-04-25"}, -{"geonameId":"3356264","name":"Keetmanshoop","countryName":"Namibia","timeZoneName":"Africa/Windhoek","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":15608,"modificationDate":"2012-01-14"}, -{"geonameId":"1278064","name":"Baberu","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15607,"modificationDate":"2014-10-14"}, -{"geonameId":"1151528","name":"Pa Sang","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15607,"modificationDate":"2012-01-16"}, -{"geonameId":"3428975","name":"San Javier","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":15606,"modificationDate":"2015-04-22"}, -{"geonameId":"6137489","name":"Saint-Basile-le-Grand","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15605,"modificationDate":"2016-06-22"}, -{"geonameId":"3445849","name":"Ubatã","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15604,"modificationDate":"2015-06-13"}, -{"geonameId":"2873776","name":"Marbach am Neckar","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15604,"modificationDate":"2019-09-05"}, -{"geonameId":"3465527","name":"Cordeiro","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15601,"modificationDate":"2012-08-03"}, -{"geonameId":"1064258","name":"Ikalamavony","countryName":"Madagascar","timeZoneName":"Indian/Antananarivo","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15601,"modificationDate":"2018-09-10"}, -{"geonameId":"2026979","name":"Baykal’sk","countryName":"Russia","timeZoneName":"Asia/Irkutsk","timeZoneOffsetNameWithoutDst":"Irkutsk Time","population":15600,"modificationDate":"2019-10-09"}, -{"geonameId":"148354","name":"Beylagan","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":15599,"modificationDate":"2014-09-16"}, -{"geonameId":"522260","name":"Nikel","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15596,"modificationDate":"2016-09-16"}, -{"geonameId":"3456176","name":"Nova Era","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15595,"modificationDate":"2012-08-03"}, -{"geonameId":"3450963","name":"Rolante","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15594,"modificationDate":"2012-08-03"}, -{"geonameId":"3726674","name":"Désarmes","countryName":"Haiti","timeZoneName":"America/Port-au-Prince","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15594,"modificationDate":"2017-05-08"}, -{"geonameId":"4354256","name":"Elkridge","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15593,"modificationDate":"2019-02-22"}, -{"geonameId":"3517795","name":"Zinacatepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15592,"modificationDate":"2018-11-03"}, -{"geonameId":"281581","name":"Ţūbās","countryName":"Palestinian Territory","timeZoneName":"Asia/Hebron","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15591,"modificationDate":"2019-03-24"}, -{"geonameId":"3882582","name":"Loncoche","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":15590,"modificationDate":"2018-04-10"}, -{"geonameId":"1265233","name":"Lakhnādon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15589,"modificationDate":"2015-08-07"}, -{"geonameId":"1720052","name":"Calumpang","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15589,"modificationDate":"2017-12-13"}, -{"geonameId":"2129868","name":"Iwanai","countryName":"Japan","timeZoneName":"Asia/Tokyo","timeZoneOffsetNameWithoutDst":"Japan Time","population":15584,"modificationDate":"2017-04-09"}, -{"geonameId":"3817714","name":"Tulantongo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15584,"modificationDate":"2018-11-03"}, -{"geonameId":"2994935","name":"Mayenne","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15583,"modificationDate":"2019-04-10"}, -{"geonameId":"3467687","name":"Campos Belos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15582,"modificationDate":"2012-08-03"}, -{"geonameId":"1266051","name":"Kota","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15582,"modificationDate":"2020-06-10"}, -{"geonameId":"3067433","name":"Prosek","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":15581,"modificationDate":"2018-09-13"}, -{"geonameId":"1684137","name":"Talacogon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15581,"modificationDate":"2017-12-13"}, -{"geonameId":"2264508","name":"Portalegre","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":15581,"modificationDate":"2019-03-29"}, -{"geonameId":"1610963","name":"Dan Khun Thot","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15580,"modificationDate":"2012-01-16"}, -{"geonameId":"4346913","name":"Aberdeen","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15580,"modificationDate":"2017-09-24"}, -{"geonameId":"3429786","name":"Puerto Esperanza","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":15579,"modificationDate":"2019-03-24"}, -{"geonameId":"4589446","name":"North Myrtle Beach","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15579,"modificationDate":"2017-03-09"}, -{"geonameId":"3036240","name":"Audincourt","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15577,"modificationDate":"2016-02-18"}, -{"geonameId":"3701682","name":"Sabanitas","countryName":"Panama","timeZoneName":"America/Panama","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15577,"modificationDate":"2017-08-16"}, -{"geonameId":"153423","name":"Mlalo","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15576,"modificationDate":"2018-12-04"}, -{"geonameId":"3623781","name":"Esparza","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":15575,"modificationDate":"2016-09-07"}, -{"geonameId":"763829","name":"Nisko","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15573,"modificationDate":"2010-10-14"}, -{"geonameId":"1274807","name":"Chānasma","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15572,"modificationDate":"2014-10-13"}, -{"geonameId":"6690791","name":"Vallcarca","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15571,"modificationDate":"2017-05-26"}, -{"geonameId":"3178019","name":"Correggio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15571,"modificationDate":"2014-04-13"}, -{"geonameId":"3400969","name":"Dom Pedro","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15570,"modificationDate":"2013-01-11"}, -{"geonameId":"2898079","name":"Hude","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15567,"modificationDate":"2015-09-05"}, -{"geonameId":"1715094","name":"Diadi","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15567,"modificationDate":"2017-12-13"}, -{"geonameId":"4504871","name":"Williamstown","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15567,"modificationDate":"2019-09-19"}, -{"geonameId":"2638651","name":"Saltash","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15566,"modificationDate":"2017-11-13"}, -{"geonameId":"2339293","name":"Ibeto","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15565,"modificationDate":"2018-12-04"}, -{"geonameId":"1607257","name":"Prakhon Chai","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15564,"modificationDate":"2012-01-16"}, -{"geonameId":"8063096","name":"Earlsfield","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15562,"modificationDate":"2011-11-14"}, -{"geonameId":"6051562","name":"Leduc","countryName":"Canada","timeZoneName":"America/Edmonton","timeZoneOffsetNameWithoutDst":"Mountain Time","population":15561,"modificationDate":"2008-04-11"}, -{"geonameId":"2782555","name":"Amstetten","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":15559,"modificationDate":"2018-07-28"}, -{"geonameId":"7870917","name":"Little Portugal","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15559,"modificationDate":"2020-05-02"}, -{"geonameId":"3170073","name":"Porto San Giorgio","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15558,"modificationDate":"2014-04-13"}, -{"geonameId":"3465713","name":"Conde","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15557,"modificationDate":"2012-08-03"}, -{"geonameId":"4434069","name":"Long Beach","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15555,"modificationDate":"2017-03-09"}, -{"geonameId":"11549813","name":"el Turó de la Peira","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15554,"modificationDate":"2017-05-24"}, -{"geonameId":"256598","name":"Néa Mákri","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15554,"modificationDate":"2019-10-23"}, -{"geonameId":"3035204","name":"Balma","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15553,"modificationDate":"2016-02-18"}, -{"geonameId":"3693584","name":"Pimentel","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":15552,"modificationDate":"2012-07-19"}, -{"geonameId":"2789232","name":"Peer","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":15551,"modificationDate":"2018-04-04"}, -{"geonameId":"6100832","name":"Pembroke","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15551,"modificationDate":"2008-04-11"}, -{"geonameId":"5040477","name":"Otsego","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15551,"modificationDate":"2017-05-23"}, -{"geonameId":"5500539","name":"Boulder City","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15551,"modificationDate":"2017-03-09"}, -{"geonameId":"3405863","name":"Belém","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15550,"modificationDate":"2012-08-03"}, -{"geonameId":"6064180","name":"Magog","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15550,"modificationDate":"2016-05-16"}, -{"geonameId":"1262140","name":"Nahorkatiya","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15548,"modificationDate":"2014-10-13"}, -{"geonameId":"5284756","name":"Fillmore","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15548,"modificationDate":"2017-03-09"}, -{"geonameId":"3654064","name":"Montalvo","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":15547,"modificationDate":"2018-07-04"}, -{"geonameId":"5948587","name":"Humbermede","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15545,"modificationDate":"2020-05-02"}, -{"geonameId":"3457950","name":"Manhumirim","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15544,"modificationDate":"2012-08-03"}, -{"geonameId":"3904666","name":"Santiago del Torno","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":15543,"modificationDate":"2013-05-08"}, -{"geonameId":"81604","name":"Soluch","countryName":"Libya","timeZoneName":"Africa/Tripoli","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15543,"modificationDate":"2020-06-10"}, -{"geonameId":"3178850","name":"Chiari","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15541,"modificationDate":"2014-04-13"}, -{"geonameId":"4161400","name":"Lake Wales","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15541,"modificationDate":"2017-03-09"}, -{"geonameId":"3013681","name":"Hautmont","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15540,"modificationDate":"2016-02-18"}, -{"geonameId":"2346561","name":"Bukuru","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15540,"modificationDate":"2016-01-30"}, -{"geonameId":"1275593","name":"Bilsanda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15538,"modificationDate":"2015-08-07"}, -{"geonameId":"8858122","name":"Venceremos","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15538,"modificationDate":"2014-04-11"}, -{"geonameId":"2349951","name":"Anchau","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15538,"modificationDate":"2016-06-22"}, -{"geonameId":"3858765","name":"El Bolsón","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":15537,"modificationDate":"2016-01-30"}, -{"geonameId":"3524374","name":"Libres","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15536,"modificationDate":"2018-11-03"}, -{"geonameId":"5323566","name":"Alum Rock","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15536,"modificationDate":"2018-04-18"}, -{"geonameId":"12156839","name":"Edenbridge-Humber Valley","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15535,"modificationDate":"2020-05-02"}, -{"geonameId":"2178208","name":"Albany Creek","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15532,"modificationDate":"2019-07-18"}, -{"geonameId":"3496134","name":"Monte Plata","countryName":"Dominican Republic","timeZoneName":"America/Santo_Domingo","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":15532,"modificationDate":"2016-06-05"}, -{"geonameId":"3928924","name":"Satipo","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":15532,"modificationDate":"2012-07-19"}, -{"geonameId":"673033","name":"Mizil","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15532,"modificationDate":"2012-06-12"}, -{"geonameId":"6639623","name":"Erskine","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15530,"modificationDate":"2017-06-15"}, -{"geonameId":"320004","name":"Çağlayancerit","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":15530,"modificationDate":"2015-09-06"}, -{"geonameId":"3427327","name":"Wanda","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":15529,"modificationDate":"2018-07-24"}, -{"geonameId":"3589253","name":"Santa María de Jesús","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":15529,"modificationDate":"2019-04-10"}, -{"geonameId":"502400","name":"Razumnoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15529,"modificationDate":"2012-01-17"}, -{"geonameId":"3093726","name":"Łęczyca","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15528,"modificationDate":"2010-10-15"}, -{"geonameId":"1605538","name":"Thap Khlo","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15528,"modificationDate":"2012-01-16"}, -{"geonameId":"2520121","name":"Carlet","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15527,"modificationDate":"2015-06-01"}, -{"geonameId":"6295542","name":"Zürich (Kreis 8)","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":15519,"modificationDate":"2012-07-30"}, -{"geonameId":"2997904","name":"Lognes","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15519,"modificationDate":"2016-02-18"}, -{"geonameId":"1264949","name":"Leteri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15519,"modificationDate":"2018-12-04"}, -{"geonameId":"3390295","name":"Rio Formoso","countryName":"Brazil","timeZoneName":"America/Recife","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15518,"modificationDate":"2012-12-30"}, -{"geonameId":"2633681","name":"Wombwell","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15518,"modificationDate":"2013-07-11"}, -{"geonameId":"4669828","name":"Addison","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15518,"modificationDate":"2017-03-09"}, -{"geonameId":"612652","name":"Och’amch’ire","countryName":"Georgia","timeZoneName":"Asia/Tbilisi","timeZoneOffsetNameWithoutDst":"Georgia Time","population":15517,"modificationDate":"2019-02-09"}, -{"geonameId":"3460831","name":"Itajuípe","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15516,"modificationDate":"2012-08-03"}, -{"geonameId":"155076","name":"Makuyuni","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15516,"modificationDate":"2018-12-04"}, -{"geonameId":"2799369","name":"Diksmuide","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":15515,"modificationDate":"2018-04-04"}, -{"geonameId":"149151","name":"Usagara","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15514,"modificationDate":"2016-07-26"}, -{"geonameId":"4019082","name":"Ahualulco de Mercado","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15512,"modificationDate":"2018-11-03"}, -{"geonameId":"3110821","name":"Sant Carles de la Ràpita","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15511,"modificationDate":"2016-01-05"}, -{"geonameId":"2747751","name":"Sassenheim","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":15510,"modificationDate":"2017-10-17"}, -{"geonameId":"3116262","name":"Montornès del Vallès","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15509,"modificationDate":"2015-06-01"}, -{"geonameId":"4353925","name":"East Riverdale","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15509,"modificationDate":"2011-05-14"}, -{"geonameId":"2953552","name":"Bad Bentheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15508,"modificationDate":"2017-04-26"}, -{"geonameId":"3522246","name":"San Pablo Oztotepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15507,"modificationDate":"2018-11-03"}, -{"geonameId":"4475347","name":"Laurinburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15507,"modificationDate":"2017-05-23"}, -{"geonameId":"3447929","name":"Schroeder","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15505,"modificationDate":"2012-08-03"}, -{"geonameId":"2855917","name":"Ottweiler","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15503,"modificationDate":"2015-09-05"}, -{"geonameId":"493316","name":"Shushary","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15503,"modificationDate":"2016-12-20"}, -{"geonameId":"4429589","name":"Hernando","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15503,"modificationDate":"2017-03-09"}, -{"geonameId":"2661881","name":"Aarau","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":15501,"modificationDate":"2019-09-11"}, -{"geonameId":"3013627","name":"Hayange","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15501,"modificationDate":"2019-03-26"}, -{"geonameId":"5540831","name":"Hurricane","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":15501,"modificationDate":"2017-03-09"}, -{"geonameId":"621266","name":"Stowbtsy","countryName":"Belarus","timeZoneName":"Europe/Minsk","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15500,"modificationDate":"2019-09-05"}, -{"geonameId":"1904391","name":"Ban Houakhoua","countryName":"Laos","timeZoneName":"Asia/Vientiane","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15500,"modificationDate":"2013-08-13"}, -{"geonameId":"7911309","name":"Väståboland","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15498,"modificationDate":"2019-07-01"}, -{"geonameId":"4840755","name":"Plainfield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15498,"modificationDate":"2019-09-11"}, -{"geonameId":"1771485","name":"Kampung Ayer Molek","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":15497,"modificationDate":"2012-01-17"}, -{"geonameId":"3514785","name":"Venustiano Carranza","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15496,"modificationDate":"2018-11-03"}, -{"geonameId":"4558475","name":"Hanover","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15496,"modificationDate":"2017-05-23"}, -{"geonameId":"3914839","name":"Huanuni","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":15492,"modificationDate":"2019-04-01"}, -{"geonameId":"4205885","name":"Lithia Springs","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15491,"modificationDate":"2011-05-14"}, -{"geonameId":"1722356","name":"Boroon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15490,"modificationDate":"2017-12-13"}, -{"geonameId":"787615","name":"Nova Pazova","countryName":"Serbia","timeZoneName":"Europe/Belgrade","timeZoneOffsetNameWithoutDst":"Central European Time","population":15488,"modificationDate":"2020-01-28"}, -{"geonameId":"2863199","name":"Niederkrüchten","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15487,"modificationDate":"2015-03-04"}, -{"geonameId":"3176560","name":"Frattaminore","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15487,"modificationDate":"2014-04-13"}, -{"geonameId":"8599061","name":"Las Delicias","countryName":"Mexico","timeZoneName":"America/Tijuana","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15486,"modificationDate":"2014-04-11"}, -{"geonameId":"583041","name":"Aleksandrovsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":15486,"modificationDate":"2019-09-05"}, -{"geonameId":"2637407","name":"South Hayling","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15485,"modificationDate":"2017-06-12"}, -{"geonameId":"487095","name":"Strunino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15483,"modificationDate":"2019-09-05"}, -{"geonameId":"5116937","name":"Farmingville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15481,"modificationDate":"2017-05-23"}, -{"geonameId":"5126208","name":"Mastic","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15481,"modificationDate":"2017-05-23"}, -{"geonameId":"1269990","name":"Holalkere","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15480,"modificationDate":"2015-11-08"}, -{"geonameId":"2158562","name":"Maryborough","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15479,"modificationDate":"2019-07-18"}, -{"geonameId":"1266029","name":"Kotapārh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15479,"modificationDate":"2013-02-08"}, -{"geonameId":"617345","name":"Bilicenii Vechi","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15479,"modificationDate":"2015-04-08"}, -{"geonameId":"3935288","name":"Minas de Marcona","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":15478,"modificationDate":"2012-07-19"}, -{"geonameId":"7258965","name":"Setauket-East Setauket","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15477,"modificationDate":"2017-05-23"}, -{"geonameId":"3345317","name":"Blackwood","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15476,"modificationDate":"2011-07-31"}, -{"geonameId":"2973146","name":"Tergnier","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15475,"modificationDate":"2016-02-18"}, -{"geonameId":"1253610","name":"Vāda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15474,"modificationDate":"2014-10-13"}, -{"geonameId":"5098863","name":"Harrison","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15474,"modificationDate":"2017-05-23"}, -{"geonameId":"1253984","name":"Udaipura","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15473,"modificationDate":"2015-04-08"}, -{"geonameId":"5802493","name":"Martha Lake","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15473,"modificationDate":"2011-05-14"}, -{"geonameId":"1722731","name":"Bunawan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15471,"modificationDate":"2017-12-13"}, -{"geonameId":"5132028","name":"Port Richmond","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15470,"modificationDate":"2017-04-16"}, -{"geonameId":"3621804","name":"San Juan de Dios","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":15469,"modificationDate":"2016-09-07"}, -{"geonameId":"3531574","name":"Cardenas","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15469,"modificationDate":"2020-06-10"}, -{"geonameId":"565289","name":"Donskoye","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15469,"modificationDate":"2012-01-17"}, -{"geonameId":"1611416","name":"Chai Nat","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15469,"modificationDate":"2012-01-16"}, -{"geonameId":"4861719","name":"Indianola","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15467,"modificationDate":"2017-05-23"}, -{"geonameId":"2792360","name":"Lille","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":15466,"modificationDate":"2019-10-17"}, -{"geonameId":"647571","name":"Lovisa","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15466,"modificationDate":"2015-04-14"}, -{"geonameId":"3174141","name":"Malnate","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15466,"modificationDate":"2014-04-13"}, -{"geonameId":"3028521","name":"Carrieres sur Poissy","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15465,"modificationDate":"2020-06-10"}, -{"geonameId":"3452483","name":"Prado","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15464,"modificationDate":"2012-08-03"}, -{"geonameId":"3459925","name":"Jequitinhonha","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15463,"modificationDate":"2012-08-03"}, -{"geonameId":"1261402","name":"Raj Nilgiri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15462,"modificationDate":"2020-06-10"}, -{"geonameId":"323094","name":"Aşkale","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":15462,"modificationDate":"2006-01-17"}, -{"geonameId":"2422924","name":"Boké","countryName":"Guinea","timeZoneName":"Africa/Conakry","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15460,"modificationDate":"2017-08-19"}, -{"geonameId":"3445418","name":"Vazante","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15459,"modificationDate":"2012-08-03"}, -{"geonameId":"3516912","name":"Santiago Tuxtla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15459,"modificationDate":"2018-11-03"}, -{"geonameId":"3012829","name":"Illzach","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15457,"modificationDate":"2018-11-06"}, -{"geonameId":"4215391","name":"Perry","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15457,"modificationDate":"2017-03-09"}, -{"geonameId":"3873145","name":"Río Bueno","countryName":"Chile","timeZoneName":"America/Santiago","timeZoneOffsetNameWithoutDst":"Chile Summer Time","population":15456,"modificationDate":"2013-01-11"}, -{"geonameId":"1266070","name":"Kosigi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15455,"modificationDate":"2015-11-08"}, -{"geonameId":"2956093","name":"Angermünde","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15453,"modificationDate":"2019-09-05"}, -{"geonameId":"2962974","name":"Leixlip","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15452,"modificationDate":"2013-12-08"}, -{"geonameId":"4259640","name":"Jasper","countryName":"United States","timeZoneName":"America/Indiana/Vincennes","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15451,"modificationDate":"2017-05-23"}, -{"geonameId":"1733023","name":"Kuala Lipis","countryName":"Malaysia","timeZoneName":"Asia/Kuala_Lumpur","timeZoneOffsetNameWithoutDst":"Malaysia Time","population":15448,"modificationDate":"2012-01-17"}, -{"geonameId":"3996956","name":"Madera","countryName":"Mexico","timeZoneName":"America/Chihuahua","timeZoneOffsetNameWithoutDst":"Mexican Pacific Time","population":15447,"modificationDate":"2018-11-03"}, -{"geonameId":"4231523","name":"Winder","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15447,"modificationDate":"2017-03-09"}, -{"geonameId":"4852065","name":"Clive","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15447,"modificationDate":"2017-10-16"}, -{"geonameId":"3583098","name":"Sonzacate","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":15446,"modificationDate":"2014-04-06"}, -{"geonameId":"4574989","name":"Clemson","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15446,"modificationDate":"2017-03-09"}, -{"geonameId":"1688372","name":"Santa Barbara","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15445,"modificationDate":"2017-12-13"}, -{"geonameId":"2522250","name":"Albal","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15443,"modificationDate":"2012-03-04"}, -{"geonameId":"2352356","name":"Ado-Odo","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15442,"modificationDate":"2019-10-09"}, -{"geonameId":"2660365","name":"Herisau","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":15438,"modificationDate":"2019-09-10"}, -{"geonameId":"3180601","name":"Capua","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15438,"modificationDate":"2020-05-27"}, -{"geonameId":"3105522","name":"Vilalba","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15437,"modificationDate":"2015-06-11"}, -{"geonameId":"2151443","name":"Rockdale","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15436,"modificationDate":"2019-07-18"}, -{"geonameId":"857690","name":"Moskovskiy","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15435,"modificationDate":"2015-08-23"}, -{"geonameId":"3448453","name":"São Miguel do Iguaçu","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15434,"modificationDate":"2012-08-03"}, -{"geonameId":"6295531","name":"Seen (Kreis 3)","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":15434,"modificationDate":"2006-10-05"}, -{"geonameId":"3992919","name":"Periban","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15434,"modificationDate":"2020-06-10"}, -{"geonameId":"4003804","name":"Juan Aldama","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15431,"modificationDate":"2018-11-03"}, -{"geonameId":"4428495","name":"Greenwood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15431,"modificationDate":"2017-03-09"}, -{"geonameId":"6691078","name":"Bilderstoeckchen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15430,"modificationDate":"2017-07-25"}, -{"geonameId":"2511160","name":"Santafé","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15430,"modificationDate":"2015-10-22"}, -{"geonameId":"2030065","name":"Mandalgovi","countryName":"Mongolia","timeZoneName":"Asia/Ulaanbaatar","timeZoneOffsetNameWithoutDst":"Ulaanbaatar Time","population":15430,"modificationDate":"2013-05-09"}, -{"geonameId":"4174861","name":"Tavares","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15430,"modificationDate":"2017-03-09"}, -{"geonameId":"1268434","name":"Kalghatgi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15428,"modificationDate":"2014-10-14"}, -{"geonameId":"1499163","name":"Mayma","countryName":"Russia","timeZoneName":"Asia/Barnaul","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":15428,"modificationDate":"2019-07-03"}, -{"geonameId":"4761951","name":"Great Falls","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15427,"modificationDate":"2011-05-14"}, -{"geonameId":"1268310","name":"Kalugumalai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15423,"modificationDate":"2017-08-02"}, -{"geonameId":"8347847","name":"Taylors Lakes","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15422,"modificationDate":"2019-07-18"}, -{"geonameId":"1254396","name":"Tīrthahalli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15422,"modificationDate":"2014-10-14"}, -{"geonameId":"5059836","name":"Jamestown","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15422,"modificationDate":"2017-05-23"}, -{"geonameId":"759320","name":"Siemiatycze","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15421,"modificationDate":"2019-09-05"}, -{"geonameId":"5140675","name":"Terrace Heights","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15421,"modificationDate":"2017-04-16"}, -{"geonameId":"2795795","name":"Heusy","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":15420,"modificationDate":"2020-05-27"}, -{"geonameId":"7281839","name":"Carindale","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15418,"modificationDate":"2019-07-18"}, -{"geonameId":"5116570","name":"Emerson Hill","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15412,"modificationDate":"2017-04-16"}, -{"geonameId":"2986306","name":"Pont-à-Mousson","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15411,"modificationDate":"2018-11-06"}, -{"geonameId":"5325372","name":"Avocado Heights","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15411,"modificationDate":"2011-05-14"}, -{"geonameId":"1688248","name":"Santa Cruz","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15408,"modificationDate":"2017-12-13"}, -{"geonameId":"1508879","name":"Borovskiy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":15406,"modificationDate":"2012-01-17"}, -{"geonameId":"2428228","name":"Massakory","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15406,"modificationDate":"2012-01-18"}, -{"geonameId":"783493","name":"Burrel","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":15405,"modificationDate":"2012-06-02"}, -{"geonameId":"1260221","name":"Parvatsar","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15405,"modificationDate":"2014-10-14"}, -{"geonameId":"3180581","name":"Carate Brianza","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15404,"modificationDate":"2015-07-18"}, -{"geonameId":"3101787","name":"Chełmża","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15403,"modificationDate":"2010-09-16"}, -{"geonameId":"4464873","name":"Eden","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15403,"modificationDate":"2017-05-23"}, -{"geonameId":"5146675","name":"Bay Village","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15402,"modificationDate":"2017-05-23"}, -{"geonameId":"3204176","name":"Bijelo Polje","countryName":"Montenegro","timeZoneName":"Europe/Podgorica","timeZoneOffsetNameWithoutDst":"Central European Time","population":15400,"modificationDate":"2018-04-26"}, -{"geonameId":"4161178","name":"Lake Butler","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15400,"modificationDate":"2011-05-14"}, -{"geonameId":"2521485","name":"Atarfe","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15399,"modificationDate":"2012-03-04"}, -{"geonameId":"3078837","name":"Brandýs nad Labem-Stará Boleslav","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":15398,"modificationDate":"2018-09-08"}, -{"geonameId":"2154912","name":"North Melbourne","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15395,"modificationDate":"2019-07-18"}, -{"geonameId":"3471849","name":"Araçoiaba da Serra","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15395,"modificationDate":"2012-08-03"}, -{"geonameId":"516256","name":"Ochër","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":15395,"modificationDate":"2018-08-22"}, -{"geonameId":"2251230","name":"Guinguinéo","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15395,"modificationDate":"2012-01-17"}, -{"geonameId":"1260141","name":"Pathalgaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15394,"modificationDate":"2014-10-14"}, -{"geonameId":"3022151","name":"Cugnaux","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15393,"modificationDate":"2016-02-18"}, -{"geonameId":"3441292","name":"Paso de Carrasco","countryName":"Uruguay","timeZoneName":"America/Montevideo","timeZoneOffsetNameWithoutDst":"Uruguay Time","population":15393,"modificationDate":"2018-02-22"}, -{"geonameId":"697183","name":"Pyriatyn","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15391,"modificationDate":"2020-05-18"}, -{"geonameId":"1278278","name":"Āsind","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15389,"modificationDate":"2014-10-14"}, -{"geonameId":"3817641","name":"San Mateo Huitzilzingo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15389,"modificationDate":"2018-11-03"}, -{"geonameId":"3171664","name":"Palagiano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15388,"modificationDate":"2014-04-13"}, -{"geonameId":"2486505","name":"Naciria","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":15387,"modificationDate":"2012-01-19"}, -{"geonameId":"3019952","name":"Éragny","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15385,"modificationDate":"2016-02-18"}, -{"geonameId":"3616234","name":"Somotillo","countryName":"Nicaragua","timeZoneName":"America/Managua","timeZoneOffsetNameWithoutDst":"Central Time","population":15385,"modificationDate":"2018-08-08"}, -{"geonameId":"3172240","name":"Noci","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15383,"modificationDate":"2014-04-13"}, -{"geonameId":"5850554","name":"Makakilo City","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":15383,"modificationDate":"2006-01-17"}, -{"geonameId":"1268722","name":"Kachhwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15381,"modificationDate":"2015-08-07"}, -{"geonameId":"5144040","name":"Westbury","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15379,"modificationDate":"2017-05-23"}, -{"geonameId":"5330167","name":"Bostonia","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15379,"modificationDate":"2011-05-14"}, -{"geonameId":"1127628","name":"Sang-e Chārak","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":15377,"modificationDate":"2018-02-17"}, -{"geonameId":"1256929","name":"Sāyla","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15376,"modificationDate":"2016-03-10"}, -{"geonameId":"789611","name":"Kamenjane","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":15376,"modificationDate":"2014-10-01"}, -{"geonameId":"2791534","name":"Mechelen-aan-de-Maas","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":15374,"modificationDate":"2020-05-29"}, -{"geonameId":"1261726","name":"Nāspur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15374,"modificationDate":"2014-10-10"}, -{"geonameId":"2674649","name":"Staffanstorp","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":15373,"modificationDate":"2017-03-18"}, -{"geonameId":"2644120","name":"Llandudno","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15371,"modificationDate":"2017-06-12"}, -{"geonameId":"3532499","name":"Ayutla de los Libres","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15370,"modificationDate":"2018-11-03"}, -{"geonameId":"3833412","name":"Unquillo","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":15369,"modificationDate":"2016-01-30"}, -{"geonameId":"4159805","name":"Iona","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15369,"modificationDate":"2011-05-14"}, -{"geonameId":"2859380","name":"Ober-Ramstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15367,"modificationDate":"2015-09-04"}, -{"geonameId":"1490551","name":"Suzun","countryName":"Russia","timeZoneName":"Asia/Novosibirsk","timeZoneOffsetNameWithoutDst":"Novosibirsk Time","population":15365,"modificationDate":"2012-01-17"}, -{"geonameId":"2167651","name":"Eight Mile Plains","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15364,"modificationDate":"2019-07-18"}, -{"geonameId":"2990192","name":"Noisiel","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15362,"modificationDate":"2016-02-18"}, -{"geonameId":"187585","name":"Marsabit","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15361,"modificationDate":"2017-11-07"}, -{"geonameId":"2654480","name":"Broxburn","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15360,"modificationDate":"2017-06-12"}, -{"geonameId":"2019326","name":"Nerchinsk","countryName":"Russia","timeZoneName":"Asia/Chita","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":15360,"modificationDate":"2019-09-05"}, -{"geonameId":"2617658","name":"Lillerød","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":15359,"modificationDate":"2011-12-20"}, -{"geonameId":"1277841","name":"Bāh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15359,"modificationDate":"2015-08-07"}, -{"geonameId":"4618057","name":"Dickson","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15359,"modificationDate":"2017-03-09"}, -{"geonameId":"617381","name":"Slobozia","countryName":"Moldova","timeZoneName":"Europe/Chisinau","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15356,"modificationDate":"2019-09-05"}, -{"geonameId":"328709","name":"Shambu","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15354,"modificationDate":"2012-01-19"}, -{"geonameId":"383388","name":"Siaya","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15354,"modificationDate":"2018-09-05"}, -{"geonameId":"4302529","name":"Newport","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15354,"modificationDate":"2019-09-19"}, -{"geonameId":"3345432","name":"Neston","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15352,"modificationDate":"2016-06-22"}, -{"geonameId":"1603235","name":"Ban Huai Thalaeng","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15352,"modificationDate":"2006-01-17"}, -{"geonameId":"3374707","name":"Cova Figueira","countryName":"Cabo Verde","timeZoneName":"Atlantic/Cape_Verde","timeZoneOffsetNameWithoutDst":"Cape Verde Time","population":15350,"modificationDate":"2013-08-02"}, -{"geonameId":"1272367","name":"Dornakal","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15350,"modificationDate":"2020-05-12"}, -{"geonameId":"4057835","name":"Cullman","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15350,"modificationDate":"2017-03-09"}, -{"geonameId":"2940938","name":"Bürstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15348,"modificationDate":"2019-09-05"}, -{"geonameId":"3428708","name":"San Luis del Palmar","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":15347,"modificationDate":"2016-01-30"}, -{"geonameId":"4707055","name":"Live Oak","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15346,"modificationDate":"2017-03-09"}, -{"geonameId":"2939995","name":"Clausthal-Zellerfeld","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15345,"modificationDate":"2015-11-29"}, -{"geonameId":"3107955","name":"Tordera","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15345,"modificationDate":"2012-03-04"}, -{"geonameId":"934778","name":"Bambous","countryName":"Mauritius","timeZoneName":"Indian/Mauritius","timeZoneOffsetNameWithoutDst":"Mauritius Time","population":15345,"modificationDate":"2017-12-13"}, -{"geonameId":"1501460","name":"Kulunda","countryName":"Russia","timeZoneName":"Asia/Barnaul","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":15345,"modificationDate":"2012-01-17"}, -{"geonameId":"4488232","name":"Roanoke Rapids","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15345,"modificationDate":"2017-05-23"}, -{"geonameId":"5308305","name":"Payson","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":15345,"modificationDate":"2017-03-09"}, -{"geonameId":"1181053","name":"Choa Saidan Shah","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":15344,"modificationDate":"2019-12-06"}, -{"geonameId":"4843786","name":"Storrs","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15344,"modificationDate":"2017-05-23"}, -{"geonameId":"3045487","name":"Sárvár","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":15343,"modificationDate":"2019-10-07"}, -{"geonameId":"480876","name":"Tsimlyansk","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15341,"modificationDate":"2013-05-07"}, -{"geonameId":"7303641","name":"Jelcz Laskowice","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15340,"modificationDate":"2017-09-25"}, -{"geonameId":"5756304","name":"The Dalles","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15340,"modificationDate":"2017-03-09"}, -{"geonameId":"921900","name":"Dzaoudzi","countryName":"Mayotte","timeZoneName":"Indian/Mayotte","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15339,"modificationDate":"2014-08-19"}, -{"geonameId":"2164495","name":"Greenvale","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15338,"modificationDate":"2019-07-18"}, -{"geonameId":"6621337","name":"Kingsford","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15338,"modificationDate":"2019-07-18"}, -{"geonameId":"5476913","name":"Los Lunas","countryName":"United States","timeZoneName":"America/Denver","timeZoneOffsetNameWithoutDst":"Mountain Time","population":15336,"modificationDate":"2017-03-09"}, -{"geonameId":"1263015","name":"Mīrganj","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15335,"modificationDate":"2014-10-14"}, -{"geonameId":"2170697","name":"Coogee","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15333,"modificationDate":"2019-07-18"}, -{"geonameId":"1259244","name":"Pūnāhāna","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15332,"modificationDate":"2015-08-07"}, -{"geonameId":"2826304","name":"Straelen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15325,"modificationDate":"2015-09-05"}, -{"geonameId":"1267538","name":"Katangi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15321,"modificationDate":"2015-08-07"}, -{"geonameId":"1275978","name":"Bhikangaon","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15321,"modificationDate":"2016-01-07"}, -{"geonameId":"3937486","name":"Junín","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":15320,"modificationDate":"2012-11-08"}, -{"geonameId":"155515","name":"Mabama","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15320,"modificationDate":"2018-12-04"}, -{"geonameId":"2511050","name":"Santomera","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15319,"modificationDate":"2012-03-04"}, -{"geonameId":"4889959","name":"Dixon","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15319,"modificationDate":"2017-05-23"}, -{"geonameId":"5245359","name":"Bellevue","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15317,"modificationDate":"2017-05-23"}, -{"geonameId":"1691538","name":"Romblon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15316,"modificationDate":"2017-12-13"}, -{"geonameId":"672024","name":"Ocna Mureş","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15316,"modificationDate":"2019-09-12"}, -{"geonameId":"5399976","name":"Sunland","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15316,"modificationDate":"2018-04-18"}, -{"geonameId":"6640028","name":"Hale","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15315,"modificationDate":"2010-04-01"}, -{"geonameId":"1272646","name":"Dicholi","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15315,"modificationDate":"2014-10-14"}, -{"geonameId":"766042","name":"Łomianki","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15315,"modificationDate":"2010-09-19"}, -{"geonameId":"4076239","name":"Millbrook","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15314,"modificationDate":"2017-03-09"}, -{"geonameId":"3622716","name":"Nicoya","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":15313,"modificationDate":"2016-09-07"}, -{"geonameId":"2521105","name":"Benetússer","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15313,"modificationDate":"2015-06-01"}, -{"geonameId":"1619281","name":"Bang Racham","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15313,"modificationDate":"2012-01-16"}, -{"geonameId":"2468329","name":"Galaat el Andeless","countryName":"Tunisia","timeZoneName":"Africa/Tunis","timeZoneOffsetNameWithoutDst":"Central European Time","population":15313,"modificationDate":"2018-08-05"}, -{"geonameId":"4149077","name":"Brownsville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15313,"modificationDate":"2011-05-14"}, -{"geonameId":"5854496","name":"Wailuku","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":15313,"modificationDate":"2017-09-05"}, -{"geonameId":"8347914","name":"Prestons","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15312,"modificationDate":"2019-07-18"}, -{"geonameId":"2958024","name":"Altdorf","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15312,"modificationDate":"2018-10-06"}, -{"geonameId":"2802039","name":"Bevere","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":15311,"modificationDate":"2020-05-27"}, -{"geonameId":"1267492","name":"Kāthor","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15311,"modificationDate":"2014-10-13"}, -{"geonameId":"8299577","name":"Warren Township","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15311,"modificationDate":"2012-05-30"}, -{"geonameId":"2389691","name":"Batangafo","countryName":"Central African Republic","timeZoneName":"Africa/Bangui","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15310,"modificationDate":"2016-06-22"}, -{"geonameId":"3097271","name":"Jelcz","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15308,"modificationDate":"2018-10-24"}, -{"geonameId":"3129661","name":"Arenys de Mar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15307,"modificationDate":"2016-10-13"}, -{"geonameId":"2248752","name":"Matam","countryName":"Senegal","timeZoneName":"Africa/Dakar","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15306,"modificationDate":"2013-08-10"}, -{"geonameId":"380348","name":"Abū Zabad","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":15304,"modificationDate":"2018-12-05"}, -{"geonameId":"2922582","name":"Arching","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15303,"modificationDate":"2020-06-10"}, -{"geonameId":"300377","name":"Solhan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":15303,"modificationDate":"2015-02-07"}, -{"geonameId":"3980833","name":"Tuzantla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15302,"modificationDate":"2017-12-13"}, -{"geonameId":"312024","name":"Hizan","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":15302,"modificationDate":"2015-08-07"}, -{"geonameId":"1259592","name":"Pipili","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15301,"modificationDate":"2014-10-14"}, -{"geonameId":"310907","name":"Saiteli","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":15301,"modificationDate":"2020-06-10"}, -{"geonameId":"578091","name":"Belve","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15300,"modificationDate":"2020-06-10"}, -{"geonameId":"579771","name":"Bagayevskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15300,"modificationDate":"2019-08-26"}, -{"geonameId":"227593","name":"Ntungamo","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15300,"modificationDate":"2016-06-22"}, -{"geonameId":"6691033","name":"Donaghmede","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15299,"modificationDate":"2017-07-25"}, -{"geonameId":"3388443","name":"São José de Mipibu","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15298,"modificationDate":"2012-08-03"}, -{"geonameId":"3581514","name":"Orange Walk","countryName":"Belize","timeZoneName":"America/Belize","timeZoneOffsetNameWithoutDst":"Central Time","population":15298,"modificationDate":"2017-12-25"}, -{"geonameId":"3526785","name":"Villa Independencia","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15297,"modificationDate":"2018-11-03"}, -{"geonameId":"2959441","name":"Adlershof","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15294,"modificationDate":"2017-09-19"}, -{"geonameId":"1507488","name":"Degtyarsk","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":15294,"modificationDate":"2012-01-17"}, -{"geonameId":"5137507","name":"Seaford","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15294,"modificationDate":"2017-05-23"}, -{"geonameId":"11919748","name":"La Blancarde","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15292,"modificationDate":"2018-08-22"}, -{"geonameId":"294373","name":"Majd el Kirum","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":15292,"modificationDate":"2020-06-10"}, -{"geonameId":"1684577","name":"Tagas","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15292,"modificationDate":"2017-12-13"}, -{"geonameId":"5815136","name":"Washougal","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15288,"modificationDate":"2017-03-09"}, -{"geonameId":"192859","name":"Kerugoya","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15287,"modificationDate":"2017-11-07"}, -{"geonameId":"2855794","name":"Oyten","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15286,"modificationDate":"2011-07-31"}, -{"geonameId":"3650960","name":"Sucre","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":15286,"modificationDate":"2017-02-07"}, -{"geonameId":"1273642","name":"Dalkola","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15285,"modificationDate":"2014-10-14"}, -{"geonameId":"2144604","name":"Warragul","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15284,"modificationDate":"2019-07-18"}, -{"geonameId":"2977491","name":"Saint-Pierre-des-Corps","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15284,"modificationDate":"2016-02-18"}, -{"geonameId":"1255619","name":"Shriwardham","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15279,"modificationDate":"2020-06-10"}, -{"geonameId":"760343","name":"Ropczyce","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15279,"modificationDate":"2010-10-01"}, -{"geonameId":"669870","name":"Popeşti-Leordeni","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15279,"modificationDate":"2012-06-12"}, -{"geonameId":"3274966","name":"Lauda-Königshofen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15278,"modificationDate":"2015-03-04"}, -{"geonameId":"5722064","name":"Dallas","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15277,"modificationDate":"2017-03-09"}, -{"geonameId":"2788521","name":"Putte","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":15276,"modificationDate":"2011-02-10"}, -{"geonameId":"2866280","name":"Neu-Anspach","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15276,"modificationDate":"2011-07-31"}, -{"geonameId":"3649959","name":"Zamora","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":15276,"modificationDate":"2017-02-07"}, -{"geonameId":"3569136","name":"Alquízar","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":15275,"modificationDate":"2015-12-06"}, -{"geonameId":"3023240","name":"Coulommiers","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15274,"modificationDate":"2016-02-18"}, -{"geonameId":"2892786","name":"Karlstadt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15272,"modificationDate":"2014-01-16"}, -{"geonameId":"3107807","name":"Torredembarra","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15272,"modificationDate":"2012-03-04"}, -{"geonameId":"5119049","name":"Graniteville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15272,"modificationDate":"2017-04-16"}, -{"geonameId":"4470566","name":"Henderson","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15271,"modificationDate":"2017-05-23"}, -{"geonameId":"3693826","name":"Pátapo","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":15270,"modificationDate":"2020-05-11"}, -{"geonameId":"4493186","name":"Stallings","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15270,"modificationDate":"2017-05-23"}, -{"geonameId":"2962785","name":"Lucan","countryName":"Ireland","timeZoneName":"Europe/Dublin","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15269,"modificationDate":"2016-09-12"}, -{"geonameId":"5268986","name":"River Falls","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15269,"modificationDate":"2017-05-23"}, -{"geonameId":"3567823","name":"Baraguá","countryName":"Cuba","timeZoneName":"America/Havana","timeZoneOffsetNameWithoutDst":"Cuba Time","population":15268,"modificationDate":"2014-08-12"}, -{"geonameId":"4985744","name":"Berkley","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15268,"modificationDate":"2017-05-23"}, -{"geonameId":"585568","name":"Mardakan","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":15267,"modificationDate":"2015-11-11"}, -{"geonameId":"2027296","name":"Aykhal","countryName":"Russia","timeZoneName":"Asia/Yakutsk","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":15267,"modificationDate":"2016-11-24"}, -{"geonameId":"2949475","name":"Beverungen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15266,"modificationDate":"2015-09-05"}, -{"geonameId":"2014624","name":"Udachny","countryName":"Russia","timeZoneName":"Asia/Yakutsk","timeZoneOffsetNameWithoutDst":"Yakutsk Time","population":15266,"modificationDate":"2019-09-05"}, -{"geonameId":"3401106","name":"Demerval Lobão","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15265,"modificationDate":"2012-08-03"}, -{"geonameId":"2647246","name":"Hazel Grove","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15265,"modificationDate":"2014-01-09"}, -{"geonameId":"3164090","name":"Lancenigo-Villorba","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15265,"modificationDate":"2014-05-01"}, -{"geonameId":"491352","name":"Sofrino","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15265,"modificationDate":"2014-09-01"}, -{"geonameId":"656083","name":"Jämsä","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15261,"modificationDate":"2019-09-05"}, -{"geonameId":"568587","name":"Chernyanka","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15261,"modificationDate":"2020-03-07"}, -{"geonameId":"2935042","name":"Drensteinfurt","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15260,"modificationDate":"2015-09-04"}, -{"geonameId":"2651497","name":"Darton","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15259,"modificationDate":"2013-07-11"}, -{"geonameId":"2061840","name":"Scarborough","countryName":"Australia","timeZoneName":"Australia/Perth","timeZoneOffsetNameWithoutDst":"Australian Western Time","population":15258,"modificationDate":"2019-07-18"}, -{"geonameId":"345704","name":"Abomsa","countryName":"Ethiopia","timeZoneName":"Africa/Addis_Ababa","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15258,"modificationDate":"2012-01-19"}, -{"geonameId":"648056","name":"Lieto","countryName":"Finland","timeZoneName":"Europe/Helsinki","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15258,"modificationDate":"2014-09-25"}, -{"geonameId":"4352728","name":"Damascus","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15257,"modificationDate":"2011-05-14"}, -{"geonameId":"2992650","name":"Montesson","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15256,"modificationDate":"2016-02-18"}, -{"geonameId":"3457360","name":"Medeiros Neto","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15254,"modificationDate":"2012-08-03"}, -{"geonameId":"668828","name":"Râşnov","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15253,"modificationDate":"2020-06-06"}, -{"geonameId":"4308122","name":"Shelbyville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15253,"modificationDate":"2019-08-24"}, -{"geonameId":"3530175","name":"Coscomatepec de Bravo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15252,"modificationDate":"2018-11-03"}, -{"geonameId":"695912","name":"Radomyshl","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15252,"modificationDate":"2020-01-01"}, -{"geonameId":"2640894","name":"Orpington","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15248,"modificationDate":"2012-03-29"}, -{"geonameId":"2013229","name":"Vyazemskiy","countryName":"Russia","timeZoneName":"Asia/Vladivostok","timeZoneOffsetNameWithoutDst":"Vladivostok Time","population":15247,"modificationDate":"2012-10-06"}, -{"geonameId":"5572400","name":"Susanville","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15247,"modificationDate":"2017-03-09"}, -{"geonameId":"1706402","name":"Lilio","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15246,"modificationDate":"2019-12-23"}, -{"geonameId":"2693759","name":"Ludvika","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":15245,"modificationDate":"2017-03-18"}, -{"geonameId":"4520905","name":"Pataskala","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15245,"modificationDate":"2017-05-23"}, -{"geonameId":"3515902","name":"Tepeapulco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15244,"modificationDate":"2018-11-03"}, -{"geonameId":"3517524","name":"Tecamac","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15244,"modificationDate":"2020-06-10"}, -{"geonameId":"1691446","name":"Roxas","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15242,"modificationDate":"2017-12-13"}, -{"geonameId":"321136","name":"Bigadiç","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":15242,"modificationDate":"2013-06-05"}, -{"geonameId":"1496739","name":"Novosilikatnyy","countryName":"Russia","timeZoneName":"Asia/Barnaul","timeZoneOffsetNameWithoutDst":"GMT+07:00","population":15241,"modificationDate":"2012-01-17"}, -{"geonameId":"2937790","name":"Deutz","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15238,"modificationDate":"2015-03-19"}, -{"geonameId":"3181471","name":"Brusciano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15238,"modificationDate":"2014-04-13"}, -{"geonameId":"2786344","name":"Soumagne","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":15237,"modificationDate":"2011-03-21"}, -{"geonameId":"1511466","name":"Aramil","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":15237,"modificationDate":"2019-09-05"}, -{"geonameId":"2925189","name":"Freiberg am Neckar","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15235,"modificationDate":"2013-02-15"}, -{"geonameId":"8858123","name":"Alborada Jaltenco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15235,"modificationDate":"2014-04-11"}, -{"geonameId":"2805597","name":"Wurzen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15233,"modificationDate":"2019-09-05"}, -{"geonameId":"3662342","name":"São Gabriel da Cachoeira","countryName":"Brazil","timeZoneName":"America/Manaus","timeZoneOffsetNameWithoutDst":"Amazon Time","population":15231,"modificationDate":"2017-09-16"}, -{"geonameId":"2868936","name":"Much","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15231,"modificationDate":"2017-04-26"}, -{"geonameId":"3699364","name":"Bellavista","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":15231,"modificationDate":"2012-07-19"}, -{"geonameId":"2661861","name":"Adliswil","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":15230,"modificationDate":"2013-03-28"}, -{"geonameId":"2750815","name":"Mijdrecht","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":15230,"modificationDate":"2017-10-17"}, -{"geonameId":"2763810","name":"Telfs","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":15229,"modificationDate":"2018-07-28"}, -{"geonameId":"1278676","name":"Anandpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15229,"modificationDate":"2015-09-06"}, -{"geonameId":"662187","name":"Zimnicea","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15228,"modificationDate":"2019-02-28"}, -{"geonameId":"1528796","name":"At-Bashi","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":15226,"modificationDate":"2015-05-25"}, -{"geonameId":"2978100","name":"Saint-Maximin-la-Sainte-Baume","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15225,"modificationDate":"2019-08-07"}, -{"geonameId":"2758547","name":"Boskoop","countryName":"Netherlands","timeZoneName":"Europe/Amsterdam","timeZoneOffsetNameWithoutDst":"Central European Time","population":15222,"modificationDate":"2017-10-17"}, -{"geonameId":"3191316","name":"Samobor","countryName":"Croatia","timeZoneName":"Europe/Zagreb","timeZoneOffsetNameWithoutDst":"Central European Time","population":15221,"modificationDate":"2016-05-08"}, -{"geonameId":"295122","name":"Even Yehuda","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":15221,"modificationDate":"2017-07-02"}, -{"geonameId":"3982007","name":"Tepalcatepec","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15221,"modificationDate":"2018-11-03"}, -{"geonameId":"1262497","name":"Mundra","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15220,"modificationDate":"2014-10-13"}, -{"geonameId":"5012495","name":"Traverse City","countryName":"United States","timeZoneName":"America/Detroit","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15218,"modificationDate":"2017-05-23"}, -{"geonameId":"185939","name":"Muhoroni","countryName":"Kenya","timeZoneName":"Africa/Nairobi","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15217,"modificationDate":"2018-11-06"}, -{"geonameId":"564654","name":"Dubovka","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":15217,"modificationDate":"2019-09-05"}, -{"geonameId":"5397851","name":"South Yuba City","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15217,"modificationDate":"2006-01-17"}, -{"geonameId":"3665851","name":"Viterbo","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":15216,"modificationDate":"2018-07-04"}, -{"geonameId":"2170307","name":"Corio","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15215,"modificationDate":"2019-07-18"}, -{"geonameId":"1220219","name":"Vakhsh","countryName":"Tajikistan","timeZoneName":"Asia/Dushanbe","timeZoneOffsetNameWithoutDst":"Tajikistan Time","population":15215,"modificationDate":"2012-02-28"}, -{"geonameId":"2098329","name":"Daru","countryName":"Papua New Guinea","timeZoneName":"Pacific/Port_Moresby","timeZoneOffsetNameWithoutDst":"Papua New Guinea Time","population":15214,"modificationDate":"2015-04-18"}, -{"geonameId":"1266631","name":"Rauza","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15213,"modificationDate":"2020-06-10"}, -{"geonameId":"3128757","name":"la Barceloneta","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15212,"modificationDate":"2017-05-26"}, -{"geonameId":"4772735","name":"Merrifield","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15212,"modificationDate":"2011-05-14"}, -{"geonameId":"4837648","name":"Ledyard","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15212,"modificationDate":"2017-09-19"}, -{"geonameId":"2381659","name":"Aleg","countryName":"Mauritania","timeZoneName":"Africa/Nouakchott","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15211,"modificationDate":"2016-01-07"}, -{"geonameId":"2743095","name":"Alfena","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":15211,"modificationDate":"2018-01-15"}, -{"geonameId":"2514066","name":"Massamagrell","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15210,"modificationDate":"2012-03-04"}, -{"geonameId":"2638878","name":"Saffron Walden","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15210,"modificationDate":"2018-07-03"}, -{"geonameId":"174972","name":"Sisian","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":15208,"modificationDate":"2020-06-10"}, -{"geonameId":"1607615","name":"Phon Charoen","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15208,"modificationDate":"2006-01-17"}, -{"geonameId":"2153925","name":"Palm Beach","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15205,"modificationDate":"2019-07-18"}, -{"geonameId":"1704002","name":"Magarao","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15205,"modificationDate":"2017-12-13"}, -{"geonameId":"2647363","name":"Haslingden","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15204,"modificationDate":"2011-03-03"}, -{"geonameId":"2439155","name":"Tanout","countryName":"Niger","timeZoneName":"Africa/Niamey","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15204,"modificationDate":"2013-10-06"}, -{"geonameId":"7287775","name":"Nizhnesortymskiy","countryName":"Russia","timeZoneName":"Asia/Yekaterinburg","timeZoneOffsetNameWithoutDst":"Yekaterinburg Time","population":15204,"modificationDate":"2017-12-06"}, -{"geonameId":"3577089","name":"San Nicolas","countryName":"Aruba","timeZoneName":"America/Aruba","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":15200,"modificationDate":"2018-12-04"}, -{"geonameId":"1271642","name":"Gangolli","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15200,"modificationDate":"2012-03-13"}, -{"geonameId":"250267","name":"Safi","countryName":"Jordan","timeZoneName":"Asia/Amman","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15200,"modificationDate":"2013-10-15"}, -{"geonameId":"2899676","name":"Holzkirchen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15199,"modificationDate":"2013-02-19"}, -{"geonameId":"1273960","name":"Chotila","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15197,"modificationDate":"2014-10-13"}, -{"geonameId":"1106809","name":"Le Hochet","countryName":"Mauritius","timeZoneName":"Indian/Mauritius","timeZoneOffsetNameWithoutDst":"Mauritius Time","population":15197,"modificationDate":"2020-06-11"}, -{"geonameId":"1486298","name":"Yashkino","countryName":"Russia","timeZoneName":"Asia/Novokuznetsk","timeZoneOffsetNameWithoutDst":"Krasnoyarsk Time","population":15197,"modificationDate":"2012-01-17"}, -{"geonameId":"3907080","name":"Punata","countryName":"Bolivia","timeZoneName":"America/La_Paz","timeZoneOffsetNameWithoutDst":"Bolivia Time","population":15194,"modificationDate":"2013-05-08"}, -{"geonameId":"720364","name":"Gyoma","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":15194,"modificationDate":"2020-06-10"}, -{"geonameId":"3203653","name":"Bosanska Krupa","countryName":"Bosnia and Herzegovina","timeZoneName":"Europe/Sarajevo","timeZoneOffsetNameWithoutDst":"Central European Time","population":15193,"modificationDate":"2016-06-05"}, -{"geonameId":"3446625","name":"Teodoro Sampaio","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15193,"modificationDate":"2012-08-03"}, -{"geonameId":"6240770","name":"Cambridge","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":15192,"modificationDate":"2011-08-01"}, -{"geonameId":"2658494","name":"Steffisburg","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":15191,"modificationDate":"2019-09-10"}, -{"geonameId":"7268049","name":"Mangilao Village","countryName":"Guam","timeZoneName":"Pacific/Guam","timeZoneOffsetNameWithoutDst":"Chamorro Time","population":15191,"modificationDate":"2013-06-30"}, -{"geonameId":"148445","name":"Astara","countryName":"Azerbaijan","timeZoneName":"Asia/Baku","timeZoneOffsetNameWithoutDst":"Azerbaijan Time","population":15190,"modificationDate":"2012-08-04"}, -{"geonameId":"2640060","name":"Port Glasgow","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15190,"modificationDate":"2017-06-12"}, -{"geonameId":"2427336","name":"Moussoro","countryName":"Chad","timeZoneName":"Africa/Ndjamena","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15190,"modificationDate":"2014-09-05"}, -{"geonameId":"2933101","name":"Eggenstein-Leopoldshafen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15189,"modificationDate":"2011-04-25"}, -{"geonameId":"314903","name":"Phocaea","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":15189,"modificationDate":"2020-06-10"}, -{"geonameId":"2766446","name":"Sankt Peter","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":15187,"modificationDate":"2018-07-29"}, -{"geonameId":"5098109","name":"Fords","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15187,"modificationDate":"2017-05-23"}, -{"geonameId":"4714582","name":"New Territory","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15186,"modificationDate":"2011-05-14"}, -{"geonameId":"6957263","name":"Kapolei","countryName":"United States","timeZoneName":"Pacific/Honolulu","timeZoneOffsetNameWithoutDst":"Hawaii-Aleutian Time","population":15186,"modificationDate":"2017-09-05"}, -{"geonameId":"2882091","name":"Bad Laasphe","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15184,"modificationDate":"2015-09-04"}, -{"geonameId":"2955224","name":"Ascheberg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15184,"modificationDate":"2011-04-25"}, -{"geonameId":"1609990","name":"Khao Wong","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15184,"modificationDate":"2012-01-16"}, -{"geonameId":"2034657","name":"Suifenhe","countryName":"China","timeZoneName":"Asia/Shanghai","timeZoneOffsetNameWithoutDst":"China Time","population":15183,"modificationDate":"2014-11-23"}, -{"geonameId":"3980169","name":"Villa Hidalgo","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15182,"modificationDate":"2018-11-03"}, -{"geonameId":"5337908","name":"Clearlake","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15182,"modificationDate":"2017-03-09"}, -{"geonameId":"3686479","name":"Chiriguaná","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":15181,"modificationDate":"2018-07-04"}, -{"geonameId":"3000138","name":"Les Olives","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15181,"modificationDate":"2018-08-22"}, -{"geonameId":"2640416","name":"Penrith","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15181,"modificationDate":"2019-09-16"}, -{"geonameId":"468063","name":"Yelan’","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":15181,"modificationDate":"2014-06-26"}, -{"geonameId":"12156850","name":"Lawrence Park South","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15179,"modificationDate":"2020-05-02"}, -{"geonameId":"3090452","name":"Nowy Tomyśl","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15179,"modificationDate":"2020-06-21"}, -{"geonameId":"2341955","name":"Ganye","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15178,"modificationDate":"2016-01-30"}, -{"geonameId":"5567770","name":"McKinleyville","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15177,"modificationDate":"2011-05-14"}, -{"geonameId":"2339665","name":"Gwoza","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15176,"modificationDate":"2016-06-22"}, -{"geonameId":"974611","name":"Montagu","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":15176,"modificationDate":"2017-12-13"}, -{"geonameId":"2953405","name":"Bad Lippspringe","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15175,"modificationDate":"2015-09-05"}, -{"geonameId":"1267006","name":"Khāpa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15175,"modificationDate":"2016-02-11"}, -{"geonameId":"4959473","name":"Brunswick","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15175,"modificationDate":"2017-05-23"}, -{"geonameId":"2358100","name":"Manga","countryName":"Burkina Faso","timeZoneName":"Africa/Ouagadougou","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15173,"modificationDate":"2012-02-02"}, -{"geonameId":"3181359","name":"Bussolengo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15170,"modificationDate":"2014-04-13"}, -{"geonameId":"3862254","name":"Catriel","countryName":"Argentina","timeZoneName":"America/Argentina/Salta","timeZoneOffsetNameWithoutDst":"Argentina Time","population":15169,"modificationDate":"2016-03-06"}, -{"geonameId":"561515","name":"Giaginskaya","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15169,"modificationDate":"2016-08-16"}, -{"geonameId":"2937591","name":"Dieburg","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15168,"modificationDate":"2019-09-05"}, -{"geonameId":"4011469","name":"Puebla","countryName":"Mexico","timeZoneName":"America/Tijuana","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15168,"modificationDate":"2018-11-03"}, -{"geonameId":"153408","name":"Mlangali","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15168,"modificationDate":"2016-07-26"}, -{"geonameId":"3596644","name":"El Palmar","countryName":"Guatemala","timeZoneName":"America/Guatemala","timeZoneOffsetNameWithoutDst":"Central Time","population":15167,"modificationDate":"2019-01-09"}, -{"geonameId":"536156","name":"Leninsk","countryName":"Russia","timeZoneName":"Europe/Volgograd","timeZoneOffsetNameWithoutDst":"Volgograd Time","population":15167,"modificationDate":"2019-09-05"}, -{"geonameId":"4294799","name":"Highview","countryName":"United States","timeZoneName":"America/Kentucky/Louisville","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15167,"modificationDate":"2006-01-17"}, -{"geonameId":"792501","name":"Bogovinje","countryName":"North Macedonia","timeZoneName":"Europe/Skopje","timeZoneOffsetNameWithoutDst":"Central European Time","population":15166,"modificationDate":"2019-06-29"}, -{"geonameId":"699917","name":"Nosivka","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15164,"modificationDate":"2014-11-05"}, -{"geonameId":"3188915","name":"Trbovlje","countryName":"Slovenia","timeZoneName":"Europe/Ljubljana","timeZoneOffsetNameWithoutDst":"Central European Time","population":15163,"modificationDate":"2014-04-27"}, -{"geonameId":"3466481","name":"Celso Ramos","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15162,"modificationDate":"2012-08-03"}, -{"geonameId":"4013892","name":"Ciénega de Flores","countryName":"Mexico","timeZoneName":"America/Monterrey","timeZoneOffsetNameWithoutDst":"Central Time","population":15162,"modificationDate":"2018-11-03"}, -{"geonameId":"3516919","name":"Tetla","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15161,"modificationDate":"2018-11-03"}, -{"geonameId":"5123247","name":"Kenmore","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15160,"modificationDate":"2017-05-23"}, -{"geonameId":"3447997","name":"Sarandi","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15158,"modificationDate":"2012-08-03"}, -{"geonameId":"7302802","name":"Rondebosch","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":15158,"modificationDate":"2013-08-18"}, -{"geonameId":"2791735","name":"Marchienne-au-Pont","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":15154,"modificationDate":"2020-04-05"}, -{"geonameId":"4181936","name":"Belvedere Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15152,"modificationDate":"2011-05-14"}, -{"geonameId":"3063546","name":"Ústí nad Orlicí","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":15151,"modificationDate":"2019-03-20"}, -{"geonameId":"5387749","name":"Ripon","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15151,"modificationDate":"2017-03-09"}, -{"geonameId":"363243","name":"Sarandë","countryName":"Albania","timeZoneName":"Europe/Tirane","timeZoneOffsetNameWithoutDst":"Central European Time","population":15147,"modificationDate":"2018-06-12"}, -{"geonameId":"11549806","name":"la Guineueta","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15147,"modificationDate":"2017-05-24"}, -{"geonameId":"4367419","name":"Rossville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15147,"modificationDate":"2011-05-14"}, -{"geonameId":"5114900","name":"Depew","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15146,"modificationDate":"2017-05-23"}, -{"geonameId":"2351470","name":"Ajaokuta","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15144,"modificationDate":"2016-01-30"}, -{"geonameId":"380151","name":"Ad Dindar","countryName":"Sudan","timeZoneName":"Africa/Khartoum","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":15144,"modificationDate":"2018-12-05"}, -{"geonameId":"4595374","name":"Seven Oaks","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15144,"modificationDate":"2011-05-14"}, -{"geonameId":"1153646","name":"Chom Bueng","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15143,"modificationDate":"2017-03-22"}, -{"geonameId":"1270082","name":"Hindoria","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15142,"modificationDate":"2015-08-07"}, -{"geonameId":"3453777","name":"Pinhão","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15141,"modificationDate":"2012-08-03"}, -{"geonameId":"3173369","name":"Mirano","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15139,"modificationDate":"2014-04-13"}, -{"geonameId":"2989877","name":"Noyon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15138,"modificationDate":"2016-02-18"}, -{"geonameId":"4231354","name":"Wilmington Island","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15138,"modificationDate":"2011-05-14"}, -{"geonameId":"5381325","name":"Parlier","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15138,"modificationDate":"2017-03-09"}, -{"geonameId":"7258633","name":"Gates-North Gates","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15138,"modificationDate":"2017-12-13"}, -{"geonameId":"3202641","name":"Cetinje","countryName":"Montenegro","timeZoneName":"Europe/Podgorica","timeZoneOffsetNameWithoutDst":"Central European Time","population":15137,"modificationDate":"2018-12-08"}, -{"geonameId":"3355672","name":"Lüderitz","countryName":"Namibia","timeZoneName":"Africa/Windhoek","timeZoneOffsetNameWithoutDst":"Central Africa Time","population":15137,"modificationDate":"2018-01-29"}, -{"geonameId":"1266092","name":"Korwai","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15136,"modificationDate":"2018-12-04"}, -{"geonameId":"9003711","name":"Corigliano Scalo","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15136,"modificationDate":"2019-03-08"}, -{"geonameId":"5344817","name":"East Rancho Dominguez","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15135,"modificationDate":"2012-06-03"}, -{"geonameId":"1157662","name":"Bang Saphan","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15134,"modificationDate":"2008-10-01"}, -{"geonameId":"1136863","name":"Khāsh","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":15133,"modificationDate":"2018-02-17"}, -{"geonameId":"2262744","name":"Tavira","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":15133,"modificationDate":"2018-08-24"}, -{"geonameId":"5965812","name":"Greater Napanee","countryName":"Canada","timeZoneName":"America/Toronto","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15132,"modificationDate":"2010-04-06"}, -{"geonameId":"1520947","name":"Sarykemer","countryName":"Kazakhstan","timeZoneName":"Asia/Almaty","timeZoneOffsetNameWithoutDst":"East Kazakhstan Time","population":15132,"modificationDate":"2019-03-28"}, -{"geonameId":"3451650","name":"Resplendor","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15131,"modificationDate":"2012-08-03"}, -{"geonameId":"2411880","name":"Sukuta","countryName":"Gambia","timeZoneName":"Africa/Banjul","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15131,"modificationDate":"2011-02-02"}, -{"geonameId":"1267290","name":"Kenda","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15131,"modificationDate":"2014-10-14"}, -{"geonameId":"8858124","name":"Crucecita","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15130,"modificationDate":"2014-04-11"}, -{"geonameId":"233886","name":"Buwenge","countryName":"Uganda","timeZoneName":"Africa/Kampala","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15130,"modificationDate":"2017-06-06"}, -{"geonameId":"3843619","name":"Morteros","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":15129,"modificationDate":"2016-01-30"}, -{"geonameId":"11863036","name":"Sinfin","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15128,"modificationDate":"2018-05-10"}, -{"geonameId":"1714519","name":"Dologon","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15128,"modificationDate":"2017-12-13"}, -{"geonameId":"4437982","name":"Natchez","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15128,"modificationDate":"2019-04-01"}, -{"geonameId":"3864375","name":"Bella Vista","countryName":"Argentina","timeZoneName":"America/Argentina/Tucuman","timeZoneOffsetNameWithoutDst":"Argentina Time","population":15126,"modificationDate":"2015-04-22"}, -{"geonameId":"2654814","name":"Bredbury","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15126,"modificationDate":"2013-07-11"}, -{"geonameId":"4351851","name":"Cloverly","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15126,"modificationDate":"2018-11-16"}, -{"geonameId":"3085172","name":"Solec Kujawski","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15125,"modificationDate":"2010-09-13"}, -{"geonameId":"4868907","name":"Newton","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15125,"modificationDate":"2017-05-23"}, -{"geonameId":"7932620","name":"Elwood","countryName":"Australia","timeZoneName":"Australia/Melbourne","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15122,"modificationDate":"2019-07-18"}, -{"geonameId":"3099169","name":"Głuchołazy","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15120,"modificationDate":"2010-09-25"}, -{"geonameId":"5364916","name":"Lamont","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15120,"modificationDate":"2011-05-14"}, -{"geonameId":"3601691","name":"Santa Bárbara","countryName":"Honduras","timeZoneName":"America/Tegucigalpa","timeZoneOffsetNameWithoutDst":"Central Time","population":15119,"modificationDate":"2013-04-04"}, -{"geonameId":"3982170","name":"Tecpan de Galena","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15119,"modificationDate":"2020-06-10"}, -{"geonameId":"3455036","name":"Paraty","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15118,"modificationDate":"2014-01-03"}, -{"geonameId":"1259784","name":"Phek","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15118,"modificationDate":"2012-05-05"}, -{"geonameId":"479687","name":"Uchkeken","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15118,"modificationDate":"2012-01-17"}, -{"geonameId":"1255712","name":"Sorada","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15117,"modificationDate":"2014-10-14"}, -{"geonameId":"8378910","name":"Villanova","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15117,"modificationDate":"2014-01-16"}, -{"geonameId":"4619943","name":"East Brainerd","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15114,"modificationDate":"2006-01-17"}, -{"geonameId":"3851331","name":"La Falda","countryName":"Argentina","timeZoneName":"America/Argentina/Cordoba","timeZoneOffsetNameWithoutDst":"Argentina Time","population":15112,"modificationDate":"2016-01-30"}, -{"geonameId":"3651868","name":"San Gabriel","countryName":"Ecuador","timeZoneName":"America/Guayaquil","timeZoneOffsetNameWithoutDst":"Ecuador Time","population":15112,"modificationDate":"2017-02-07"}, -{"geonameId":"2157495","name":"Miranda","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15111,"modificationDate":"2019-07-18"}, -{"geonameId":"2897732","name":"Humboldtkolonie","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15108,"modificationDate":"2015-03-19"}, -{"geonameId":"1714482","name":"Domalanoan","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15108,"modificationDate":"2017-12-13"}, -{"geonameId":"2659613","name":"Monthey","countryName":"Switzerland","timeZoneName":"Europe/Zurich","timeZoneOffsetNameWithoutDst":"Central European Time","population":15106,"modificationDate":"2019-09-10"}, -{"geonameId":"4527124","name":"Vandalia","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15106,"modificationDate":"2017-05-23"}, -{"geonameId":"5387687","name":"Rio Linda","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15106,"modificationDate":"2011-05-14"}, -{"geonameId":"3099180","name":"Głowno","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15103,"modificationDate":"2010-10-15"}, -{"geonameId":"4935434","name":"East Longmeadow","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15102,"modificationDate":"2017-05-23"}, -{"geonameId":"5103086","name":"Ramsey","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15102,"modificationDate":"2017-05-23"}, -{"geonameId":"7874479","name":"Trindade","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15100,"modificationDate":"2012-08-03"}, -{"geonameId":"508656","name":"Pochep","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15100,"modificationDate":"2014-05-16"}, -{"geonameId":"1469706","name":"Markaz-e Woluswalī-ye Āchīn","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":15098,"modificationDate":"2018-02-17"}, -{"geonameId":"2344600","name":"Doma","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15097,"modificationDate":"2016-01-30"}, -{"geonameId":"4177897","name":"West Park","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15097,"modificationDate":"2017-03-09"}, -{"geonameId":"5991055","name":"Kenora","countryName":"Canada","timeZoneName":"America/Winnipeg","timeZoneOffsetNameWithoutDst":"Central Time","population":15096,"modificationDate":"2018-01-20"}, -{"geonameId":"1275558","name":"Binka","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15095,"modificationDate":"2015-09-06"}, -{"geonameId":"4626334","name":"Greeneville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15094,"modificationDate":"2017-03-09"}, -{"geonameId":"2032007","name":"Dalandzadgad","countryName":"Mongolia","timeZoneName":"Asia/Ulaanbaatar","timeZoneOffsetNameWithoutDst":"Ulaanbaatar Time","population":15093,"modificationDate":"2013-06-16"}, -{"geonameId":"3450376","name":"Santa Cecília","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15092,"modificationDate":"2012-08-03"}, -{"geonameId":"506762","name":"Polyarnyye Zori","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15092,"modificationDate":"2012-11-01"}, -{"geonameId":"3049896","name":"Kiskőrös","countryName":"Hungary","timeZoneName":"Europe/Budapest","timeZoneOffsetNameWithoutDst":"Central European Time","population":15091,"modificationDate":"2014-11-05"}, -{"geonameId":"1180825","name":"Dadhar","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":15090,"modificationDate":"2019-12-06"}, -{"geonameId":"3471854","name":"Araci","countryName":"Brazil","timeZoneName":"America/Bahia","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15088,"modificationDate":"2012-08-03"}, -{"geonameId":"3105214","name":"Villanueva del Pardillo","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15087,"modificationDate":"2015-06-01"}, -{"geonameId":"2337235","name":"Isanlu-Itedoijowa","countryName":"Nigeria","timeZoneName":"Africa/Lagos","timeZoneOffsetNameWithoutDst":"West Africa Time","population":15087,"modificationDate":"2018-12-04"}, -{"geonameId":"4245152","name":"Mount Vernon","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15087,"modificationDate":"2017-05-23"}, -{"geonameId":"4346991","name":"Adelphi","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15086,"modificationDate":"2011-05-14"}, -{"geonameId":"2945591","name":"Brackenheim","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15083,"modificationDate":"2013-02-16"}, -{"geonameId":"3697990","name":"Coishco","countryName":"Peru","timeZoneName":"America/Lima","timeZoneOffsetNameWithoutDst":"Peru Time","population":15083,"modificationDate":"2012-07-19"}, -{"geonameId":"6693094","name":"Springfield Lakes","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15081,"modificationDate":"2019-07-18"}, -{"geonameId":"2642683","name":"Mexborough","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15079,"modificationDate":"2011-03-03"}, -{"geonameId":"1679802","name":"Virac","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15079,"modificationDate":"2017-12-13"}, -{"geonameId":"1261871","name":"Naraini","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15077,"modificationDate":"2012-09-06"}, -{"geonameId":"2171845","name":"Cessnock","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15076,"modificationDate":"2019-07-18"}, -{"geonameId":"1265150","name":"Lālpur","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15076,"modificationDate":"2014-10-13"}, -{"geonameId":"742902","name":"Kocaali","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":15076,"modificationDate":"2012-05-06"}, -{"geonameId":"9958114","name":"Rochedale South","countryName":"Australia","timeZoneName":"Australia/Brisbane","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15073,"modificationDate":"2019-07-18"}, -{"geonameId":"1263900","name":"Mandapam","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15073,"modificationDate":"2014-10-14"}, -{"geonameId":"1244596","name":"Hatton","countryName":"Sri Lanka","timeZoneName":"Asia/Colombo","timeZoneOffsetNameWithoutDst":"India Time","population":15073,"modificationDate":"2018-12-16"}, -{"geonameId":"3065903","name":"Slaný","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":15070,"modificationDate":"2018-09-08"}, -{"geonameId":"2882439","name":"Künzelsau","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15070,"modificationDate":"2015-03-04"}, -{"geonameId":"1259210","name":"Pupri","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15070,"modificationDate":"2014-10-14"}, -{"geonameId":"4760232","name":"Front Royal","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15070,"modificationDate":"2017-03-09"}, -{"geonameId":"5278693","name":"Weston","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15069,"modificationDate":"2017-05-23"}, -{"geonameId":"2282178","name":"Sakassou","countryName":"Ivory Coast","timeZoneName":"Africa/Abidjan","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15068,"modificationDate":"2016-12-03"}, -{"geonameId":"1253673","name":"Usehat","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15068,"modificationDate":"2015-08-07"}, -{"geonameId":"3982545","name":"Tangancicuaro","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15068,"modificationDate":"2020-06-10"}, -{"geonameId":"2641591","name":"Newport Pagnell","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15067,"modificationDate":"2011-07-31"}, -{"geonameId":"3573989","name":"Paradise","countryName":"Trinidad and Tobago","timeZoneName":"America/Port_of_Spain","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":15067,"modificationDate":"2013-06-23"}, -{"geonameId":"1259222","name":"Punjai Puliyampatti","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15066,"modificationDate":"2018-12-04"}, -{"geonameId":"1691904","name":"Ramos","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15066,"modificationDate":"2017-12-13"}, -{"geonameId":"1729734","name":"Babo-Pangulo","countryName":"Philippines","timeZoneName":"Asia/Manila","timeZoneOffsetNameWithoutDst":"Philippine Time","population":15066,"modificationDate":"2017-12-13"}, -{"geonameId":"2641795","name":"Neston","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15064,"modificationDate":"2017-06-12"}, -{"geonameId":"5512827","name":"Spanish Springs","countryName":"United States","timeZoneName":"America/Los_Angeles","timeZoneOffsetNameWithoutDst":"Pacific Time","population":15064,"modificationDate":"2011-05-14"}, -{"geonameId":"3403941","name":"Cajueiro","countryName":"Brazil","timeZoneName":"America/Maceio","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15062,"modificationDate":"2012-08-03"}, -{"geonameId":"12070060","name":"Vicaria","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15062,"modificationDate":"2019-07-22"}, -{"geonameId":"3676934","name":"La Unión","countryName":"Colombia","timeZoneName":"America/Bogota","timeZoneOffsetNameWithoutDst":"Colombia Time","population":15061,"modificationDate":"2018-08-08"}, -{"geonameId":"7259265","name":"Fort Leonard Wood","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15061,"modificationDate":"2017-05-23"}, -{"geonameId":"616199","name":"Spitak","countryName":"Armenia","timeZoneName":"Asia/Yerevan","timeZoneOffsetNameWithoutDst":"Armenia Time","population":15059,"modificationDate":"2018-04-04"}, -{"geonameId":"831432","name":"Espiye","countryName":"Turkey","timeZoneName":"Europe/Istanbul","timeZoneOffsetNameWithoutDst":"GMT+03:00","population":15058,"modificationDate":"2015-05-06"}, -{"geonameId":"3465083","name":"Cruzeiro do Oeste","countryName":"Brazil","timeZoneName":"America/Sao_Paulo","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15057,"modificationDate":"2012-08-03"}, -{"geonameId":"4912499","name":"Sterling","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15057,"modificationDate":"2017-07-18"}, -{"geonameId":"1260954","name":"Pachperwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15056,"modificationDate":"2014-10-14"}, -{"geonameId":"987202","name":"Kriel","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":15055,"modificationDate":"2016-03-10"}, -{"geonameId":"4793846","name":"Williamsburg","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15052,"modificationDate":"2017-03-09"}, -{"geonameId":"3621655","name":"San Rafael Arriba","countryName":"Costa Rica","timeZoneName":"America/Costa_Rica","timeZoneOffsetNameWithoutDst":"Central Time","population":15051,"modificationDate":"2016-09-07"}, -{"geonameId":"1277202","name":"Bantwa","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15051,"modificationDate":"2020-06-10"}, -{"geonameId":"1180454","name":"Darya Khan","countryName":"Pakistan","timeZoneName":"Asia/Karachi","timeZoneOffsetNameWithoutDst":"Pakistan Time","population":15048,"modificationDate":"2019-12-06"}, -{"geonameId":"575457","name":"Boguchar","countryName":"Russia","timeZoneName":"Europe/Moscow","timeZoneOffsetNameWithoutDst":"Moscow Time","population":15048,"modificationDate":"2012-01-17"}, -{"geonameId":"5315062","name":"Somerton","countryName":"United States","timeZoneName":"America/Phoenix","timeZoneOffsetNameWithoutDst":"Mountain Time","population":15048,"modificationDate":"2017-03-09"}, -{"geonameId":"2769110","name":"Perchtoldsdorf","countryName":"Austria","timeZoneName":"Europe/Vienna","timeZoneOffsetNameWithoutDst":"Central European Time","population":15047,"modificationDate":"2018-07-28"}, -{"geonameId":"4175296","name":"Three Lakes","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15047,"modificationDate":"2011-05-14"}, -{"geonameId":"689584","name":"Vilnyansk","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15044,"modificationDate":"2020-05-22"}, -{"geonameId":"711841","name":"Bolhrad","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15044,"modificationDate":"2020-02-28"}, -{"geonameId":"3526611","name":"Xalatlaco","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15043,"modificationDate":"2018-11-03"}, -{"geonameId":"681502","name":"Cisnădie","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15042,"modificationDate":"2012-06-12"}, -{"geonameId":"6546693","name":"Boujniba","countryName":"Morocco","timeZoneName":"Africa/Casablanca","timeZoneOffsetNameWithoutDst":"GMT+01:00","population":15041,"modificationDate":"2016-11-02"}, -{"geonameId":"3073668","name":"Klášterec nad Ohří","countryName":"Czechia","timeZoneName":"Europe/Prague","timeZoneOffsetNameWithoutDst":"Central European Time","population":15040,"modificationDate":"2019-03-19"}, -{"geonameId":"2820973","name":"Trossingen","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":15040,"modificationDate":"2013-02-15"}, -{"geonameId":"3570446","name":"La Trinité","countryName":"Martinique","timeZoneName":"America/Martinique","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":15040,"modificationDate":"2018-12-04"}, -{"geonameId":"711134","name":"Burshtyn","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15039,"modificationDate":"2020-05-09"}, -{"geonameId":"677742","name":"Găeşti","countryName":"Romania","timeZoneName":"Europe/Bucharest","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15037,"modificationDate":"2012-06-12"}, -{"geonameId":"3169181","name":"Rocca di Papa","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15036,"modificationDate":"2014-04-13"}, -{"geonameId":"2521016","name":"Berja","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15035,"modificationDate":"2012-03-04"}, -{"geonameId":"4146389","name":"Auburndale","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15035,"modificationDate":"2017-03-09"}, -{"geonameId":"1139807","name":"Jabal os Saraj","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":15032,"modificationDate":"2018-02-17"}, -{"geonameId":"3583199","name":"Santiago","countryName":"El Salvador","timeZoneName":"America/El_Salvador","timeZoneOffsetNameWithoutDst":"Central Time","population":15032,"modificationDate":"2020-06-10"}, -{"geonameId":"3385980","name":"Tucumã","countryName":"Brazil","timeZoneName":"America/Belem","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":15030,"modificationDate":"2018-07-04"}, -{"geonameId":"2493605","name":"Ighram","countryName":"Algeria","timeZoneName":"Africa/Algiers","timeZoneOffsetNameWithoutDst":"Central European Time","population":15030,"modificationDate":"2012-01-19"}, -{"geonameId":"3172681","name":"Montichiari","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":15030,"modificationDate":"2014-04-13"}, -{"geonameId":"2562266","name":"Żabbar","countryName":"Malta","timeZoneName":"Europe/Malta","timeZoneOffsetNameWithoutDst":"Central European Time","population":15030,"modificationDate":"2012-07-04"}, -{"geonameId":"2618361","name":"Korsør","countryName":"Denmark","timeZoneName":"Europe/Copenhagen","timeZoneOffsetNameWithoutDst":"Central European Time","population":15029,"modificationDate":"2019-09-05"}, -{"geonameId":"733264","name":"Berkovitsa","countryName":"Bulgaria","timeZoneName":"Europe/Sofia","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15027,"modificationDate":"2019-01-10"}, -{"geonameId":"3030057","name":"Brignoles","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15027,"modificationDate":"2019-08-07"}, -{"geonameId":"5118743","name":"Gloversville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15023,"modificationDate":"2017-05-23"}, -{"geonameId":"2161608","name":"Kensington","countryName":"Australia","timeZoneName":"Australia/Sydney","timeZoneOffsetNameWithoutDst":"Australian Eastern Time","population":15021,"modificationDate":"2019-08-20"}, -{"geonameId":"1266746","name":"Khetia","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15021,"modificationDate":"2012-11-08"}, -{"geonameId":"5523074","name":"Hereford","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15021,"modificationDate":"2017-03-09"}, -{"geonameId":"2644853","name":"Larkhall","countryName":"United Kingdom","timeZoneName":"Europe/London","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":15020,"modificationDate":"2017-06-15"}, -{"geonameId":"3060589","name":"Detva","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":15020,"modificationDate":"2019-06-09"}, -{"geonameId":"1267097","name":"Khamaria","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15019,"modificationDate":"2015-08-07"}, -{"geonameId":"1222562","name":"Suluktu","countryName":"Kyrgyzstan","timeZoneName":"Asia/Bishkek","timeZoneOffsetNameWithoutDst":"Kyrgyzstan Time","population":15019,"modificationDate":"2015-05-23"}, -{"geonameId":"2700839","name":"Kinna","countryName":"Sweden","timeZoneName":"Europe/Stockholm","timeZoneOffsetNameWithoutDst":"Central European Time","population":15019,"modificationDate":"2017-03-18"}, -{"geonameId":"5116303","name":"Eggertsville","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15019,"modificationDate":"2017-05-23"}, -{"geonameId":"1129516","name":"Quarkin","countryName":"Afghanistan","timeZoneName":"Asia/Kabul","timeZoneOffsetNameWithoutDst":"Afghanistan Time","population":15018,"modificationDate":"2020-06-09"}, -{"geonameId":"3522451","name":"Ocotlán de Morelos","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15016,"modificationDate":"2018-11-03"}, -{"geonameId":"294608","name":"Kefar Mandi","countryName":"Israel","timeZoneName":"Asia/Jerusalem","timeZoneOffsetNameWithoutDst":"Israel Time","population":15014,"modificationDate":"2020-06-10"}, -{"geonameId":"3057630","name":"Skalica","countryName":"Slovakia","timeZoneName":"Europe/Bratislava","timeZoneOffsetNameWithoutDst":"Central European Time","population":15013,"modificationDate":"2019-06-09"}, -{"geonameId":"3824536","name":"Alto Lucero","countryName":"Mexico","timeZoneName":"America/Mexico_City","timeZoneOffsetNameWithoutDst":"Central Time","population":15011,"modificationDate":"2013-07-31"}, -{"geonameId":"691016","name":"Tulchyn","countryName":"Ukraine","timeZoneName":"Europe/Kiev","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15011,"modificationDate":"2020-05-14"}, -{"geonameId":"5108093","name":"Batavia","countryName":"United States","timeZoneName":"America/New_York","timeZoneOffsetNameWithoutDst":"Eastern Time","population":15010,"modificationDate":"2017-05-23"}, -{"geonameId":"3035654","name":"Avon","countryName":"France","timeZoneName":"Europe/Paris","timeZoneOffsetNameWithoutDst":"Central European Time","population":15009,"modificationDate":"2016-02-18"}, -{"geonameId":"155285","name":"Mahanje","countryName":"Tanzania","timeZoneName":"Africa/Dar_es_Salaam","timeZoneOffsetNameWithoutDst":"East Africa Time","population":15009,"modificationDate":"2018-12-04"}, -{"geonameId":"1608541","name":"Nakhon Luang","countryName":"Thailand","timeZoneName":"Asia/Bangkok","timeZoneOffsetNameWithoutDst":"Indochina Time","population":15008,"modificationDate":"2012-01-16"}, -{"geonameId":"2787662","name":"Rotselaar","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":15007,"modificationDate":"2011-02-17"}, -{"geonameId":"3128382","name":"Béjar","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15007,"modificationDate":"2012-03-04"}, -{"geonameId":"1253785","name":"Ūn","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15007,"modificationDate":"2015-04-08"}, -{"geonameId":"1262988","name":"Misrikh","countryName":"India","timeZoneName":"Asia/Kolkata","timeZoneOffsetNameWithoutDst":"India Time","population":15007,"modificationDate":"2018-12-04"}, -{"geonameId":"2520413","name":"Campo de Criptana","countryName":"Spain","timeZoneName":"Europe/Madrid","timeZoneOffsetNameWithoutDst":"Central European Time","population":15006,"modificationDate":"2012-03-04"}, -{"geonameId":"734883","name":"Oraiókastro","countryName":"Greece","timeZoneName":"Europe/Athens","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":15006,"modificationDate":"2017-12-14"}, -{"geonameId":"3096525","name":"Kartuzy","countryName":"Poland","timeZoneName":"Europe/Warsaw","timeZoneOffsetNameWithoutDst":"Central European Time","population":15002,"modificationDate":"2010-09-13"}, -{"geonameId":"2262582","name":"Torres Novas","countryName":"Portugal","timeZoneName":"Europe/Lisbon","timeZoneOffsetNameWithoutDst":"Western European Time","population":15002,"modificationDate":"2019-02-18"}, -{"geonameId":"5520552","name":"Dumas","countryName":"United States","timeZoneName":"America/Chicago","timeZoneOffsetNameWithoutDst":"Central Time","population":15001,"modificationDate":"2017-03-09"}, -{"geonameId":"3421319","name":"Nuuk","countryName":"Greenland","timeZoneName":"America/Godthab","timeZoneOffsetNameWithoutDst":"West Greenland Time","population":14798,"modificationDate":"2020-05-28"}, -{"geonameId":"3582672","name":"Belmopan","countryName":"Belize","timeZoneName":"America/Belize","timeZoneOffsetNameWithoutDst":"Central Time","population":13381,"modificationDate":"2019-09-05"}, -{"geonameId":"4035715","name":"Avarua","countryName":"Cook Islands","timeZoneName":"Pacific/Rarotonga","timeZoneOffsetNameWithoutDst":"Cook Islands Time","population":13373,"modificationDate":"2019-09-05"}, -{"geonameId":"2611396","name":"Tórshavn","countryName":"Faroe Islands","timeZoneName":"Atlantic/Faroe","timeZoneOffsetNameWithoutDst":"Western European Time","population":13200,"modificationDate":"2019-09-05"}, -{"geonameId":"3575551","name":"Basseterre","countryName":"Saint Kitts and Nevis","timeZoneName":"America/St_Kitts","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":12920,"modificationDate":"2019-09-05"}, -{"geonameId":"5881576","name":"Pago Pago","countryName":"American Samoa","timeZoneName":"Pacific/Pago_Pago","timeZoneOffsetNameWithoutDst":"Samoa Time","population":11500,"modificationDate":"2019-09-05"}, -{"geonameId":"3579732","name":"Basse-Terre","countryName":"Guadeloupe","timeZoneName":"America/Guadeloupe","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":11472,"modificationDate":"2019-09-05"}, -{"geonameId":"3041732","name":"Mariehamn","countryName":"Aland Islands","timeZoneName":"Europe/Mariehamn","timeZoneOffsetNameWithoutDst":"Eastern European Time","population":10682,"modificationDate":"2018-08-17"}, -{"geonameId":"3577430","name":"Road Town","countryName":"British Virgin Islands","timeZoneName":"America/Tortola","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":8449,"modificationDate":"2019-09-05"}, -{"geonameId":"3579925","name":"Saint George's","countryName":"Grenada","timeZoneName":"America/Grenada","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":7500,"modificationDate":"2017-05-24"}, -{"geonameId":"2562305","name":"Valletta","countryName":"Malta","timeZoneName":"Europe/Malta","timeZoneOffsetNameWithoutDst":"Central European Time","population":6794,"modificationDate":"2019-10-29"}, -{"geonameId":"3424934","name":"Saint-Pierre","countryName":"Saint Pierre and Miquelon","timeZoneName":"America/Miquelon","timeZoneOffsetNameWithoutDst":"St. Pierre & Miquelon Time","population":6200,"modificationDate":"2013-12-22"}, -{"geonameId":"3579132","name":"Gustavia","countryName":"Saint Barthelemy","timeZoneName":"America/St_Barthelemy","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":5988,"modificationDate":"2019-09-05"}, -{"geonameId":"3578851","name":"Marigot","countryName":"Saint Martin","timeZoneName":"America/Marigot","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":5700,"modificationDate":"2019-09-05"}, -{"geonameId":"3042030","name":"Vaduz","countryName":"Liechtenstein","timeZoneName":"Europe/Vaduz","timeZoneOffsetNameWithoutDst":"Central European Time","population":5197,"modificationDate":"2013-04-02"}, -{"geonameId":"935048","name":"Lobamba","countryName":"Eswatini","timeZoneName":"Africa/Mbabane","timeZoneOffsetNameWithoutDst":"South Africa Time","population":4557,"modificationDate":"2019-09-05"}, -{"geonameId":"3168070","name":"San Marino","countryName":"San Marino","timeZoneName":"Europe/San_Marino","timeZoneOffsetNameWithoutDst":"Central European Time","population":4500,"modificationDate":"2019-09-05"}, -{"geonameId":"2110394","name":"Funafuti","countryName":"Tuvalu","timeZoneName":"Pacific/Funafuti","timeZoneOffsetNameWithoutDst":"Tuvalu Time","population":4492,"modificationDate":"2018-08-17"}, -{"geonameId":"3576994","name":"Cockburn Town","countryName":"Turks and Caicos Islands","timeZoneName":"America/Grand_Turk","timeZoneOffsetNameWithoutDst":"Eastern Time","population":3720,"modificationDate":"2019-09-05"}, -{"geonameId":"3513563","name":"Kralendijk","countryName":"Bonaire, Saint Eustatius and Saba ","timeZoneName":"America/Kralendijk","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":3081,"modificationDate":"2019-09-05"}, -{"geonameId":"4997238","name":"Iron River","countryName":"United States","timeZoneName":"America/Menominee","timeZoneOffsetNameWithoutDst":"Central Time","population":2904,"modificationDate":"2017-05-23"}, -{"geonameId":"3426691","name":"Stanley","countryName":"Falkland Islands","timeZoneName":"Atlantic/Stanley","timeZoneOffsetNameWithoutDst":"Falkland Islands Time","population":2213,"modificationDate":"2019-09-05"}, -{"geonameId":"2729907","name":"Longyearbyen","countryName":"Svalbard and Jan Mayen","timeZoneName":"Arctic/Longyearbyen","timeZoneOffsetNameWithoutDst":"Central European Time","population":2060,"modificationDate":"2019-12-20"}, -{"geonameId":"3573374","name":"The Valley","countryName":"Anguilla","timeZoneName":"America/Anguilla","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":2035,"modificationDate":"2019-09-05"}, -{"geonameId":"3513392","name":"Philipsburg","countryName":"Sint Maarten","timeZoneName":"America/Lower_Princes","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":1400,"modificationDate":"2019-09-05"}, -{"geonameId":"4034821","name":"Mata-Utu","countryName":"Wallis and Futuna","timeZoneName":"Pacific/Wallis","timeZoneOffsetNameWithoutDst":"Wallis & Futuna Time","population":1200,"modificationDate":"2019-09-05"}, -{"geonameId":"7626461","name":"Yaren","countryName":"Nauru","timeZoneName":"Pacific/Nauru","timeZoneOffsetNameWithoutDst":"Nauru Time","population":1100,"modificationDate":"2016-10-03"}, -{"geonameId":"4044012","name":"Hagåtña","countryName":"Guam","timeZoneName":"Pacific/Guam","timeZoneOffsetNameWithoutDst":"Chamorro Time","population":1051,"modificationDate":"2011-10-19"}, -{"geonameId":"7266440","name":"Brades","countryName":"Montserrat","timeZoneName":"America/Montserrat","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":1000,"modificationDate":"2013-08-17"}, -{"geonameId":"3573197","name":"Hamilton","countryName":"Bermuda","timeZoneName":"Atlantic/Bermuda","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":902,"modificationDate":"2019-09-05"}, -{"geonameId":"2161314","name":"Kingston","countryName":"Norfolk Island","timeZoneName":"Pacific/Norfolk","timeZoneOffsetNameWithoutDst":"Norfolk Island Time","population":880,"modificationDate":"2014-08-18"}, -{"geonameId":"6691831","name":"Vatican City","countryName":"Vatican","timeZoneName":"Europe/Vatican","timeZoneOffsetNameWithoutDst":"Central European Time","population":829,"modificationDate":"2018-08-17"}, -{"geonameId":"3370903","name":"Jamestown","countryName":"Saint Helena","timeZoneName":"Atlantic/St_Helena","timeZoneOffsetNameWithoutDst":"Greenwich Mean Time","population":637,"modificationDate":"2019-09-05"}, -{"geonameId":"4036284","name":"Alofi","countryName":"Niue","timeZoneName":"Pacific/Niue","timeZoneOffsetNameWithoutDst":"Niue Time","population":624,"modificationDate":"2016-06-28"}, -{"geonameId":"2078127","name":"Flying Fish Cove","countryName":"Christmas Island","timeZoneName":"Indian/Christmas","timeZoneOffsetNameWithoutDst":"Christmas Island Time","population":500,"modificationDate":"2019-09-05"}, -{"geonameId":"7304591","name":"West Island","countryName":"Cocos Islands","timeZoneName":"Indian/Cocos","timeZoneOffsetNameWithoutDst":"Cocos Islands Time","population":120,"modificationDate":"2018-08-17"}, -{"geonameId":"4030723","name":"Adamstown","countryName":"Pitcairn","timeZoneName":"Pacific/Pitcairn","timeZoneOffsetNameWithoutDst":"Pitcairn Time","population":46,"modificationDate":"2010-07-21"}, -{"geonameId":"1546102","name":"Port-aux-Français","countryName":"French Southern Territories","timeZoneName":"Indian/Kerguelen","timeZoneOffsetNameWithoutDst":"French Southern & Antarctic Time","population":45,"modificationDate":"2018-08-17"}, -{"geonameId":"3426466","name":"Grytviken","countryName":"South Georgia and the South Sandwich Islands","timeZoneName":"Atlantic/South_Georgia","timeZoneOffsetNameWithoutDst":"South Georgia Time","population":2,"modificationDate":"2018-07-15"}, -{"geonameId":"2800461","name":"Chasse Royale","countryName":"Belgium","timeZoneName":"Europe/Brussels","timeZoneOffsetNameWithoutDst":"Central European Time","population":0,"modificationDate":"2017-03-25"}, -{"geonameId":"6693804","name":"Cambebba","countryName":"Brazil","timeZoneName":"America/Fortaleza","timeZoneOffsetNameWithoutDst":"Brasilia Time","population":0,"modificationDate":"2012-08-03"}, -{"geonameId":"7302786","name":"Haselbachtal","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":0,"modificationDate":"2015-09-05"}, -{"geonameId":"8378906","name":"Burg Unter-Falkenstein","countryName":"Germany","timeZoneName":"Europe/Berlin","timeZoneOffsetNameWithoutDst":"Central European Time","population":0,"modificationDate":"2012-08-24"}, -{"geonameId":"2081986","name":"Palikir - National Government Center","countryName":"Micronesia","timeZoneName":"Pacific/Pohnpei","timeZoneOffsetNameWithoutDst":"Ponape Time","population":0,"modificationDate":"2015-06-03"}, -{"geonameId":"4043547","name":"Guam Government House","countryName":"Guam","timeZoneName":"Pacific/Guam","timeZoneOffsetNameWithoutDst":"Chamorro Time","population":0,"modificationDate":"2011-07-01"}, -{"geonameId":"12032166","name":"bishopric of Perugia","countryName":"Italy","timeZoneName":"Europe/Rome","timeZoneOffsetNameWithoutDst":"Central European Time","population":0,"modificationDate":"2019-03-03"}, -{"geonameId":"7874852","name":"RMI Capitol","countryName":"Marshall Islands","timeZoneName":"Pacific/Majuro","timeZoneOffsetNameWithoutDst":"Marshall Islands Time","population":0,"modificationDate":"2011-07-11"}, -{"geonameId":"3578069","name":"Plymouth","countryName":"Montserrat","timeZoneName":"America/Montserrat","timeZoneOffsetNameWithoutDst":"Atlantic Time","population":0,"modificationDate":"2019-09-05"}, -{"geonameId":"11903546","name":"Linton Military Camp","countryName":"New Zealand","timeZoneName":"Pacific/Auckland","timeZoneOffsetNameWithoutDst":"New Zealand Time","population":0,"modificationDate":"2018-07-25"}, -{"geonameId":"8063361","name":"Ngerulmud","countryName":"Palau","timeZoneName":"Pacific/Palau","timeZoneOffsetNameWithoutDst":"Palau Time","population":0,"modificationDate":"2018-08-17"}, -{"geonameId":"11205175","name":"Riverlea","countryName":"South Africa","timeZoneName":"Africa/Johannesburg","timeZoneOffsetNameWithoutDst":"South Africa Time","population":0,"modificationDate":"2016-07-28"}] \ No newline at end of file diff --git a/index.js b/index.js index efe2a59c..370bb08d 100644 --- a/index.js +++ b/index.js @@ -7,7 +7,7 @@ import got from "got"; import algoliasearch from "algoliasearch"; import dotenv from "dotenv"; import { DateTime } from "luxon"; -import { chunk, orderBy } from "lodash"; +import { chunk, orderBy, uniq } from "lodash"; import pEachSeries from "p-each-series"; dotenv.config(); @@ -50,9 +50,8 @@ async function run() { delimiter: "\t", }), ); - const cities = []; const updatedCities = []; - const citiesPopulation = {}; + const timeZoneCities = {}; for await (const cityFields of citiesParser) { // http://download.geonames.org/export/dump/readme.txt geoname section has 19 fields @@ -68,9 +67,17 @@ async function run() { const name = cityFields[1]; const population = parseInt(cityFields[14], 10); const countryCode = cityFields[8]; - const alternateCityNames = cityFields[3].split(","); const timeZoneName = cityFields[17]; + timeZoneCities[countryCode] = timeZoneCities[countryCode] || {}; + timeZoneCities[countryCode][timeZoneName] = + timeZoneCities[countryCode][timeZoneName] || []; + + timeZoneCities[countryCode][timeZoneName].push({ + name, + population, + timeZoneName, + }); const tz = DateTime.fromObject({ zone: timeZoneName, @@ -79,7 +86,7 @@ async function run() { locale: "en-US", }); - const timeZoneOffsetNameWithoutDst = tz + const alternativeTimeZoneName = tz .toFormat(`ZZZZZ`) .replace(/Standard Time/g, "Time") .replace(/Daylight Time/g, "Time"); @@ -89,18 +96,11 @@ async function run() { name, countryName: countries[cityFields[8]], timeZoneName, - timeZoneOffsetNameWithoutDst, + alternativeTimeZoneName, population, modificationDate, }; - cities.push(city); - citiesPopulation[`${countryCode}${name}`] = population; - - for (let alternateCityName of alternateCityNames) { - citiesPopulation[`${countryCode}${alternateCityName}`] = population; - } - if (modificationDate > lastIndexUpdate) { updatedCities.push({ objectID: city.geonameId, @@ -109,14 +109,6 @@ async function run() { } } - fs.writeFileSync( - path.join(__dirname, "cities-with-time-zones.json"), - JSON.stringify(orderBy(cities, "population", "desc")).replace( - /},/g, - "},\n", - ), - ); - // Time zones const rawTimeZones = []; @@ -145,11 +137,8 @@ async function run() { rawTimeZones.push(timeZoneName); - const cityName = timeZoneName.split("/").pop().replace(/_/g, " "); const countryCode = timeZoneFields[0]; - const population = citiesPopulation[`${countryCode}${cityName}`] || 0; - const gmtOffset = timeZoneFields[2]; const dstOffset = timeZoneFields[3]; const rawOffset = timeZoneFields[4]; @@ -164,23 +153,37 @@ async function run() { countryStats[countryCode][offsetKey] = []; } - countryStats[countryCode][offsetKey].push({ - timeZoneName, - cityName, - population, - }); + if (timeZoneCities?.[countryCode]?.[timeZoneName] !== undefined) { + countryStats[countryCode][offsetKey].push( + ...timeZoneCities[countryCode][timeZoneName], + ); + } else { + countryStats[countryCode][offsetKey].push({ + name: timeZoneName.split("/").pop().replace(/_/g, " "), + population: 10000, + timeZoneName, + }); + } } const simplifiedTimeZones = []; for (let [, countryTimeZones] of Object.entries(countryStats)) { - for (let [, offsetCities] of Object.entries(countryTimeZones)) { - const cities = orderBy(offsetCities, "population", "desc").slice(0, 2); - const group = offsetCities.map(({ timeZoneName }) => { - return timeZoneName; + for (let [, timeZoneWithCities] of Object.entries(countryTimeZones)) { + const orderedCities = orderBy(timeZoneWithCities, "population", "desc"); + + const mainCitiesObject = orderedCities.slice(0, 2); + const mainCities = mainCitiesObject.map(({ name }) => { + return name; }); - const { timeZoneName, cityName } = cities[0]; + const group = uniq( + timeZoneWithCities.map(({ timeZoneName }) => { + return timeZoneName; + }), + ); + + const { timeZoneName, name: mainCityName } = mainCitiesObject[0]; const tz = DateTime.fromObject({ locale: "en-US", @@ -189,25 +192,27 @@ async function run() { month: 1, }); - const importantCities = cities - .map(({ cityName }) => { - return cityName; - }) - .join(", "); + const alternativeTimeZoneName = tz + .toFormat(`ZZZZZ`) + .replace(/Standard Time/g, "Time") + .replace(/Daylight Time/g, "Time"); const formatted = tz - .toFormat(`ZZ ZZZZZ - '${importantCities}'`) + .toFormat( + `ZZ '${alternativeTimeZoneName}' - '${mainCities.join(", ")}'`, + ) .replace(/Standard Time/g, "Time") .replace(/Daylight Time/g, "Time"); simplifiedTimeZones.push({ - timeZoneName, + name: timeZoneName, + alternativeName: alternativeTimeZoneName, formatted, group, + mainCities, offset: tz.offset, - offsetNameShort: tz.offsetNameShort, offsetNameLong: tz.offsetNameLong, - cityName, + mainCityName, }); } } @@ -223,10 +228,12 @@ async function run() { orderBy(simplifiedTimeZones, [ "offset", "offsetNameLong", - "cityName", - ]).map(({ timeZoneName, formatted, group }) => { + "mainCityName", + ]).map(({ name, alternativeName, mainCities, formatted, group }) => { return { - timeZoneName, + name, + alternativeName, + mainCities, formatted, group, }; diff --git a/package.json b/package.json index a859a9cf..c3db5327 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,6 @@ "license": "MIT", "author": "Vincent Voyer ", "files": [ - "cities-with-time-zones.json", "time-zones-names.json", "simplified-time-zones.json", "LICENSE" diff --git a/simplified-time-zones.json b/simplified-time-zones.json index 06fd5a61..1e645646 100644 --- a/simplified-time-zones.json +++ b/simplified-time-zones.json @@ -1,317 +1,317 @@ -[{"timeZoneName":"Pacific/Niue","formatted":"-11:00 Niue Time - Niue","group":["Pacific/Niue"]}, -{"timeZoneName":"Pacific/Midway","formatted":"-11:00 Samoa Time - Midway","group":["Pacific/Midway"]}, -{"timeZoneName":"Pacific/Pago_Pago","formatted":"-11:00 Samoa Time - Pago Pago","group":["Pacific/Pago_Pago"]}, -{"timeZoneName":"Pacific/Rarotonga","formatted":"-10:00 Cook Islands Time - Rarotonga","group":["Pacific/Rarotonga"]}, -{"timeZoneName":"America/Adak","formatted":"-10:00 Hawaii-Aleutian Time - Adak","group":["America/Adak"]}, -{"timeZoneName":"Pacific/Honolulu","formatted":"-10:00 Hawaii-Aleutian Time - Honolulu","group":["Pacific/Honolulu"]}, -{"timeZoneName":"Pacific/Tahiti","formatted":"-10:00 Tahiti Time - Tahiti","group":["Pacific/Tahiti"]}, -{"timeZoneName":"Pacific/Marquesas","formatted":"-09:30 Marquesas Time - Marquesas","group":["Pacific/Marquesas"]}, -{"timeZoneName":"America/Anchorage","formatted":"-09:00 Alaska Time - Anchorage, Juneau","group":["America/Anchorage","America/Juneau","America/Metlakatla","America/Nome","America/Sitka","America/Yakutat"]}, -{"timeZoneName":"Pacific/Gambier","formatted":"-09:00 Gambier Time - Gambier","group":["Pacific/Gambier"]}, -{"timeZoneName":"America/Los_Angeles","formatted":"-08:00 Pacific Time - Los Angeles","group":["America/Los_Angeles"]}, -{"timeZoneName":"America/Tijuana","formatted":"-08:00 Pacific Time - Tijuana","group":["America/Tijuana"]}, -{"timeZoneName":"America/Vancouver","formatted":"-08:00 Pacific Time - Vancouver","group":["America/Vancouver"]}, -{"timeZoneName":"America/Whitehorse","formatted":"-08:00 Pacific Time - Whitehorse, Dawson","group":["America/Dawson","America/Whitehorse"]}, -{"timeZoneName":"Pacific/Pitcairn","formatted":"-08:00 Pitcairn Time - Pitcairn","group":["Pacific/Pitcairn"]}, -{"timeZoneName":"America/Chihuahua","formatted":"-07:00 Mexican Pacific Time - Chihuahua, Mazatlan","group":["America/Chihuahua","America/Mazatlan","America/Ojinaga"]}, -{"timeZoneName":"America/Hermosillo","formatted":"-07:00 Mexican Pacific Time - Hermosillo","group":["America/Hermosillo"]}, -{"timeZoneName":"America/Creston","formatted":"-07:00 Mountain Time - Creston, Dawson Creek","group":["America/Creston","America/Dawson_Creek","America/Fort_Nelson"]}, -{"timeZoneName":"America/Denver","formatted":"-07:00 Mountain Time - Denver, Boise","group":["America/Boise","America/Denver"]}, -{"timeZoneName":"America/Edmonton","formatted":"-07:00 Mountain Time - Edmonton, Yellowknife","group":["America/Cambridge_Bay","America/Edmonton","America/Inuvik","America/Yellowknife"]}, -{"timeZoneName":"America/Phoenix","formatted":"-07:00 Mountain Time - Phoenix","group":["America/Phoenix"]}, -{"timeZoneName":"America/Belize","formatted":"-06:00 Central Time - Belize","group":["America/Belize"]}, -{"timeZoneName":"America/Chicago","formatted":"-06:00 Central Time - Chicago, Center","group":["America/Chicago","America/Indiana/Knox","America/Indiana/Tell_City","America/Menominee","America/North_Dakota/Beulah","America/North_Dakota/Center","America/North_Dakota/New_Salem"]}, -{"timeZoneName":"America/Costa_Rica","formatted":"-06:00 Central Time - Costa Rica","group":["America/Costa_Rica"]}, -{"timeZoneName":"America/El_Salvador","formatted":"-06:00 Central Time - El Salvador","group":["America/El_Salvador"]}, -{"timeZoneName":"America/Guatemala","formatted":"-06:00 Central Time - Guatemala","group":["America/Guatemala"]}, -{"timeZoneName":"America/Managua","formatted":"-06:00 Central Time - Managua","group":["America/Managua"]}, -{"timeZoneName":"America/Mexico_City","formatted":"-06:00 Central Time - Mexico City, Monterrey","group":["America/Bahia_Banderas","America/Matamoros","America/Merida","America/Mexico_City","America/Monterrey"]}, -{"timeZoneName":"America/Regina","formatted":"-06:00 Central Time - Regina, Swift Current","group":["America/Regina","America/Swift_Current"]}, -{"timeZoneName":"America/Tegucigalpa","formatted":"-06:00 Central Time - Tegucigalpa","group":["America/Tegucigalpa"]}, -{"timeZoneName":"America/Winnipeg","formatted":"-06:00 Central Time - Winnipeg, Rainy River","group":["America/Rainy_River","America/Rankin_Inlet","America/Resolute","America/Winnipeg"]}, -{"timeZoneName":"Pacific/Galapagos","formatted":"-06:00 Galapagos Time - Galapagos","group":["Pacific/Galapagos"]}, -{"timeZoneName":"America/Rio_Branco","formatted":"-05:00 Acre Time - Rio Branco, Eirunepe","group":["America/Eirunepe","America/Rio_Branco"]}, -{"timeZoneName":"America/Bogota","formatted":"-05:00 Colombia Time - Bogota","group":["America/Bogota"]}, -{"timeZoneName":"America/Havana","formatted":"-05:00 Cuba Time - Havana","group":["America/Havana"]}, -{"timeZoneName":"Pacific/Easter","formatted":"-05:00 Easter Island Summer Time - Easter","group":["Pacific/Easter"]}, -{"timeZoneName":"America/Atikokan","formatted":"-05:00 Eastern Time - Atikokan","group":["America/Atikokan"]}, -{"timeZoneName":"America/Cancun","formatted":"-05:00 Eastern Time - Cancun","group":["America/Cancun"]}, -{"timeZoneName":"America/Cayman","formatted":"-05:00 Eastern Time - Cayman","group":["America/Cayman"]}, -{"timeZoneName":"America/Grand_Turk","formatted":"-05:00 Eastern Time - Grand Turk","group":["America/Grand_Turk"]}, -{"timeZoneName":"America/Jamaica","formatted":"-05:00 Eastern Time - Jamaica","group":["America/Jamaica"]}, -{"timeZoneName":"America/Nassau","formatted":"-05:00 Eastern Time - Nassau","group":["America/Nassau"]}, -{"timeZoneName":"America/New_York","formatted":"-05:00 Eastern Time - New York, Indianapolis","group":["America/Detroit","America/Indiana/Indianapolis","America/Indiana/Marengo","America/Indiana/Petersburg","America/Indiana/Vevay","America/Indiana/Vincennes","America/Indiana/Winamac","America/Kentucky/Louisville","America/Kentucky/Monticello","America/New_York"]}, -{"timeZoneName":"America/Panama","formatted":"-05:00 Eastern Time - Panama","group":["America/Panama"]}, -{"timeZoneName":"America/Port-au-Prince","formatted":"-05:00 Eastern Time - Port-au-Prince","group":["America/Port-au-Prince"]}, -{"timeZoneName":"America/Toronto","formatted":"-05:00 Eastern Time - Toronto, Thunder Bay","group":["America/Iqaluit","America/Nipigon","America/Pangnirtung","America/Thunder_Bay","America/Toronto"]}, -{"timeZoneName":"America/Guayaquil","formatted":"-05:00 Ecuador Time - Guayaquil","group":["America/Guayaquil"]}, -{"timeZoneName":"America/Lima","formatted":"-05:00 Peru Time - Lima","group":["America/Lima"]}, -{"timeZoneName":"America/Manaus","formatted":"-04:00 Amazon Time - Manaus, Campo Grande","group":["America/Boa_Vista","America/Campo_Grande","America/Cuiaba","America/Manaus","America/Porto_Velho"]}, -{"timeZoneName":"America/Anguilla","formatted":"-04:00 Atlantic Time - Anguilla","group":["America/Anguilla"]}, -{"timeZoneName":"America/Antigua","formatted":"-04:00 Atlantic Time - Antigua","group":["America/Antigua"]}, -{"timeZoneName":"America/Aruba","formatted":"-04:00 Atlantic Time - Aruba","group":["America/Aruba"]}, -{"timeZoneName":"America/Barbados","formatted":"-04:00 Atlantic Time - Barbados","group":["America/Barbados"]}, -{"timeZoneName":"Atlantic/Bermuda","formatted":"-04:00 Atlantic Time - Bermuda","group":["Atlantic/Bermuda"]}, -{"timeZoneName":"America/Blanc-Sablon","formatted":"-04:00 Atlantic Time - Blanc-Sablon","group":["America/Blanc-Sablon"]}, -{"timeZoneName":"America/Curacao","formatted":"-04:00 Atlantic Time - Curacao","group":["America/Curacao"]}, -{"timeZoneName":"America/Dominica","formatted":"-04:00 Atlantic Time - Dominica","group":["America/Dominica"]}, -{"timeZoneName":"America/Grenada","formatted":"-04:00 Atlantic Time - Grenada","group":["America/Grenada"]}, -{"timeZoneName":"America/Guadeloupe","formatted":"-04:00 Atlantic Time - Guadeloupe","group":["America/Guadeloupe"]}, -{"timeZoneName":"America/Halifax","formatted":"-04:00 Atlantic Time - Halifax, Moncton","group":["America/Glace_Bay","America/Goose_Bay","America/Halifax","America/Moncton"]}, -{"timeZoneName":"America/Kralendijk","formatted":"-04:00 Atlantic Time - Kralendijk","group":["America/Kralendijk"]}, -{"timeZoneName":"America/Lower_Princes","formatted":"-04:00 Atlantic Time - Lower Princes","group":["America/Lower_Princes"]}, -{"timeZoneName":"America/Marigot","formatted":"-04:00 Atlantic Time - Marigot","group":["America/Marigot"]}, -{"timeZoneName":"America/Martinique","formatted":"-04:00 Atlantic Time - Martinique","group":["America/Martinique"]}, -{"timeZoneName":"America/Montserrat","formatted":"-04:00 Atlantic Time - Montserrat","group":["America/Montserrat"]}, -{"timeZoneName":"America/Port_of_Spain","formatted":"-04:00 Atlantic Time - Port of Spain","group":["America/Port_of_Spain"]}, -{"timeZoneName":"America/Puerto_Rico","formatted":"-04:00 Atlantic Time - Puerto Rico","group":["America/Puerto_Rico"]}, -{"timeZoneName":"America/Santo_Domingo","formatted":"-04:00 Atlantic Time - Santo Domingo","group":["America/Santo_Domingo"]}, -{"timeZoneName":"America/St_Barthelemy","formatted":"-04:00 Atlantic Time - St Barthelemy","group":["America/St_Barthelemy"]}, -{"timeZoneName":"America/St_Kitts","formatted":"-04:00 Atlantic Time - St Kitts","group":["America/St_Kitts"]}, -{"timeZoneName":"America/St_Lucia","formatted":"-04:00 Atlantic Time - St Lucia","group":["America/St_Lucia"]}, -{"timeZoneName":"America/St_Thomas","formatted":"-04:00 Atlantic Time - St Thomas","group":["America/St_Thomas"]}, -{"timeZoneName":"America/St_Vincent","formatted":"-04:00 Atlantic Time - St Vincent","group":["America/St_Vincent"]}, -{"timeZoneName":"America/Thule","formatted":"-04:00 Atlantic Time - Thule","group":["America/Thule"]}, -{"timeZoneName":"America/Tortola","formatted":"-04:00 Atlantic Time - Tortola","group":["America/Tortola"]}, -{"timeZoneName":"America/La_Paz","formatted":"-04:00 Bolivia Time - La Paz","group":["America/La_Paz"]}, -{"timeZoneName":"America/Guyana","formatted":"-04:00 Guyana Time - Guyana","group":["America/Guyana"]}, -{"timeZoneName":"America/Caracas","formatted":"-04:00 Venezuela Time - Caracas","group":["America/Caracas"]}, -{"timeZoneName":"America/St_Johns","formatted":"-03:30 Newfoundland Time - St Johns","group":["America/St_Johns"]}, -{"timeZoneName":"America/Argentina/Buenos_Aires","formatted":"-03:00 Argentina Time - Buenos Aires, Cordoba","group":["America/Argentina/Buenos_Aires","America/Argentina/Catamarca","America/Argentina/Cordoba","America/Argentina/Jujuy","America/Argentina/La_Rioja","America/Argentina/Mendoza","America/Argentina/Rio_Gallegos","America/Argentina/Salta","America/Argentina/San_Juan","America/Argentina/San_Luis","America/Argentina/Tucuman","America/Argentina/Ushuaia"]}, -{"timeZoneName":"America/Sao_Paulo","formatted":"-03:00 Brasilia Time - Sao Paulo, Bahia","group":["America/Araguaina","America/Bahia","America/Belem","America/Fortaleza","America/Maceio","America/Recife","America/Santarem","America/Sao_Paulo"]}, -{"timeZoneName":"America/Santiago","formatted":"-03:00 Chile Summer Time - Santiago","group":["America/Santiago"]}, -{"timeZoneName":"Atlantic/Stanley","formatted":"-03:00 Falkland Islands Time - Stanley","group":["Atlantic/Stanley"]}, -{"timeZoneName":"America/Cayenne","formatted":"-03:00 French Guiana Time - Cayenne","group":["America/Cayenne"]}, -{"timeZoneName":"Antarctica/Palmer","formatted":"-03:00 GMT-03:00 - Palmer, Rothera","group":["Antarctica/Palmer","Antarctica/Rothera"]}, -{"timeZoneName":"America/Punta_Arenas","formatted":"-03:00 GMT-03:00 - Punta Arenas","group":["America/Punta_Arenas"]}, -{"timeZoneName":"America/Asuncion","formatted":"-03:00 Paraguay Summer Time - Asuncion","group":["America/Asuncion"]}, -{"timeZoneName":"America/Miquelon","formatted":"-03:00 St. Pierre & Miquelon Time - Miquelon","group":["America/Miquelon"]}, -{"timeZoneName":"America/Paramaribo","formatted":"-03:00 Suriname Time - Paramaribo","group":["America/Paramaribo"]}, -{"timeZoneName":"America/Montevideo","formatted":"-03:00 Uruguay Time - Montevideo","group":["America/Montevideo"]}, -{"timeZoneName":"America/Godthab","formatted":"-03:00 West Greenland Time - Godthab","group":["America/Godthab"]}, -{"timeZoneName":"America/Noronha","formatted":"-02:00 Fernando de Noronha Time - Noronha","group":["America/Noronha"]}, -{"timeZoneName":"Atlantic/South_Georgia","formatted":"-02:00 South Georgia Time - South Georgia","group":["Atlantic/South_Georgia"]}, -{"timeZoneName":"Atlantic/Azores","formatted":"-01:00 Azores Time - Azores","group":["Atlantic/Azores"]}, -{"timeZoneName":"Atlantic/Cape_Verde","formatted":"-01:00 Cape Verde Time - Cape Verde","group":["Atlantic/Cape_Verde"]}, -{"timeZoneName":"America/Scoresbysund","formatted":"-01:00 East Greenland Time - Scoresbysund","group":["America/Scoresbysund"]}, -{"timeZoneName":"Africa/Abidjan","formatted":"+00:00 Greenwich Mean Time - Abidjan","group":["Africa/Abidjan"]}, -{"timeZoneName":"Africa/Accra","formatted":"+00:00 Greenwich Mean Time - Accra","group":["Africa/Accra"]}, -{"timeZoneName":"Africa/Bamako","formatted":"+00:00 Greenwich Mean Time - Bamako","group":["Africa/Bamako"]}, -{"timeZoneName":"Africa/Banjul","formatted":"+00:00 Greenwich Mean Time - Banjul","group":["Africa/Banjul"]}, -{"timeZoneName":"Africa/Bissau","formatted":"+00:00 Greenwich Mean Time - Bissau","group":["Africa/Bissau"]}, -{"timeZoneName":"Africa/Conakry","formatted":"+00:00 Greenwich Mean Time - Conakry","group":["Africa/Conakry"]}, -{"timeZoneName":"Africa/Dakar","formatted":"+00:00 Greenwich Mean Time - Dakar","group":["Africa/Dakar"]}, -{"timeZoneName":"America/Danmarkshavn","formatted":"+00:00 Greenwich Mean Time - Danmarkshavn","group":["America/Danmarkshavn"]}, -{"timeZoneName":"Europe/Dublin","formatted":"+00:00 Greenwich Mean Time - Dublin","group":["Europe/Dublin"]}, -{"timeZoneName":"Africa/Freetown","formatted":"+00:00 Greenwich Mean Time - Freetown","group":["Africa/Freetown"]}, -{"timeZoneName":"Europe/Guernsey","formatted":"+00:00 Greenwich Mean Time - Guernsey","group":["Europe/Guernsey"]}, -{"timeZoneName":"Europe/Isle_of_Man","formatted":"+00:00 Greenwich Mean Time - Isle of Man","group":["Europe/Isle_of_Man"]}, -{"timeZoneName":"Europe/Jersey","formatted":"+00:00 Greenwich Mean Time - Jersey","group":["Europe/Jersey"]}, -{"timeZoneName":"Africa/Lome","formatted":"+00:00 Greenwich Mean Time - Lome","group":["Africa/Lome"]}, -{"timeZoneName":"Europe/London","formatted":"+00:00 Greenwich Mean Time - London","group":["Europe/London"]}, -{"timeZoneName":"Africa/Monrovia","formatted":"+00:00 Greenwich Mean Time - Monrovia","group":["Africa/Monrovia"]}, -{"timeZoneName":"Africa/Nouakchott","formatted":"+00:00 Greenwich Mean Time - Nouakchott","group":["Africa/Nouakchott"]}, -{"timeZoneName":"Africa/Ouagadougou","formatted":"+00:00 Greenwich Mean Time - Ouagadougou","group":["Africa/Ouagadougou"]}, -{"timeZoneName":"Atlantic/Reykjavik","formatted":"+00:00 Greenwich Mean Time - Reykjavik","group":["Atlantic/Reykjavik"]}, -{"timeZoneName":"Africa/Sao_Tome","formatted":"+00:00 Greenwich Mean Time - Sao Tome","group":["Africa/Sao_Tome"]}, -{"timeZoneName":"Atlantic/St_Helena","formatted":"+00:00 Greenwich Mean Time - St Helena","group":["Atlantic/St_Helena"]}, -{"timeZoneName":"Antarctica/Troll","formatted":"+00:00 Greenwich Mean Time - Troll","group":["Antarctica/Troll"]}, -{"timeZoneName":"Atlantic/Canary","formatted":"+00:00 Western European Time - Canary","group":["Atlantic/Canary"]}, -{"timeZoneName":"Atlantic/Faroe","formatted":"+00:00 Western European Time - Faroe","group":["Atlantic/Faroe"]}, -{"timeZoneName":"Europe/Lisbon","formatted":"+00:00 Western European Time - Lisbon, Madeira","group":["Atlantic/Madeira","Europe/Lisbon"]}, -{"timeZoneName":"Africa/Algiers","formatted":"+01:00 Central European Time - Algiers","group":["Africa/Algiers"]}, -{"timeZoneName":"Europe/Amsterdam","formatted":"+01:00 Central European Time - Amsterdam","group":["Europe/Amsterdam"]}, -{"timeZoneName":"Europe/Andorra","formatted":"+01:00 Central European Time - Andorra","group":["Europe/Andorra"]}, -{"timeZoneName":"Europe/Belgrade","formatted":"+01:00 Central European Time - Belgrade","group":["Europe/Belgrade"]}, -{"timeZoneName":"Europe/Berlin","formatted":"+01:00 Central European Time - Berlin, Busingen","group":["Europe/Berlin","Europe/Busingen"]}, -{"timeZoneName":"Europe/Bratislava","formatted":"+01:00 Central European Time - Bratislava","group":["Europe/Bratislava"]}, -{"timeZoneName":"Europe/Brussels","formatted":"+01:00 Central European Time - Brussels","group":["Europe/Brussels"]}, -{"timeZoneName":"Europe/Budapest","formatted":"+01:00 Central European Time - Budapest","group":["Europe/Budapest"]}, -{"timeZoneName":"Europe/Copenhagen","formatted":"+01:00 Central European Time - Copenhagen","group":["Europe/Copenhagen"]}, -{"timeZoneName":"Europe/Gibraltar","formatted":"+01:00 Central European Time - Gibraltar","group":["Europe/Gibraltar"]}, -{"timeZoneName":"Europe/Ljubljana","formatted":"+01:00 Central European Time - Ljubljana","group":["Europe/Ljubljana"]}, -{"timeZoneName":"Arctic/Longyearbyen","formatted":"+01:00 Central European Time - Longyearbyen","group":["Arctic/Longyearbyen"]}, -{"timeZoneName":"Europe/Luxembourg","formatted":"+01:00 Central European Time - Luxembourg","group":["Europe/Luxembourg"]}, -{"timeZoneName":"Europe/Madrid","formatted":"+01:00 Central European Time - Madrid, Ceuta","group":["Africa/Ceuta","Europe/Madrid"]}, -{"timeZoneName":"Europe/Malta","formatted":"+01:00 Central European Time - Malta","group":["Europe/Malta"]}, -{"timeZoneName":"Europe/Monaco","formatted":"+01:00 Central European Time - Monaco","group":["Europe/Monaco"]}, -{"timeZoneName":"Europe/Oslo","formatted":"+01:00 Central European Time - Oslo","group":["Europe/Oslo"]}, -{"timeZoneName":"Europe/Paris","formatted":"+01:00 Central European Time - Paris","group":["Europe/Paris"]}, -{"timeZoneName":"Europe/Podgorica","formatted":"+01:00 Central European Time - Podgorica","group":["Europe/Podgorica"]}, -{"timeZoneName":"Europe/Prague","formatted":"+01:00 Central European Time - Prague","group":["Europe/Prague"]}, -{"timeZoneName":"Europe/Rome","formatted":"+01:00 Central European Time - Rome","group":["Europe/Rome"]}, -{"timeZoneName":"Europe/San_Marino","formatted":"+01:00 Central European Time - San Marino","group":["Europe/San_Marino"]}, -{"timeZoneName":"Europe/Sarajevo","formatted":"+01:00 Central European Time - Sarajevo","group":["Europe/Sarajevo"]}, -{"timeZoneName":"Europe/Skopje","formatted":"+01:00 Central European Time - Skopje","group":["Europe/Skopje"]}, -{"timeZoneName":"Europe/Stockholm","formatted":"+01:00 Central European Time - Stockholm","group":["Europe/Stockholm"]}, -{"timeZoneName":"Europe/Tirane","formatted":"+01:00 Central European Time - Tirane","group":["Europe/Tirane"]}, -{"timeZoneName":"Africa/Tunis","formatted":"+01:00 Central European Time - Tunis","group":["Africa/Tunis"]}, -{"timeZoneName":"Europe/Vaduz","formatted":"+01:00 Central European Time - Vaduz","group":["Europe/Vaduz"]}, -{"timeZoneName":"Europe/Vatican","formatted":"+01:00 Central European Time - Vatican","group":["Europe/Vatican"]}, -{"timeZoneName":"Europe/Vienna","formatted":"+01:00 Central European Time - Vienna","group":["Europe/Vienna"]}, -{"timeZoneName":"Europe/Warsaw","formatted":"+01:00 Central European Time - Warsaw","group":["Europe/Warsaw"]}, -{"timeZoneName":"Europe/Zagreb","formatted":"+01:00 Central European Time - Zagreb","group":["Europe/Zagreb"]}, -{"timeZoneName":"Europe/Zurich","formatted":"+01:00 Central European Time - Zurich","group":["Europe/Zurich"]}, -{"timeZoneName":"Africa/Casablanca","formatted":"+01:00 GMT+01:00 - Casablanca","group":["Africa/Casablanca"]}, -{"timeZoneName":"Africa/El_Aaiun","formatted":"+01:00 GMT+01:00 - El Aaiun","group":["Africa/El_Aaiun"]}, -{"timeZoneName":"Africa/Bangui","formatted":"+01:00 West Africa Time - Bangui","group":["Africa/Bangui"]}, -{"timeZoneName":"Africa/Brazzaville","formatted":"+01:00 West Africa Time - Brazzaville","group":["Africa/Brazzaville"]}, -{"timeZoneName":"Africa/Douala","formatted":"+01:00 West Africa Time - Douala","group":["Africa/Douala"]}, -{"timeZoneName":"Africa/Kinshasa","formatted":"+01:00 West Africa Time - Kinshasa","group":["Africa/Kinshasa"]}, -{"timeZoneName":"Africa/Lagos","formatted":"+01:00 West Africa Time - Lagos","group":["Africa/Lagos"]}, -{"timeZoneName":"Africa/Libreville","formatted":"+01:00 West Africa Time - Libreville","group":["Africa/Libreville"]}, -{"timeZoneName":"Africa/Luanda","formatted":"+01:00 West Africa Time - Luanda","group":["Africa/Luanda"]}, -{"timeZoneName":"Africa/Malabo","formatted":"+01:00 West Africa Time - Malabo","group":["Africa/Malabo"]}, -{"timeZoneName":"Africa/Ndjamena","formatted":"+01:00 West Africa Time - Ndjamena","group":["Africa/Ndjamena"]}, -{"timeZoneName":"Africa/Niamey","formatted":"+01:00 West Africa Time - Niamey","group":["Africa/Niamey"]}, -{"timeZoneName":"Africa/Porto-Novo","formatted":"+01:00 West Africa Time - Porto-Novo","group":["Africa/Porto-Novo"]}, -{"timeZoneName":"Africa/Blantyre","formatted":"+02:00 Central Africa Time - Blantyre","group":["Africa/Blantyre"]}, -{"timeZoneName":"Africa/Bujumbura","formatted":"+02:00 Central Africa Time - Bujumbura","group":["Africa/Bujumbura"]}, -{"timeZoneName":"Africa/Gaborone","formatted":"+02:00 Central Africa Time - Gaborone","group":["Africa/Gaborone"]}, -{"timeZoneName":"Africa/Harare","formatted":"+02:00 Central Africa Time - Harare","group":["Africa/Harare"]}, -{"timeZoneName":"Africa/Khartoum","formatted":"+02:00 Central Africa Time - Khartoum","group":["Africa/Khartoum"]}, -{"timeZoneName":"Africa/Kigali","formatted":"+02:00 Central Africa Time - Kigali","group":["Africa/Kigali"]}, -{"timeZoneName":"Africa/Lubumbashi","formatted":"+02:00 Central Africa Time - Lubumbashi","group":["Africa/Lubumbashi"]}, -{"timeZoneName":"Africa/Lusaka","formatted":"+02:00 Central Africa Time - Lusaka","group":["Africa/Lusaka"]}, -{"timeZoneName":"Africa/Maputo","formatted":"+02:00 Central Africa Time - Maputo","group":["Africa/Maputo"]}, -{"timeZoneName":"Africa/Windhoek","formatted":"+02:00 Central Africa Time - Windhoek","group":["Africa/Windhoek"]}, -{"timeZoneName":"Asia/Amman","formatted":"+02:00 Eastern European Time - Amman","group":["Asia/Amman"]}, -{"timeZoneName":"Europe/Athens","formatted":"+02:00 Eastern European Time - Athens","group":["Europe/Athens"]}, -{"timeZoneName":"Asia/Beirut","formatted":"+02:00 Eastern European Time - Beirut","group":["Asia/Beirut"]}, -{"timeZoneName":"Europe/Bucharest","formatted":"+02:00 Eastern European Time - Bucharest","group":["Europe/Bucharest"]}, -{"timeZoneName":"Africa/Cairo","formatted":"+02:00 Eastern European Time - Cairo","group":["Africa/Cairo"]}, -{"timeZoneName":"Europe/Chisinau","formatted":"+02:00 Eastern European Time - Chisinau","group":["Europe/Chisinau"]}, -{"timeZoneName":"Asia/Damascus","formatted":"+02:00 Eastern European Time - Damascus","group":["Asia/Damascus"]}, -{"timeZoneName":"Asia/Gaza","formatted":"+02:00 Eastern European Time - Gaza, Hebron","group":["Asia/Gaza","Asia/Hebron"]}, -{"timeZoneName":"Europe/Helsinki","formatted":"+02:00 Eastern European Time - Helsinki","group":["Europe/Helsinki"]}, -{"timeZoneName":"Europe/Kaliningrad","formatted":"+02:00 Eastern European Time - Kaliningrad","group":["Europe/Kaliningrad"]}, -{"timeZoneName":"Europe/Kiev","formatted":"+02:00 Eastern European Time - Kiev, Uzhgorod","group":["Europe/Kiev","Europe/Uzhgorod","Europe/Zaporozhye"]}, -{"timeZoneName":"Europe/Mariehamn","formatted":"+02:00 Eastern European Time - Mariehamn","group":["Europe/Mariehamn"]}, -{"timeZoneName":"Asia/Nicosia","formatted":"+02:00 Eastern European Time - Nicosia, Famagusta","group":["Asia/Famagusta","Asia/Nicosia"]}, -{"timeZoneName":"Europe/Riga","formatted":"+02:00 Eastern European Time - Riga","group":["Europe/Riga"]}, -{"timeZoneName":"Europe/Sofia","formatted":"+02:00 Eastern European Time - Sofia","group":["Europe/Sofia"]}, -{"timeZoneName":"Europe/Tallinn","formatted":"+02:00 Eastern European Time - Tallinn","group":["Europe/Tallinn"]}, -{"timeZoneName":"Africa/Tripoli","formatted":"+02:00 Eastern European Time - Tripoli","group":["Africa/Tripoli"]}, -{"timeZoneName":"Europe/Vilnius","formatted":"+02:00 Eastern European Time - Vilnius","group":["Europe/Vilnius"]}, -{"timeZoneName":"Asia/Jerusalem","formatted":"+02:00 Israel Time - Jerusalem","group":["Asia/Jerusalem"]}, -{"timeZoneName":"Africa/Johannesburg","formatted":"+02:00 South Africa Time - Johannesburg","group":["Africa/Johannesburg"]}, -{"timeZoneName":"Africa/Maseru","formatted":"+02:00 South Africa Time - Maseru","group":["Africa/Maseru"]}, -{"timeZoneName":"Africa/Mbabane","formatted":"+02:00 South Africa Time - Mbabane","group":["Africa/Mbabane"]}, -{"timeZoneName":"Asia/Aden","formatted":"+03:00 Arabian Time - Aden","group":["Asia/Aden"]}, -{"timeZoneName":"Asia/Baghdad","formatted":"+03:00 Arabian Time - Baghdad","group":["Asia/Baghdad"]}, -{"timeZoneName":"Asia/Bahrain","formatted":"+03:00 Arabian Time - Bahrain","group":["Asia/Bahrain"]}, -{"timeZoneName":"Asia/Kuwait","formatted":"+03:00 Arabian Time - Kuwait","group":["Asia/Kuwait"]}, -{"timeZoneName":"Asia/Qatar","formatted":"+03:00 Arabian Time - Qatar","group":["Asia/Qatar"]}, -{"timeZoneName":"Asia/Riyadh","formatted":"+03:00 Arabian Time - Riyadh","group":["Asia/Riyadh"]}, -{"timeZoneName":"Africa/Addis_Ababa","formatted":"+03:00 East Africa Time - Addis Ababa","group":["Africa/Addis_Ababa"]}, -{"timeZoneName":"Indian/Antananarivo","formatted":"+03:00 East Africa Time - Antananarivo","group":["Indian/Antananarivo"]}, -{"timeZoneName":"Africa/Asmara","formatted":"+03:00 East Africa Time - Asmara","group":["Africa/Asmara"]}, -{"timeZoneName":"Indian/Comoro","formatted":"+03:00 East Africa Time - Comoro","group":["Indian/Comoro"]}, -{"timeZoneName":"Africa/Dar_es_Salaam","formatted":"+03:00 East Africa Time - Dar es Salaam","group":["Africa/Dar_es_Salaam"]}, -{"timeZoneName":"Africa/Djibouti","formatted":"+03:00 East Africa Time - Djibouti","group":["Africa/Djibouti"]}, -{"timeZoneName":"Africa/Juba","formatted":"+03:00 East Africa Time - Juba","group":["Africa/Juba"]}, -{"timeZoneName":"Africa/Kampala","formatted":"+03:00 East Africa Time - Kampala","group":["Africa/Kampala"]}, -{"timeZoneName":"Indian/Mayotte","formatted":"+03:00 East Africa Time - Mayotte","group":["Indian/Mayotte"]}, -{"timeZoneName":"Africa/Mogadishu","formatted":"+03:00 East Africa Time - Mogadishu","group":["Africa/Mogadishu"]}, -{"timeZoneName":"Africa/Nairobi","formatted":"+03:00 East Africa Time - Nairobi","group":["Africa/Nairobi"]}, -{"timeZoneName":"Europe/Istanbul","formatted":"+03:00 GMT+03:00 - Istanbul","group":["Europe/Istanbul"]}, -{"timeZoneName":"Europe/Minsk","formatted":"+03:00 Moscow Time - Minsk","group":["Europe/Minsk"]}, -{"timeZoneName":"Europe/Moscow","formatted":"+03:00 Moscow Time - Moscow, Kirov","group":["Europe/Kirov","Europe/Moscow","Europe/Simferopol"]}, -{"timeZoneName":"Antarctica/Syowa","formatted":"+03:00 Syowa Time - Syowa","group":["Antarctica/Syowa"]}, -{"timeZoneName":"Asia/Tehran","formatted":"+03:30 Iran Time - Tehran","group":["Asia/Tehran"]}, -{"timeZoneName":"Asia/Yerevan","formatted":"+04:00 Armenia Time - Yerevan","group":["Asia/Yerevan"]}, -{"timeZoneName":"Asia/Baku","formatted":"+04:00 Azerbaijan Time - Baku","group":["Asia/Baku"]}, -{"timeZoneName":"Asia/Tbilisi","formatted":"+04:00 Georgia Time - Tbilisi","group":["Asia/Tbilisi"]}, -{"timeZoneName":"Asia/Dubai","formatted":"+04:00 Gulf Time - Dubai","group":["Asia/Dubai"]}, -{"timeZoneName":"Asia/Muscat","formatted":"+04:00 Gulf Time - Muscat","group":["Asia/Muscat"]}, -{"timeZoneName":"Indian/Mauritius","formatted":"+04:00 Mauritius Time - Mauritius","group":["Indian/Mauritius"]}, -{"timeZoneName":"Indian/Reunion","formatted":"+04:00 Réunion Time - Reunion","group":["Indian/Reunion"]}, -{"timeZoneName":"Europe/Samara","formatted":"+04:00 Samara Time - Samara, Volgograd","group":["Europe/Astrakhan","Europe/Samara","Europe/Saratov","Europe/Ulyanovsk","Europe/Volgograd"]}, -{"timeZoneName":"Indian/Mahe","formatted":"+04:00 Seychelles Time - Mahe","group":["Indian/Mahe"]}, -{"timeZoneName":"Asia/Kabul","formatted":"+04:30 Afghanistan Time - Kabul","group":["Asia/Kabul"]}, -{"timeZoneName":"Indian/Kerguelen","formatted":"+05:00 French Southern & Antarctic Time - Kerguelen","group":["Indian/Kerguelen"]}, -{"timeZoneName":"Indian/Maldives","formatted":"+05:00 Maldives Time - Maldives","group":["Indian/Maldives"]}, -{"timeZoneName":"Antarctica/Mawson","formatted":"+05:00 Mawson Time - Mawson","group":["Antarctica/Mawson"]}, -{"timeZoneName":"Asia/Karachi","formatted":"+05:00 Pakistan Time - Karachi","group":["Asia/Karachi"]}, -{"timeZoneName":"Asia/Dushanbe","formatted":"+05:00 Tajikistan Time - Dushanbe","group":["Asia/Dushanbe"]}, -{"timeZoneName":"Asia/Ashgabat","formatted":"+05:00 Turkmenistan Time - Ashgabat","group":["Asia/Ashgabat"]}, -{"timeZoneName":"Asia/Tashkent","formatted":"+05:00 Uzbekistan Time - Tashkent, Samarkand","group":["Asia/Samarkand","Asia/Tashkent"]}, -{"timeZoneName":"Asia/Qyzylorda","formatted":"+05:00 West Kazakhstan Time - Qyzylorda, Aqtobe","group":["Asia/Aqtau","Asia/Aqtobe","Asia/Atyrau","Asia/Oral","Asia/Qyzylorda"]}, -{"timeZoneName":"Asia/Yekaterinburg","formatted":"+05:00 Yekaterinburg Time - Yekaterinburg","group":["Asia/Yekaterinburg"]}, -{"timeZoneName":"Asia/Colombo","formatted":"+05:30 India Time - Colombo","group":["Asia/Colombo"]}, -{"timeZoneName":"Asia/Kolkata","formatted":"+05:30 India Time - Kolkata","group":["Asia/Kolkata"]}, -{"timeZoneName":"Asia/Kathmandu","formatted":"+05:45 Nepal Time - Kathmandu","group":["Asia/Kathmandu"]}, -{"timeZoneName":"Asia/Dhaka","formatted":"+06:00 Bangladesh Time - Dhaka","group":["Asia/Dhaka"]}, -{"timeZoneName":"Asia/Thimphu","formatted":"+06:00 Bhutan Time - Thimphu","group":["Asia/Thimphu"]}, -{"timeZoneName":"Asia/Almaty","formatted":"+06:00 East Kazakhstan Time - Almaty, Qostanay","group":["Asia/Almaty","Asia/Qostanay"]}, -{"timeZoneName":"Asia/Urumqi","formatted":"+06:00 GMT+06:00 - Urumqi","group":["Asia/Urumqi"]}, -{"timeZoneName":"Indian/Chagos","formatted":"+06:00 Indian Ocean Time - Chagos","group":["Indian/Chagos"]}, -{"timeZoneName":"Asia/Bishkek","formatted":"+06:00 Kyrgyzstan Time - Bishkek","group":["Asia/Bishkek"]}, -{"timeZoneName":"Asia/Omsk","formatted":"+06:00 Omsk Time - Omsk","group":["Asia/Omsk"]}, -{"timeZoneName":"Antarctica/Vostok","formatted":"+06:00 Vostok Time - Vostok","group":["Antarctica/Vostok"]}, -{"timeZoneName":"Indian/Cocos","formatted":"+06:30 Cocos Islands Time - Cocos","group":["Indian/Cocos"]}, -{"timeZoneName":"Asia/Yangon","formatted":"+06:30 Myanmar Time - Yangon","group":["Asia/Yangon"]}, -{"timeZoneName":"Indian/Christmas","formatted":"+07:00 Christmas Island Time - Christmas","group":["Indian/Christmas"]}, -{"timeZoneName":"Antarctica/Davis","formatted":"+07:00 Davis Time - Davis","group":["Antarctica/Davis"]}, -{"timeZoneName":"Asia/Hovd","formatted":"+07:00 Hovd Time - Hovd","group":["Asia/Hovd"]}, -{"timeZoneName":"Asia/Bangkok","formatted":"+07:00 Indochina Time - Bangkok","group":["Asia/Bangkok"]}, -{"timeZoneName":"Asia/Ho_Chi_Minh","formatted":"+07:00 Indochina Time - Ho Chi Minh","group":["Asia/Ho_Chi_Minh"]}, -{"timeZoneName":"Asia/Phnom_Penh","formatted":"+07:00 Indochina Time - Phnom Penh","group":["Asia/Phnom_Penh"]}, -{"timeZoneName":"Asia/Vientiane","formatted":"+07:00 Indochina Time - Vientiane","group":["Asia/Vientiane"]}, -{"timeZoneName":"Asia/Novosibirsk","formatted":"+07:00 Novosibirsk Time - Novosibirsk, Krasnoyarsk","group":["Asia/Barnaul","Asia/Krasnoyarsk","Asia/Novokuznetsk","Asia/Novosibirsk","Asia/Tomsk"]}, -{"timeZoneName":"Asia/Jakarta","formatted":"+07:00 Western Indonesia Time - Jakarta, Pontianak","group":["Asia/Jakarta","Asia/Pontianak"]}, -{"timeZoneName":"Antarctica/Casey","formatted":"+08:00 Australian Western Time - Casey","group":["Antarctica/Casey"]}, -{"timeZoneName":"Australia/Perth","formatted":"+08:00 Australian Western Time - Perth","group":["Australia/Perth"]}, -{"timeZoneName":"Asia/Brunei","formatted":"+08:00 Brunei Darussalam Time - Brunei","group":["Asia/Brunei"]}, -{"timeZoneName":"Asia/Makassar","formatted":"+08:00 Central Indonesia Time - Makassar","group":["Asia/Makassar"]}, -{"timeZoneName":"Asia/Macau","formatted":"+08:00 China Time - Macau","group":["Asia/Macau"]}, -{"timeZoneName":"Asia/Shanghai","formatted":"+08:00 China Time - Shanghai","group":["Asia/Shanghai"]}, -{"timeZoneName":"Asia/Hong_Kong","formatted":"+08:00 Hong Kong Time - Hong Kong","group":["Asia/Hong_Kong"]}, -{"timeZoneName":"Asia/Irkutsk","formatted":"+08:00 Irkutsk Time - Irkutsk","group":["Asia/Irkutsk"]}, -{"timeZoneName":"Asia/Kuala_Lumpur","formatted":"+08:00 Malaysia Time - Kuala Lumpur, Kuching","group":["Asia/Kuala_Lumpur","Asia/Kuching"]}, -{"timeZoneName":"Asia/Manila","formatted":"+08:00 Philippine Time - Manila","group":["Asia/Manila"]}, -{"timeZoneName":"Asia/Singapore","formatted":"+08:00 Singapore Time - Singapore","group":["Asia/Singapore"]}, -{"timeZoneName":"Asia/Taipei","formatted":"+08:00 Taipei Time - Taipei","group":["Asia/Taipei"]}, -{"timeZoneName":"Asia/Ulaanbaatar","formatted":"+08:00 Ulaanbaatar Time - Ulaanbaatar, Choibalsan","group":["Asia/Choibalsan","Asia/Ulaanbaatar"]}, -{"timeZoneName":"Australia/Eucla","formatted":"+08:45 Australian Central Western Time - Eucla","group":["Australia/Eucla"]}, -{"timeZoneName":"Asia/Dili","formatted":"+09:00 East Timor Time - Dili","group":["Asia/Dili"]}, -{"timeZoneName":"Asia/Jayapura","formatted":"+09:00 Eastern Indonesia Time - Jayapura","group":["Asia/Jayapura"]}, -{"timeZoneName":"Asia/Tokyo","formatted":"+09:00 Japan Time - Tokyo","group":["Asia/Tokyo"]}, -{"timeZoneName":"Asia/Pyongyang","formatted":"+09:00 Korean Time - Pyongyang","group":["Asia/Pyongyang"]}, -{"timeZoneName":"Asia/Seoul","formatted":"+09:00 Korean Time - Seoul","group":["Asia/Seoul"]}, -{"timeZoneName":"Pacific/Palau","formatted":"+09:00 Palau Time - Palau","group":["Pacific/Palau"]}, -{"timeZoneName":"Asia/Chita","formatted":"+09:00 Yakutsk Time - Chita, Yakutsk","group":["Asia/Chita","Asia/Khandyga","Asia/Yakutsk"]}, -{"timeZoneName":"Australia/Darwin","formatted":"+09:30 Australian Central Time - Darwin","group":["Australia/Darwin"]}, -{"timeZoneName":"Australia/Brisbane","formatted":"+10:00 Australian Eastern Time - Brisbane, Lindeman","group":["Australia/Brisbane","Australia/Lindeman"]}, -{"timeZoneName":"Pacific/Guam","formatted":"+10:00 Chamorro Time - Guam","group":["Pacific/Guam"]}, -{"timeZoneName":"Pacific/Saipan","formatted":"+10:00 Chamorro Time - Saipan","group":["Pacific/Saipan"]}, -{"timeZoneName":"Pacific/Chuuk","formatted":"+10:00 Chuuk Time - Chuuk","group":["Pacific/Chuuk"]}, -{"timeZoneName":"Antarctica/DumontDUrville","formatted":"+10:00 Dumont-d’Urville Time - DumontDUrville","group":["Antarctica/DumontDUrville"]}, -{"timeZoneName":"Pacific/Port_Moresby","formatted":"+10:00 Papua New Guinea Time - Port Moresby","group":["Pacific/Port_Moresby"]}, -{"timeZoneName":"Asia/Vladivostok","formatted":"+10:00 Vladivostok Time - Vladivostok, Ust-Nera","group":["Asia/Ust-Nera","Asia/Vladivostok"]}, -{"timeZoneName":"Australia/Adelaide","formatted":"+10:30 Australian Central Time - Adelaide, Broken Hill","group":["Australia/Adelaide","Australia/Broken_Hill"]}, -{"timeZoneName":"Australia/Sydney","formatted":"+11:00 Australian Eastern Time - Sydney, Melbourne","group":["Australia/Currie","Australia/Hobart","Australia/Melbourne","Australia/Sydney"]}, -{"timeZoneName":"Pacific/Bougainville","formatted":"+11:00 GMT+11:00 - Bougainville","group":["Pacific/Bougainville"]}, -{"timeZoneName":"Pacific/Kosrae","formatted":"+11:00 Kosrae Time - Kosrae, Pohnpei","group":["Pacific/Kosrae","Pacific/Pohnpei"]}, -{"timeZoneName":"Australia/Lord_Howe","formatted":"+11:00 Lord Howe Time - Lord Howe","group":["Australia/Lord_Howe"]}, -{"timeZoneName":"Antarctica/Macquarie","formatted":"+11:00 Macquarie Island Time - Macquarie","group":["Antarctica/Macquarie"]}, -{"timeZoneName":"Asia/Magadan","formatted":"+11:00 Magadan Time - Magadan, Sakhalin","group":["Asia/Magadan","Asia/Sakhalin","Asia/Srednekolymsk"]}, -{"timeZoneName":"Pacific/Noumea","formatted":"+11:00 New Caledonia Time - Noumea","group":["Pacific/Noumea"]}, -{"timeZoneName":"Pacific/Guadalcanal","formatted":"+11:00 Solomon Islands Time - Guadalcanal","group":["Pacific/Guadalcanal"]}, -{"timeZoneName":"Pacific/Efate","formatted":"+11:00 Vanuatu Time - Efate","group":["Pacific/Efate"]}, -{"timeZoneName":"Asia/Anadyr","formatted":"+12:00 Anadyr Time - Anadyr, Kamchatka","group":["Asia/Anadyr","Asia/Kamchatka"]}, -{"timeZoneName":"Pacific/Tarawa","formatted":"+12:00 Gilbert Islands Time - Tarawa","group":["Pacific/Tarawa"]}, -{"timeZoneName":"Pacific/Majuro","formatted":"+12:00 Marshall Islands Time - Majuro, Kwajalein","group":["Pacific/Kwajalein","Pacific/Majuro"]}, -{"timeZoneName":"Pacific/Nauru","formatted":"+12:00 Nauru Time - Nauru","group":["Pacific/Nauru"]}, -{"timeZoneName":"Pacific/Norfolk","formatted":"+12:00 Norfolk Island Time - Norfolk","group":["Pacific/Norfolk"]}, -{"timeZoneName":"Pacific/Funafuti","formatted":"+12:00 Tuvalu Time - Funafuti","group":["Pacific/Funafuti"]}, -{"timeZoneName":"Pacific/Wake","formatted":"+12:00 Wake Island Time - Wake","group":["Pacific/Wake"]}, -{"timeZoneName":"Pacific/Wallis","formatted":"+12:00 Wallis & Futuna Time - Wallis","group":["Pacific/Wallis"]}, -{"timeZoneName":"Pacific/Fiji","formatted":"+13:00 Fiji Summer Time - Fiji","group":["Pacific/Fiji"]}, -{"timeZoneName":"Pacific/Auckland","formatted":"+13:00 New Zealand Time - Auckland","group":["Pacific/Auckland"]}, -{"timeZoneName":"Pacific/Enderbury","formatted":"+13:00 Phoenix Islands Time - Enderbury","group":["Pacific/Enderbury"]}, -{"timeZoneName":"Pacific/Fakaofo","formatted":"+13:00 Tokelau Time - Fakaofo","group":["Pacific/Fakaofo"]}, -{"timeZoneName":"Pacific/Tongatapu","formatted":"+13:00 Tonga Time - Tongatapu","group":["Pacific/Tongatapu"]}, -{"timeZoneName":"Pacific/Chatham","formatted":"+13:45 Chatham Time - Chatham","group":["Pacific/Chatham"]}, -{"timeZoneName":"Pacific/Apia","formatted":"+14:00 Apia Time - Apia","group":["Pacific/Apia"]}, -{"timeZoneName":"Pacific/Kiritimati","formatted":"+14:00 Line Islands Time - Kiritimati","group":["Pacific/Kiritimati"]}] \ No newline at end of file +[{"name":"Pacific/Niue","alternativeName":"Niue Time","mainCities":["Alofi"],"formatted":"-11:00 Niue Time - Alofi","group":["Pacific/Niue"]}, +{"name":"Pacific/Midway","alternativeName":"Samoa Time","mainCities":["Midway"],"formatted":"-11:00 Samoa Time - Midway","group":["Pacific/Midway"]}, +{"name":"Pacific/Pago_Pago","alternativeName":"Samoa Time","mainCities":["Pago Pago"],"formatted":"-11:00 Samoa Time - Pago Pago","group":["Pacific/Pago_Pago"]}, +{"name":"Pacific/Rarotonga","alternativeName":"Cook Islands Time","mainCities":["Avarua"],"formatted":"-10:00 Cook Islands Time - Avarua","group":["Pacific/Rarotonga"]}, +{"name":"America/Adak","alternativeName":"Hawaii-Aleutian Time","mainCities":["Adak"],"formatted":"-10:00 Hawaii-Aleutian Time - Adak","group":["America/Adak"]}, +{"name":"Pacific/Honolulu","alternativeName":"Hawaii-Aleutian Time","mainCities":["Honolulu","East Honolulu"],"formatted":"-10:00 Hawaii-Aleutian Time - Honolulu, East Honolulu","group":["Pacific/Honolulu"]}, +{"name":"Pacific/Tahiti","alternativeName":"Tahiti Time","mainCities":["Faaa","Papeete"],"formatted":"-10:00 Tahiti Time - Faaa, Papeete","group":["Pacific/Tahiti"]}, +{"name":"Pacific/Marquesas","alternativeName":"Marquesas Time","mainCities":["Marquesas"],"formatted":"-09:30 Marquesas Time - Marquesas","group":["Pacific/Marquesas"]}, +{"name":"America/Anchorage","alternativeName":"Alaska Time","mainCities":["Anchorage","Juneau"],"formatted":"-09:00 Alaska Time - Anchorage, Juneau","group":["America/Anchorage","America/Juneau","America/Metlakatla","America/Nome","America/Sitka","America/Yakutat"]}, +{"name":"Pacific/Gambier","alternativeName":"Gambier Time","mainCities":["Gambier"],"formatted":"-09:00 Gambier Time - Gambier","group":["Pacific/Gambier"]}, +{"name":"America/Los_Angeles","alternativeName":"Pacific Time","mainCities":["Los Angeles","San Diego"],"formatted":"-08:00 Pacific Time - Los Angeles, San Diego","group":["America/Los_Angeles"]}, +{"name":"America/Tijuana","alternativeName":"Pacific Time","mainCities":["Tijuana","Mexicali"],"formatted":"-08:00 Pacific Time - Tijuana, Mexicali","group":["America/Tijuana"]}, +{"name":"America/Vancouver","alternativeName":"Pacific Time","mainCities":["Vancouver","Surrey"],"formatted":"-08:00 Pacific Time - Vancouver, Surrey","group":["America/Vancouver"]}, +{"name":"America/Whitehorse","alternativeName":"Pacific Time","mainCities":["Whitehorse","Dawson"],"formatted":"-08:00 Pacific Time - Whitehorse, Dawson","group":["America/Dawson","America/Whitehorse"]}, +{"name":"Pacific/Pitcairn","alternativeName":"Pitcairn Time","mainCities":["Adamstown"],"formatted":"-08:00 Pitcairn Time - Adamstown","group":["Pacific/Pitcairn"]}, +{"name":"America/Hermosillo","alternativeName":"Mexican Pacific Time","mainCities":["Hermosillo","Obregon"],"formatted":"-07:00 Mexican Pacific Time - Hermosillo, Obregon","group":["America/Hermosillo"]}, +{"name":"America/Edmonton","alternativeName":"Mountain Time","mainCities":["Calgary","Edmonton"],"formatted":"-07:00 Mountain Time - Calgary, Edmonton","group":["America/Cambridge_Bay","America/Edmonton","America/Inuvik","America/Yellowknife"]}, +{"name":"America/Ojinaga","alternativeName":"Mountain Time","mainCities":["Ciudad Juárez","Chihuahua"],"formatted":"-07:00 Mountain Time - Ciudad Juárez, Chihuahua","group":["America/Chihuahua","America/Mazatlan","America/Ojinaga"]}, +{"name":"America/Denver","alternativeName":"Mountain Time","mainCities":["Denver","El Paso"],"formatted":"-07:00 Mountain Time - Denver, El Paso","group":["America/Boise","America/Denver"]}, +{"name":"America/Dawson_Creek","alternativeName":"Mountain Time","mainCities":["Fort St. John","Creston"],"formatted":"-07:00 Mountain Time - Fort St. John, Creston","group":["America/Creston","America/Dawson_Creek","America/Fort_Nelson"]}, +{"name":"America/Phoenix","alternativeName":"Mountain Time","mainCities":["Phoenix","Tucson"],"formatted":"-07:00 Mountain Time - Phoenix, Tucson","group":["America/Phoenix"]}, +{"name":"America/Belize","alternativeName":"Central Time","mainCities":["Belize City","San Ignacio"],"formatted":"-06:00 Central Time - Belize City, San Ignacio","group":["America/Belize"]}, +{"name":"America/Chicago","alternativeName":"Central Time","mainCities":["Chicago","Houston"],"formatted":"-06:00 Central Time - Chicago, Houston","group":["America/Chicago","America/Indiana/Knox","America/Indiana/Tell_City","America/Menominee","America/North_Dakota/Beulah","America/North_Dakota/Center","America/North_Dakota/New_Salem"]}, +{"name":"America/Guatemala","alternativeName":"Central Time","mainCities":["Guatemala City","Mixco"],"formatted":"-06:00 Central Time - Guatemala City, Mixco","group":["America/Guatemala"]}, +{"name":"America/Managua","alternativeName":"Central Time","mainCities":["Managua","León"],"formatted":"-06:00 Central Time - Managua, León","group":["America/Managua"]}, +{"name":"America/Mexico_City","alternativeName":"Central Time","mainCities":["Mexico City","Iztapalapa"],"formatted":"-06:00 Central Time - Mexico City, Iztapalapa","group":["America/Bahia_Banderas","America/Matamoros","America/Merida","America/Mexico_City","America/Monterrey"]}, +{"name":"America/Costa_Rica","alternativeName":"Central Time","mainCities":["San José","Limón"],"formatted":"-06:00 Central Time - San José, Limón","group":["America/Costa_Rica"]}, +{"name":"America/El_Salvador","alternativeName":"Central Time","mainCities":["San Salvador","Soyapango"],"formatted":"-06:00 Central Time - San Salvador, Soyapango","group":["America/El_Salvador"]}, +{"name":"America/Regina","alternativeName":"Central Time","mainCities":["Saskatoon","Regina"],"formatted":"-06:00 Central Time - Saskatoon, Regina","group":["America/Regina","America/Swift_Current"]}, +{"name":"America/Tegucigalpa","alternativeName":"Central Time","mainCities":["Tegucigalpa","San Pedro Sula"],"formatted":"-06:00 Central Time - Tegucigalpa, San Pedro Sula","group":["America/Tegucigalpa"]}, +{"name":"America/Winnipeg","alternativeName":"Central Time","mainCities":["Winnipeg","Brandon"],"formatted":"-06:00 Central Time - Winnipeg, Brandon","group":["America/Rainy_River","America/Rankin_Inlet","America/Resolute","America/Winnipeg"]}, +{"name":"Pacific/Galapagos","alternativeName":"Galapagos Time","mainCities":["Galapagos"],"formatted":"-06:00 Galapagos Time - Galapagos","group":["Pacific/Galapagos"]}, +{"name":"America/Rio_Branco","alternativeName":"Acre Time","mainCities":["Rio Branco","Cruzeiro do Sul"],"formatted":"-05:00 Acre Time - Rio Branco, Cruzeiro do Sul","group":["America/Eirunepe","America/Rio_Branco"]}, +{"name":"America/Bogota","alternativeName":"Colombia Time","mainCities":["Bogotá","Cali"],"formatted":"-05:00 Colombia Time - Bogotá, Cali","group":["America/Bogota"]}, +{"name":"America/Havana","alternativeName":"Cuba Time","mainCities":["Havana","Santiago de Cuba"],"formatted":"-05:00 Cuba Time - Havana, Santiago de Cuba","group":["America/Havana"]}, +{"name":"Pacific/Easter","alternativeName":"Easter Island Summer Time","mainCities":["Easter"],"formatted":"-05:00 Easter Island Summer Time - Easter","group":["Pacific/Easter"]}, +{"name":"America/Atikokan","alternativeName":"Eastern Time","mainCities":["Atikokan"],"formatted":"-05:00 Eastern Time - Atikokan","group":["America/Atikokan"]}, +{"name":"America/Cancun","alternativeName":"Eastern Time","mainCities":["Cancún","Chetumal"],"formatted":"-05:00 Eastern Time - Cancún, Chetumal","group":["America/Cancun"]}, +{"name":"America/Grand_Turk","alternativeName":"Eastern Time","mainCities":["Cockburn Town"],"formatted":"-05:00 Eastern Time - Cockburn Town","group":["America/Grand_Turk"]}, +{"name":"America/Cayman","alternativeName":"Eastern Time","mainCities":["George Town"],"formatted":"-05:00 Eastern Time - George Town","group":["America/Cayman"]}, +{"name":"America/Jamaica","alternativeName":"Eastern Time","mainCities":["Kingston","New Kingston"],"formatted":"-05:00 Eastern Time - Kingston, New Kingston","group":["America/Jamaica"]}, +{"name":"America/Nassau","alternativeName":"Eastern Time","mainCities":["Nassau","Lucaya"],"formatted":"-05:00 Eastern Time - Nassau, Lucaya","group":["America/Nassau"]}, +{"name":"America/New_York","alternativeName":"Eastern Time","mainCities":["New York City","Brooklyn"],"formatted":"-05:00 Eastern Time - New York City, Brooklyn","group":["America/Detroit","America/Indiana/Indianapolis","America/Indiana/Marengo","America/Indiana/Petersburg","America/Indiana/Vevay","America/Indiana/Vincennes","America/Indiana/Winamac","America/Kentucky/Louisville","America/Kentucky/Monticello","America/New_York"]}, +{"name":"America/Panama","alternativeName":"Eastern Time","mainCities":["Panamá","San Miguelito"],"formatted":"-05:00 Eastern Time - Panamá, San Miguelito","group":["America/Panama"]}, +{"name":"America/Port-au-Prince","alternativeName":"Eastern Time","mainCities":["Port-au-Prince","Carrefour"],"formatted":"-05:00 Eastern Time - Port-au-Prince, Carrefour","group":["America/Port-au-Prince"]}, +{"name":"America/Toronto","alternativeName":"Eastern Time","mainCities":["Toronto","Montréal"],"formatted":"-05:00 Eastern Time - Toronto, Montréal","group":["America/Iqaluit","America/Nipigon","America/Pangnirtung","America/Thunder_Bay","America/Toronto"]}, +{"name":"America/Guayaquil","alternativeName":"Ecuador Time","mainCities":["Guayaquil","Quito"],"formatted":"-05:00 Ecuador Time - Guayaquil, Quito","group":["America/Guayaquil"]}, +{"name":"America/Lima","alternativeName":"Peru Time","mainCities":["Lima","Arequipa"],"formatted":"-05:00 Peru Time - Lima, Arequipa","group":["America/Lima"]}, +{"name":"America/Manaus","alternativeName":"Amazon Time","mainCities":["Manaus","Campo Grande"],"formatted":"-04:00 Amazon Time - Manaus, Campo Grande","group":["America/Boa_Vista","America/Campo_Grande","America/Cuiaba","America/Manaus","America/Porto_Velho"]}, +{"name":"America/St_Kitts","alternativeName":"Atlantic Time","mainCities":["Basseterre"],"formatted":"-04:00 Atlantic Time - Basseterre","group":["America/St_Kitts"]}, +{"name":"America/Montserrat","alternativeName":"Atlantic Time","mainCities":["Brades","Plymouth"],"formatted":"-04:00 Atlantic Time - Brades, Plymouth","group":["America/Montserrat"]}, +{"name":"America/Barbados","alternativeName":"Atlantic Time","mainCities":["Bridgetown"],"formatted":"-04:00 Atlantic Time - Bridgetown","group":["America/Barbados"]}, +{"name":"America/St_Lucia","alternativeName":"Atlantic Time","mainCities":["Castries"],"formatted":"-04:00 Atlantic Time - Castries","group":["America/St_Lucia"]}, +{"name":"America/Port_of_Spain","alternativeName":"Atlantic Time","mainCities":["Chaguanas","Mon Repos"],"formatted":"-04:00 Atlantic Time - Chaguanas, Mon Repos","group":["America/Port_of_Spain"]}, +{"name":"America/Martinique","alternativeName":"Atlantic Time","mainCities":["Fort-de-France","Le Lamentin"],"formatted":"-04:00 Atlantic Time - Fort-de-France, Le Lamentin","group":["America/Martinique"]}, +{"name":"America/St_Barthelemy","alternativeName":"Atlantic Time","mainCities":["Gustavia"],"formatted":"-04:00 Atlantic Time - Gustavia","group":["America/St_Barthelemy"]}, +{"name":"America/Halifax","alternativeName":"Atlantic Time","mainCities":["Halifax","Moncton"],"formatted":"-04:00 Atlantic Time - Halifax, Moncton","group":["America/Glace_Bay","America/Goose_Bay","America/Halifax","America/Moncton"]}, +{"name":"Atlantic/Bermuda","alternativeName":"Atlantic Time","mainCities":["Hamilton"],"formatted":"-04:00 Atlantic Time - Hamilton","group":["Atlantic/Bermuda"]}, +{"name":"America/St_Vincent","alternativeName":"Atlantic Time","mainCities":["Kingstown","Kingstown Park"],"formatted":"-04:00 Atlantic Time - Kingstown, Kingstown Park","group":["America/St_Vincent"]}, +{"name":"America/Kralendijk","alternativeName":"Atlantic Time","mainCities":["Kralendijk"],"formatted":"-04:00 Atlantic Time - Kralendijk","group":["America/Kralendijk"]}, +{"name":"America/Guadeloupe","alternativeName":"Atlantic Time","mainCities":["Les Abymes","Baie-Mahault"],"formatted":"-04:00 Atlantic Time - Les Abymes, Baie-Mahault","group":["America/Guadeloupe"]}, +{"name":"America/Blanc-Sablon","alternativeName":"Atlantic Time","mainCities":["Lévis"],"formatted":"-04:00 Atlantic Time - Lévis","group":["America/Blanc-Sablon"]}, +{"name":"America/Marigot","alternativeName":"Atlantic Time","mainCities":["Marigot"],"formatted":"-04:00 Atlantic Time - Marigot","group":["America/Marigot"]}, +{"name":"America/Aruba","alternativeName":"Atlantic Time","mainCities":["Oranjestad","Tanki Leendert"],"formatted":"-04:00 Atlantic Time - Oranjestad, Tanki Leendert","group":["America/Aruba"]}, +{"name":"America/Lower_Princes","alternativeName":"Atlantic Time","mainCities":["Philipsburg"],"formatted":"-04:00 Atlantic Time - Philipsburg","group":["America/Lower_Princes"]}, +{"name":"America/Tortola","alternativeName":"Atlantic Time","mainCities":["Road Town"],"formatted":"-04:00 Atlantic Time - Road Town","group":["America/Tortola"]}, +{"name":"America/Dominica","alternativeName":"Atlantic Time","mainCities":["Roseau"],"formatted":"-04:00 Atlantic Time - Roseau","group":["America/Dominica"]}, +{"name":"America/St_Thomas","alternativeName":"Atlantic Time","mainCities":["Saint Croix","Charlotte Amalie"],"formatted":"-04:00 Atlantic Time - Saint Croix, Charlotte Amalie","group":["America/St_Thomas"]}, +{"name":"America/Grenada","alternativeName":"Atlantic Time","mainCities":["Saint George's"],"formatted":"-04:00 Atlantic Time - Saint George0","group":["America/Grenada"]}, +{"name":"America/Antigua","alternativeName":"Atlantic Time","mainCities":["Saint John’s"],"formatted":"-04:00 Atlantic Time - Saint John’s","group":["America/Antigua"]}, +{"name":"America/Puerto_Rico","alternativeName":"Atlantic Time","mainCities":["San Juan","Bayamón"],"formatted":"-04:00 Atlantic Time - San Juan, Bayamón","group":["America/Puerto_Rico"]}, +{"name":"America/Santo_Domingo","alternativeName":"Atlantic Time","mainCities":["Santo Domingo","Santiago de los Caballeros"],"formatted":"-04:00 Atlantic Time - Santo Domingo, Santiago de los Caballeros","group":["America/Santo_Domingo"]}, +{"name":"America/Anguilla","alternativeName":"Atlantic Time","mainCities":["The Valley"],"formatted":"-04:00 Atlantic Time - The Valley","group":["America/Anguilla"]}, +{"name":"America/Thule","alternativeName":"Atlantic Time","mainCities":["Thule"],"formatted":"-04:00 Atlantic Time - Thule","group":["America/Thule"]}, +{"name":"America/Curacao","alternativeName":"Atlantic Time","mainCities":["Willemstad"],"formatted":"-04:00 Atlantic Time - Willemstad","group":["America/Curacao"]}, +{"name":"America/La_Paz","alternativeName":"Bolivia Time","mainCities":["Santa Cruz de la Sierra","Cochabamba"],"formatted":"-04:00 Bolivia Time - Santa Cruz de la Sierra, Cochabamba","group":["America/La_Paz"]}, +{"name":"America/Guyana","alternativeName":"Guyana Time","mainCities":["Georgetown","Linden"],"formatted":"-04:00 Guyana Time - Georgetown, Linden","group":["America/Guyana"]}, +{"name":"America/Caracas","alternativeName":"Venezuela Time","mainCities":["Caracas","Maracaibo"],"formatted":"-04:00 Venezuela Time - Caracas, Maracaibo","group":["America/Caracas"]}, +{"name":"America/St_Johns","alternativeName":"Newfoundland Time","mainCities":["St. John's","Mount Pearl"],"formatted":"-03:30 Newfoundland Time - St. John0, 11000n12:00 AM PeAMrl","group":["America/St_Johns"]}, +{"name":"America/Argentina/Buenos_Aires","alternativeName":"Argentina Time","mainCities":["Buenos Aires","Córdoba"],"formatted":"-03:00 Argentina Time - Buenos Aires, Córdoba","group":["America/Argentina/Buenos_Aires","America/Argentina/Catamarca","America/Argentina/Cordoba","America/Argentina/Jujuy","America/Argentina/La_Rioja","America/Argentina/Mendoza","America/Argentina/Rio_Gallegos","America/Argentina/Salta","America/Argentina/San_Juan","America/Argentina/San_Luis","America/Argentina/Tucuman","America/Argentina/Ushuaia"]}, +{"name":"America/Sao_Paulo","alternativeName":"Brasilia Time","mainCities":["São Paulo","Rio de Janeiro"],"formatted":"-03:00 Brasilia Time - São Paulo, Rio de Janeiro","group":["America/Araguaina","America/Bahia","America/Belem","America/Fortaleza","America/Maceio","America/Recife","America/Santarem","America/Sao_Paulo"]}, +{"name":"America/Santiago","alternativeName":"Chile Summer Time","mainCities":["Santiago","Puente Alto"],"formatted":"-03:00 Chile Summer Time - Santiago, Puente Alto","group":["America/Santiago"]}, +{"name":"Atlantic/Stanley","alternativeName":"Falkland Islands Time","mainCities":["Stanley"],"formatted":"-03:00 Falkland Islands Time - Stanley","group":["Atlantic/Stanley"]}, +{"name":"America/Cayenne","alternativeName":"French Guiana Time","mainCities":["Cayenne","Matoury"],"formatted":"-03:00 French Guiana Time - Cayenne, Matoury","group":["America/Cayenne"]}, +{"name":"Antarctica/Palmer","alternativeName":"GMT-03:00","mainCities":["Palmer","Rothera"],"formatted":"-03:00 GMT-03:00 - Palmer, Rothera","group":["Antarctica/Palmer","Antarctica/Rothera"]}, +{"name":"America/Punta_Arenas","alternativeName":"GMT-03:00","mainCities":["Punta Arenas","Puerto Natales"],"formatted":"-03:00 GMT-03:00 - Punta Arenas, Puerto Natales","group":["America/Punta_Arenas"]}, +{"name":"America/Asuncion","alternativeName":"Paraguay Summer Time","mainCities":["Asunción","Ciudad del Este"],"formatted":"-03:00 Paraguay Summer Time - Asunción, Ciudad del Este","group":["America/Asuncion"]}, +{"name":"America/Miquelon","alternativeName":"St. Pierre & Miquelon Time","mainCities":["Saint-Pierre"],"formatted":"-03:00 St. Pierre & Miquelon Time - Saint-Pierre","group":["America/Miquelon"]}, +{"name":"America/Paramaribo","alternativeName":"Suriname Time","mainCities":["Paramaribo","Lelydorp"],"formatted":"-03:00 Suriname Time - Paramaribo, Lelydorp","group":["America/Paramaribo"]}, +{"name":"America/Montevideo","alternativeName":"Uruguay Time","mainCities":["Montevideo","Salto"],"formatted":"-03:00 Uruguay Time - Montevideo, Salto","group":["America/Montevideo"]}, +{"name":"America/Godthab","alternativeName":"West Greenland Time","mainCities":["Nuuk"],"formatted":"-03:00 West Greenland Time - Nuuk","group":["America/Godthab"]}, +{"name":"America/Noronha","alternativeName":"Fernando de Noronha Time","mainCities":["Noronha"],"formatted":"-02:00 Fernando de Noronha Time - Noronha","group":["America/Noronha"]}, +{"name":"Atlantic/South_Georgia","alternativeName":"South Georgia Time","mainCities":["Grytviken"],"formatted":"-02:00 South Georgia Time - Grytviken","group":["Atlantic/South_Georgia"]}, +{"name":"Atlantic/Azores","alternativeName":"Azores Time","mainCities":["Ponta Delgada"],"formatted":"-01:00 Azores Time - Ponta Delgada","group":["Atlantic/Azores"]}, +{"name":"Atlantic/Cape_Verde","alternativeName":"Cape Verde Time","mainCities":["Praia","Mindelo"],"formatted":"-01:00 Cape Verde Time - Praia, Mindelo","group":["Atlantic/Cape_Verde"]}, +{"name":"America/Scoresbysund","alternativeName":"East Greenland Time","mainCities":["Scoresbysund"],"formatted":"-01:00 East Greenland Time - Scoresbysund","group":["America/Scoresbysund"]}, +{"name":"Africa/Abidjan","alternativeName":"Greenwich Mean Time","mainCities":["Abidjan","Abobo"],"formatted":"+00:00 Greenwich Mean Time - Abidjan, Abobo","group":["Africa/Abidjan"]}, +{"name":"Africa/Accra","alternativeName":"Greenwich Mean Time","mainCities":["Accra","Kumasi"],"formatted":"+00:00 Greenwich Mean Time - Accra, Kumasi","group":["Africa/Accra"]}, +{"name":"Africa/Bamako","alternativeName":"Greenwich Mean Time","mainCities":["Bamako","Sikasso"],"formatted":"+00:00 Greenwich Mean Time - Bamako, Sikasso","group":["Africa/Bamako"]}, +{"name":"Africa/Bissau","alternativeName":"Greenwich Mean Time","mainCities":["Bissau","Bafatá"],"formatted":"+00:00 Greenwich Mean Time - Bissau, Bafatá","group":["Africa/Bissau"]}, +{"name":"Africa/Conakry","alternativeName":"Greenwich Mean Time","mainCities":["Camayenne","Conakry"],"formatted":"+00:00 Greenwich Mean Time - Camayenne, Conakry","group":["Africa/Conakry"]}, +{"name":"Africa/Dakar","alternativeName":"Greenwich Mean Time","mainCities":["Dakar","Pikine"],"formatted":"+00:00 Greenwich Mean Time - Dakar, Pikine","group":["Africa/Dakar"]}, +{"name":"America/Danmarkshavn","alternativeName":"Greenwich Mean Time","mainCities":["Danmarkshavn"],"formatted":"+00:00 Greenwich Mean Time - Danmarkshavn","group":["America/Danmarkshavn"]}, +{"name":"Europe/Isle_of_Man","alternativeName":"Greenwich Mean Time","mainCities":["Douglas"],"formatted":"+00:00 Greenwich Mean Time - Douglas","group":["Europe/Isle_of_Man"]}, +{"name":"Europe/Dublin","alternativeName":"Greenwich Mean Time","mainCities":["Dublin","Cork"],"formatted":"+00:00 Greenwich Mean Time - Dublin, Cork","group":["Europe/Dublin"]}, +{"name":"Africa/Freetown","alternativeName":"Greenwich Mean Time","mainCities":["Freetown","Bo"],"formatted":"+00:00 Greenwich Mean Time - Freetown, Bo","group":["Africa/Freetown"]}, +{"name":"Atlantic/St_Helena","alternativeName":"Greenwich Mean Time","mainCities":["Jamestown"],"formatted":"+00:00 Greenwich Mean Time - Jamestown","group":["Atlantic/St_Helena"]}, +{"name":"Africa/Lome","alternativeName":"Greenwich Mean Time","mainCities":["Lomé","Sokodé"],"formatted":"+00:00 Greenwich Mean Time - Lomé, Sokodé","group":["Africa/Lome"]}, +{"name":"Europe/London","alternativeName":"Greenwich Mean Time","mainCities":["London","Birmingham"],"formatted":"+00:00 Greenwich Mean Time - London, Birmingham","group":["Europe/London"]}, +{"name":"Africa/Monrovia","alternativeName":"Greenwich Mean Time","mainCities":["Monrovia","Gbarnga"],"formatted":"+00:00 Greenwich Mean Time - Monrovia, Gbarnga","group":["Africa/Monrovia"]}, +{"name":"Africa/Nouakchott","alternativeName":"Greenwich Mean Time","mainCities":["Nouakchott","Nouadhibou"],"formatted":"+00:00 Greenwich Mean Time - Nouakchott, Nouadhibou","group":["Africa/Nouakchott"]}, +{"name":"Africa/Ouagadougou","alternativeName":"Greenwich Mean Time","mainCities":["Ouagadougou","Bobo-Dioulasso"],"formatted":"+00:00 Greenwich Mean Time - Ouagadougou, Bobo-Dioulasso","group":["Africa/Ouagadougou"]}, +{"name":"Atlantic/Reykjavik","alternativeName":"Greenwich Mean Time","mainCities":["Reykjavík","Kópavogur"],"formatted":"+00:00 Greenwich Mean Time - Reykjavík, Kópavogur","group":["Atlantic/Reykjavik"]}, +{"name":"Europe/Jersey","alternativeName":"Greenwich Mean Time","mainCities":["Saint Helier"],"formatted":"+00:00 Greenwich Mean Time - Saint Helier","group":["Europe/Jersey"]}, +{"name":"Europe/Guernsey","alternativeName":"Greenwich Mean Time","mainCities":["Saint Peter Port"],"formatted":"+00:00 Greenwich Mean Time - Saint Peter Port","group":["Europe/Guernsey"]}, +{"name":"Africa/Banjul","alternativeName":"Greenwich Mean Time","mainCities":["Serekunda","Brikama"],"formatted":"+00:00 Greenwich Mean Time - Serekunda, Brikama","group":["Africa/Banjul"]}, +{"name":"Africa/Sao_Tome","alternativeName":"Greenwich Mean Time","mainCities":["São Tomé"],"formatted":"+00:00 Greenwich Mean Time - São Tomé","group":["Africa/Sao_Tome"]}, +{"name":"Antarctica/Troll","alternativeName":"Greenwich Mean Time","mainCities":["Troll"],"formatted":"+00:00 Greenwich Mean Time - Troll","group":["Antarctica/Troll"]}, +{"name":"Atlantic/Canary","alternativeName":"Western European Time","mainCities":["Las Palmas de Gran Canaria","Santa Cruz de Tenerife"],"formatted":"+00:00 Western European Time - Las Palmas de Gran Canaria, Santa Cruz de Tenerife","group":["Atlantic/Canary"]}, +{"name":"Europe/Lisbon","alternativeName":"Western European Time","mainCities":["Lisbon","Porto"],"formatted":"+00:00 Western European Time - Lisbon, Porto","group":["Atlantic/Madeira","Europe/Lisbon"]}, +{"name":"Atlantic/Faroe","alternativeName":"Western European Time","mainCities":["Tórshavn"],"formatted":"+00:00 Western European Time - Tórshavn","group":["Atlantic/Faroe"]}, +{"name":"Africa/Algiers","alternativeName":"Central European Time","mainCities":["Algiers","Boumerdas"],"formatted":"+01:00 Central European Time - Algiers, Boumerdas","group":["Africa/Algiers"]}, +{"name":"Europe/Amsterdam","alternativeName":"Central European Time","mainCities":["Amsterdam","Rotterdam"],"formatted":"+01:00 Central European Time - Amsterdam, Rotterdam","group":["Europe/Amsterdam"]}, +{"name":"Europe/Andorra","alternativeName":"Central European Time","mainCities":["Andorra la Vella","les Escaldes"],"formatted":"+01:00 Central European Time - Andorra la Vella, les Escaldes","group":["Europe/Andorra"]}, +{"name":"Europe/Belgrade","alternativeName":"Central European Time","mainCities":["Belgrade","Niš"],"formatted":"+01:00 Central European Time - Belgrade, Niš","group":["Europe/Belgrade"]}, +{"name":"Europe/Berlin","alternativeName":"Central European Time","mainCities":["Berlin","Hamburg"],"formatted":"+01:00 Central European Time - Berlin, Hamburg","group":["Europe/Berlin","Europe/Busingen"]}, +{"name":"Europe/Malta","alternativeName":"Central European Time","mainCities":["Birkirkara","Qormi"],"formatted":"+01:00 Central European Time - Birkirkara, Qormi","group":["Europe/Malta"]}, +{"name":"Europe/Bratislava","alternativeName":"Central European Time","mainCities":["Bratislava","Kassa"],"formatted":"+01:00 Central European Time - Bratislava, Kassa","group":["Europe/Bratislava"]}, +{"name":"Europe/Brussels","alternativeName":"Central European Time","mainCities":["Brussels","Antwerpen"],"formatted":"+01:00 Central European Time - Brussels, Antwerpen","group":["Europe/Brussels"]}, +{"name":"Europe/Budapest","alternativeName":"Central European Time","mainCities":["Budapest","Debrecen"],"formatted":"+01:00 Central European Time - Budapest, Debrecen","group":["Europe/Budapest"]}, +{"name":"Europe/Copenhagen","alternativeName":"Central European Time","mainCities":["Copenhagen","Århus"],"formatted":"+01:00 Central European Time - Copenhagen, Århus","group":["Europe/Copenhagen"]}, +{"name":"Europe/Gibraltar","alternativeName":"Central European Time","mainCities":["Gibraltar"],"formatted":"+01:00 Central European Time - Gibraltar","group":["Europe/Gibraltar"]}, +{"name":"Europe/Ljubljana","alternativeName":"Central European Time","mainCities":["Ljubljana","Maribor"],"formatted":"+01:00 Central European Time - Ljubljana, Maribor","group":["Europe/Ljubljana"]}, +{"name":"Arctic/Longyearbyen","alternativeName":"Central European Time","mainCities":["Longyearbyen"],"formatted":"+01:00 Central European Time - Longyearbyen","group":["Arctic/Longyearbyen"]}, +{"name":"Europe/Luxembourg","alternativeName":"Central European Time","mainCities":["Luxembourg","Esch-sur-Alzette"],"formatted":"+01:00 Central European Time - Luxembourg, Esch-sur-Alzette","group":["Europe/Luxembourg"]}, +{"name":"Europe/Madrid","alternativeName":"Central European Time","mainCities":["Madrid","Barcelona"],"formatted":"+01:00 Central European Time - Madrid, Barcelona","group":["Africa/Ceuta","Europe/Madrid"]}, +{"name":"Europe/Monaco","alternativeName":"Central European Time","mainCities":["Monaco","Monte-Carlo"],"formatted":"+01:00 Central European Time - Monaco, Monte-Carlo","group":["Europe/Monaco"]}, +{"name":"Europe/Oslo","alternativeName":"Central European Time","mainCities":["Oslo","Bergen"],"formatted":"+01:00 Central European Time - Oslo, Bergen","group":["Europe/Oslo"]}, +{"name":"Europe/Paris","alternativeName":"Central European Time","mainCities":["Paris","Marseille"],"formatted":"+01:00 Central European Time - Paris, Marseille","group":["Europe/Paris"]}, +{"name":"Europe/Podgorica","alternativeName":"Central European Time","mainCities":["Podgorica","Nikšić"],"formatted":"+01:00 Central European Time - Podgorica, Nikšić","group":["Europe/Podgorica"]}, +{"name":"Europe/Prague","alternativeName":"Central European Time","mainCities":["Prague","Brno"],"formatted":"+01:00 Central European Time - Prague, Brno","group":["Europe/Prague"]}, +{"name":"Europe/Rome","alternativeName":"Central European Time","mainCities":["Rome","Milan"],"formatted":"+01:00 Central European Time - Rome, Milan","group":["Europe/Rome"]}, +{"name":"Europe/San_Marino","alternativeName":"Central European Time","mainCities":["San Marino"],"formatted":"+01:00 Central European Time - San Marino","group":["Europe/San_Marino"]}, +{"name":"Europe/Sarajevo","alternativeName":"Central European Time","mainCities":["Sarajevo","Banja Luka"],"formatted":"+01:00 Central European Time - Sarajevo, Banja Luka","group":["Europe/Sarajevo"]}, +{"name":"Europe/Skopje","alternativeName":"Central European Time","mainCities":["Skopje","Bitola"],"formatted":"+01:00 Central European Time - Skopje, Bitola","group":["Europe/Skopje"]}, +{"name":"Europe/Stockholm","alternativeName":"Central European Time","mainCities":["Stockholm","Göteborg"],"formatted":"+01:00 Central European Time - Stockholm, Göteborg","group":["Europe/Stockholm"]}, +{"name":"Europe/Tirane","alternativeName":"Central European Time","mainCities":["Tirana","Durrës"],"formatted":"+01:00 Central European Time - Tirana, Durrës","group":["Europe/Tirane"]}, +{"name":"Africa/Tunis","alternativeName":"Central European Time","mainCities":["Tunis","Sfax"],"formatted":"+01:00 Central European Time - Tunis, Sfax","group":["Africa/Tunis"]}, +{"name":"Europe/Vaduz","alternativeName":"Central European Time","mainCities":["Vaduz"],"formatted":"+01:00 Central European Time - Vaduz","group":["Europe/Vaduz"]}, +{"name":"Europe/Vatican","alternativeName":"Central European Time","mainCities":["Vatican City"],"formatted":"+01:00 Central European Time - Vatican City","group":["Europe/Vatican"]}, +{"name":"Europe/Vienna","alternativeName":"Central European Time","mainCities":["Vienna","Graz"],"formatted":"+01:00 Central European Time - Vienna, Graz","group":["Europe/Vienna"]}, +{"name":"Europe/Warsaw","alternativeName":"Central European Time","mainCities":["Warsaw","Łódź"],"formatted":"+01:00 Central European Time - Warsaw, Łódź","group":["Europe/Warsaw"]}, +{"name":"Europe/Zagreb","alternativeName":"Central European Time","mainCities":["Zagreb","Split"],"formatted":"+01:00 Central European Time - Zagreb, Split","group":["Europe/Zagreb"]}, +{"name":"Europe/Zurich","alternativeName":"Central European Time","mainCities":["Zürich","Genève"],"formatted":"+01:00 Central European Time - Zürich, Genève","group":["Europe/Zurich"]}, +{"name":"Africa/Casablanca","alternativeName":"GMT+01:00","mainCities":["Casablanca","Rabat"],"formatted":"+01:00 GMT+01:00 - Casablanca, Rabat","group":["Africa/Casablanca"]}, +{"name":"Africa/El_Aaiun","alternativeName":"GMT+01:00","mainCities":["Laayoune","Dakhla"],"formatted":"+01:00 GMT+01:00 - Laayoune, Dakhla","group":["Africa/El_Aaiun"]}, +{"name":"Africa/Bangui","alternativeName":"West Africa Time","mainCities":["Bangui","Bimbo"],"formatted":"+01:00 West Africa Time - Bangui, Bimbo","group":["Africa/Bangui"]}, +{"name":"Africa/Malabo","alternativeName":"West Africa Time","mainCities":["Bata","Malabo"],"formatted":"+01:00 West Africa Time - Bata, Malabo","group":["Africa/Malabo"]}, +{"name":"Africa/Brazzaville","alternativeName":"West Africa Time","mainCities":["Brazzaville","Pointe-Noire"],"formatted":"+01:00 West Africa Time - Brazzaville, Pointe-Noire","group":["Africa/Brazzaville"]}, +{"name":"Africa/Porto-Novo","alternativeName":"West Africa Time","mainCities":["Cotonou","Abomey-Calavi"],"formatted":"+01:00 West Africa Time - Cotonou, Abomey-Calavi","group":["Africa/Porto-Novo"]}, +{"name":"Africa/Douala","alternativeName":"West Africa Time","mainCities":["Douala","Yaoundé"],"formatted":"+01:00 West Africa Time - Douala, Yaoundé","group":["Africa/Douala"]}, +{"name":"Africa/Kinshasa","alternativeName":"West Africa Time","mainCities":["Kinshasa","Masina"],"formatted":"+01:00 West Africa Time - Kinshasa, Masina","group":["Africa/Kinshasa"]}, +{"name":"Africa/Lagos","alternativeName":"West Africa Time","mainCities":["Lagos","Kano"],"formatted":"+01:00 West Africa Time - Lagos, Kano","group":["Africa/Lagos"]}, +{"name":"Africa/Libreville","alternativeName":"West Africa Time","mainCities":["Libreville","Port-Gentil"],"formatted":"+01:00 West Africa Time - Libreville, Port-Gentil","group":["Africa/Libreville"]}, +{"name":"Africa/Luanda","alternativeName":"West Africa Time","mainCities":["Luanda","N’dalatando"],"formatted":"+01:00 West Africa Time - Luanda, N’dalatando","group":["Africa/Luanda"]}, +{"name":"Africa/Ndjamena","alternativeName":"West Africa Time","mainCities":["N'Djamena","Moundou"],"formatted":"+01:00 West Africa Time - N1/1/2020jAM0enAM, 11000n11000","group":["Africa/Ndjamena"]}, +{"name":"Africa/Niamey","alternativeName":"West Africa Time","mainCities":["Niamey","Zinder"],"formatted":"+01:00 West Africa Time - Niamey, Zinder","group":["Africa/Niamey"]}, +{"name":"Africa/Bujumbura","alternativeName":"Central Africa Time","mainCities":["Bujumbura","Muyinga"],"formatted":"+02:00 Central Africa Time - Bujumbura, Muyinga","group":["Africa/Bujumbura"]}, +{"name":"Africa/Gaborone","alternativeName":"Central Africa Time","mainCities":["Gaborone","Francistown"],"formatted":"+02:00 Central Africa Time - Gaborone, Francistown","group":["Africa/Gaborone"]}, +{"name":"Africa/Harare","alternativeName":"Central Africa Time","mainCities":["Harare","Bulawayo"],"formatted":"+02:00 Central Africa Time - Harare, Bulawayo","group":["Africa/Harare"]}, +{"name":"Africa/Khartoum","alternativeName":"Central Africa Time","mainCities":["Khartoum","Omdurman"],"formatted":"+02:00 Central Africa Time - Khartoum, Omdurman","group":["Africa/Khartoum"]}, +{"name":"Africa/Kigali","alternativeName":"Central Africa Time","mainCities":["Kigali","Butare"],"formatted":"+02:00 Central Africa Time - Kigali, Butare","group":["Africa/Kigali"]}, +{"name":"Africa/Blantyre","alternativeName":"Central Africa Time","mainCities":["Lilongwe","Blantyre"],"formatted":"+02:00 Central Africa Time - Lilongwe, Blantyre","group":["Africa/Blantyre"]}, +{"name":"Africa/Lubumbashi","alternativeName":"Central Africa Time","mainCities":["Lubumbashi","Mbuji-Mayi"],"formatted":"+02:00 Central Africa Time - Lubumbashi, Mbuji-Mayi","group":["Africa/Lubumbashi"]}, +{"name":"Africa/Lusaka","alternativeName":"Central Africa Time","mainCities":["Lusaka","Kitwe"],"formatted":"+02:00 Central Africa Time - Lusaka, Kitwe","group":["Africa/Lusaka"]}, +{"name":"Africa/Maputo","alternativeName":"Central Africa Time","mainCities":["Maputo","Matola"],"formatted":"+02:00 Central Africa Time - Maputo, Matola","group":["Africa/Maputo"]}, +{"name":"Africa/Windhoek","alternativeName":"Central Africa Time","mainCities":["Windhoek","Rundu"],"formatted":"+02:00 Central Africa Time - Windhoek, Rundu","group":["Africa/Windhoek"]}, +{"name":"Asia/Damascus","alternativeName":"Eastern European Time","mainCities":["Aleppo","Damascus"],"formatted":"+02:00 Eastern European Time - Aleppo, Damascus","group":["Asia/Damascus"]}, +{"name":"Asia/Amman","alternativeName":"Eastern European Time","mainCities":["Amman","Zarqa"],"formatted":"+02:00 Eastern European Time - Amman, Zarqa","group":["Asia/Amman"]}, +{"name":"Europe/Athens","alternativeName":"Eastern European Time","mainCities":["Athens","Solun"],"formatted":"+02:00 Eastern European Time - Athens, Solun","group":["Europe/Athens"]}, +{"name":"Asia/Beirut","alternativeName":"Eastern European Time","mainCities":["Beirut","Ra’s Bayrūt"],"formatted":"+02:00 Eastern European Time - Beirut, Ra’s Bayrūt","group":["Asia/Beirut"]}, +{"name":"Europe/Bucharest","alternativeName":"Eastern European Time","mainCities":["Bucharest","Sector 3"],"formatted":"+02:00 Eastern European Time - Bucharest, Sector 3","group":["Europe/Bucharest"]}, +{"name":"Africa/Cairo","alternativeName":"Eastern European Time","mainCities":["Cairo","Alexandria"],"formatted":"+02:00 Eastern European Time - Cairo, Alexandria","group":["Africa/Cairo"]}, +{"name":"Europe/Chisinau","alternativeName":"Eastern European Time","mainCities":["Chisinau","Tiraspol"],"formatted":"+02:00 Eastern European Time - Chisinau, Tiraspol","group":["Europe/Chisinau"]}, +{"name":"Asia/Hebron","alternativeName":"Eastern European Time","mainCities":["East Jerusalem","Gaza"],"formatted":"+02:00 Eastern European Time - East Jerusalem, Gaza","group":["Asia/Gaza","Asia/Hebron"]}, +{"name":"Europe/Helsinki","alternativeName":"Eastern European Time","mainCities":["Helsinki","Espoo"],"formatted":"+02:00 Eastern European Time - Helsinki, Espoo","group":["Europe/Helsinki"]}, +{"name":"Europe/Kaliningrad","alternativeName":"Eastern European Time","mainCities":["Kaliningrad","Chernyakhovsk"],"formatted":"+02:00 Eastern European Time - Kaliningrad, Chernyakhovsk","group":["Europe/Kaliningrad"]}, +{"name":"Europe/Kiev","alternativeName":"Eastern European Time","mainCities":["Kyiv","Kharkiv"],"formatted":"+02:00 Eastern European Time - Kyiv, Kharkiv","group":["Europe/Kiev","Europe/Uzhgorod","Europe/Zaporozhye"]}, +{"name":"Europe/Mariehamn","alternativeName":"Eastern European Time","mainCities":["Mariehamn"],"formatted":"+02:00 Eastern European Time - Mariehamn","group":["Europe/Mariehamn"]}, +{"name":"Asia/Nicosia","alternativeName":"Eastern European Time","mainCities":["Nicosia","Limassol"],"formatted":"+02:00 Eastern European Time - Nicosia, Limassol","group":["Asia/Famagusta","Asia/Nicosia"]}, +{"name":"Europe/Riga","alternativeName":"Eastern European Time","mainCities":["Riga","Daugavpils"],"formatted":"+02:00 Eastern European Time - Riga, Daugavpils","group":["Europe/Riga"]}, +{"name":"Europe/Sofia","alternativeName":"Eastern European Time","mainCities":["Sofia","Plovdiv"],"formatted":"+02:00 Eastern European Time - Sofia, Plovdiv","group":["Europe/Sofia"]}, +{"name":"Europe/Tallinn","alternativeName":"Eastern European Time","mainCities":["Tallinn","Tartu"],"formatted":"+02:00 Eastern European Time - Tallinn, Tartu","group":["Europe/Tallinn"]}, +{"name":"Africa/Tripoli","alternativeName":"Eastern European Time","mainCities":["Tripoli","Benghazi"],"formatted":"+02:00 Eastern European Time - Tripoli, Benghazi","group":["Africa/Tripoli"]}, +{"name":"Europe/Vilnius","alternativeName":"Eastern European Time","mainCities":["Vilnius","Kaunas"],"formatted":"+02:00 Eastern European Time - Vilnius, Kaunas","group":["Europe/Vilnius"]}, +{"name":"Asia/Jerusalem","alternativeName":"Israel Time","mainCities":["Jerusalem","Tel Aviv"],"formatted":"+02:00 Israel Time - Jerusalem, Tel Aviv","group":["Asia/Jerusalem"]}, +{"name":"Africa/Johannesburg","alternativeName":"South Africa Time","mainCities":["Cape Town","Durban"],"formatted":"+02:00 South Africa Time - Cape Town, Durban","group":["Africa/Johannesburg"]}, +{"name":"Africa/Mbabane","alternativeName":"South Africa Time","mainCities":["Manzini","Mbabane"],"formatted":"+02:00 South Africa Time - Manzini, Mbabane","group":["Africa/Mbabane"]}, +{"name":"Africa/Maseru","alternativeName":"South Africa Time","mainCities":["Maseru","Mafeteng"],"formatted":"+02:00 South Africa Time - Maseru, Mafeteng","group":["Africa/Maseru"]}, +{"name":"Asia/Kuwait","alternativeName":"Arabian Time","mainCities":["Al Aḩmadī","Ḩawallī"],"formatted":"+03:00 Arabian Time - Al Aḩmadī, Ḩawallī","group":["Asia/Kuwait"]}, +{"name":"Asia/Baghdad","alternativeName":"Arabian Time","mainCities":["Baghdad","Basrah"],"formatted":"+03:00 Arabian Time - Baghdad, Basrah","group":["Asia/Baghdad"]}, +{"name":"Asia/Qatar","alternativeName":"Arabian Time","mainCities":["Doha","Raiyan"],"formatted":"+03:00 Arabian Time - Doha, Raiyan","group":["Asia/Qatar"]}, +{"name":"Asia/Bahrain","alternativeName":"Arabian Time","mainCities":["Manama","Al Muharraq"],"formatted":"+03:00 Arabian Time - Manama, Al Muharraq","group":["Asia/Bahrain"]}, +{"name":"Asia/Riyadh","alternativeName":"Arabian Time","mainCities":["Riyadh","Jeddah"],"formatted":"+03:00 Arabian Time - Riyadh, Jeddah","group":["Asia/Riyadh"]}, +{"name":"Asia/Aden","alternativeName":"Arabian Time","mainCities":["Sanaa","Hudaida"],"formatted":"+03:00 Arabian Time - Sanaa, Hudaida","group":["Asia/Aden"]}, +{"name":"Africa/Addis_Ababa","alternativeName":"East Africa Time","mainCities":["Addis Ababa","Dire Dawa"],"formatted":"+03:00 East Africa Time - Addis Ababa, Dire Dawa","group":["Africa/Addis_Ababa"]}, +{"name":"Indian/Antananarivo","alternativeName":"East Africa Time","mainCities":["Antananarivo","Toamasina"],"formatted":"+03:00 East Africa Time - Antananarivo, Toamasina","group":["Indian/Antananarivo"]}, +{"name":"Africa/Asmara","alternativeName":"East Africa Time","mainCities":["Asmara","Keren"],"formatted":"+03:00 East Africa Time - Asmara, Keren","group":["Africa/Asmara"]}, +{"name":"Africa/Dar_es_Salaam","alternativeName":"East Africa Time","mainCities":["Dar es Salaam","Mwanza"],"formatted":"+03:00 East Africa Time - Dar es Salaam, Mwanza","group":["Africa/Dar_es_Salaam"]}, +{"name":"Africa/Djibouti","alternativeName":"East Africa Time","mainCities":["Djibouti","'Ali Sabieh"],"formatted":"+03:00 East Africa Time - Djibouti, Ali 0AMbie12","group":["Africa/Djibouti"]}, +{"name":"Africa/Juba","alternativeName":"East Africa Time","mainCities":["Juba","Winejok"],"formatted":"+03:00 East Africa Time - Juba, Winejok","group":["Africa/Juba"]}, +{"name":"Africa/Kampala","alternativeName":"East Africa Time","mainCities":["Kampala","Gulu"],"formatted":"+03:00 East Africa Time - Kampala, Gulu","group":["Africa/Kampala"]}, +{"name":"Indian/Mayotte","alternativeName":"East Africa Time","mainCities":["Mamoudzou","Koungou"],"formatted":"+03:00 East Africa Time - Mamoudzou, Koungou","group":["Indian/Mayotte"]}, +{"name":"Africa/Mogadishu","alternativeName":"East Africa Time","mainCities":["Mogadishu","Hargeysa"],"formatted":"+03:00 East Africa Time - Mogadishu, Hargeysa","group":["Africa/Mogadishu"]}, +{"name":"Indian/Comoro","alternativeName":"East Africa Time","mainCities":["Moroni","Moutsamoudou"],"formatted":"+03:00 East Africa Time - Moroni, Moutsamoudou","group":["Indian/Comoro"]}, +{"name":"Africa/Nairobi","alternativeName":"East Africa Time","mainCities":["Nairobi","Mombasa"],"formatted":"+03:00 East Africa Time - Nairobi, Mombasa","group":["Africa/Nairobi"]}, +{"name":"Europe/Istanbul","alternativeName":"GMT+03:00","mainCities":["Istanbul","Ankara"],"formatted":"+03:00 GMT+03:00 - Istanbul, Ankara","group":["Europe/Istanbul"]}, +{"name":"Europe/Minsk","alternativeName":"Moscow Time","mainCities":["Minsk","Homyel'"],"formatted":"+03:00 Moscow Time - Minsk, Homyel","group":["Europe/Minsk"]}, +{"name":"Europe/Moscow","alternativeName":"Moscow Time","mainCities":["Moscow","Saint Petersburg"],"formatted":"+03:00 Moscow Time - Moscow, Saint Petersburg","group":["Europe/Kirov","Europe/Moscow","Europe/Simferopol"]}, +{"name":"Antarctica/Syowa","alternativeName":"Syowa Time","mainCities":["Syowa"],"formatted":"+03:00 Syowa Time - Syowa","group":["Antarctica/Syowa"]}, +{"name":"Asia/Tehran","alternativeName":"Iran Time","mainCities":["Tehran","Mashhad"],"formatted":"+03:30 Iran Time - Tehran, Mashhad","group":["Asia/Tehran"]}, +{"name":"Asia/Yerevan","alternativeName":"Armenia Time","mainCities":["Yerevan","Gyumri"],"formatted":"+04:00 Armenia Time - Yerevan, Gyumri","group":["Asia/Yerevan"]}, +{"name":"Asia/Baku","alternativeName":"Azerbaijan Time","mainCities":["Baku","Ganja"],"formatted":"+04:00 Azerbaijan Time - Baku, Ganja","group":["Asia/Baku"]}, +{"name":"Asia/Tbilisi","alternativeName":"Georgia Time","mainCities":["Tbilisi","Kutaisi"],"formatted":"+04:00 Georgia Time - Tbilisi, Kutaisi","group":["Asia/Tbilisi"]}, +{"name":"Asia/Dubai","alternativeName":"Gulf Time","mainCities":["Dubai","Sharjah"],"formatted":"+04:00 Gulf Time - Dubai, Sharjah","group":["Asia/Dubai"]}, +{"name":"Asia/Muscat","alternativeName":"Gulf Time","mainCities":["Muscat","Seeb"],"formatted":"+04:00 Gulf Time - Muscat, Seeb","group":["Asia/Muscat"]}, +{"name":"Indian/Mauritius","alternativeName":"Mauritius Time","mainCities":["Port Louis","Beau Bassin-Rose Hill"],"formatted":"+04:00 Mauritius Time - Port Louis, Beau Bassin-Rose Hill","group":["Indian/Mauritius"]}, +{"name":"Indian/Reunion","alternativeName":"Réunion Time","mainCities":["Saint-Denis","Saint-Paul"],"formatted":"+04:00 Réunion Time - Saint-Denis, Saint-Paul","group":["Indian/Reunion"]}, +{"name":"Europe/Samara","alternativeName":"Samara Time","mainCities":["Samara","Volgograd"],"formatted":"+04:00 Samara Time - Samara, Volgograd","group":["Europe/Astrakhan","Europe/Samara","Europe/Saratov","Europe/Ulyanovsk","Europe/Volgograd"]}, +{"name":"Indian/Mahe","alternativeName":"Seychelles Time","mainCities":["Victoria"],"formatted":"+04:00 Seychelles Time - Victoria","group":["Indian/Mahe"]}, +{"name":"Asia/Kabul","alternativeName":"Afghanistan Time","mainCities":["Kabul","Kandhar"],"formatted":"+04:30 Afghanistan Time - Kabul, Kandhar","group":["Asia/Kabul"]}, +{"name":"Indian/Kerguelen","alternativeName":"French Southern & Antarctic Time","mainCities":["Port-aux-Français"],"formatted":"+05:00 French Southern & Antarctic Time - Port-aux-Français","group":["Indian/Kerguelen"]}, +{"name":"Indian/Maldives","alternativeName":"Maldives Time","mainCities":["Male"],"formatted":"+05:00 Maldives Time - Male","group":["Indian/Maldives"]}, +{"name":"Antarctica/Mawson","alternativeName":"Mawson Time","mainCities":["Mawson"],"formatted":"+05:00 Mawson Time - Mawson","group":["Antarctica/Mawson"]}, +{"name":"Asia/Karachi","alternativeName":"Pakistan Time","mainCities":["Karachi","Lahore"],"formatted":"+05:00 Pakistan Time - Karachi, Lahore","group":["Asia/Karachi"]}, +{"name":"Asia/Dushanbe","alternativeName":"Tajikistan Time","mainCities":["Dushanbe","Khujand"],"formatted":"+05:00 Tajikistan Time - Dushanbe, Khujand","group":["Asia/Dushanbe"]}, +{"name":"Asia/Ashgabat","alternativeName":"Turkmenistan Time","mainCities":["Ashgabat","Novo-Chardzhuy"],"formatted":"+05:00 Turkmenistan Time - Ashgabat, Novo-Chardzhuy","group":["Asia/Ashgabat"]}, +{"name":"Asia/Tashkent","alternativeName":"Uzbekistan Time","mainCities":["Tashkent","Namangan"],"formatted":"+05:00 Uzbekistan Time - Tashkent, Namangan","group":["Asia/Samarkand","Asia/Tashkent"]}, +{"name":"Asia/Qyzylorda","alternativeName":"West Kazakhstan Time","mainCities":["Kyzylorda","Aktobe"],"formatted":"+05:00 West Kazakhstan Time - Kyzylorda, Aktobe","group":["Asia/Aqtau","Asia/Aqtobe","Asia/Atyrau","Asia/Oral","Asia/Qyzylorda"]}, +{"name":"Asia/Yekaterinburg","alternativeName":"Yekaterinburg Time","mainCities":["Yekaterinburg","Chelyabinsk"],"formatted":"+05:00 Yekaterinburg Time - Yekaterinburg, Chelyabinsk","group":["Asia/Yekaterinburg"]}, +{"name":"Asia/Colombo","alternativeName":"India Time","mainCities":["Colombo","Dehiwala-Mount Lavinia"],"formatted":"+05:30 India Time - Colombo, Dehiwala-Mount Lavinia","group":["Asia/Colombo"]}, +{"name":"Asia/Kolkata","alternativeName":"India Time","mainCities":["Mumbai","Delhi"],"formatted":"+05:30 India Time - Mumbai, Delhi","group":["Asia/Kolkata"]}, +{"name":"Asia/Kathmandu","alternativeName":"Nepal Time","mainCities":["Kathmandu","Pokhara"],"formatted":"+05:45 Nepal Time - Kathmandu, Pokhara","group":["Asia/Kathmandu"]}, +{"name":"Asia/Dhaka","alternativeName":"Bangladesh Time","mainCities":["Dhaka","Chittagong"],"formatted":"+06:00 Bangladesh Time - Dhaka, Chittagong","group":["Asia/Dhaka"]}, +{"name":"Asia/Thimphu","alternativeName":"Bhutan Time","mainCities":["Thimphu","Punākha"],"formatted":"+06:00 Bhutan Time - Thimphu, Punākha","group":["Asia/Thimphu"]}, +{"name":"Asia/Almaty","alternativeName":"East Kazakhstan Time","mainCities":["Almaty","Karagandy"],"formatted":"+06:00 East Kazakhstan Time - Almaty, Karagandy","group":["Asia/Almaty","Asia/Qostanay"]}, +{"name":"Asia/Urumqi","alternativeName":"GMT+06:00","mainCities":["Zhongshan","Ürümqi"],"formatted":"+06:00 GMT+06:00 - Zhongshan, Ürümqi","group":["Asia/Urumqi"]}, +{"name":"Indian/Chagos","alternativeName":"Indian Ocean Time","mainCities":["Chagos"],"formatted":"+06:00 Indian Ocean Time - Chagos","group":["Indian/Chagos"]}, +{"name":"Asia/Bishkek","alternativeName":"Kyrgyzstan Time","mainCities":["Bishkek","Osh"],"formatted":"+06:00 Kyrgyzstan Time - Bishkek, Osh","group":["Asia/Bishkek"]}, +{"name":"Asia/Omsk","alternativeName":"Omsk Time","mainCities":["Omsk","Tara"],"formatted":"+06:00 Omsk Time - Omsk, Tara","group":["Asia/Omsk"]}, +{"name":"Antarctica/Vostok","alternativeName":"Vostok Time","mainCities":["Vostok"],"formatted":"+06:00 Vostok Time - Vostok","group":["Antarctica/Vostok"]}, +{"name":"Indian/Cocos","alternativeName":"Cocos Islands Time","mainCities":["West Island"],"formatted":"+06:30 Cocos Islands Time - West Island","group":["Indian/Cocos"]}, +{"name":"Asia/Yangon","alternativeName":"Myanmar Time","mainCities":["Yangon","Mandalay"],"formatted":"+06:30 Myanmar Time - Yangon, Mandalay","group":["Asia/Yangon"]}, +{"name":"Indian/Christmas","alternativeName":"Christmas Island Time","mainCities":["Flying Fish Cove"],"formatted":"+07:00 Christmas Island Time - Flying Fish Cove","group":["Indian/Christmas"]}, +{"name":"Antarctica/Davis","alternativeName":"Davis Time","mainCities":["Davis"],"formatted":"+07:00 Davis Time - Davis","group":["Antarctica/Davis"]}, +{"name":"Asia/Hovd","alternativeName":"Hovd Time","mainCities":["Khovd","Ölgii"],"formatted":"+07:00 Hovd Time - Khovd, Ölgii","group":["Asia/Hovd"]}, +{"name":"Asia/Bangkok","alternativeName":"Indochina Time","mainCities":["Bangkok","Samut Prakan"],"formatted":"+07:00 Indochina Time - Bangkok, Samut Prakan","group":["Asia/Bangkok"]}, +{"name":"Asia/Ho_Chi_Minh","alternativeName":"Indochina Time","mainCities":["Ho Chi Minh City","Hanoi"],"formatted":"+07:00 Indochina Time - Ho Chi Minh City, Hanoi","group":["Asia/Ho_Chi_Minh"]}, +{"name":"Asia/Phnom_Penh","alternativeName":"Indochina Time","mainCities":["Phnom Penh","Takeo"],"formatted":"+07:00 Indochina Time - Phnom Penh, Takeo","group":["Asia/Phnom_Penh"]}, +{"name":"Asia/Vientiane","alternativeName":"Indochina Time","mainCities":["Vientiane","Pakse"],"formatted":"+07:00 Indochina Time - Vientiane, Pakse","group":["Asia/Vientiane"]}, +{"name":"Asia/Novosibirsk","alternativeName":"Novosibirsk Time","mainCities":["Novosibirsk","Krasnoyarsk"],"formatted":"+07:00 Novosibirsk Time - Novosibirsk, Krasnoyarsk","group":["Asia/Barnaul","Asia/Krasnoyarsk","Asia/Novokuznetsk","Asia/Novosibirsk","Asia/Tomsk"]}, +{"name":"Asia/Jakarta","alternativeName":"Western Indonesia Time","mainCities":["Jakarta","Surabaya"],"formatted":"+07:00 Western Indonesia Time - Jakarta, Surabaya","group":["Asia/Jakarta","Asia/Pontianak"]}, +{"name":"Antarctica/Casey","alternativeName":"Australian Western Time","mainCities":["Casey"],"formatted":"+08:00 Australian Western Time - Casey","group":["Antarctica/Casey"]}, +{"name":"Australia/Perth","alternativeName":"Australian Western Time","mainCities":["Perth","Rockingham"],"formatted":"+08:00 Australian Western Time - Perth, Rockingham","group":["Australia/Perth"]}, +{"name":"Asia/Brunei","alternativeName":"Brunei Darussalam Time","mainCities":["Bandar Seri Begawan","Kuala Belait"],"formatted":"+08:00 Brunei Darussalam Time - Bandar Seri Begawan, Kuala Belait","group":["Asia/Brunei"]}, +{"name":"Asia/Makassar","alternativeName":"Central Indonesia Time","mainCities":["Makassar","Denpasar"],"formatted":"+08:00 Central Indonesia Time - Makassar, Denpasar","group":["Asia/Makassar"]}, +{"name":"Asia/Macau","alternativeName":"China Time","mainCities":["Macau"],"formatted":"+08:00 China Time - Macau","group":["Asia/Macau"]}, +{"name":"Asia/Shanghai","alternativeName":"China Time","mainCities":["Shanghai","Beijing"],"formatted":"+08:00 China Time - Shanghai, Beijing","group":["Asia/Shanghai"]}, +{"name":"Asia/Hong_Kong","alternativeName":"Hong Kong Time","mainCities":["Hong Kong","Kowloon"],"formatted":"+08:00 Hong Kong Time - Hong Kong, Kowloon","group":["Asia/Hong_Kong"]}, +{"name":"Asia/Irkutsk","alternativeName":"Irkutsk Time","mainCities":["Irkutsk","Ulan-Ude"],"formatted":"+08:00 Irkutsk Time - Irkutsk, Ulan-Ude","group":["Asia/Irkutsk"]}, +{"name":"Asia/Kuala_Lumpur","alternativeName":"Malaysia Time","mainCities":["Kota Bharu","Kuala Lumpur"],"formatted":"+08:00 Malaysia Time - Kota Bharu, Kuala Lumpur","group":["Asia/Kuala_Lumpur","Asia/Kuching"]}, +{"name":"Asia/Manila","alternativeName":"Philippine Time","mainCities":["Quezon City","Manila"],"formatted":"+08:00 Philippine Time - Quezon City, Manila","group":["Asia/Manila"]}, +{"name":"Asia/Singapore","alternativeName":"Singapore Time","mainCities":["Singapore","Woodlands"],"formatted":"+08:00 Singapore Time - Singapore, Woodlands","group":["Asia/Singapore"]}, +{"name":"Asia/Taipei","alternativeName":"Taipei Time","mainCities":["Taipei","Kaohsiung"],"formatted":"+08:00 Taipei Time - Taipei, Kaohsiung","group":["Asia/Taipei"]}, +{"name":"Asia/Ulaanbaatar","alternativeName":"Ulaanbaatar Time","mainCities":["Ulan Bator","Erdenet"],"formatted":"+08:00 Ulaanbaatar Time - Ulan Bator, Erdenet","group":["Asia/Choibalsan","Asia/Ulaanbaatar"]}, +{"name":"Australia/Eucla","alternativeName":"Australian Central Western Time","mainCities":["Eucla"],"formatted":"+08:45 Australian Central Western Time - Eucla","group":["Australia/Eucla"]}, +{"name":"Asia/Dili","alternativeName":"East Timor Time","mainCities":["Dili","Maliana"],"formatted":"+09:00 East Timor Time - Dili, Maliana","group":["Asia/Dili"]}, +{"name":"Asia/Jayapura","alternativeName":"Eastern Indonesia Time","mainCities":["Ambon","Jayapura"],"formatted":"+09:00 Eastern Indonesia Time - Ambon, Jayapura","group":["Asia/Jayapura"]}, +{"name":"Asia/Tokyo","alternativeName":"Japan Time","mainCities":["Tokyo","Yokohama"],"formatted":"+09:00 Japan Time - Tokyo, Yokohama","group":["Asia/Tokyo"]}, +{"name":"Asia/Pyongyang","alternativeName":"Korean Time","mainCities":["Pyongyang","Hienhing"],"formatted":"+09:00 Korean Time - Pyongyang, Hienhing","group":["Asia/Pyongyang"]}, +{"name":"Asia/Seoul","alternativeName":"Korean Time","mainCities":["Seoul","Busan"],"formatted":"+09:00 Korean Time - Seoul, Busan","group":["Asia/Seoul"]}, +{"name":"Pacific/Palau","alternativeName":"Palau Time","mainCities":["Ngerulmud"],"formatted":"+09:00 Palau Time - Ngerulmud","group":["Pacific/Palau"]}, +{"name":"Asia/Chita","alternativeName":"Yakutsk Time","mainCities":["Chita","Yakutsk"],"formatted":"+09:00 Yakutsk Time - Chita, Yakutsk","group":["Asia/Chita","Asia/Khandyga","Asia/Yakutsk"]}, +{"name":"Australia/Darwin","alternativeName":"Australian Central Time","mainCities":["Darwin","Alice Springs"],"formatted":"+09:30 Australian Central Time - Darwin, Alice Springs","group":["Australia/Darwin"]}, +{"name":"Australia/Brisbane","alternativeName":"Australian Eastern Time","mainCities":["Brisbane","Gold Coast"],"formatted":"+10:00 Australian Eastern Time - Brisbane, Gold Coast","group":["Australia/Brisbane","Australia/Lindeman"]}, +{"name":"Pacific/Guam","alternativeName":"Chamorro Time","mainCities":["Dededo Village","Yigo Village"],"formatted":"+10:00 Chamorro Time - Dededo Village, Yigo Village","group":["Pacific/Guam"]}, +{"name":"Pacific/Saipan","alternativeName":"Chamorro Time","mainCities":["Saipan"],"formatted":"+10:00 Chamorro Time - Saipan","group":["Pacific/Saipan"]}, +{"name":"Pacific/Chuuk","alternativeName":"Chuuk Time","mainCities":["Chuuk"],"formatted":"+10:00 Chuuk Time - Chuuk","group":["Pacific/Chuuk"]}, +{"name":"Antarctica/DumontDUrville","alternativeName":"Dumont-d’Urville Time","mainCities":["DumontDUrville"],"formatted":"+10:00 Dumont-d’Urville Time - DumontDUrville","group":["Antarctica/DumontDUrville"]}, +{"name":"Pacific/Port_Moresby","alternativeName":"Papua New Guinea Time","mainCities":["Port Moresby","Lae"],"formatted":"+10:00 Papua New Guinea Time - Port Moresby, Lae","group":["Pacific/Port_Moresby"]}, +{"name":"Asia/Vladivostok","alternativeName":"Vladivostok Time","mainCities":["Vladivostok","Khabarovsk"],"formatted":"+10:00 Vladivostok Time - Vladivostok, Khabarovsk","group":["Asia/Ust-Nera","Asia/Vladivostok"]}, +{"name":"Australia/Adelaide","alternativeName":"Australian Central Time","mainCities":["Adelaide","Adelaide Hills"],"formatted":"+10:30 Australian Central Time - Adelaide, Adelaide Hills","group":["Australia/Adelaide","Australia/Broken_Hill"]}, +{"name":"Australia/Sydney","alternativeName":"Australian Eastern Time","mainCities":["Sydney","Melbourne"],"formatted":"+11:00 Australian Eastern Time - Sydney, Melbourne","group":["Australia/Currie","Australia/Hobart","Australia/Melbourne","Australia/Sydney"]}, +{"name":"Pacific/Bougainville","alternativeName":"GMT+11:00","mainCities":["Arawa"],"formatted":"+11:00 GMT+11:00 - Arawa","group":["Pacific/Bougainville"]}, +{"name":"Pacific/Kosrae","alternativeName":"Kosrae Time","mainCities":["Kosrae","Palikir - National Government Center"],"formatted":"+11:00 Kosrae Time - Kosrae, Palikir - National Government Center","group":["Pacific/Kosrae","Pacific/Pohnpei"]}, +{"name":"Australia/Lord_Howe","alternativeName":"Lord Howe Time","mainCities":["Lord Howe"],"formatted":"+11:00 Lord Howe Time - Lord Howe","group":["Australia/Lord_Howe"]}, +{"name":"Antarctica/Macquarie","alternativeName":"Macquarie Island Time","mainCities":["Macquarie"],"formatted":"+11:00 Macquarie Island Time - Macquarie","group":["Antarctica/Macquarie"]}, +{"name":"Pacific/Noumea","alternativeName":"New Caledonia Time","mainCities":["Nouméa","Mont-Dore"],"formatted":"+11:00 New Caledonia Time - Nouméa, Mont-Dore","group":["Pacific/Noumea"]}, +{"name":"Asia/Sakhalin","alternativeName":"Sakhalin Time","mainCities":["Yuzhno-Sakhalinsk","Magadan"],"formatted":"+11:00 Sakhalin Time - Yuzhno-Sakhalinsk, Magadan","group":["Asia/Magadan","Asia/Sakhalin","Asia/Srednekolymsk"]}, +{"name":"Pacific/Guadalcanal","alternativeName":"Solomon Islands Time","mainCities":["Honiara"],"formatted":"+11:00 Solomon Islands Time - Honiara","group":["Pacific/Guadalcanal"]}, +{"name":"Pacific/Efate","alternativeName":"Vanuatu Time","mainCities":["Port-Vila"],"formatted":"+11:00 Vanuatu Time - Port-Vila","group":["Pacific/Efate"]}, +{"name":"Pacific/Tarawa","alternativeName":"Gilbert Islands Time","mainCities":["Tarawa"],"formatted":"+12:00 Gilbert Islands Time - Tarawa","group":["Pacific/Tarawa"]}, +{"name":"Pacific/Majuro","alternativeName":"Marshall Islands Time","mainCities":["Majuro","Kwajalein"],"formatted":"+12:00 Marshall Islands Time - Majuro, Kwajalein","group":["Pacific/Kwajalein","Pacific/Majuro"]}, +{"name":"Pacific/Nauru","alternativeName":"Nauru Time","mainCities":["Yaren"],"formatted":"+12:00 Nauru Time - Yaren","group":["Pacific/Nauru"]}, +{"name":"Pacific/Norfolk","alternativeName":"Norfolk Island Time","mainCities":["Kingston"],"formatted":"+12:00 Norfolk Island Time - Kingston","group":["Pacific/Norfolk"]}, +{"name":"Asia/Kamchatka","alternativeName":"Petropavlovsk-Kamchatski Time","mainCities":["Petropavlovsk-Kamchatsky","Yelizovo"],"formatted":"+12:00 Petropavlovsk-Kamchatski Time - Petropavlovsk-Kamchatsky, Yelizovo","group":["Asia/Anadyr","Asia/Kamchatka"]}, +{"name":"Pacific/Funafuti","alternativeName":"Tuvalu Time","mainCities":["Funafuti"],"formatted":"+12:00 Tuvalu Time - Funafuti","group":["Pacific/Funafuti"]}, +{"name":"Pacific/Wake","alternativeName":"Wake Island Time","mainCities":["Wake"],"formatted":"+12:00 Wake Island Time - Wake","group":["Pacific/Wake"]}, +{"name":"Pacific/Wallis","alternativeName":"Wallis & Futuna Time","mainCities":["Mata-Utu"],"formatted":"+12:00 Wallis & Futuna Time - Mata-Utu","group":["Pacific/Wallis"]}, +{"name":"Pacific/Fiji","alternativeName":"Fiji Summer Time","mainCities":["Suva","Lautoka"],"formatted":"+13:00 Fiji Summer Time - Suva, Lautoka","group":["Pacific/Fiji"]}, +{"name":"Pacific/Auckland","alternativeName":"New Zealand Time","mainCities":["Auckland","Wellington"],"formatted":"+13:00 New Zealand Time - Auckland, Wellington","group":["Pacific/Auckland"]}, +{"name":"Pacific/Enderbury","alternativeName":"Phoenix Islands Time","mainCities":["Enderbury"],"formatted":"+13:00 Phoenix Islands Time - Enderbury","group":["Pacific/Enderbury"]}, +{"name":"Pacific/Fakaofo","alternativeName":"Tokelau Time","mainCities":["Fakaofo"],"formatted":"+13:00 Tokelau Time - Fakaofo","group":["Pacific/Fakaofo"]}, +{"name":"Pacific/Tongatapu","alternativeName":"Tonga Time","mainCities":["Nukalofa"],"formatted":"+13:00 Tonga Time - Nukalofa","group":["Pacific/Tongatapu"]}, +{"name":"Pacific/Chatham","alternativeName":"Chatham Time","mainCities":["Chatham"],"formatted":"+13:45 Chatham Time - Chatham","group":["Pacific/Chatham"]}, +{"name":"Pacific/Apia","alternativeName":"Apia Time","mainCities":["Apia"],"formatted":"+14:00 Apia Time - Apia","group":["Pacific/Apia"]}, +{"name":"Pacific/Kiritimati","alternativeName":"Line Islands Time","mainCities":["Kiritimati"],"formatted":"+14:00 Line Islands Time - Kiritimati","group":["Pacific/Kiritimati"]}] \ No newline at end of file