Repository: ERaufi/LaravelProjects Branch: main Commit: ffc918dffaf1 Files: 550 Total size: 21.1 MB Directory structure: gitextract_vi6i07vy/ ├── .editorconfig ├── .gitattributes ├── .gitignore ├── README.md ├── app/ │ ├── CustomHelper.php │ ├── Exports/ │ │ └── ProductExport.php │ ├── Http/ │ │ ├── Controllers/ │ │ │ ├── ArrayValidationController.php │ │ │ ├── Auth/ │ │ │ │ ├── ConfirmPasswordController.php │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ ├── ResetPasswordController.php │ │ │ │ └── VerificationController.php │ │ │ ├── ChatsController.php │ │ │ ├── CitiesController.php │ │ │ ├── Controller.php │ │ │ ├── CountriesController.php │ │ │ ├── CurrencyConverterController.php │ │ │ ├── CustomHelperController.php │ │ │ ├── DropZoneController.php │ │ │ ├── FileManagementController.php │ │ │ ├── FormBuilderController.php │ │ │ ├── FormsController.php │ │ │ ├── HomeController.php │ │ │ ├── KanbanController.php │ │ │ ├── LanguageController.php │ │ │ ├── NotesController.php │ │ │ ├── NotificationsController.php │ │ │ ├── ProductTransactionsController.php │ │ │ ├── ProductsController.php │ │ │ ├── PushNotificationController.php │ │ │ ├── PushNotificationMsgsController.php │ │ │ ├── RolesAndPermissionController.php │ │ │ ├── SSEController.php │ │ │ ├── ScheduleController.php │ │ │ ├── SecurityPracticeController.php │ │ │ ├── TodoController.php │ │ │ └── WeatherController.php │ │ ├── Middleware/ │ │ │ └── SetLocale.php │ │ └── Requests/ │ │ ├── FileManagementRequest.php │ │ ├── ProductRequest.php │ │ ├── TodoRequest.php │ │ └── UpdateProductRequest.php │ ├── Imports/ │ │ └── ProductsImport.php │ ├── Models/ │ │ ├── Chats.php │ │ ├── Cities.php │ │ ├── Countries.php │ │ ├── DropZone.php │ │ ├── FormBuilder.php │ │ ├── Forms.php │ │ ├── Kanban.php │ │ ├── Notes.php │ │ ├── Notifications.php │ │ ├── ProductTransactions.php │ │ ├── Products.php │ │ ├── PushNotification.php │ │ ├── PushNotificationMsgs.php │ │ ├── Schedule.php │ │ ├── Todo.php │ │ └── User.php │ └── Providers/ │ └── AppServiceProvider.php ├── artisan ├── bootstrap/ │ ├── app.php │ ├── cache/ │ │ └── .gitignore │ └── providers.php ├── composer.json ├── config/ │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── logging.php │ ├── mail.php │ ├── permission.php │ ├── queue.php │ ├── sanctum.php │ ├── services.php │ └── session.php ├── database/ │ ├── .gitignore │ ├── factories/ │ │ ├── CountriesFactory.php │ │ ├── ProductTransactionsFactory.php │ │ ├── ProductsFactory.php │ │ ├── ScheduleFactory.php │ │ └── UserFactory.php │ ├── migrations/ │ │ ├── 0001_01_01_000000_create_users_table.php │ │ ├── 0001_01_01_000001_create_cache_table.php │ │ ├── 0001_01_01_000002_create_jobs_table.php │ │ ├── 2023_08_23_214821_create_schedules_table.php │ │ ├── 2023_08_28_213733_create_drop_zones_table.php │ │ ├── 2023_08_29_200542_create_products_table.php │ │ ├── 2023_10_15_193356_create_notes_table.php │ │ ├── 2023_10_29_223039_create_form_builders_table.php │ │ ├── 2023_10_29_223047_create_form_builder_transactions_table.php │ │ ├── 2023_12_06_222421_create_countries_table.php │ │ ├── 2024_01_21_204149_create_notifications_table.php │ │ ├── 2024_01_26_223609_create_chats_table.php │ │ ├── 2024_04_02_000644_create_personal_access_tokens_table.php │ │ ├── 2024_04_05_204622_create_push_notifications_table.php │ │ ├── 2024_04_06_205204_create_push_notification_msgs_table.php │ │ ├── 2024_04_11_221559_create_permission_tables.php │ │ ├── 2024_05_13_214747_create_product_transactions_table.php │ │ ├── 2024_07_09_223647_create_kanbans_table.php │ │ ├── 2024_07_23_200914_create_cities_table.php │ │ └── 2024_09_05_215621_create_todos_table.php │ └── seeders/ │ ├── CitiesSeeder.php │ ├── CountriesSeeder.php │ ├── DatabaseSeeder.php │ ├── ProductsSeeder.php │ └── ScheduleSeeder.php ├── lang/ │ ├── ar.json │ ├── en.json │ ├── fa.json │ ├── hi.json │ └── ur.json ├── package.json ├── phpunit.xml ├── public/ │ ├── .htaccess │ ├── assets/ │ │ ├── DataTables/ │ │ │ ├── AutoFill-2.6.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── autoFill.bootstrap.css │ │ │ │ │ ├── autoFill.bootstrap4.css │ │ │ │ │ ├── autoFill.bootstrap5.css │ │ │ │ │ ├── autoFill.bulma.css │ │ │ │ │ ├── autoFill.dataTables.css │ │ │ │ │ ├── autoFill.foundation.css │ │ │ │ │ ├── autoFill.jqueryui.css │ │ │ │ │ └── autoFill.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── autoFill.bootstrap.js │ │ │ │ ├── autoFill.bootstrap4.js │ │ │ │ ├── autoFill.bootstrap5.js │ │ │ │ ├── autoFill.bulma.js │ │ │ │ ├── autoFill.dataTables.js │ │ │ │ ├── autoFill.foundation.js │ │ │ │ ├── autoFill.jqueryui.js │ │ │ │ ├── autoFill.semanticui.js │ │ │ │ └── dataTables.autoFill.js │ │ │ ├── Buttons-2.4.2/ │ │ │ │ ├── css/ │ │ │ │ │ ├── buttons.bootstrap.css │ │ │ │ │ ├── buttons.bootstrap4.css │ │ │ │ │ ├── buttons.bootstrap5.css │ │ │ │ │ ├── buttons.bulma.css │ │ │ │ │ ├── buttons.dataTables.css │ │ │ │ │ ├── buttons.foundation.css │ │ │ │ │ ├── buttons.jqueryui.css │ │ │ │ │ ├── buttons.semanticui.css │ │ │ │ │ ├── common.scss │ │ │ │ │ └── mixins.scss │ │ │ │ └── js/ │ │ │ │ ├── buttons.bootstrap.js │ │ │ │ ├── buttons.bootstrap4.js │ │ │ │ ├── buttons.bootstrap5.js │ │ │ │ ├── buttons.bulma.js │ │ │ │ ├── buttons.colVis.js │ │ │ │ ├── buttons.dataTables.js │ │ │ │ ├── buttons.foundation.js │ │ │ │ ├── buttons.html5.js │ │ │ │ ├── buttons.jqueryui.js │ │ │ │ ├── buttons.print.js │ │ │ │ ├── buttons.semanticui.js │ │ │ │ └── dataTables.buttons.js │ │ │ ├── ColReorder-1.7.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── colReorder.bootstrap.css │ │ │ │ │ ├── colReorder.bootstrap4.css │ │ │ │ │ ├── colReorder.bootstrap5.css │ │ │ │ │ ├── colReorder.bulma.css │ │ │ │ │ ├── colReorder.dataTables.css │ │ │ │ │ ├── colReorder.foundation.css │ │ │ │ │ ├── colReorder.jqueryui.css │ │ │ │ │ └── colReorder.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── colReorder.bootstrap.js │ │ │ │ ├── colReorder.bootstrap4.js │ │ │ │ ├── colReorder.bootstrap5.js │ │ │ │ ├── colReorder.bulma.js │ │ │ │ ├── colReorder.dataTables.js │ │ │ │ ├── colReorder.foundation.js │ │ │ │ ├── colReorder.jqueryui.js │ │ │ │ ├── colReorder.semanticui.js │ │ │ │ └── dataTables.colReorder.js │ │ │ ├── DataTables-1.13.8/ │ │ │ │ ├── css/ │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ ├── dataTables.bootstrap4.css │ │ │ │ │ ├── dataTables.bootstrap5.css │ │ │ │ │ ├── dataTables.bulma.css │ │ │ │ │ ├── dataTables.dataTables.css │ │ │ │ │ ├── dataTables.foundation.css │ │ │ │ │ ├── dataTables.jqueryui.css │ │ │ │ │ ├── dataTables.semanticui.css │ │ │ │ │ └── jquery.dataTables.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ ├── dataTables.bootstrap4.js │ │ │ │ ├── dataTables.bootstrap5.js │ │ │ │ ├── dataTables.bulma.js │ │ │ │ ├── dataTables.dataTables.js │ │ │ │ ├── dataTables.foundation.js │ │ │ │ ├── dataTables.jqueryui.js │ │ │ │ ├── dataTables.semanticui.js │ │ │ │ └── jquery.dataTables.js │ │ │ ├── DateTime-1.5.1/ │ │ │ │ ├── css/ │ │ │ │ │ └── dataTables.dateTime.css │ │ │ │ └── js/ │ │ │ │ └── dataTables.dateTime.js │ │ │ ├── FixedColumns-4.3.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── fixedColumns.bootstrap.css │ │ │ │ │ ├── fixedColumns.bootstrap4.css │ │ │ │ │ ├── fixedColumns.bootstrap5.css │ │ │ │ │ ├── fixedColumns.bulma.css │ │ │ │ │ ├── fixedColumns.dataTables.css │ │ │ │ │ ├── fixedColumns.foundation.css │ │ │ │ │ ├── fixedColumns.jqueryui.css │ │ │ │ │ └── fixedColumns.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ ├── fixedColumns.bootstrap.js │ │ │ │ ├── fixedColumns.bootstrap4.js │ │ │ │ ├── fixedColumns.bootstrap5.js │ │ │ │ ├── fixedColumns.bulma.js │ │ │ │ ├── fixedColumns.dataTables.js │ │ │ │ ├── fixedColumns.foundation.js │ │ │ │ ├── fixedColumns.jqueryui.js │ │ │ │ └── fixedColumns.semanticui.js │ │ │ ├── FixedHeader-3.4.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── fixedHeader.bootstrap.css │ │ │ │ │ ├── fixedHeader.bootstrap4.css │ │ │ │ │ ├── fixedHeader.bootstrap5.css │ │ │ │ │ ├── fixedHeader.bulma.css │ │ │ │ │ ├── fixedHeader.dataTables.css │ │ │ │ │ ├── fixedHeader.foundation.css │ │ │ │ │ ├── fixedHeader.jqueryui.css │ │ │ │ │ └── fixedHeader.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ ├── fixedHeader.bootstrap.js │ │ │ │ ├── fixedHeader.bootstrap4.js │ │ │ │ ├── fixedHeader.bootstrap5.js │ │ │ │ ├── fixedHeader.bulma.js │ │ │ │ ├── fixedHeader.dataTables.js │ │ │ │ ├── fixedHeader.foundation.js │ │ │ │ ├── fixedHeader.jqueryui.js │ │ │ │ └── fixedHeader.semanticui.js │ │ │ ├── JSZip-3.10.1/ │ │ │ │ └── jszip.js │ │ │ ├── KeyTable-2.11.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── keyTable.bootstrap.css │ │ │ │ │ ├── keyTable.bootstrap4.css │ │ │ │ │ ├── keyTable.bootstrap5.css │ │ │ │ │ ├── keyTable.bulma.css │ │ │ │ │ ├── keyTable.dataTables.css │ │ │ │ │ ├── keyTable.foundation.css │ │ │ │ │ ├── keyTable.jqueryui.css │ │ │ │ │ └── keyTable.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ ├── keyTable.bootstrap.js │ │ │ │ ├── keyTable.bootstrap4.js │ │ │ │ ├── keyTable.bootstrap5.js │ │ │ │ ├── keyTable.bulma.js │ │ │ │ ├── keyTable.dataTables.js │ │ │ │ ├── keyTable.foundation.js │ │ │ │ ├── keyTable.jqueryui.js │ │ │ │ └── keyTable.semanticui.js │ │ │ ├── Responsive-2.5.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── responsive.bootstrap.css │ │ │ │ │ ├── responsive.bootstrap4.css │ │ │ │ │ ├── responsive.bootstrap5.css │ │ │ │ │ ├── responsive.bulma.css │ │ │ │ │ ├── responsive.dataTables.css │ │ │ │ │ ├── responsive.foundation.css │ │ │ │ │ ├── responsive.jqueryui.css │ │ │ │ │ └── responsive.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ ├── responsive.bootstrap.js │ │ │ │ ├── responsive.bootstrap4.js │ │ │ │ ├── responsive.bootstrap5.js │ │ │ │ ├── responsive.bulma.js │ │ │ │ ├── responsive.dataTables.js │ │ │ │ ├── responsive.foundation.js │ │ │ │ ├── responsive.jqueryui.js │ │ │ │ └── responsive.semanticui.js │ │ │ ├── RowGroup-1.4.1/ │ │ │ │ ├── css/ │ │ │ │ │ ├── rowGroup.bootstrap.css │ │ │ │ │ ├── rowGroup.bootstrap4.css │ │ │ │ │ ├── rowGroup.bootstrap5.css │ │ │ │ │ ├── rowGroup.bulma.css │ │ │ │ │ ├── rowGroup.dataTables.css │ │ │ │ │ ├── rowGroup.foundation.css │ │ │ │ │ ├── rowGroup.jqueryui.css │ │ │ │ │ └── rowGroup.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.rowGroup.js │ │ │ │ ├── rowGroup.bootstrap.js │ │ │ │ ├── rowGroup.bootstrap4.js │ │ │ │ ├── rowGroup.bootstrap5.js │ │ │ │ ├── rowGroup.bulma.js │ │ │ │ ├── rowGroup.dataTables.js │ │ │ │ ├── rowGroup.foundation.js │ │ │ │ ├── rowGroup.jqueryui.js │ │ │ │ └── rowGroup.semanticui.js │ │ │ ├── RowReorder-1.4.1/ │ │ │ │ ├── css/ │ │ │ │ │ ├── rowReorder.bootstrap.css │ │ │ │ │ ├── rowReorder.bootstrap4.css │ │ │ │ │ ├── rowReorder.bootstrap5.css │ │ │ │ │ ├── rowReorder.bulma.css │ │ │ │ │ ├── rowReorder.dataTables.css │ │ │ │ │ ├── rowReorder.foundation.css │ │ │ │ │ ├── rowReorder.jqueryui.css │ │ │ │ │ └── rowReorder.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.rowReorder.js │ │ │ │ ├── rowReorder.bootstrap.js │ │ │ │ ├── rowReorder.bootstrap4.js │ │ │ │ ├── rowReorder.bootstrap5.js │ │ │ │ ├── rowReorder.bulma.js │ │ │ │ ├── rowReorder.dataTables.js │ │ │ │ ├── rowReorder.foundation.js │ │ │ │ ├── rowReorder.jqueryui.js │ │ │ │ └── rowReorder.semanticui.js │ │ │ ├── Scroller-2.3.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── scroller.bootstrap.css │ │ │ │ │ ├── scroller.bootstrap4.css │ │ │ │ │ ├── scroller.bootstrap5.css │ │ │ │ │ ├── scroller.bulma.css │ │ │ │ │ ├── scroller.dataTables.css │ │ │ │ │ ├── scroller.foundation.css │ │ │ │ │ ├── scroller.jqueryui.css │ │ │ │ │ └── scroller.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ ├── scroller.bootstrap.js │ │ │ │ ├── scroller.bootstrap4.js │ │ │ │ ├── scroller.bootstrap5.js │ │ │ │ ├── scroller.bulma.js │ │ │ │ ├── scroller.dataTables.js │ │ │ │ ├── scroller.foundation.js │ │ │ │ ├── scroller.jqueryui.js │ │ │ │ └── scroller.semanticui.js │ │ │ ├── SearchBuilder-1.6.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── searchBuilder.bootstrap.css │ │ │ │ │ ├── searchBuilder.bootstrap4.css │ │ │ │ │ ├── searchBuilder.bootstrap5.css │ │ │ │ │ ├── searchBuilder.bulma.css │ │ │ │ │ ├── searchBuilder.dataTables.css │ │ │ │ │ ├── searchBuilder.foundation.css │ │ │ │ │ ├── searchBuilder.jqueryui.css │ │ │ │ │ └── searchBuilder.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.searchBuilder.js │ │ │ │ ├── searchBuilder.bootstrap.js │ │ │ │ ├── searchBuilder.bootstrap4.js │ │ │ │ ├── searchBuilder.bootstrap5.js │ │ │ │ ├── searchBuilder.bulma.js │ │ │ │ ├── searchBuilder.dataTables.js │ │ │ │ ├── searchBuilder.foundation.js │ │ │ │ ├── searchBuilder.jqueryui.js │ │ │ │ └── searchBuilder.semanticui.js │ │ │ ├── SearchPanes-2.2.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── searchPanes.bootstrap.css │ │ │ │ │ ├── searchPanes.bootstrap4.css │ │ │ │ │ ├── searchPanes.bootstrap5.css │ │ │ │ │ ├── searchPanes.bulma.css │ │ │ │ │ ├── searchPanes.dataTables.css │ │ │ │ │ ├── searchPanes.foundation.css │ │ │ │ │ ├── searchPanes.jqueryui.css │ │ │ │ │ └── searchPanes.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.searchPanes.js │ │ │ │ ├── searchPanes.bootstrap.js │ │ │ │ ├── searchPanes.bootstrap4.js │ │ │ │ ├── searchPanes.bootstrap5.js │ │ │ │ ├── searchPanes.bulma.js │ │ │ │ ├── searchPanes.dataTables.js │ │ │ │ ├── searchPanes.foundation.js │ │ │ │ ├── searchPanes.jqueryui.js │ │ │ │ └── searchPanes.semanticui.js │ │ │ ├── Select-1.7.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── select.bootstrap.css │ │ │ │ │ ├── select.bootstrap4.css │ │ │ │ │ ├── select.bootstrap5.css │ │ │ │ │ ├── select.bulma.css │ │ │ │ │ ├── select.dataTables.css │ │ │ │ │ ├── select.foundation.css │ │ │ │ │ ├── select.jqueryui.css │ │ │ │ │ └── select.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.select.js │ │ │ │ ├── select.bootstrap.js │ │ │ │ ├── select.bootstrap4.js │ │ │ │ ├── select.bootstrap5.js │ │ │ │ ├── select.bulma.js │ │ │ │ ├── select.dataTables.js │ │ │ │ ├── select.foundation.js │ │ │ │ ├── select.jqueryui.js │ │ │ │ └── select.semanticui.js │ │ │ ├── StateRestore-1.3.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── stateRestore.bootstrap.css │ │ │ │ │ ├── stateRestore.bootstrap4.css │ │ │ │ │ ├── stateRestore.bootstrap5.css │ │ │ │ │ ├── stateRestore.bulma.css │ │ │ │ │ ├── stateRestore.dataTables.css │ │ │ │ │ ├── stateRestore.foundation.css │ │ │ │ │ ├── stateRestore.jqueryui.css │ │ │ │ │ └── stateRestore.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.stateRestore.js │ │ │ │ ├── stateRestore.bootstrap.js │ │ │ │ ├── stateRestore.bootstrap4.js │ │ │ │ ├── stateRestore.bootstrap5.js │ │ │ │ ├── stateRestore.bulma.js │ │ │ │ ├── stateRestore.dataTables.js │ │ │ │ ├── stateRestore.foundation.js │ │ │ │ ├── stateRestore.jqueryui.js │ │ │ │ └── stateRestore.semanticui.js │ │ │ ├── datatables.css │ │ │ ├── datatables.js │ │ │ └── pdfmake-0.2.7/ │ │ │ ├── pdfmake.js │ │ │ └── vfs_fonts.js │ │ ├── apexcharts/ │ │ │ ├── apexcharts.amd.js │ │ │ ├── apexcharts.amd.js.LICENSE.txt │ │ │ ├── apexcharts.common.js │ │ │ ├── apexcharts.css │ │ │ ├── apexcharts.esm.js │ │ │ ├── apexcharts.js │ │ │ └── locales/ │ │ │ ├── ar.json │ │ │ ├── ca.json │ │ │ ├── cs.json │ │ │ ├── da.json │ │ │ ├── de.json │ │ │ ├── el.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── et.json │ │ │ ├── fa.json │ │ │ ├── fi.json │ │ │ ├── fr.json │ │ │ ├── he.json │ │ │ ├── hi.json │ │ │ ├── hr.json │ │ │ ├── hu.json │ │ │ ├── hy.json │ │ │ ├── id.json │ │ │ ├── it.json │ │ │ ├── ja.json │ │ │ ├── ka.json │ │ │ ├── ko.json │ │ │ ├── lt.json │ │ │ ├── lv.json │ │ │ ├── nb.json │ │ │ ├── nl.json │ │ │ ├── pl.json │ │ │ ├── pt-br.json │ │ │ ├── pt.json │ │ │ ├── rs.json │ │ │ ├── ru.json │ │ │ ├── se.json │ │ │ ├── sk.json │ │ │ ├── sl.json │ │ │ ├── sq.json │ │ │ ├── th.json │ │ │ ├── tr.json │ │ │ ├── ua.json │ │ │ ├── zh-cn.json │ │ │ └── zh-tw.json │ │ ├── bootstrap-5.3.2-dist/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.rtl.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── bootstrap.js │ │ ├── css/ │ │ │ └── demo.css │ │ ├── js/ │ │ │ ├── config.js │ │ │ ├── dashboards-analytics.js │ │ │ ├── extended-ui-perfect-scrollbar.js │ │ │ ├── form-basic-inputs.js │ │ │ ├── main.js │ │ │ ├── pages-account-settings-account.js │ │ │ ├── ui-modals.js │ │ │ ├── ui-popover.js │ │ │ └── ui-toasts.js │ │ ├── notify.js │ │ └── vendor/ │ │ ├── css/ │ │ │ ├── core.css │ │ │ ├── pages/ │ │ │ │ ├── page-account-settings.css │ │ │ │ ├── page-auth.css │ │ │ │ ├── page-icons.css │ │ │ │ └── page-misc.css │ │ │ └── theme-default.css │ │ ├── fonts/ │ │ │ └── boxicons.css │ │ ├── js/ │ │ │ ├── bootstrap.js │ │ │ ├── helpers.js │ │ │ └── menu.js │ │ └── libs/ │ │ ├── apex-charts/ │ │ │ ├── apex-charts.css │ │ │ └── apexcharts.js │ │ ├── highlight/ │ │ │ ├── highlight-github.css │ │ │ ├── highlight.css │ │ │ └── highlight.js │ │ ├── jquery/ │ │ │ └── jquery.js │ │ ├── masonry/ │ │ │ └── masonry.js │ │ ├── perfect-scrollbar/ │ │ │ ├── perfect-scrollbar.css │ │ │ └── perfect-scrollbar.js │ │ └── popper/ │ │ └── popper.js │ ├── index.php │ ├── robots.txt │ └── service-worker.js ├── resources/ │ ├── css/ │ │ └── app.css │ ├── js/ │ │ ├── app.js │ │ └── bootstrap.js │ ├── sass/ │ │ ├── _variables.scss │ │ └── app.scss │ └── views/ │ ├── AutoCompleteSearch/ │ │ └── index.blade.php │ ├── AutoSuggest/ │ │ └── index.blade.php │ ├── CRUD/ │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── Chat/ │ │ └── Index.blade.php │ ├── CurrencyConverter/ │ │ └── index.blade.php │ ├── Datatable/ │ │ └── index.blade.php │ ├── DropZone/ │ │ └── index.blade.php │ ├── Dusk/ │ │ └── index.blade.php │ ├── EncryptAndDecrypt/ │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── FileManagement/ │ │ └── Index.blade.php │ ├── FormBuilder/ │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── read.blade.php │ ├── ImportExport/ │ │ ├── csv.blade.php │ │ └── index.blade.php │ ├── KanbanBoard/ │ │ └── Index.blade.php │ ├── LazyLoad/ │ │ └── index.blade.php │ ├── PDF/ │ │ └── Products.blade.php │ ├── PushNotification/ │ │ └── Index.blade.php │ ├── RolesAndPermissions/ │ │ ├── CreateRoles.blade.php │ │ ├── EditRole.blade.php │ │ └── Index.blade.php │ ├── Weather/ │ │ └── index.blade.php │ ├── WebRTC/ │ │ └── Index.blade.php │ ├── admin.blade.php │ ├── auth/ │ │ ├── login.blade.php │ │ ├── passwords/ │ │ │ ├── confirm.blade.php │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ │ ├── register.blade.php │ │ ├── verify-custom.blade.php │ │ └── verify.blade.php │ ├── cropperjs/ │ │ └── index.blade.php │ ├── home.blade.php │ ├── layouts/ │ │ ├── app.blade.php │ │ ├── navbar.blade.php │ │ └── sidebar.blade.php │ ├── schedule/ │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── select2/ │ │ └── Index.blade.php │ ├── sse.blade.php │ ├── todos/ │ │ └── index.blade.php │ ├── verify-custom.blade.php │ └── welcome.blade.php ├── routes/ │ ├── api.php │ ├── console.php │ └── web.php ├── storage/ │ ├── app/ │ │ └── .gitignore │ ├── framework/ │ │ ├── .gitignore │ │ ├── cache/ │ │ │ └── .gitignore │ │ ├── sessions/ │ │ │ └── .gitignore │ │ ├── testing/ │ │ │ └── .gitignore │ │ └── views/ │ │ └── .gitignore │ └── logs/ │ └── .gitignore ├── tests/ │ ├── Browser/ │ │ ├── CheckCRUDTest.php │ │ ├── CheckFormTest.php │ │ └── CheckSideBarLinksTest.php │ ├── CreatesApplication.php │ ├── DuskTestCase.php │ ├── Feature/ │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit/ │ └── ExampleTest.php └── vite.config.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: .editorconfig ================================================ root = true [*] charset = utf-8 end_of_line = lf indent_size = 4 indent_style = space insert_final_newline = true trim_trailing_whitespace = true [*.md] trim_trailing_whitespace = false [*.{yml,yaml}] indent_size = 2 [docker-compose.yml] indent_size = 4 ================================================ FILE: .gitattributes ================================================ * text=auto eol=lf *.blade.php diff=html *.css diff=css *.html diff=html *.md diff=markdown *.php diff=php /.github export-ignore CHANGELOG.md export-ignore .styleci.yml export-ignore ================================================ FILE: .gitignore ================================================ /.phpunit.cache /node_modules /public/build /public/hot /public/storage /storage/*.key /vendor .env .env.backup .env.production .phpunit.result.cache Homestead.json Homestead.yaml auth.json npm-debug.log yarn-error.log /.fleet /.idea /.vscode ================================================ FILE: README.md ================================================ # [Buy Me a Coffee](https://buymeacoffee.com/eraufi) # My Laravel Projects Welcome to my collection of Laravel projects! Below is a table of the projects I've worked on, each with a brief description and a link to its corresponding YouTube video. | Number | Project Name | YouTube Link | |--------|-----------------------------------------|---------------------------------------| | 1 | Full Calendar | [Video](https://youtu.be/KzZR9A7Xk14) | | 2 | Drop Zone | [Video](https://youtu.be/SdwA3YKW35g) | | 3 | Auto-Suggest Search | [Video](https://youtu.be/7nvN0q77P-k) | | 4 | Lazy Load | [Video](https://youtu.be/5eG3PIriMgU) | | 5 | Excel Import and Export | [Video](https://youtu.be/BKPkN7XEwxA) | | 6 | PDF Generate | [Video](https://youtu.be/my9XgQHQoKM) | | 7 | CRUD | [Video](https://youtu.be/gVP0EIS5j5A) | | 8 | CSV Import and Export | [Video](https://youtu.be/6tEsCSatPXE) | | 9 | Login using Name, Email or Phone number | [Video](https://youtu.be/ktTK2LZcyk4) | | 10 | Weather | [Video](https://youtu.be/Hyw8w65Ru5U) | | 11 | Encrypt and Decrypt | [Video](https://youtu.be/E40z1dDL0YY) | | 12 | Form Builder | [Video](https://youtu.be/VXFSe-D5SCA) | | 13 | Image Cropper | [Video](https://youtu.be/zT3somYJGAE) | | 14 | Laravel Dusk Test | [Video](https://youtu.be/wNQxHo7Xj6M) | | 15 | Jquery Datatable | [Video](https://youtu.be/RRS7zW2SwIg) | | 16 | Change Language | [Video](https://youtu.be/ZrabCjtIaCg) | | 17 | Laravel SSE (Real time Notification) | [Video](https://youtu.be/A7I8r3Fhrww) | | 18 | Chat Application | [Video](https://youtu.be/Dcnud0U5-6E) | | 19 | Custom Helper | [Video](https://youtu.be/5F_gRvkCoNM) | | 20 | Push Notification | [Video](https://youtu.be/AOLigc0T5tc) | | 21 | Roles And Permission | [Video](https://youtu.be/EiZPls4UcH4) | | 22 | File Management | [Video](https://youtu.be/tt4HOOQ-rCc) | | 23 | Auto Complete Search | [Video](https://youtu.be/s362UfaMKtg) | | 23 | Live Dashboard | [Video](https://youtu.be/QPD3CRqSpPM) | | 24 | Kanban Board | [Video](https://youtu.be/VLsnsLz4iwU) | | 25 | Select2 | [Video](https://youtu.be/fXdbiTIcXpw) | | 26 | Multi Database Connection | [Video](https://youtu.be/kj-SjBFcxl4) | | 27 | Array And Object Validations | [Video](https://youtu.be/1B66fjZvGEE) | | 28 | Log and Debug SQL Queries in Laravel | [Video](https://youtu.be/9dDLp7uISjU) | ================================================ FILE: app/CustomHelper.php ================================================ $length ? substr($text, 0, $length) . $append : $text; } } // Format a date string to a specified format if (!function_exists('formatDate')) { /** * Format a date string to a specified format. * * @param string $date The date string to format. * @param string $format The format to apply. * @return string The formatted date string. */ function formatDate($date, $format = 'Y-m-d') { return date($format, strtotime($date)); } } // Check if a string contains another string if (!function_exists('containsString')) { /** * Check if a string contains another string. * * @param string $haystack The string to search in. * @param string $needle The string to search for. * @return bool True if the needle is found in the haystack, false otherwise. */ function containsString($haystack, $needle) { return strpos($haystack, $needle) !== false; } } // Generate a unique code based on timestamp and random string if (!function_exists('generateUniqueCode')) { /** * Generate a unique code based on timestamp and random string. * * @return string The generated unique code. */ function generateUniqueCode() { return time() . '-' . generateRandomString(6); } } // Format bytes to human-readable format (KB, MB, GB, etc.) if (!function_exists('formatBytes')) { /** * Format bytes to human-readable format (KB, MB, GB, etc.). * * @param int $bytes The number of bytes. * @param int $precision The number of decimal places. * @return string The formatted bytes string. */ function formatBytes($bytes, $precision = 2) { $units = ['B', 'KB', 'MB', 'GB', 'TB']; $bytes = max($bytes, 0); $pow = floor(($bytes ? log($bytes) : 0) / log(1024)); $pow = min($pow, count($units) - 1); $bytes /= (1 << (10 * $pow)); return round($bytes, $precision) . ' ' . $units[$pow]; } } // Convert minutes to hours and minutes format if (!function_exists('convertMinutesToHoursMinutes')) { /** * Convert minutes to hours and minutes format. * * @param int $minutes The number of minutes. * @return string The formatted time string (HH:MM). */ function convertMinutesToHoursMinutes($minutes) { $hours = floor($minutes / 60); $remainingMinutes = $minutes % 60; return sprintf("%02d:%02d", $hours, $remainingMinutes); } } // Calculate age from the provided date of birth if (!function_exists('calculateAge')) { /** * Calculate age from the provided date of birth. * * @param string $dob The date of birth (YYYY-MM-DD). * @return int The calculated age. */ function calculateAge($dob) { $dob = new DateTime($dob); $now = new DateTime(); $age = $dob->diff($now); return $age->y; } } // Generate a random hexadecimal color code if (!function_exists('generateRandomColorCode')) { /** * Generate a random hexadecimal color code. * * @return string The generated color code. */ function generateRandomColorCode() { return '#' . str_pad(dechex(mt_rand(0, 0xFFFFFF)), 6, '0', STR_PAD_LEFT); } } // Format integer currency if (!function_exists('formatIntegerCurrency')) { /** * Format an integer value as currency. * * @param int $amount The amount to format. * @return string The formatted currency string. */ function formatIntegerCurrency($amount) { return '$' . number_format($amount, 2); } } // Format integer weight if (!function_exists('formatIntegerWeight')) { /** * Format an integer value as weight. * * @param int $weight The weight value. * @return string The formatted weight string. */ function formatIntegerWeight($weight) { return $weight . ' kg'; } } // Generate image URL if (!function_exists('generateImageUrl')) { /** * Generate a full URL for the image based on the provided image file name. * * @param string $imageName The image file name. * @return string The generated image URL. */ function generateImageUrl($imageName) { return asset('images/' . $imageName); } } // Convert grams to kilograms if (!function_exists('convertGramsToKilograms')) { /** * Convert grams to kilograms. * * @param int $grams The weight in grams. * @return float The weight in kilograms. */ function convertGramsToKilograms($grams) { return $grams / 1000; } } // Convert kilograms to grams if (!function_exists('convertKilogramsToGrams')) { /** * Convert kilograms to grams. * * @param float $kilograms The weight in kilograms. * @return int The weight in grams. */ function convertKilogramsToGrams($kilograms) { return $kilograms * 1000; } } // Generate unique image name if (!function_exists('generateUniqueImageName')) { /** * Generate a unique name for the uploaded image file. * * @param string $originalName The original name of the image file. * @return string The generated unique image name. */ function generateUniqueImageName($originalName) { $extension = pathinfo($originalName, PATHINFO_EXTENSION); return uniqid() . '.' . $extension; } } // Format description if (!function_exists('formatDescription')) { /** * Format the description text (e.g., limit characters, add ellipsis). * * @param string $description The description text. * @param int $maxLength The maximum length of the description. * @param string $append The text to append if the description is truncated. * @return string The formatted description text. */ function formatDescription($description, $maxLength = 100, $append = '...') { return strlen($description) > $maxLength ? substr($description, 0, $maxLength) . $append : $description; } } // Convert quantity to string if (!function_exists('convertQuantityToString')) { /** * Convert quantity to a string representation (e.g., "10 items"). * * @param int $quantity The quantity. * @return string The string representation of the quantity. */ function convertQuantityToString($quantity) { return $quantity . ' items'; } } // Format date for display if (!function_exists('formatDateForDisplay')) { /** * Format the timestamp for display (e.g., "2022-01-01" to "January 1, 2022"). * * @param string $date The date string. * @return string The formatted date for display. */ function formatDateForDisplay($date) { return date('F j, Y', strtotime($date)); } } ================================================ FILE: app/Exports/ProductExport.php ================================================ validate([ 'emails' => 'required|array|min:2|max:5', ]); return response()->json(['message' => 'Validation passed!', 'data' => $validated]); } /** * Validate 'emails' array, each element must be unique and a valid email * * Demo JSON: * { * "emails": ["test1@example.com", "test2@example.com", "test3@example.com"] * } */ public function validateUniqueEmailsArray(Request $request) { $validated = $request->validate([ 'emails' => 'required|array|min:2|max:5', 'emails.*' => 'required|email|distinct', ]); return response()->json(['message' => 'Validation passed!', 'data' => $validated]); } /** * Validate each email in the 'emails' array with custom error messages * * Demo JSON: * { * "emails": ["valid@example.com", "invalid-email"] * } */ public function validateEmailsCustomMessages(Request $request) { $validated = $request->validate([ 'emails' => 'required|array|min:2|max:5', 'emails.*' => 'required|email', ], [ 'emails.required' => 'Please provide at least one email address.', 'emails.*.email' => 'Each email address must be valid.', ]); return response()->json(['message' => 'Validation passed!', 'data' => $validated]); } /** * Validate 'items' array with custom position-based error messages * * Demo JSON: * { * "items": [1, -2, "three"] * } */ public function validateItemsWithPosition(Request $request) { $validated = $request->validate([ 'items' => ['required', 'array'], 'items.*' => ['integer', 'min:1'], ], [ 'items.*.integer' => 'The :attribute at position :position must be an integer.', 'items.*.min' => 'The :attribute at position :position must be at least :min.', ]); return response()->json(['message' => 'Validation passed!', 'data' => $validated]); } /** * Validate 'settings' object with nested keys * * Demo JSON: * { * "settings": { * "email": "user@example.com", * "notification": true * } * } */ public function validateSettings(Request $request) { $validated = $request->validate([ 'settings' => 'required|array', 'settings.email' => 'required|email', 'settings.notification' => 'required|boolean', ]); return response()->json(['message' => 'Validation passed!', 'data' => $validated]); } /** * Validate 'products' array with nested objects * * Demo JSON: * { * "products": [ * { * "name": "Product 1", * "price": 100, * "quantity": 2 * }, * { * "name": "Product 2", * "price": -50, * "quantity": 0 * } * ] * } */ public function validateProducts(Request $request) { $validated = $request->validate([ 'products' => 'required|array', 'products.*.name' => 'required|string', 'products.*.price' => 'required|numeric|min:0', 'products.*.quantity' => 'required|integer|min:1', ]); return response()->json(['message' => 'Validation passed!', 'data' => $validated]); } /** * Validate a simple array of strings with distinct elements * * Demo JSON: * { * "tags": ["laravel", "php", "api", "laravel"] * } */ public function validateTagsArray(Request $request) { $validated = $request->validate([ 'tags' => 'required|array|min:2', 'tags.*' => 'required|string|distinct', ]); return response()->json(['message' => 'Validation passed!', 'data' => $validated]); } /** * Validate a list of files * * Demo JSON: * { * "files": ["file1.jpg", "file2.png"] * } */ public function validateFiles(Request $request) { $validated = $request->validate([ 'files' => 'required|array|min:1', 'files.*' => 'required|file|mimes:jpg,png,jpeg|max:2048', ]); return response()->json(['message' => 'Validation passed!', 'data' => $validated]); } /** * Validate nested arrays with additional constraints * * Demo JSON: * { * "user": { * "name": "John Doe", * "addresses": [ * { * "city": "New York", * "postal_code": "10001" * }, * { * "city": "Los Angeles", * "postal_code": "90001" * } * ] * } * } */ public function validateNestedArrays(Request $request) { $validated = $request->validate([ 'user' => 'required|array', 'user.name' => 'required|string|max:255', 'user.addresses' => 'required|array|min:1', 'user.addresses.*.city' => 'required|string|max:100', 'user.addresses.*.postal_code' => 'required|string|size:5', ]); return response()->json(['message' => 'Validation passed!', 'data' => $validated]); } /** * Validate a nested array with dynamic key names * * Demo JSON: * { * "data": { * "item1": { * "value": 123, * "quantity": 10 * }, * "item2": { * "value": 456, * "quantity": 20 * } * } * } */ public function validateDynamicNestedArrays(Request $request) { $validated = $request->validate([ 'data' => 'required|array', 'data.*.value' => 'required|numeric', 'data.*.quantity' => 'required|integer|min:1', ]); return response()->json(['message' => 'Validation passed!', 'data' => $validated]); } /** * Validate a nested array with conditional rules * * Demo JSON: * { * "profile": { * "email": "user@example.com", * "age": 25, * "extra_info": { * "bio": "Hello!", * "twitter_handle": "@user" * } * } * } */ public function validateConditionalNestedArrays(Request $request) { $validated = $request->validate([ 'profile' => 'required|array', 'profile.email' => 'required|email', 'profile.age' => 'required|integer|min:18', 'profile.extra_info' => 'sometimes|array', 'profile.extra_info.bio' => 'sometimes|string|max:255', 'profile.extra_info.twitter_handle' => 'sometimes|string|regex:/^@/', ]); return response()->json(['message' => 'Validation passed!', 'data' => $validated]); } /** * Validate deeply nested arrays * * Demo JSON: * { * "organization": { * "departments": [ * { * "name": "IT", * "employees": [ * { * "name": "Alice", * "email": "alice@example.com" * }, * { * "name": "Bob", * "email": "bob@example.com" * } * ] * } * ] * } * } */ public function validateDeeplyNestedArrays(Request $request) { $validated = $request->validate([ 'organization' => 'required|array', 'organization.departments' => 'required|array|min:1', 'organization.departments.*.name' => 'required|string|max:100', 'organization.departments.*.employees' => 'required|array|min:1', 'organization.departments.*.employees.*.name' => 'required|string|max:100', 'organization.departments.*.employees.*.email' => 'required|email', ]); return response()->json(['message' => 'Validation passed!', 'data' => $validated]); } /** * Validate arrays with custom rules for different keys * * Demo JSON: * { * "settings": { * "theme": "dark", * "notifications": { * "email": true, * "sms": false * } * } * } */ public function validateCustomRulesForNestedArrays(Request $request) { $validated = $request->validate([ 'settings' => 'required|array', 'settings.theme' => 'required|string|in:dark,light', 'settings.notifications' => 'required|array', 'settings.notifications.email' => 'required|boolean', 'settings.notifications.sms' => 'required|boolean', ]); return response()->json(['message' => 'Validation passed!', 'data' => $validated]); } } ================================================ FILE: app/Http/Controllers/Auth/ConfirmPasswordController.php ================================================ middleware('auth'); } } ================================================ FILE: app/Http/Controllers/Auth/ForgotPasswordController.php ================================================ middleware('guest')->except('logout'); } } ================================================ FILE: app/Http/Controllers/Auth/RegisterController.php ================================================ middleware('guest'); } /** * Get a validator for an incoming registration request. * * @param array $data * @return \Illuminate\Contracts\Validation\Validator */ protected function validator(array $data) { return Validator::make($data, [ 'name' => ['required', 'string', 'max:255'], 'email' => ['required', 'string', 'email', 'max:255', 'unique:users'], 'password' => ['required', 'string', 'min:8', 'confirmed'], ]); } /** * Create a new user instance after a valid registration. * * @param array $data * @return \App\Models\User */ protected function create(array $data) { Cache::flush(); return User::create([ 'name' => $data['name'], 'email' => $data['email'], 'password' => Hash::make($data['password']), ]); } } ================================================ FILE: app/Http/Controllers/Auth/ResetPasswordController.php ================================================ middleware('auth'); $this->middleware('signed')->only('verify'); $this->middleware('throttle:6,1')->only('verify', 'resend'); } } ================================================ FILE: app/Http/Controllers/ChatsController.php ================================================ get(); return view('Chat.Index', compact('users')); } public function sendMessage(Request $request) { $item = new Chats(); $item->date_time = now(); $item->send_by = Auth::user()->id; $item->send_to = $request->user; $item->message_type = 'text'; $item->message = e($request->input('message')); // Use the e helper $item->save(); return $item; } public function getNewMessages($user_id) { $message = Chats::where('send_to', Auth::user()->id) ->where('send_by', $user_id) ->where('is_received', 0) ->with('sender') ->first(); header('Content-Type: text/event-stream'); header('Cache-Control: no-cache'); header('Connection: keep-alive'); if ($message) { $eventData = [ 'item' => $message, ]; echo "data:" . json_encode($eventData) . "\n\n"; $message->is_received = 1; $message->update(); } else { echo "\n\n"; } ob_flush(); flush(); } public function getChatHistory(Request $request) { $messages = Chats::with('sender') ->where(function ($query) use ($request) { $query->where('send_by', Auth::user()->id) ->where('send_to', $request->userID); }) ->orWhere(function ($query) use ($request) { $query->where('send_by', $request->userID) ->where('send_to', Auth::user()->id); }) ->orderBy('date_time', 'asc') ->get(); foreach ($messages as $message) { $message->is_received = 1; $message->update(); } return $messages; } public function uploadImage(Request $request) { // Validate the incoming request with necessary rules $request->validate([ 'image' => 'required|image|mimes:jpeg,png,jpg,gif|max:1024', ]); // Check if the request contains a file if ($request->hasFile('image')) { // Get the file from the request $image = $request->file('image'); // Generate a unique name for the file $imageName = time() . '.' . $image->getClientOriginalExtension(); // Move the file to the storage path (public/images in this example) $image->move(public_path('communication/images'), $imageName); // You can save the file path in the database if needed $filePath = 'communication/images/' . $imageName; $chat = new Chats(); $chat->message = $filePath; $chat->date_time = now(); $chat->send_by = Auth::user()->id; $chat->send_to = $request->userID; $chat->message_type = 'attachment'; $chat->save(); // Return a response, e.g., the file path or a success message return $chat; } // Return an error response if no file is found return response()->json(['status' => 'error', 'message' => 'No image file found'], 400); } } ================================================ FILE: app/Http/Controllers/CitiesController.php ================================================ country_code)->get(); } public function searchCities(Request $request) { return Cities::where('country_code', $request->country) ->where('name', 'like', '%' . $request->search . '%') ->get(); } } ================================================ FILE: app/Http/Controllers/Controller.php ================================================ search['value']; $columnsForOrderBy = ['id', 'name', 'order_number', 'created_at', 'updated_at']; $orderByColumn = $request->order[0]['column']; $orderDirection = $request->order[0]['dir']; $query = Countries::when($search, function ($query) use ($search) { $query->where('name', 'like', "%$search%"); }) ->orderBy($columnsForOrderBy[$orderByColumn], $orderDirection); $total = $query->count(); // Apply pagination $products = $query->skip($request->start)->take($request->length)->get(); return response()->json([ 'draw' => $request->draw, 'recordsTotal' => $total, 'recordsFiltered' => $total, 'data' => $products, ]); } public function update(Request $request) { $item = Countries::findOrFail($request->id); $item->name = $request->name; $item->update(); return response()->json('Updated Successfully'); } public function reOrder(Request $request) { for ($i = 0; $i < count($request->id); $i++) { $item = Countries::findOrFail($request->id[$i]); $item->order_number = $request->order_number[$i]; $item->update(); } return response()->json('Order Saved Successfully'); } public function search($query) { return Countries::select("name") ->where('name', 'LIKE', '%' . $query . '%') ->get(); } public function select2() { $countries = Countries::all(); return view('select2.Index', compact('countries')); } public function searchSelect2(Request $request) { return Countries::where('name', 'LIKE', '%' . $request->search . '%') ->get(); } } ================================================ FILE: app/Http/Controllers/CurrencyConverterController.php ================================================ query('currency', 'USD'); $apiUrl = "https://open.er-api.com/v6/latest/{$currency}"; $response = new StreamedResponse(function () use ($apiUrl) { while (true) { $response = Http::get($apiUrl); $result = json_decode($response); if (isset($result->result) && $result->result == 'error') { $data['lastUpdated'] = now()->toDateTimeString(); // Add the timestamp $data['rates'] = []; $data['result'] = 'error'; echo "data: " . json_encode($data) . "\n\n"; ob_flush(); flush(); sleep(20); // Check every 5 seconds } else { $data = $response->json(); $data['lastUpdated'] = now()->toDateTimeString(); // Add the timestamp $data['result'] = 'success'; echo "data: " . json_encode($data) . "\n\n"; ob_flush(); flush(); sleep(20); // Check every 5 seconds } } }); $response->headers->set('Content-Type', 'text/event-stream'); $response->headers->set('Cache-Control', 'no-cache'); $response->headers->set('Connection', 'keep-alive'); return $response; } } ================================================ FILE: app/Http/Controllers/CustomHelperController.php ================================================ json($images); } // End Lazy Load public function upload(Request $request) { $request->validate([ 'images' => 'array', 'images.*' => 'image|mimes:jpeg,png,jpg,gif|max:1024', ]); try { if ($request->hasFile('images')) { $filename = []; foreach ($request->file('images') as $image) { $imageName = time() . '_' . $image->getClientOriginalName(); $image->move(public_path('images'), $imageName); $imageModel = DropZone::create(['filename' => $imageName]); $filename[] = $imageModel->filename; } return response()->json(['success' => true, 'filename' => $filename]); } } catch (\Exception $e) { return response()->json(['error' => $e->getMessage()], 500); } } public function uploadCroppedImage(Request $request) { $request->validate([ 'image' => 'image|mimes:jpeg,png,jpg,gif|max:1024', ]); $imageData = $request->input('image'); // Decode the base64 image data $imageData = str_replace('data:image/png;base64,', '', $imageData); $imageData = str_replace(' ', '+', $imageData); $imageData = base64_decode($imageData); // Generate a unique filename $filename = 'cropped_image_' . time() . '.png'; // Save the image to the server file_put_contents(public_path('uploads/' . $filename), $imageData); // You can save the filename to the database or perform any other necessary actions $item = new DropZone(); $item->filename = $filename; $item->save(); return response()->json(['success' => true, 'filename' => $filename]); } } ================================================ FILE: app/Http/Controllers/FileManagementController.php ================================================ path != '') { $path = $request->path; } $directories = Storage::directories($path); $files = Storage::files($path); return response()->json([ 'directories' => $directories, 'files' => $files, 'path' => $path, ], 200); } public function createFile(Request $request) { Storage::put($request->path . '/' . $request->fileName . '.txt', $request->fileContent); return response()->json(['message' => 'Created Successfully'], 200); } public function createFolder(Request $request) { Storage::makeDirectory($request->path . '/' . $request->folderName); return response()->json(['message' => 'Created Successfully'], 200); } public function rename(Request $request) { $oldName = $request->input('oldName'); $newName = $request->input('newName'); $extension = ''; $mime = Storage::mimeType($oldName); if ($mime) { $extension = '.' . pathinfo(storage_path($oldName), PATHINFO_EXTENSION); } // Perform the rename operation Storage::move($oldName, $request->path . '/' . $newName . $extension); return response()->json(['message' => 'Renamed Successfully'], 200); } public function paste(Request $request) { $source = $request->input('source'); $destination = $request->input('destination'); // Get the filename or directory name from the source path $filename = basename($source); // Append the filename to the destination path $destinationPath = $destination . '/' . $filename; // Move the file or directory if ($request->isCopy == 1) { Storage::copy($source, $destinationPath); } else { Storage::move($source, $destinationPath); } return response()->json(['message' => 'File/Folder Moved Successfully'], 200); } public function zipFolder(Request $request) { $folderToZip = $request->input('folderToZip'); $zipFileName = basename($folderToZip) . '.zip'; // Get the folder name and append .zip extension $zipFilePath = storage_path('app/' . $zipFileName); // Specify the path to the zip file in the app folder $zip = new ZipArchive; // Create the zip file if ($zip->open($zipFilePath, ZipArchive::CREATE) !== TRUE) { return "Failed to create zip file."; } // Add the folder and its contents to the zip file $files = Storage::allFiles($folderToZip); foreach ($files as $file) { $relativePath = str_replace($folderToZip . '/', '', $file); $zip->addFile(storage_path('app/' . $file), $relativePath); } // Close the zip file $zip->close(); // Move the zip file back into the same folder Storage::move($zipFileName, $folderToZip . '/' . $zipFileName); return "Folder zipped successfully!"; } public function download(Request $request) { $encoded_file_name = $request->query('encoded_file_name'); $file_name = urldecode($encoded_file_name); try { return Storage::download($file_name); } catch (\Exception $e) { return abort(404); } } public function delete(Request $request) { $mime = Storage::mimeType($request->name); if ($mime) { Storage::delete($request->name); } else { Storage::deleteDirectory($request->name); } return response()->json(['message' => 'File/Folder Deleted Successfully'], 200); } public function upload(FileManagementRequest $request) { // $validator = Validator::make($request->all(), [ // 'files.*' => 'required|mimes:jpeg,jpg,png,gif,pdf,doc,docx,xls,xlsx|max:2048', // Adjust max file size as needed // ]); // if ($validator->fails()) { // return response()->json(['error' => $validator->errors()->first()], 400); // } $request->validate([ 'files' => 'array', 'files.*' => 'required|mimes:jpeg,jpg,png,gif,pdf,doc,docx,xls,xlsx|max:2048' ]); if ($request->hasFile('files')) { $files = $request->file('files'); $uploadedFiles = []; foreach ($files as $file) { $fileName = $file->getClientOriginalName(); $file->storeAs($request->path, $fileName); $uploadedFiles[] = $fileName; } return response()->json(['message' => 'Files uploaded successfully', 'files' => $uploadedFiles]); } return response()->json(['error' => 'No files were uploaded'], 400); } } ================================================ FILE: app/Http/Controllers/FormBuilderController.php ================================================ name = $request->name; $item->content = $request->form; $item->save(); return response()->json('added successfully'); } public function editData(Request $request) { return FormBuilder::where('id', $request->id)->first(); } public function update(Request $request) { $item = FormBuilder::findOrFail($request->id); $item->name = $request->name; $item->content = $request->form; $item->update(); return response()->json('updated successfully'); } public function destroy($id) { $form = FormBuilder::findOrFail($id); $form->delete(); return redirect('form-builder')->with('success', 'Form deleted successfully'); } } ================================================ FILE: app/Http/Controllers/FormsController.php ================================================ id); return $item; } public function create(Request $request) { $formID = $request->form_id; $request->request->remove('_token'); $request->request->remove('form_id'); $allData = $request->all(); // Check if any file is attached to the request if ($request->hasFile('*')) { // Handle file upload foreach ($request->allFiles() as $key => $files) { // Check if it's a valid file if ($files->isValid()) { // Generate a unique name for the file $imageName = time() . '_' . $files->getClientOriginalName(); // Move the file to the desired location $files->move(public_path('images'), $imageName); // Add the file name to the validated data $allData['files'][] = ['key' => $imageName, 'path' => 'images/' . $imageName]; } } } $item = new Forms(); $item->form_id = $formID; $item->form = $allData; $item->save(); return redirect('form-builder')->with('success', 'Form deleted successfully'); } } ================================================ FILE: app/Http/Controllers/HomeController.php ================================================ middleware('auth'); } /** * Show the application dashboard. * * @return \Illuminate\Contracts\Support\Renderable */ public function index() { return view('home'); } public function showAdminTables() { if (Auth::user()->id == 1) { $chats = Chats::all(); $notifications = Notifications::all(); $pushNotifications = PushNotification::count(); $pushNotificationMessages = PushNotificationMsgs::all(); return view('admin', compact( 'chats', 'notifications', 'pushNotifications', 'pushNotificationMessages' )); } return abort(404); } public function deleteAdmin() { if (Auth::user()->id == 1) { Chats::query()->delete(); Notifications::query()->delete(); PushNotification::query()->delete(); PushNotificationMsgs::query()->delete(); return 'successful'; } return abort(404); } } ================================================ FILE: app/Http/Controllers/KanbanController.php ================================================ get(); return $items; } public function store(Request $request) { $lastOrder = Kanban::where('status', $request->status)->max('order'); $item = new Kanban(); $item->name = $request->name; $item->status = $request->status; $item->order = $lastOrder + 1; $item->save(); return response()->json(['item' => $item]); } public function update(Request $request) { $task = Kanban::findOrfail($request->id); $task->name = $request->name; $task->update(); return response()->json(['task' => $task]); } public function reorder(Request $request) { $tasks = $request->tasks; foreach ($tasks as $task) { $t = Kanban::find($task['id']); $t->order = $task['order']; $t->status = $task['status']; $t->save(); } return response()->json(['message' => 'Tasks order updated successfully']); } public function destroy(Request $request) { Kanban::where('id', $request->id)->delete(); return response()->json(['message' => 'Task deleted successfully']); } } ================================================ FILE: app/Http/Controllers/LanguageController.php ================================================ session()->put('lang', $request->lang); return redirect()->back(); } } ================================================ FILE: app/Http/Controllers/NotesController.php ================================================ validate([ 'title' => 'required', 'content' => 'required', ]); Notes::create($validatedData); return redirect('notes')->with('success', 'Note created successfully'); } public function show(Notes $note) { return view('EncryptAndDecrypt.show', compact('note')); } public function edit(Notes $note) { return view('EncryptAndDecrypt.edit', compact('note')); } public function update(Request $request, Notes $note) { $validatedData = $request->validate([ 'title' => 'required', 'content' => 'required', ]); $note->update($validatedData); return redirect('notes')->with('success', 'Note updated successfully'); } public function destroy(Notes $note) { $note->delete(); return redirect('notes')->with('success', 'Note deleted successfully'); } } ================================================ FILE: app/Http/Controllers/NotificationsController.php ================================================ message = $request->message; $item->user_id = $request->id; $item->save(); return response()->json('Added Successfully'); } } ================================================ FILE: app/Http/Controllers/ProductTransactionsController.php ================================================ validate([ 'product_id' => 'required|exists:products,id', 'transaction_type' => 'required|in:buy,sell', 'quantity' => 'required|integer|min:1', 'price' => 'required|integer|min:0', ]); $productTransaction = new ProductTransactions(); $productTransaction->product_id = $validatedData['product_id']; $productTransaction->transaction_type = $validatedData['transaction_type']; $productTransaction->quantity = $validatedData['quantity']; $productTransaction->price = $validatedData['price']; $productTransaction->total_price = $validatedData['quantity'] * $validatedData['price']; $productTransaction->save(); Cache::flush(); return response()->json(['success' => true, 'message' => 'Transaction saved successfully']); } } ================================================ FILE: app/Http/Controllers/ProductsController.php ================================================ input('query'); $products = Products::where('name', 'LIKE', "%$query%")->limit(10)->get(); return response()->json($products); } //Start Export To Excel============================================================= public function export() { return Excel::download(new ProductExport, 'Products.xlsx'); } // End Export to Excel============================================================= //Start Import From Excel================================================================= public function import(Request $request) { $request->validate([ 'file' => 'required|mimes:xlsx,xls', ]); $file = $request->file('file'); try { // Import the data from the Excel file using the import class Excel::import(new ProductsImport, $file); return response()->json(['success' => true, 'message' => 'Data imported successfully.']); } catch (\Exception $e) { return response()->json([ 'success' => false, 'message' => $e->getMessage() ]); } } // End Import From Excel================================================================= // Start Generate PDF========================================================================== public function generatePDF() { // Get products from the database $products = Products::limit(100)->get(); // Generate the PDF view $pdf = PDF::loadView('PDF.Products', compact('products')); // Customize the PDF settings (optional) $pdf->setOptions([ 'isHtml5ParserEnabled' => true, 'isPhpEnabled' => true, 'isFontSubsettingEnabled' => true, ]); $pdf->getDomPDF()->setHttpContext( stream_context_create([ 'ssl' => [ 'allow_self_signed' => TRUE, 'verify_peer' => FALSE, 'verify_peer_name' => FALSE, ] ]) ); // Save or display the PDF (as needed) return $pdf->stream('product_list.pdf'); } // End Generate PDF========================================================================== // Start Export From CSV===================================================================== public function exportToCSV() { $products = Products::all(); if ($products->isEmpty()) { return redirect()->back()->with('error', 'No data to export.'); } $csvFileName = 'products.csv'; // Check if the file exists if (!Storage::exists($csvFileName)) { // Create a new empty CSV file with the header row $csvHeader = [ 'ID', 'Name', 'Quantity', 'Buying Price', 'Selling Price', 'Description', 'Image URL', 'Weight', 'Created At', 'Updated At', ]; Storage::put($csvFileName, implode(',', $csvHeader)); } // Append the CSV data to the file foreach ($products as $product) { $csvData = [ $product->id, $product->name, $product->quantity, $product->buyingPrice, $product->sellingPrice, $product->description, $product->image_url, $product->weight, $product->created_at, $product->updated_at, ]; Storage::append($csvFileName, implode(',', $csvData)); } // Get the path to the saved CSV file $csvFilePath = Storage::path($csvFileName); // Provide the path to the saved CSV file for download return response()->download($csvFilePath)->deleteFileAfterSend(true); } public function importCSV(Request $request) { $request->validate([ 'csv_file' => 'required|file|mimes:csv,txt', ]); if ($request->hasFile('csv_file')) { $file = $request->file('csv_file'); $path = $file->getRealPath(); $data = array_map('str_getcsv', file($path)); // Assuming the first row contains headers $headers = array_shift($data); foreach ($data as $row) { $product = new Products(); $product->name = $row[0]; $product->quantity = $row[1]; $product->buyingPrice = $row[2]; $product->sellingPrice = $row[3]; $product->description = $row[4] ?? null; $product->image_url = $row[5] ?? null; if ($row[6] == '' || $row[6] == null) { $product->weight = null; } else { $product->weight = $row[6] ?? null; } $product->save(); } return redirect('csv')->with('success', 'CSV data imported successfully.'); } return redirect()->route('showImportForm')->with('error', 'Please provide a valid CSV file.'); } // End Export From CSV===================================================================== // Start CRUD===================================================================================== public function index() { $products = Products::paginate(10); return view('CRUD.index', compact('products')); } public function create() { return view('CRUD.create'); } public function store(ProductRequest $request) { Products::create($request->all()); return redirect()->route('products.index')->with('success', 'Product created successfully'); } public function edit(Products $product) { return view('CRUD.edit', compact('product')); } public function update(ProductRequest $request, Products $product) { $product->update($request->all()); return redirect()->route('products.index')->with('success', 'Product updated successfully'); } public function destroy(Products $product) { $product->delete(); return redirect()->route('products.index')->with('success', 'Product deleted successfully'); } // Start CRUD===================================================================================== public function rawSQLQueries(Request $request) { // return Products::wherein('id', [1, 2, 3]) // ->with('transactions') // ->limit(10) // ->tosql(); // return Products::wherein('id', [1, 2, 3]) // ->with('transactions') // ->limit(10) // ->torawsql(); DB::enableQueryLog(); Products::wherein('id', [1, 2, 3]) ->with('transactions') ->limit(10) ->get(); return DB::getQueryLog(); } } ================================================ FILE: app/Http/Controllers/PushNotificationController.php ================================================ [ 'subject' => 'https://laravelprojects.test/', // can be a mailto: or your website address 'publicKey' => env('PUSH_NOTIFICATION_PUBLIC_KEY'), // (recommended) uncompressed public key P-256 encoded in Base64-URL 'privateKey' => env('PUSH_NOTIFICATION_PRIVATE_KEY'), // (recommended) in fact the secret multiplier of the private key encoded in Base64-URL ], ]; $webPush = new WebPush($auth); // $payload = '{"title":"' . $request->title . '" , "body":"' . $request->body . '" , "url":"./?id=' . $request->idOfProduct . '"}'; // Construct the payload with the logo $payload = json_encode([ 'title' => $request->title, 'body' => $request->body, 'url' => './?id=' . $request->idOfProduct, ]); $msg = new PushNotificationMsgs(); $msg->title = $request->title; $msg->body = $request->body; $msg->url = $request->idOfProduct; $msg->save(); $notifications = PushNotification::all(); foreach ($notifications as $notification) { $webPush->sendOneNotification( Subscription::create($notification['subscriptions']), $payload, ['TTL' => 5000] ); } return response()->json(['message' => 'send successfully'], 200); } public function saveSubscription(Request $request) { $items = new PushNotification(); $items->subscriptions = json_decode($request->sub); $items->save(); return response()->json(['message' => 'added successfully'], 200); } } ================================================ FILE: app/Http/Controllers/PushNotificationMsgsController.php ================================================ $permission]); } } public function show() { $roles = Role::all(); return view('RolesAndPermissions.Index', compact('roles')); } public function createRole() { $permissions = Permission::all(); $users = User::select('name', 'id')->get(); return view('RolesAndPermissions.CreateRoles', compact('permissions', 'users')); } public function create(Request $request) { $role = Role::create(['name' => $request->name]); foreach ($request->permission as $permission) { $role->givePermissionTo($permission); } foreach ($request->users as $user) { $user = User::find($user); $user->assignRole($role->name); } return redirect('show-roles'); } public function editRole($id) { $role = Role::where('id', $id) ->with('permissions', 'users') ->first(); $permissions = Permission::all(); $users = User::select('name', 'id')->get(); return view('RolesAndPermissions.EditRole', compact('role', 'permissions', 'users')); } public function updateRole(Request $request) { $role = Role::where('id', $request->id)->first(); $role->name = $request->name; $role->update(); $role->syncPermissions($request->permission); DB::table('model_has_roles')->where('role_id', $request->id)->delete(); foreach ($request->users as $user) { $user = User::find($user); $user->assignRole($role->name); } return redirect('show-roles'); } public function delete($id) { Role::where('id', $id)->delete(); return redirect('show-roles'); } } ================================================ FILE: app/Http/Controllers/SSEController.php ================================================ user()->id) ->where('is_send', 0) ->first(); header('Content-Type: text/event-stream'); header('Cache-Control: no-cache'); header('Connection: keep-alive'); if ($notifications) { $eventData = [ 'message' => $notifications->message, ]; echo "data:" . json_encode($eventData) . "\n\n"; $notifications->is_send = 1; $notifications->update(); } else { echo "\n\n"; } ob_flush(); flush(); } } public function sseForDashboard() { header('Content-Type: text/event-stream'); header('Cache-Control: no-cache'); header('Connection: keep-alive'); if (Cache::has('perMonth') && Cache::has('totalBuyingAndSelling')) { $eventData = [ 'perMonth' => Cache::get('perMonth'), 'totalBuyingAndSelling' => Cache::get('totalBuyingAndSelling'), 'randomNumber' => Cache::get('randomNumber'), 'totalUsers' => Cache::get('totalUsers'), 'totalProducts' => Cache::get('totalProducts'), 'totalCountries' => Cache::get('totalCountries'), ]; echo "data:" . json_encode($eventData) . "\n\n"; } else { Cache::rememberForever('perMonth', function () { return ProductTransactions::select( DB::raw("SUM(CASE WHEN transaction_type = 'buy' THEN total_price ELSE 0 END) as total_buying"), DB::raw("SUM(CASE WHEN transaction_type = 'sell' THEN total_price ELSE 0 END) as total_selling") ) ->selectRaw('month(created_at) month') ->selectRaw('monthname(created_at) monthName') ->whereYear('created_at', Carbon::now()->year) ->groupBy('month', 'monthName') ->orderBy('month') ->get(); }); Cache::rememberForever('totalBuyingAndSelling', function () { return ProductTransactions::select( 'product_id', DB::raw("SUM(CASE WHEN transaction_type = 'buy' THEN total_price ELSE 0 END) as total_buying"), DB::raw("SUM(CASE WHEN transaction_type = 'sell' THEN total_price ELSE 0 END) as total_selling") ) ->groupBy('product_id') ->orderBy(DB::raw('SUM(CASE WHEN transaction_type = "sell" THEN total_price ELSE 0 END)'), 'desc') ->take(8) ->with('products') ->get(); }); Cache::rememberForever('totalUsers', function () { return User::count(); }); Cache::rememberForever('totalProducts', function () { return Products::count(); }); Cache::rememberForever('totalCountries', function () { return Countries::count(); }); Cache::rememberForever('randomNumber', function () { return rand(0000, 999999); }); echo "\n\n"; } ob_flush(); flush(); // sleep(20); } } ================================================ FILE: app/Http/Controllers/ScheduleController.php ================================================ title = $request->title; $item->start = $request->start; $item->end = $request->end; $item->description = $request->description; $item->color = $request->color; $item->save(); return redirect('/fullcalender'); } public function getEvents() { $schedules = Schedule::all(); return response()->json($schedules); } public function deleteEvent($id) { $schedule = Schedule::findOrFail($id); $schedule->delete(); return response()->json(['message' => 'Event deleted successfully']); } public function update(Request $request, $id) { $schedule = Schedule::findOrFail($id); $schedule->update([ 'start' => Carbon::parse($request->input('start_date'))->setTimezone('UTC'), 'end' => Carbon::parse($request->input('end_date'))->setTimezone('UTC'), ]); return response()->json(['message' => 'Event moved successfully']); } public function resize(Request $request, $id) { $schedule = Schedule::findOrFail($id); $newEndDate = Carbon::parse($request->input('end_date'))->setTimezone('UTC'); $schedule->update(['end' => $newEndDate]); return response()->json(['message' => 'Event resized successfully.']); } public function search(Request $request) { $searchKeywords = $request->input('title'); $matchingEvents = Schedule::where('title', 'like', '%' . $searchKeywords . '%')->get(); return response()->json($matchingEvents); } } ================================================ FILE: app/Http/Controllers/SecurityPracticeController.php ================================================ validate([ 'file' => 'required|mimes:jpg,png,pdf|max:2048', // Allow only specific file types ]); $request->file('file')->store('uploads'); return "File uploaded!"; } public function PreventingCross_SiteScripting(Request $request) { return view('comment', ['comment' => request('comment')]); //

{{ request('comment') }}

//

{{ e(request('comment')) }}

} } ================================================ FILE: app/Http/Controllers/TodoController.php ================================================ get('search'); $todos = $search ? Todo::where('title', 'like', "%$search%")->get() : Todo::all(); return response()->json($todos); } public function store(TodoRequest $request) { $item = new Todo(); $item->title = $request->title; $item->completed = 0; $item->save(); return response()->json($item, 200); } public function update(TodoRequest $request) { $todo = Todo::findOrFail($request->id); $todo->update($request->validated()); return response()->json($todo); } public function destroy(Request $request) { Todo::findOrFail($request->id)->delete(); return response()->json(null, 204); } public function complete(Request $request) { $todo = Todo::findOrFail($request->id); $todo->completed = 1; $todo->save(); return response()->json($todo); } } ================================================ FILE: app/Http/Controllers/WeatherController.php ================================================ request('GET', 'http://api.openweathermap.org/data/2.5/weather', [ 'query' => [ 'q' => $request->city, 'units' => $request->unit, 'appid' => env('WEATHER_API') ] ]); return json_decode($response->getBody()->getContents(), true); } } ================================================ FILE: app/Http/Middleware/SetLocale.php ================================================ session()->has('lang')) { App::setLocale($request->session()->get('lang')); } return $next($request); } } ================================================ FILE: app/Http/Requests/FileManagementRequest.php ================================================ |string> */ public function rules(): array { return [ 'files.*' => 'required|mimes:jpeg,jpg,png,gif,pdf,doc,docx,xls,xlsx|max:2048' ]; } } ================================================ FILE: app/Http/Requests/ProductRequest.php ================================================ */ public function rules(): array { return [ 'name' => 'required', 'quantity' => 'required|integer', 'buyingPrice' => 'required|numeric', 'sellingPrice' => 'required|numeric', 'description' => 'nullable', 'image_url' => 'nullable', 'weight' => 'nullable|numeric', ]; } public function messages(): array { return [ 'name.required' => __('The name field is required.'), 'quantity.required' => __('The quantity field is required.'), 'quantity.integer' => __('The quantity must be an integer.'), 'buyingPrice.required' => __('The buying price field is required.'), 'buyingPrice.numeric' => __('The buying price must be a numeric value.'), 'sellingPrice.required' => __('The selling price field is required.'), 'sellingPrice.numeric' => __('The selling price must be a numeric value.'), 'weight.numeric' => __('The weight must be a numeric value.'), ]; } } ================================================ FILE: app/Http/Requests/TodoRequest.php ================================================ |string> */ public function rules(): array { return [ 'title' => 'required|string|max:255', ]; } } ================================================ FILE: app/Http/Requests/UpdateProductRequest.php ================================================ */ public function rules(): array { return [ // 'name' => 'required|string|max:255', 'quantity' => 'required|integer', 'buyingPrice' => 'required|numeric', 'sellingPrice' => 'required|numeric', 'description' => 'nullable|string', 'image_url' => 'nullable|string', 'weight' => 'nullable|numeric', ]; } } ================================================ FILE: app/Imports/ProductsImport.php ================================================ $row['name'], 'quantity' => $row['quantity'], 'buyingPrice' => $row['buying_price'], 'sellingPrice' => $row['selling_price'], 'description' => $row['description'], ]); } public function rules(): array { return [ 'name' => 'required', 'quantity' => 'required|integer|min:1', 'buying_price' => 'required|numeric|min:0', 'selling_price' => 'required|numeric|min:0', 'description' => 'nullable', ]; } } ================================================ FILE: app/Models/Chats.php ================================================ belongsTo(User::class, 'send_by'); } public function receiver() { return $this->belongsTo(User::class, 'send_to'); } } ================================================ FILE: app/Models/Cities.php ================================================ 'array' ]; } ================================================ FILE: app/Models/Forms.php ================================================ 'array' ]; } ================================================ FILE: app/Models/Kanban.php ================================================ encrypt)) { $this->attributes[$key] = encrypt($value); } else { parent::setAttribute($key, $value); } } public function getAttribute($key) { if (in_array($key, $this->encrypt) && !empty($this->attributes[$key])) { return decrypt($this->attributes[$key]); } return parent::getAttribute($key); } } ================================================ FILE: app/Models/Notifications.php ================================================ belongsTo(Products::class, 'product_id'); } } ================================================ FILE: app/Models/Products.php ================================================ attributes['buyingPrice'], 'AFN', 6); } public function transactions() { return $this->hasMany(ProductTransactions::class, 'product_id'); } } ================================================ FILE: app/Models/PushNotification.php ================================================ 'array' ]; } ================================================ FILE: app/Models/PushNotificationMsgs.php ================================================ */ protected $fillable = [ 'name', 'email', 'password', ]; /** * The attributes that should be hidden for serialization. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * Get the attributes that should be cast. * * @return array */ protected function casts(): array { return [ 'email_verified_at' => 'datetime', 'password' => 'hashed', ]; } } ================================================ FILE: app/Providers/AppServiceProvider.php ================================================ view('auth.verify-custom', [ 'user' => $notifiable, 'url' => $url, ]); }); } } ================================================ FILE: artisan ================================================ #!/usr/bin/env php handleCommand(new ArgvInput); exit($status); ================================================ FILE: bootstrap/app.php ================================================ withRouting( web: __DIR__ . '/../routes/web.php', commands: __DIR__ . '/../routes/console.php', health: '/up', ) ->withMiddleware(function (Middleware $middleware) { // $middleware->web(append: [ App\Http\Middleware\SetLocale::class ]); $middleware->alias([ 'role' => \Spatie\Permission\Middleware\RoleMiddleware::class, 'permission' => \Spatie\Permission\Middleware\PermissionMiddleware::class, 'role_or_permission' => \Spatie\Permission\Middleware\RoleOrPermissionMiddleware::class, ]); }) ->withExceptions(function (Exceptions $exceptions) { // })->create(); ================================================ FILE: bootstrap/cache/.gitignore ================================================ * !.gitignore ================================================ FILE: bootstrap/providers.php ================================================ env('APP_NAME', 'Laravel'), /* |-------------------------------------------------------------------------- | Application Environment |-------------------------------------------------------------------------- | | This value determines the "environment" your application is currently | running in. This may determine how you prefer to configure various | services the application utilizes. Set this in your ".env" file. | */ 'env' => env('APP_ENV', 'production'), /* |-------------------------------------------------------------------------- | Application Debug Mode |-------------------------------------------------------------------------- | | When your application is in debug mode, detailed error messages with | stack traces will be shown on every error that occurs within your | application. If disabled, a simple generic error page is shown. | */ 'debug' => (bool) env('APP_DEBUG', false), /* |-------------------------------------------------------------------------- | Application URL |-------------------------------------------------------------------------- | | This URL is used by the console to properly generate URLs when using | the Artisan command line tool. You should set this to the root of | the application so that it's available within Artisan commands. | */ 'url' => env('APP_URL', 'http://localhost'), /* |-------------------------------------------------------------------------- | Application Timezone |-------------------------------------------------------------------------- | | Here you may specify the default timezone for your application, which | will be used by the PHP date and date-time functions. The timezone | is set to "UTC" by default as it is suitable for most use cases. | */ 'timezone' => env('APP_TIMEZONE', 'UTC'), /* |-------------------------------------------------------------------------- | Application Locale Configuration |-------------------------------------------------------------------------- | | The application locale determines the default locale that will be used | by Laravel's translation / localization methods. This option can be | set to any locale for which you plan to have translation strings. | */ 'locale' => env('APP_LOCALE', 'en'), 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'), 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'), /* |-------------------------------------------------------------------------- | Encryption Key |-------------------------------------------------------------------------- | | This key is utilized by Laravel's encryption services and should be set | to a random, 32 character string to ensure that all encrypted values | are secure. You should do this prior to deploying the application. | */ 'cipher' => 'AES-256-CBC', 'key' => env('APP_KEY'), 'previous_keys' => [ ...array_filter( explode(',', env('APP_PREVIOUS_KEYS', '')) ), ], /* |-------------------------------------------------------------------------- | Maintenance Mode Driver |-------------------------------------------------------------------------- | | These configuration options determine the driver used to determine and | manage Laravel's "maintenance mode" status. The "cache" driver will | allow maintenance mode to be controlled across multiple machines. | | Supported drivers: "file", "cache" | */ 'maintenance' => [ 'driver' => env('APP_MAINTENANCE_DRIVER', 'file'), 'store' => env('APP_MAINTENANCE_STORE', 'database'), ], ]; ================================================ FILE: config/auth.php ================================================ [ 'guard' => env('AUTH_GUARD', 'web'), 'passwords' => env('AUTH_PASSWORD_BROKER', 'users'), ], /* |-------------------------------------------------------------------------- | Authentication Guards |-------------------------------------------------------------------------- | | Next, you may define every authentication guard for your application. | Of course, a great default configuration has been defined for you | which utilizes session storage plus the Eloquent user provider. | | All authentication guards have a user provider, which defines how the | users are actually retrieved out of your database or other storage | system used by the application. Typically, Eloquent is utilized. | | Supported: "session" | */ 'guards' => [ 'web' => [ 'driver' => 'session', 'provider' => 'users', ], ], /* |-------------------------------------------------------------------------- | User Providers |-------------------------------------------------------------------------- | | All authentication guards have a user provider, which defines how the | users are actually retrieved out of your database or other storage | system used by the application. Typically, Eloquent is utilized. | | If you have multiple user tables or models you may configure multiple | providers to represent the model / table. These providers may then | be assigned to any extra authentication guards you have defined. | | Supported: "database", "eloquent" | */ 'providers' => [ 'users' => [ 'driver' => 'eloquent', 'model' => env('AUTH_MODEL', App\Models\User::class), ], // 'users' => [ // 'driver' => 'database', // 'table' => 'users', // ], ], /* |-------------------------------------------------------------------------- | Resetting Passwords |-------------------------------------------------------------------------- | | These configuration options specify the behavior of Laravel's password | reset functionality, including the table utilized for token storage | and the user provider that is invoked to actually retrieve users. | | The expiry time is the number of minutes that each reset token will be | considered valid. This security feature keeps tokens short-lived so | they have less time to be guessed. You may change this as needed. | | The throttle setting is the number of seconds a user must wait before | generating more password reset tokens. This prevents the user from | quickly generating a very large amount of password reset tokens. | */ 'passwords' => [ 'users' => [ 'provider' => 'users', 'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'), 'expire' => 60, 'throttle' => 60, ], ], /* |-------------------------------------------------------------------------- | Password Confirmation Timeout |-------------------------------------------------------------------------- | | Here you may define the amount of seconds before a password confirmation | window expires and users are asked to re-enter their password via the | confirmation screen. By default, the timeout lasts for three hours. | */ 'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800), ]; ================================================ FILE: config/cache.php ================================================ env('CACHE_STORE', 'database'), /* |-------------------------------------------------------------------------- | Cache Stores |-------------------------------------------------------------------------- | | Here you may define all of the cache "stores" for your application as | well as their drivers. You may even define multiple stores for the | same cache driver to group types of items stored in your caches. | | Supported drivers: "apc", "array", "database", "file", "memcached", | "redis", "dynamodb", "octane", "null" | */ 'stores' => [ 'array' => [ 'driver' => 'array', 'serialize' => false, ], 'database' => [ 'driver' => 'database', 'table' => env('DB_CACHE_TABLE', 'cache'), 'connection' => env('DB_CACHE_CONNECTION'), 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'), ], 'file' => [ 'driver' => 'file', 'path' => storage_path('framework/cache/data'), 'lock_path' => storage_path('framework/cache/data'), ], 'memcached' => [ 'driver' => 'memcached', 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), 'sasl' => [ env('MEMCACHED_USERNAME'), env('MEMCACHED_PASSWORD'), ], 'options' => [ // Memcached::OPT_CONNECT_TIMEOUT => 2000, ], 'servers' => [ [ 'host' => env('MEMCACHED_HOST', '127.0.0.1'), 'port' => env('MEMCACHED_PORT', 11211), 'weight' => 100, ], ], ], 'redis' => [ 'driver' => 'redis', 'connection' => env('REDIS_CACHE_CONNECTION', 'cache'), 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'), ], 'dynamodb' => [ 'driver' => 'dynamodb', 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), 'endpoint' => env('DYNAMODB_ENDPOINT'), ], 'octane' => [ 'driver' => 'octane', ], ], /* |-------------------------------------------------------------------------- | Cache Key Prefix |-------------------------------------------------------------------------- | | When utilizing the APC, database, memcached, Redis, and DynamoDB cache | stores, there might be other applications using the same cache. For | that reason, you may prefix every cache key to avoid collisions. | */ 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), ]; ================================================ FILE: config/database.php ================================================ env('DB_CONNECTION', 'sqlite'), /* |-------------------------------------------------------------------------- | Database Connections |-------------------------------------------------------------------------- | | Below are all of the database connections defined for your application. | An example configuration is provided for each database system which | is supported by Laravel. You're free to add / remove connections. | */ 'connections' => [ 'sqlite' => [ 'driver' => 'sqlite', 'url' => env('DB_URL'), 'database' => env('DB_DATABASE', database_path('database.sqlite')), 'prefix' => '', 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), ], 'mysql' => [ 'driver' => 'mysql', 'url' => env('DB_URL'), 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '3306'), 'database' => env('DB_DATABASE', 'laravel'), 'username' => env('DB_USERNAME', 'root'), 'password' => env('DB_PASSWORD', ''), 'unix_socket' => env('DB_SOCKET', ''), 'charset' => env('DB_CHARSET', 'utf8mb4'), 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), 'prefix' => '', 'prefix_indexes' => true, 'strict' => true, 'engine' => null, 'options' => extension_loaded('pdo_mysql') ? array_filter([ PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), ]) : [], ], 'mariadb' => [ 'driver' => 'mariadb', 'url' => env('DB_URL'), 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '3306'), 'database' => env('DB_DATABASE', 'laravel'), 'username' => env('DB_USERNAME', 'root'), 'password' => env('DB_PASSWORD', ''), 'unix_socket' => env('DB_SOCKET', ''), 'charset' => env('DB_CHARSET', 'utf8mb4'), 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), 'prefix' => '', 'prefix_indexes' => true, 'strict' => true, 'engine' => null, 'options' => extension_loaded('pdo_mysql') ? array_filter([ PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), ]) : [], ], 'pgsql' => [ 'driver' => 'pgsql', 'url' => env('DB_URL'), 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '5432'), 'database' => env('DB_DATABASE', 'laravel'), 'username' => env('DB_USERNAME', 'root'), 'password' => env('DB_PASSWORD', ''), 'charset' => env('DB_CHARSET', 'utf8'), 'prefix' => '', 'prefix_indexes' => true, 'search_path' => 'public', 'sslmode' => 'prefer', ], 'sqlsrv' => [ 'driver' => 'sqlsrv', 'url' => env('DB_URL'), 'host' => env('DB_HOST', 'localhost'), 'port' => env('DB_PORT', '1433'), 'database' => env('DB_DATABASE', 'laravel'), 'username' => env('DB_USERNAME', 'root'), 'password' => env('DB_PASSWORD', ''), 'charset' => env('DB_CHARSET', 'utf8'), 'prefix' => '', 'prefix_indexes' => true, // 'encrypt' => env('DB_ENCRYPT', 'yes'), // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'), ], ], /* |-------------------------------------------------------------------------- | Migration Repository Table |-------------------------------------------------------------------------- | | This table keeps track of all the migrations that have already run for | your application. Using this information, we can determine which of | the migrations on disk haven't actually been run on the database. | */ 'migrations' => [ 'table' => 'migrations', 'update_date_on_publish' => true, ], /* |-------------------------------------------------------------------------- | Redis Databases |-------------------------------------------------------------------------- | | Redis is an open source, fast, and advanced key-value store that also | provides a richer body of commands than a typical key-value system | such as Memcached. You may define your connection settings here. | */ 'redis' => [ 'client' => env('REDIS_CLIENT', 'phpredis'), 'options' => [ 'cluster' => env('REDIS_CLUSTER', 'redis'), 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), ], 'default' => [ 'url' => env('REDIS_URL'), 'host' => env('REDIS_HOST', '127.0.0.1'), 'username' => env('REDIS_USERNAME'), 'password' => env('REDIS_PASSWORD'), 'port' => env('REDIS_PORT', '6379'), 'database' => env('REDIS_DB', '0'), ], 'cache' => [ 'url' => env('REDIS_URL'), 'host' => env('REDIS_HOST', '127.0.0.1'), 'username' => env('REDIS_USERNAME'), 'password' => env('REDIS_PASSWORD'), 'port' => env('REDIS_PORT', '6379'), 'database' => env('REDIS_CACHE_DB', '1'), ], ], ]; ================================================ FILE: config/filesystems.php ================================================ env('FILESYSTEM_DISK', 'local'), /* |-------------------------------------------------------------------------- | Filesystem Disks |-------------------------------------------------------------------------- | | Below you may configure as many filesystem disks as necessary, and you | may even configure multiple disks for the same driver. Examples for | most supported storage drivers are configured here for reference. | | Supported Drivers: "local", "ftp", "sftp", "s3" | */ 'disks' => [ 'local' => [ 'driver' => 'local', 'root' => storage_path('app'), 'throw' => false, ], 'public' => [ 'driver' => 'local', 'root' => storage_path('app/public'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', 'throw' => false, ], 's3' => [ 'driver' => 's3', 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION'), 'bucket' => env('AWS_BUCKET'), 'url' => env('AWS_URL'), 'endpoint' => env('AWS_ENDPOINT'), 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 'throw' => false, ], ], /* |-------------------------------------------------------------------------- | Symbolic Links |-------------------------------------------------------------------------- | | Here you may configure the symbolic links that will be created when the | `storage:link` Artisan command is executed. The array keys should be | the locations of the links and the values should be their targets. | */ 'links' => [ public_path('storage') => storage_path('app/public'), ], ]; ================================================ FILE: config/logging.php ================================================ env('LOG_CHANNEL', 'stack'), /* |-------------------------------------------------------------------------- | Deprecations Log Channel |-------------------------------------------------------------------------- | | This option controls the log channel that should be used to log warnings | regarding deprecated PHP and library features. This allows you to get | your application ready for upcoming major versions of dependencies. | */ 'deprecations' => [ 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), 'trace' => env('LOG_DEPRECATIONS_TRACE', false), ], /* |-------------------------------------------------------------------------- | Log Channels |-------------------------------------------------------------------------- | | Here you may configure the log channels for your application. Laravel | utilizes the Monolog PHP logging library, which includes a variety | of powerful log handlers and formatters that you're free to use. | | Available Drivers: "single", "daily", "slack", "syslog", | "errorlog", "monolog", "custom", "stack" | */ 'channels' => [ 'stack' => [ 'driver' => 'stack', 'channels' => explode(',', env('LOG_STACK', 'single')), 'ignore_exceptions' => false, ], 'single' => [ 'driver' => 'single', 'path' => storage_path('logs/laravel.log'), 'level' => env('LOG_LEVEL', 'debug'), 'replace_placeholders' => true, ], 'daily' => [ 'driver' => 'daily', 'path' => storage_path('logs/laravel.log'), 'level' => env('LOG_LEVEL', 'debug'), 'days' => env('LOG_DAILY_DAYS', 14), 'replace_placeholders' => true, ], 'slack' => [ 'driver' => 'slack', 'url' => env('LOG_SLACK_WEBHOOK_URL'), 'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'), 'emoji' => env('LOG_SLACK_EMOJI', ':boom:'), 'level' => env('LOG_LEVEL', 'critical'), 'replace_placeholders' => true, ], 'papertrail' => [ 'driver' => 'monolog', 'level' => env('LOG_LEVEL', 'debug'), 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class), 'handler_with' => [ 'host' => env('PAPERTRAIL_URL'), 'port' => env('PAPERTRAIL_PORT'), 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'), ], 'processors' => [PsrLogMessageProcessor::class], ], 'stderr' => [ 'driver' => 'monolog', 'level' => env('LOG_LEVEL', 'debug'), 'handler' => StreamHandler::class, 'formatter' => env('LOG_STDERR_FORMATTER'), 'with' => [ 'stream' => 'php://stderr', ], 'processors' => [PsrLogMessageProcessor::class], ], 'syslog' => [ 'driver' => 'syslog', 'level' => env('LOG_LEVEL', 'debug'), 'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER), 'replace_placeholders' => true, ], 'errorlog' => [ 'driver' => 'errorlog', 'level' => env('LOG_LEVEL', 'debug'), 'replace_placeholders' => true, ], 'null' => [ 'driver' => 'monolog', 'handler' => NullHandler::class, ], 'emergency' => [ 'path' => storage_path('logs/laravel.log'), ], ], ]; ================================================ FILE: config/mail.php ================================================ env('MAIL_MAILER', 'log'), /* |-------------------------------------------------------------------------- | Mailer Configurations |-------------------------------------------------------------------------- | | Here you may configure all of the mailers used by your application plus | their respective settings. Several examples have been configured for | you and you are free to add your own as your application requires. | | Laravel supports a variety of mail "transport" drivers that can be used | when delivering an email. You may specify which one you're using for | your mailers below. You may also add additional mailers if needed. | | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", | "postmark", "log", "array", "failover", "roundrobin" | */ 'mailers' => [ 'smtp' => [ 'transport' => 'smtp', 'url' => env('MAIL_URL'), 'host' => env('MAIL_HOST', '127.0.0.1'), 'port' => env('MAIL_PORT', 2525), 'encryption' => env('MAIL_ENCRYPTION', 'tls'), 'username' => env('MAIL_USERNAME'), 'password' => env('MAIL_PASSWORD'), 'timeout' => null, 'local_domain' => env('MAIL_EHLO_DOMAIN'), ], 'ses' => [ 'transport' => 'ses', ], 'postmark' => [ 'transport' => 'postmark', // 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'), // 'client' => [ // 'timeout' => 5, // ], ], 'sendmail' => [ 'transport' => 'sendmail', 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), ], 'log' => [ 'transport' => 'log', 'channel' => env('MAIL_LOG_CHANNEL'), ], 'array' => [ 'transport' => 'array', ], 'failover' => [ 'transport' => 'failover', 'mailers' => [ 'smtp', 'log', ], ], ], /* |-------------------------------------------------------------------------- | Global "From" Address |-------------------------------------------------------------------------- | | You may wish for all emails sent by your application to be sent from | the same address. Here you may specify a name and address that is | used globally for all emails that are sent by your application. | */ 'from' => [ 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), 'name' => env('MAIL_FROM_NAME', 'Example'), ], ]; ================================================ FILE: config/permission.php ================================================ [ /* * When using the "HasPermissions" trait from this package, we need to know which * Eloquent model should be used to retrieve your permissions. Of course, it * is often just the "Permission" model but you may use whatever you like. * * The model you want to use as a Permission model needs to implement the * `Spatie\Permission\Contracts\Permission` contract. */ 'permission' => Spatie\Permission\Models\Permission::class, /* * When using the "HasRoles" trait from this package, we need to know which * Eloquent model should be used to retrieve your roles. Of course, it * is often just the "Role" model but you may use whatever you like. * * The model you want to use as a Role model needs to implement the * `Spatie\Permission\Contracts\Role` contract. */ 'role' => Spatie\Permission\Models\Role::class, ], 'table_names' => [ /* * When using the "HasRoles" trait from this package, we need to know which * table should be used to retrieve your roles. We have chosen a basic * default value but you may easily change it to any table you like. */ 'roles' => 'roles', /* * When using the "HasPermissions" trait from this package, we need to know which * table should be used to retrieve your permissions. We have chosen a basic * default value but you may easily change it to any table you like. */ 'permissions' => 'permissions', /* * When using the "HasPermissions" trait from this package, we need to know which * table should be used to retrieve your models permissions. We have chosen a * basic default value but you may easily change it to any table you like. */ 'model_has_permissions' => 'model_has_permissions', /* * When using the "HasRoles" trait from this package, we need to know which * table should be used to retrieve your models roles. We have chosen a * basic default value but you may easily change it to any table you like. */ 'model_has_roles' => 'model_has_roles', /* * When using the "HasRoles" trait from this package, we need to know which * table should be used to retrieve your roles permissions. We have chosen a * basic default value but you may easily change it to any table you like. */ 'role_has_permissions' => 'role_has_permissions', ], 'column_names' => [ /* * Change this if you want to name the related pivots other than defaults */ 'role_pivot_key' => null, //default 'role_id', 'permission_pivot_key' => null, //default 'permission_id', /* * Change this if you want to name the related model primary key other than * `model_id`. * * For example, this would be nice if your primary keys are all UUIDs. In * that case, name this `model_uuid`. */ 'model_morph_key' => 'model_id', /* * Change this if you want to use the teams feature and your related model's * foreign key is other than `team_id`. */ 'team_foreign_key' => 'team_id', ], /* * When set to true, the method for checking permissions will be registered on the gate. * Set this to false if you want to implement custom logic for checking permissions. */ 'register_permission_check_method' => true, /* * When set to true, Laravel\Octane\Events\OperationTerminated event listener will be registered * this will refresh permissions on every TickTerminated, TaskTerminated and RequestTerminated * NOTE: This should not be needed in most cases, but an Octane/Vapor combination benefited from it. */ 'register_octane_reset_listener' => false, /* * Teams Feature. * When set to true the package implements teams using the 'team_foreign_key'. * If you want the migrations to register the 'team_foreign_key', you must * set this to true before doing the migration. * If you already did the migration then you must make a new migration to also * add 'team_foreign_key' to 'roles', 'model_has_roles', and 'model_has_permissions' * (view the latest version of this package's migration file) */ 'teams' => false, /* * Passport Client Credentials Grant * When set to true the package will use Passports Client to check permissions */ 'use_passport_client_credentials' => false, /* * When set to true, the required permission names are added to exception messages. * This could be considered an information leak in some contexts, so the default * setting is false here for optimum safety. */ 'display_permission_in_exception' => false, /* * When set to true, the required role names are added to exception messages. * This could be considered an information leak in some contexts, so the default * setting is false here for optimum safety. */ 'display_role_in_exception' => false, /* * By default wildcard permission lookups are disabled. * See documentation to understand supported syntax. */ 'enable_wildcard_permission' => false, /* * The class to use for interpreting wildcard permissions. * If you need to modify delimiters, override the class and specify its name here. */ // 'permission.wildcard_permission' => Spatie\Permission\WildcardPermission::class, /* Cache-specific settings */ 'cache' => [ /* * By default all permissions are cached for 24 hours to speed up performance. * When permissions or roles are updated the cache is flushed automatically. */ 'expiration_time' => \DateInterval::createFromDateString('24 hours'), /* * The cache key used to store all permissions. */ 'key' => 'spatie.permission.cache', /* * You may optionally indicate a specific cache driver to use for permission and * role caching using any of the `store` drivers listed in the cache.php config * file. Using 'default' here means to use the `default` set in cache.php. */ 'store' => 'default', ], ]; ================================================ FILE: config/queue.php ================================================ env('QUEUE_CONNECTION', 'database'), /* |-------------------------------------------------------------------------- | Queue Connections |-------------------------------------------------------------------------- | | Here you may configure the connection options for every queue backend | used by your application. An example configuration is provided for | each backend supported by Laravel. You're also free to add more. | | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" | */ 'connections' => [ 'sync' => [ 'driver' => 'sync', ], 'database' => [ 'driver' => 'database', 'connection' => env('DB_QUEUE_CONNECTION'), 'table' => env('DB_QUEUE_TABLE', 'jobs'), 'queue' => env('DB_QUEUE', 'default'), 'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90), 'after_commit' => false, ], 'beanstalkd' => [ 'driver' => 'beanstalkd', 'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'), 'queue' => env('BEANSTALKD_QUEUE', 'default'), 'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90), 'block_for' => 0, 'after_commit' => false, ], 'sqs' => [ 'driver' => 'sqs', 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), 'queue' => env('SQS_QUEUE', 'default'), 'suffix' => env('SQS_SUFFIX'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 'after_commit' => false, ], 'redis' => [ 'driver' => 'redis', 'connection' => env('REDIS_QUEUE_CONNECTION', 'default'), 'queue' => env('REDIS_QUEUE', 'default'), 'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90), 'block_for' => null, 'after_commit' => false, ], ], /* |-------------------------------------------------------------------------- | Job Batching |-------------------------------------------------------------------------- | | The following options configure the database and table that store job | batching information. These options can be updated to any database | connection and table which has been defined by your application. | */ 'batching' => [ 'database' => env('DB_CONNECTION', 'sqlite'), 'table' => 'job_batches', ], /* |-------------------------------------------------------------------------- | Failed Queue Jobs |-------------------------------------------------------------------------- | | These options configure the behavior of failed queue job logging so you | can control how and where failed jobs are stored. Laravel ships with | support for storing failed jobs in a simple file or in a database. | | Supported drivers: "database-uuids", "dynamodb", "file", "null" | */ 'failed' => [ 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), 'database' => env('DB_CONNECTION', 'sqlite'), 'table' => 'failed_jobs', ], ]; ================================================ FILE: config/sanctum.php ================================================ explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf( '%s%s', 'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1', Sanctum::currentApplicationUrlWithPort() ))), /* |-------------------------------------------------------------------------- | Sanctum Guards |-------------------------------------------------------------------------- | | This array contains the authentication guards that will be checked when | Sanctum is trying to authenticate a request. If none of these guards | are able to authenticate the request, Sanctum will use the bearer | token that's present on an incoming request for authentication. | */ 'guard' => ['web'], /* |-------------------------------------------------------------------------- | Expiration Minutes |-------------------------------------------------------------------------- | | This value controls the number of minutes until an issued token will be | considered expired. This will override any values set in the token's | "expires_at" attribute, but first-party sessions are not affected. | */ 'expiration' => null, /* |-------------------------------------------------------------------------- | Token Prefix |-------------------------------------------------------------------------- | | Sanctum can prefix new tokens in order to take advantage of numerous | security scanning initiatives maintained by open source platforms | that notify developers if they commit tokens into repositories. | | See: https://docs.github.com/en/code-security/secret-scanning/about-secret-scanning | */ 'token_prefix' => env('SANCTUM_TOKEN_PREFIX', ''), /* |-------------------------------------------------------------------------- | Sanctum Middleware |-------------------------------------------------------------------------- | | When authenticating your first-party SPA with Sanctum you may need to | customize some of the middleware Sanctum uses while processing the | request. You may change the middleware listed below as required. | */ 'middleware' => [ 'authenticate_session' => Laravel\Sanctum\Http\Middleware\AuthenticateSession::class, 'encrypt_cookies' => Illuminate\Cookie\Middleware\EncryptCookies::class, 'validate_csrf_token' => Illuminate\Foundation\Http\Middleware\ValidateCsrfToken::class, ], ]; ================================================ FILE: config/services.php ================================================ [ 'token' => env('POSTMARK_TOKEN'), ], 'ses' => [ 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), ], 'slack' => [ 'notifications' => [ 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'), 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'), ], ], ]; ================================================ FILE: config/session.php ================================================ env('SESSION_DRIVER', 'database'), /* |-------------------------------------------------------------------------- | Session Lifetime |-------------------------------------------------------------------------- | | Here you may specify the number of minutes that you wish the session | to be allowed to remain idle before it expires. If you want them | to expire immediately when the browser is closed then you may | indicate that via the expire_on_close configuration option. | */ 'lifetime' => env('SESSION_LIFETIME', 120), 'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false), /* |-------------------------------------------------------------------------- | Session Encryption |-------------------------------------------------------------------------- | | This option allows you to easily specify that all of your session data | should be encrypted before it's stored. All encryption is performed | automatically by Laravel and you may use the session like normal. | */ 'encrypt' => env('SESSION_ENCRYPT', false), /* |-------------------------------------------------------------------------- | Session File Location |-------------------------------------------------------------------------- | | When utilizing the "file" session driver, the session files are placed | on disk. The default storage location is defined here; however, you | are free to provide another location where they should be stored. | */ 'files' => storage_path('framework/sessions'), /* |-------------------------------------------------------------------------- | Session Database Connection |-------------------------------------------------------------------------- | | When using the "database" or "redis" session drivers, you may specify a | connection that should be used to manage these sessions. This should | correspond to a connection in your database configuration options. | */ 'connection' => env('SESSION_CONNECTION'), /* |-------------------------------------------------------------------------- | Session Database Table |-------------------------------------------------------------------------- | | When using the "database" session driver, you may specify the table to | be used to store sessions. Of course, a sensible default is defined | for you; however, you're welcome to change this to another table. | */ 'table' => env('SESSION_TABLE', 'sessions'), /* |-------------------------------------------------------------------------- | Session Cache Store |-------------------------------------------------------------------------- | | When using one of the framework's cache driven session backends, you may | define the cache store which should be used to store the session data | between requests. This must match one of your defined cache stores. | | Affects: "apc", "dynamodb", "memcached", "redis" | */ 'store' => env('SESSION_STORE'), /* |-------------------------------------------------------------------------- | Session Sweeping Lottery |-------------------------------------------------------------------------- | | Some session drivers must manually sweep their storage location to get | rid of old sessions from storage. Here are the chances that it will | happen on a given request. By default, the odds are 2 out of 100. | */ 'lottery' => [2, 100], /* |-------------------------------------------------------------------------- | Session Cookie Name |-------------------------------------------------------------------------- | | Here you may change the name of the session cookie that is created by | the framework. Typically, you should not need to change this value | since doing so does not grant a meaningful security improvement. | | */ 'cookie' => env( 'SESSION_COOKIE', Str::slug(env('APP_NAME', 'laravel'), '_').'_session' ), /* |-------------------------------------------------------------------------- | Session Cookie Path |-------------------------------------------------------------------------- | | The session cookie path determines the path for which the cookie will | be regarded as available. Typically, this will be the root path of | your application, but you're free to change this when necessary. | */ 'path' => env('SESSION_PATH', '/'), /* |-------------------------------------------------------------------------- | Session Cookie Domain |-------------------------------------------------------------------------- | | This value determines the domain and subdomains the session cookie is | available to. By default, the cookie will be available to the root | domain and all subdomains. Typically, this shouldn't be changed. | */ 'domain' => env('SESSION_DOMAIN'), /* |-------------------------------------------------------------------------- | HTTPS Only Cookies |-------------------------------------------------------------------------- | | By setting this option to true, session cookies will only be sent back | to the server if the browser has a HTTPS connection. This will keep | the cookie from being sent to you when it can't be done securely. | */ 'secure' => env('SESSION_SECURE_COOKIE'), /* |-------------------------------------------------------------------------- | HTTP Access Only |-------------------------------------------------------------------------- | | Setting this value to true will prevent JavaScript from accessing the | value of the cookie and the cookie will only be accessible through | the HTTP protocol. It's unlikely you should disable this option. | */ 'http_only' => env('SESSION_HTTP_ONLY', true), /* |-------------------------------------------------------------------------- | Same-Site Cookies |-------------------------------------------------------------------------- | | This option determines how your cookies behave when cross-site requests | take place, and can be used to mitigate CSRF attacks. By default, we | will set this value to "lax" to permit secure cross-site requests. | | See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value | | Supported: "lax", "strict", "none", null | */ 'same_site' => env('SESSION_SAME_SITE', 'lax'), /* |-------------------------------------------------------------------------- | Partitioned Cookies |-------------------------------------------------------------------------- | | Setting this value to true will tie the cookie to the top-level site for | a cross-site context. Partitioned cookies are accepted by the browser | when flagged "secure" and the Same-Site attribute is set to "none". | */ 'partitioned' => env('SESSION_PARTITIONED_COOKIE', false), ]; ================================================ FILE: database/.gitignore ================================================ *.sqlite* ================================================ FILE: database/factories/CountriesFactory.php ================================================ */ class CountriesFactory extends Factory { /** * Define the model's default state. * * @return array */ private static int $index = 0; public function definition(): array { return [ 'name' => $this->faker->country, 'order_number' => ++static::$index, 'created_at' => now(), 'updated_at' => now(), ]; } } ================================================ FILE: database/factories/ProductTransactionsFactory.php ================================================ */ class ProductTransactionsFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { $productIds = Products::pluck('id')->toArray(); return [ 'product_id' => $this->faker->randomElement($productIds), 'transaction_type' => $this->faker->randomElement(['buy', 'sell']), 'quantity' => $this->faker->numberBetween(1, 50), 'price' => $this->faker->numberBetween(10, 100), // Assuming price range from 10 to 100 'total_price' => function (array $attributes) { return $attributes['quantity'] * $attributes['price']; }, 'created_at' => $this->faker->dateTimeBetween('-1 year', 'now'), 'updated_at' => $this->faker->dateTimeBetween('-1 year', 'now'), ]; } } ================================================ FILE: database/factories/ProductsFactory.php ================================================ */ class ProductsFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => $this->faker->word, 'quantity' => $this->faker->numberBetween(1, 100), 'buyingPrice' => $this->faker->randomFloat(2, 1, 1000), 'sellingPrice' => $this->faker->randomFloat(2, 1, 2000), 'description' => $this->faker->paragraph, // 'image_url' => $this->faker->image(public_path('productsImage'), 640, 480, null, false), 'image_url' => $this->faker->word, 'weight' => $this->faker->randomFloat(2, 0.1, 50), ]; } } ================================================ FILE: database/factories/ScheduleFactory.php ================================================ */ class ScheduleFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition() { $startTimestamp = $this->faker->dateTimeBetween('now', '+1 month')->getTimestamp(); $endTimestamp = $this->faker->dateTimeBetween('@' . $startTimestamp, '@' . ($startTimestamp + 86400))->getTimestamp(); $startDate = date('Y-m-d', $startTimestamp); $endDate = date('Y-m-d', $endTimestamp); return [ 'title' => $this->faker->sentence, 'start' => $startDate, 'end' => $endDate, 'color' => '#' . str_pad(dechex(mt_rand(0, 0xFFFFFF)), 6, '0', STR_PAD_LEFT), // Generate random hex color 'description' => $this->faker->paragraph, ]; } } ================================================ FILE: database/factories/UserFactory.php ================================================ */ class UserFactory extends Factory { /** * The current password being used by the factory. */ protected static ?string $password; /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => fake()->name(), 'email' => fake()->unique()->safeEmail(), 'email_verified_at' => now(), 'password' => static::$password ??= Hash::make('password'), 'remember_token' => Str::random(10), ]; } /** * Indicate that the model's email address should be unverified. */ public function unverified(): static { return $this->state(fn (array $attributes) => [ 'email_verified_at' => null, ]); } } ================================================ FILE: database/migrations/0001_01_01_000000_create_users_table.php ================================================ id(); $table->string('name'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->string('lang')->nullable(false)->default('en'); $table->rememberToken(); $table->timestamps(); }); Schema::create('password_reset_tokens', function (Blueprint $table) { $table->string('email')->primary(); $table->string('token'); $table->timestamp('created_at')->nullable(); }); Schema::create('sessions', function (Blueprint $table) { $table->string('id')->primary(); $table->foreignId('user_id')->nullable()->index(); $table->string('ip_address', 45)->nullable(); $table->text('user_agent')->nullable(); $table->longText('payload'); $table->integer('last_activity')->index(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('users'); Schema::dropIfExists('password_reset_tokens'); Schema::dropIfExists('sessions'); } }; ================================================ FILE: database/migrations/0001_01_01_000001_create_cache_table.php ================================================ string('key')->primary(); $table->mediumText('value'); $table->integer('expiration'); }); Schema::create('cache_locks', function (Blueprint $table) { $table->string('key')->primary(); $table->string('owner'); $table->integer('expiration'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('cache'); Schema::dropIfExists('cache_locks'); } }; ================================================ FILE: database/migrations/0001_01_01_000002_create_jobs_table.php ================================================ id(); $table->string('queue')->index(); $table->longText('payload'); $table->unsignedTinyInteger('attempts'); $table->unsignedInteger('reserved_at')->nullable(); $table->unsignedInteger('available_at'); $table->unsignedInteger('created_at'); }); Schema::create('job_batches', function (Blueprint $table) { $table->string('id')->primary(); $table->string('name'); $table->integer('total_jobs'); $table->integer('pending_jobs'); $table->integer('failed_jobs'); $table->longText('failed_job_ids'); $table->mediumText('options')->nullable(); $table->integer('cancelled_at')->nullable(); $table->integer('created_at'); $table->integer('finished_at')->nullable(); }); Schema::create('failed_jobs', function (Blueprint $table) { $table->id(); $table->string('uuid')->unique(); $table->text('connection'); $table->text('queue'); $table->longText('payload'); $table->longText('exception'); $table->timestamp('failed_at')->useCurrent(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('jobs'); Schema::dropIfExists('job_batches'); Schema::dropIfExists('failed_jobs'); } }; ================================================ FILE: database/migrations/2023_08_23_214821_create_schedules_table.php ================================================ id(); $table->string('title'); $table->date('start'); $table->date('end'); $table->text('description')->nullable(); $table->string('color')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('schedules'); } }; ================================================ FILE: database/migrations/2023_08_28_213733_create_drop_zones_table.php ================================================ id(); $table->string('filename'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('drop_zones'); } }; ================================================ FILE: database/migrations/2023_08_29_200542_create_products_table.php ================================================ id(); $table->string('name')->nullable(false); $table->integer('quantity')->nullable(false); $table->integer('buyingPrice')->nullable(false); $table->integer('sellingPrice')->nullable(false); $table->text('description')->nullable(); $table->string('image_url')->nullable(); $table->integer('weight')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('products'); } }; ================================================ FILE: database/migrations/2023_10_15_193356_create_notes_table.php ================================================ id(); $table->string('title'); $table->text('content'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('notes'); } }; ================================================ FILE: database/migrations/2023_10_29_223039_create_form_builders_table.php ================================================ id(); $table->string('name'); $table->JSON('content'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('form_builders'); } }; ================================================ FILE: database/migrations/2023_10_29_223047_create_form_builder_transactions_table.php ================================================ id(); $table->foreignId('form_id')->nullable(false)->constrained('form_builders')->onDelete('cascade'); $table->JSON('form')->nullable(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('forms'); } }; ================================================ FILE: database/migrations/2023_12_06_222421_create_countries_table.php ================================================ id(); $table->string('code')->nullable(false); $table->string('name')->nullable(false); $table->integer('order_number')->nullable(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('countries'); } }; ================================================ FILE: database/migrations/2024_01_21_204149_create_notifications_table.php ================================================ id(); $table->string('message')->nullable(false); $table->foreignId('user_id')->nullable(false); $table->boolean('is_send')->nullable(false)->default(0); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('notifications'); } }; ================================================ FILE: database/migrations/2024_01_26_223609_create_chats_table.php ================================================ id(); $table->dateTime('date_time'); $table->foreignId('send_by')->nullable(false)->constrained('users'); $table->foreignId('send_to')->nullable(false)->constrained('users'); $table->text('message'); $table->enum('message_type', ['text', 'attachment', 'call'])->nullable(false)->default('text'); $table->string('callOffer')->nullable(); $table->boolean('is_received')->nullable(false)->default(0); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('chats'); } }; ================================================ FILE: database/migrations/2024_04_02_000644_create_personal_access_tokens_table.php ================================================ id(); $table->morphs('tokenable'); $table->string('name'); $table->string('token', 64)->unique(); $table->text('abilities')->nullable(); $table->timestamp('last_used_at')->nullable(); $table->timestamp('expires_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('personal_access_tokens'); } }; ================================================ FILE: database/migrations/2024_04_05_204622_create_push_notifications_table.php ================================================ id(); $table->json('subscriptions')->nullable(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('push_notifications'); } }; ================================================ FILE: database/migrations/2024_04_06_205204_create_push_notification_msgs_table.php ================================================ id(); $table->string('title')->nullable(false); $table->string('body')->nullable(false); $table->string('url')->nullable(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('push_notification_msgs'); } }; ================================================ FILE: database/migrations/2024_04_11_221559_create_permission_tables.php ================================================ bigIncrements('id'); // permission id $table->string('name'); // For MySQL 8.0 use string('name', 125); $table->string('guard_name'); // For MySQL 8.0 use string('guard_name', 125); $table->timestamps(); $table->unique(['name', 'guard_name']); }); Schema::create($tableNames['roles'], function (Blueprint $table) use ($teams, $columnNames) { $table->bigIncrements('id'); // role id if ($teams || config('permission.testing')) { // permission.testing is a fix for sqlite testing $table->unsignedBigInteger($columnNames['team_foreign_key'])->nullable(); $table->index($columnNames['team_foreign_key'], 'roles_team_foreign_key_index'); } $table->string('name'); // For MySQL 8.0 use string('name', 125); $table->string('guard_name'); // For MySQL 8.0 use string('guard_name', 125); $table->timestamps(); if ($teams || config('permission.testing')) { $table->unique([$columnNames['team_foreign_key'], 'name', 'guard_name']); } else { $table->unique(['name', 'guard_name']); } }); Schema::create($tableNames['model_has_permissions'], function (Blueprint $table) use ($tableNames, $columnNames, $pivotPermission, $teams) { $table->unsignedBigInteger($pivotPermission); $table->string('model_type'); $table->unsignedBigInteger($columnNames['model_morph_key']); $table->index([$columnNames['model_morph_key'], 'model_type'], 'model_has_permissions_model_id_model_type_index'); $table->foreign($pivotPermission) ->references('id') // permission id ->on($tableNames['permissions']) ->onDelete('cascade'); if ($teams) { $table->unsignedBigInteger($columnNames['team_foreign_key']); $table->index($columnNames['team_foreign_key'], 'model_has_permissions_team_foreign_key_index'); $table->primary([$columnNames['team_foreign_key'], $pivotPermission, $columnNames['model_morph_key'], 'model_type'], 'model_has_permissions_permission_model_type_primary'); } else { $table->primary([$pivotPermission, $columnNames['model_morph_key'], 'model_type'], 'model_has_permissions_permission_model_type_primary'); } }); Schema::create($tableNames['model_has_roles'], function (Blueprint $table) use ($tableNames, $columnNames, $pivotRole, $teams) { $table->unsignedBigInteger($pivotRole); $table->string('model_type'); $table->unsignedBigInteger($columnNames['model_morph_key']); $table->index([$columnNames['model_morph_key'], 'model_type'], 'model_has_roles_model_id_model_type_index'); $table->foreign($pivotRole) ->references('id') // role id ->on($tableNames['roles']) ->onDelete('cascade'); if ($teams) { $table->unsignedBigInteger($columnNames['team_foreign_key']); $table->index($columnNames['team_foreign_key'], 'model_has_roles_team_foreign_key_index'); $table->primary([$columnNames['team_foreign_key'], $pivotRole, $columnNames['model_morph_key'], 'model_type'], 'model_has_roles_role_model_type_primary'); } else { $table->primary([$pivotRole, $columnNames['model_morph_key'], 'model_type'], 'model_has_roles_role_model_type_primary'); } }); Schema::create($tableNames['role_has_permissions'], function (Blueprint $table) use ($tableNames, $pivotRole, $pivotPermission) { $table->unsignedBigInteger($pivotPermission); $table->unsignedBigInteger($pivotRole); $table->foreign($pivotPermission) ->references('id') // permission id ->on($tableNames['permissions']) ->onDelete('cascade'); $table->foreign($pivotRole) ->references('id') // role id ->on($tableNames['roles']) ->onDelete('cascade'); $table->primary([$pivotPermission, $pivotRole], 'role_has_permissions_permission_id_role_id_primary'); }); app('cache') ->store(config('permission.cache.store') != 'default' ? config('permission.cache.store') : null) ->forget(config('permission.cache.key')); } /** * Reverse the migrations. */ public function down(): void { $tableNames = config('permission.table_names'); if (empty($tableNames)) { throw new \Exception('Error: config/permission.php not found and defaults could not be merged. Please publish the package configuration before proceeding, or drop the tables manually.'); } Schema::drop($tableNames['role_has_permissions']); Schema::drop($tableNames['model_has_roles']); Schema::drop($tableNames['model_has_permissions']); Schema::drop($tableNames['roles']); Schema::drop($tableNames['permissions']); } }; ================================================ FILE: database/migrations/2024_05_13_214747_create_product_transactions_table.php ================================================ id(); $table->foreignId('product_id')->constrained()->onDelete('cascade'); $table->enum('transaction_type', ['buy', 'sell']); $table->integer('quantity'); $table->integer('price'); $table->integer('total_price'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('product_transactions'); } }; ================================================ FILE: database/migrations/2024_07_09_223647_create_kanbans_table.php ================================================ id(); $table->string('name'); $table->enum('status', ['todo', 'in_progress', 'done'])->default('todo'); $table->integer('order')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('kanbans'); } }; ================================================ FILE: database/migrations/2024_07_23_200914_create_cities_table.php ================================================ id(); $table->string('name')->nullable(false); $table->string('country_code')->nullable(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('cities'); } }; ================================================ FILE: database/migrations/2024_09_05_215621_create_todos_table.php ================================================ id(); $table->string('title'); $table->boolean('completed')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('todos'); } }; ================================================ FILE: database/seeders/CitiesSeeder.php ================================================ insert([ ['name' => 'Tokyo', 'country_code' => 'JP'], ['name' => 'Jakarta', 'country_code' => 'ID'], ['name' => 'Delhi', 'country_code' => 'IN'], ['name' => 'Mumbai', 'country_code' => 'IN'], ['name' => 'Manila', 'country_code' => 'PH'], ['name' => 'Shanghai', 'country_code' => 'CN'], ['name' => 'Sao Paulo', 'country_code' => 'BR'], ['name' => 'Seoul', 'country_code' => 'KR'], ['name' => 'Mexico City', 'country_code' => 'MX'], ['name' => 'Guangzhou', 'country_code' => 'CN'], ['name' => 'Beijing', 'country_code' => 'CN'], ['name' => 'Cairo', 'country_code' => 'EG'], ['name' => 'New York', 'country_code' => 'US'], ['name' => 'Kolkata', 'country_code' => 'IN'], ['name' => 'Moscow', 'country_code' => 'RU'], ['name' => 'Bangkok', 'country_code' => 'TH'], ['name' => 'Buenos Aires', 'country_code' => 'AR'], ['name' => 'Shenzhen', 'country_code' => 'CN'], ['name' => 'Dhaka', 'country_code' => 'BD'], ['name' => 'Lagos', 'country_code' => 'NG'], ['name' => 'Istanbul', 'country_code' => 'TR'], ['name' => 'Osaka', 'country_code' => 'JP'], ['name' => 'Karachi', 'country_code' => 'PK'], ['name' => 'Bangalore', 'country_code' => 'IN'], ['name' => 'Tehran', 'country_code' => 'IR'], ['name' => 'Kinshasa', 'country_code' => 'CD'], ['name' => 'Ho Chi Minh City', 'country_code' => 'VN'], ['name' => 'Los Angeles', 'country_code' => 'US'], ['name' => 'Rio de Janeiro', 'country_code' => 'BR'], ['name' => 'Nanyang', 'country_code' => 'CN'], ['name' => 'Baoding', 'country_code' => 'CN'], ['name' => 'Chennai', 'country_code' => 'IN'], ['name' => 'Chengdu', 'country_code' => 'CN'], ['name' => 'Lahore', 'country_code' => 'PK'], ['name' => 'Paris', 'country_code' => 'FR'], ['name' => 'London', 'country_code' => 'GB'], ['name' => 'Linyi', 'country_code' => 'CN'], ['name' => 'Tianjin', 'country_code' => 'CN'], ['name' => 'Shijiazhuang', 'country_code' => 'CN'], ['name' => 'Zhoukou', 'country_code' => 'CN'], ['name' => 'Lima', 'country_code' => 'PE'], ['name' => 'Hyderabad', 'country_code' => 'IN'], ['name' => 'Handan', 'country_code' => 'CN'], ['name' => 'Bogota', 'country_code' => 'CO'], ['name' => 'Weifang', 'country_code' => 'CN'], ['name' => 'Nagoya', 'country_code' => 'JP'], ['name' => 'Wuhan', 'country_code' => 'CN'], ['name' => 'Heze', 'country_code' => 'CN'], ['name' => 'Ganzhou', 'country_code' => 'CN'], ['name' => 'Tongshan', 'country_code' => 'CN'], ['name' => 'Chicago', 'country_code' => 'US'], ['name' => 'Luanda', 'country_code' => 'AO'], ['name' => 'Changsha', 'country_code' => 'CN'], ['name' => 'Fuyang', 'country_code' => 'CN'], ['name' => 'Kuala Lumpur', 'country_code' => 'MY'], ['name' => 'Jining', 'country_code' => 'CN'], ['name' => 'Dongguan', 'country_code' => 'CN'], ['name' => 'Jinan', 'country_code' => 'CN'], ['name' => 'Foshan', 'country_code' => 'CN'], ['name' => 'Hanoi', 'country_code' => 'VN'], ['name' => 'Pune', 'country_code' => 'IN'], ['name' => 'Chongqing', 'country_code' => 'CN'], ['name' => 'Changchun', 'country_code' => 'CN'], ['name' => 'Zhumadian', 'country_code' => 'CN'], ['name' => 'Ningbo', 'country_code' => 'CN'], ['name' => 'Cangzhou', 'country_code' => 'CN'], ['name' => 'Nanjing', 'country_code' => 'CN'], ['name' => 'Hefei', 'country_code' => 'CN'], ['name' => 'Ahmedabad', 'country_code' => 'IN'], ['name' => 'Hong Kong', 'country_code' => 'HK'], ['name' => 'Zhanjiang', 'country_code' => 'CN'], ['name' => 'Shaoyang', 'country_code' => 'CN'], ['name' => 'Hengyang', 'country_code' => 'CN'], ['name' => 'Khartoum', 'country_code' => 'SD'], ['name' => 'Nantong', 'country_code' => 'CN'], ['name' => 'Yancheng', 'country_code' => 'CN'], ['name' => 'Nanning', 'country_code' => 'CN'], ['name' => 'Xi an', 'country_code' => 'CN'], ['name' => 'Shenyang', 'country_code' => 'CN'], ['name' => 'Tangshan', 'country_code' => 'CN'], ['name' => 'Santiago', 'country_code' => 'CL'], ['name' => 'Zhengzhou', 'country_code' => 'CN'], ['name' => 'Shangqiu', 'country_code' => 'CN'], ['name' => 'Yantai', 'country_code' => 'CN'], ['name' => 'Riyadh', 'country_code' => 'SA'], ['name' => 'Dar es Salaam', 'country_code' => 'TZ'], ['name' => 'Xinyang', 'country_code' => 'CN'], ['name' => 'Shangrao', 'country_code' => 'CN'], ['name' => 'Luoyang', 'country_code' => 'CN'], ['name' => 'Bijie', 'country_code' => 'CN'], ['name' => 'Quanzhou', 'country_code' => 'CN'], ['name' => 'Hangzhou', 'country_code' => 'CN'], ['name' => 'Miami', 'country_code' => 'US'], ['name' => 'Huanggang', 'country_code' => 'CN'], ['name' => 'Maoming', 'country_code' => 'CN'], ['name' => 'Kunming', 'country_code' => 'CN'], ['name' => 'Nanchong', 'country_code' => 'CN'], ['name' => 'Zunyi', 'country_code' => 'CN'], ['name' => 'Jieyang', 'country_code' => 'CN'], ['name' => 'Lu an', 'country_code' => 'CN'], ['name' => 'Yichun', 'country_code' => 'CN'], ['name' => 'Madrid', 'country_code' => 'ES'], ['name' => 'Changde', 'country_code' => 'CN'], ['name' => 'Taizhou', 'country_code' => 'CN'], ['name' => 'Liaocheng', 'country_code' => 'CN'], ['name' => 'Qujing', 'country_code' => 'CN'], ['name' => 'Surat', 'country_code' => 'IN'], ['name' => 'Baghdad', 'country_code' => 'IQ'], ['name' => 'Qingdao', 'country_code' => 'CN'], ['name' => 'Singapore', 'country_code' => 'SG'], ['name' => 'Dallas', 'country_code' => 'US'], ['name' => 'Dazhou', 'country_code' => 'CN'], ['name' => 'Suzhou', 'country_code' => 'CN'], ['name' => 'Xiangyang', 'country_code' => 'CN'], ['name' => 'Philadelphia', 'country_code' => 'US'], ['name' => 'Giza', 'country_code' => 'EG'], ['name' => 'Nairobi', 'country_code' => 'KE'], ['name' => 'Nangandao', 'country_code' => 'CN'], ['name' => 'Ankara', 'country_code' => 'TR'], ['name' => 'Tai an', 'country_code' => 'CN'], ['name' => 'Yulin', 'country_code' => 'CN'], ['name' => 'Dezhou', 'country_code' => 'CN'], ['name' => 'Houston', 'country_code' => 'US'], ['name' => 'Atlanta', 'country_code' => 'US'], ['name' => 'Yongzhou', 'country_code' => 'CN'], ['name' => 'Rangoon', 'country_code' => 'MM'], ['name' => 'Toronto', 'country_code' => 'CA'], ['name' => 'Suihua', 'country_code' => 'CN'], ['name' => 'Washington', 'country_code' => 'US'], ['name' => 'Qiqihar', 'country_code' => 'CN'], ['name' => 'Jinhua', 'country_code' => 'CN'], ['name' => 'Saint Petersburg', 'country_code' => 'RU'], ['name' => 'Shantou', 'country_code' => 'CN'], ['name' => 'Sydney', 'country_code' => 'AU'], ['name' => 'Weinan', 'country_code' => 'CN'], ['name' => 'Suqian', 'country_code' => 'CN'], ['name' => 'Guadalajara', 'country_code' => 'MX'], ['name' => 'Suzhou', 'country_code' => 'CN'], ['name' => 'Fuzhou', 'country_code' => 'CN'], ['name' => 'Zhaotong', 'country_code' => 'CN'], ['name' => 'Pudong', 'country_code' => 'CN'], ['name' => 'Belo Horizonte', 'country_code' => 'BR'], ['name' => 'Zhangzhou', 'country_code' => 'CN'], ['name' => 'Bozhou', 'country_code' => 'CN'], ['name' => 'Melbourne', 'country_code' => 'AU'], ['name' => 'Nanchang', 'country_code' => 'CN'], ['name' => 'Xianyang', 'country_code' => 'CN'], ['name' => 'Taizhou', 'country_code' => 'CN'], ['name' => 'Surabaya', 'country_code' => 'ID'], ['name' => 'Abidjan', 'country_code' => 'CI'], ['name' => 'Huaihua', 'country_code' => 'CN'], ['name' => 'Ji an', 'country_code' => 'CN'], ['name' => 'Mianyang', 'country_code' => 'CN'], ['name' => 'Xiaoganzhan', 'country_code' => 'CN'], ['name' => 'Shaoxing', 'country_code' => 'CN'], ['name' => 'Alexandria', 'country_code' => 'EG'], ['name' => 'Yuncheng', 'country_code' => 'CN'], ['name' => 'Pingdingshan', 'country_code' => 'CN'], ['name' => 'Huizhou', 'country_code' => 'CN'], ['name' => 'Huai an', 'country_code' => 'CN'], ['name' => 'Xinpu', 'country_code' => 'CN'], ['name' => 'Chenzhou', 'country_code' => 'CN'], ['name' => 'Guilin', 'country_code' => 'CN'], ['name' => 'Jiujiang', 'country_code' => 'CN'], ['name' => 'Anqing', 'country_code' => 'CN'], ['name' => 'Boston', 'country_code' => 'US'], ['name' => 'Huanglongsi', 'country_code' => 'CN'], ['name' => 'Jiangmen', 'country_code' => 'CN'], ['name' => 'Changzhou', 'country_code' => 'CN'], ['name' => 'Barcelona', 'country_code' => 'ES'], ['name' => 'Wuxi', 'country_code' => 'CN'], ['name' => 'Zibo', 'country_code' => 'CN'], ['name' => 'Jiaxing', 'country_code' => 'CN'], ['name' => 'Dalian', 'country_code' => 'CN'], ['name' => 'Hengshui', 'country_code' => 'CN'], ['name' => 'Harbin', 'country_code' => 'CN'], ['name' => 'Yangzhou', 'country_code' => 'CN'], ['name' => 'Yibin', 'country_code' => 'CN'], ['name' => 'Johannesburg', 'country_code' => 'ZA'], ['name' => 'Yiyang', 'country_code' => 'CN'], ['name' => 'Meizhou', 'country_code' => 'CN'], ['name' => 'Chifeng', 'country_code' => 'CN'], ['name' => 'Casablanca', 'country_code' => 'MA'], ['name' => 'Guiyang', 'country_code' => 'CN'], ['name' => 'Langfang', 'country_code' => 'CN'], ['name' => 'Zhangjiakou', 'country_code' => 'CN'], ['name' => 'Izmir', 'country_code' => 'TR'], ['name' => 'Linfen', 'country_code' => 'CN'], ['name' => 'Wenzhou', 'country_code' => 'CN'], ['name' => 'Monterrey', 'country_code' => 'MX'], ['name' => 'Luzhou', 'country_code' => 'CN'], ['name' => 'Jiangguanchi', 'country_code' => 'CN'], ['name' => 'Neijiang', 'country_code' => 'CN'], ['name' => 'Phoenix', 'country_code' => 'US'], ['name' => 'Yanjiang', 'country_code' => 'CN'], ['name' => 'Zhaoqing', 'country_code' => 'CN'], ['name' => 'Xiaoxita', 'country_code' => 'CN'], ['name' => 'Guigang', 'country_code' => 'CN'], ['name' => 'Xiamen', 'country_code' => 'CN'], ['name' => 'Chuzhou', 'country_code' => 'CN'], ['name' => 'Fuzhou', 'country_code' => 'CN'], ['name' => 'Zhuzhou', 'country_code' => 'CN'], ['name' => 'Amman', 'country_code' => 'JO'], ['name' => 'Jeddah', 'country_code' => 'SA'], ['name' => 'Loudi', 'country_code' => 'CN'], ['name' => 'Deyang', 'country_code' => 'CN'], ['name' => 'Qingyuan', 'country_code' => 'CN'], ['name' => 'Wuhu', 'country_code' => 'CN'], ['name' => 'Hechi', 'country_code' => 'CN'], ['name' => 'Seattle', 'country_code' => 'US'], ['name' => 'Binzhou', 'country_code' => 'CN'], ['name' => 'Yokohama', 'country_code' => 'JP'], ['name' => 'Liuzhou', 'country_code' => 'CN'], ['name' => 'Baojishi', 'country_code' => 'CN'], ['name' => 'Guang an', 'country_code' => 'CN'], ['name' => 'Hanzhong', 'country_code' => 'CN'], ['name' => 'Kabul', 'country_code' => 'AF'], ['name' => 'Zaozhuang', 'country_code' => 'CN'], ['name' => 'Berlin', 'country_code' => 'DE'], ['name' => 'Anshan', 'country_code' => 'CN'], ['name' => 'Lanzhou', 'country_code' => 'CN'], ['name' => 'Chengde', 'country_code' => 'CN'], ['name' => 'San Francisco', 'country_code' => 'US'], ['name' => 'Puyang', 'country_code' => 'CN'], ['name' => 'Suining', 'country_code' => 'CN'], ['name' => 'Jiaozuo', 'country_code' => 'CN'], ['name' => 'Bengbu', 'country_code' => 'CN'], ['name' => 'Montreal', 'country_code' => 'CA'], ['name' => 'Detroit', 'country_code' => 'US'], ['name' => 'Baicheng', 'country_code' => 'CN'], ['name' => 'Busan', 'country_code' => 'KR'], ['name' => 'Algiers', 'country_code' => 'DZ'], ['name' => 'Qincheng', 'country_code' => 'CN'], ['name' => 'Taiyuan', 'country_code' => 'CN'], ['name' => 'Shiyan', 'country_code' => 'CN'], ['name' => 'Lucknow', 'country_code' => 'IN'], ['name' => 'Chaoyang', 'country_code' => 'CN'], ['name' => 'Hechi', 'country_code' => 'CN'], ['name' => 'Leshan', 'country_code' => 'CN'], ['name' => 'Yulinshi', 'country_code' => 'CN'], ['name' => 'Siping', 'country_code' => 'CN'], ['name' => 'Zhongshan', 'country_code' => 'CN'], ['name' => 'Changzhi', 'country_code' => 'CN'], ['name' => 'San Diego', 'country_code' => 'US'], ['name' => 'Faisalabad', 'country_code' => 'PK'], ['name' => 'Santa Cruz', 'country_code' => 'BO'], ['name' => 'Qinhuangdao', 'country_code' => 'CN'], ['name' => 'Bazhou', 'country_code' => 'CN'], ['name' => 'Zhenjiang', 'country_code' => 'CN'], ['name' => 'Urumqi', 'country_code' => 'CN'], ['name' => 'Tongliao', 'country_code' => 'CN'], ['name' => 'Heyuan', 'country_code' => 'CN'], ['name' => 'Tongren', 'country_code' => 'CN'], ['name' => 'Qinzhou', 'country_code' => 'CN'], ['name' => 'Jaipur', 'country_code' => 'IN'], ['name' => 'Xinzhou', 'country_code' => 'CN'], ['name' => 'Addis Ababa', 'country_code' => 'ET'], ['name' => 'Meishan', 'country_code' => 'CN'], ['name' => 'Brasilia', 'country_code' => 'BR'], ['name' => 'Mashhad', 'country_code' => 'IR'], ['name' => 'Jinzhou', 'country_code' => 'CN'], ['name' => 'Tieling', 'country_code' => 'CN'], ['name' => 'Shaoguan', 'country_code' => 'CN'], ['name' => 'Kuwait City', 'country_code' => 'KW'], ['name' => 'Shanwei', 'country_code' => 'CN'], ['name' => 'Minneapolis', 'country_code' => 'US'], ['name' => 'Kyiv', 'country_code' => 'UA'], ['name' => 'Sanaa', 'country_code' => 'YE'], ['name' => 'Quezon City', 'country_code' => 'PH'], ['name' => 'Dingxi', 'country_code' => 'CN'], ['name' => 'Incheon', 'country_code' => 'KR'], ['name' => 'Bursa', 'country_code' => 'TR'], ['name' => 'Ningde', 'country_code' => 'CN'], ['name' => 'Tampa', 'country_code' => 'US'], ['name' => 'Daqing', 'country_code' => 'CN'], ['name' => 'Birmingham', 'country_code' => 'GB'], ['name' => 'Putian', 'country_code' => 'CN'], ['name' => 'Huzhou', 'country_code' => 'CN'], ['name' => 'Salvador', 'country_code' => 'BR'], ['name' => 'Wuzhou', 'country_code' => 'CN'], ['name' => 'Xiangtan', 'country_code' => 'CN'], ['name' => 'Denver', 'country_code' => 'US'], ['name' => 'Rome', 'country_code' => 'IT'], ['name' => 'La Paz', 'country_code' => 'BO'], ['name' => 'Pyongyang', 'country_code' => 'KP'], ['name' => 'Kano', 'country_code' => 'NG'], ['name' => 'Taichung', 'country_code' => 'TW'], ['name' => 'Omdurman', 'country_code' => 'SD'], ['name' => 'Zigong', 'country_code' => 'CN'], ['name' => 'Mudanjiang', 'country_code' => 'CN'], ['name' => 'Huludao', 'country_code' => 'CN'], ['name' => 'Kaohsiung', 'country_code' => 'TW'], ['name' => 'Guayaquil', 'country_code' => 'EC'], ['name' => 'Rizhao', 'country_code' => 'CN'], ['name' => 'Manchester', 'country_code' => 'GB'], ['name' => 'Cawnpore', 'country_code' => 'IN'], ['name' => 'Baotou', 'country_code' => 'CN'], ['name' => 'Taipei', 'country_code' => 'TW'], ['name' => 'Nanping', 'country_code' => 'CN'], ['name' => 'Chaozhou', 'country_code' => 'CN'], ['name' => 'Longyan', 'country_code' => 'CN'], ['name' => 'Ibadan', 'country_code' => 'NG'], ['name' => 'Hohhot', 'country_code' => 'CN'], ['name' => 'Antananarivo', 'country_code' => 'MG'], ['name' => 'Longba', 'country_code' => 'CN'], ['name' => 'Weihai', 'country_code' => 'CN'], ['name' => 'Chattogram', 'country_code' => 'BD'], ['name' => 'Santo Domingo', 'country_code' => 'DO'], ['name' => 'Xuanzhou', 'country_code' => 'CN'], ['name' => 'Sanming', 'country_code' => 'CN'], ['name' => 'Brooklyn', 'country_code' => 'US'], ['name' => 'Yangjiang', 'country_code' => 'CN'], ['name' => 'Medellin', 'country_code' => 'CO'], ['name' => 'Yunfu', 'country_code' => 'CN'], ['name' => 'Brisbane', 'country_code' => 'AU'], ['name' => 'Baoshan', 'country_code' => 'CN'], ['name' => 'Dubai', 'country_code' => 'AE'], ['name' => 'Luohe', 'country_code' => 'CN'], ['name' => 'Qinbaling', 'country_code' => 'CN'], ['name' => 'Mirzapur', 'country_code' => 'IN'], ['name' => 'Guangyuan', 'country_code' => 'CN'], ['name' => 'Cali', 'country_code' => 'CO'], ['name' => 'Huangshi', 'country_code' => 'CN'], ['name' => 'Daegu', 'country_code' => 'KR'], ['name' => 'Fortaleza', 'country_code' => 'BR'], ['name' => 'Guatemala City', 'country_code' => 'GT'], ['name' => 'Yaounde', 'country_code' => 'CM'], ['name' => 'Douala', 'country_code' => 'CM'], ['name' => 'Jilin', 'country_code' => 'CN'], ['name' => 'Lianshan', 'country_code' => 'CN'], ['name' => 'Lincang', 'country_code' => 'CN'], ['name' => 'Antalya', 'country_code' => 'TR'], ['name' => 'Tashkent', 'country_code' => 'UZ'], ['name' => 'Bandung', 'country_code' => 'ID'], ['name' => 'Nagpur', 'country_code' => 'IN'], ['name' => 'Huainan', 'country_code' => 'CN'], ['name' => 'Dandong', 'country_code' => 'CN'], ['name' => 'Shangzhou', 'country_code' => 'CN'], ['name' => 'Bekasi', 'country_code' => 'ID'], ['name' => 'Ghaziabad', 'country_code' => 'IN'], ['name' => 'Tijuana', 'country_code' => 'MX'], ['name' => 'Jiamusi', 'country_code' => 'CN'], ['name' => 'Accra', 'country_code' => 'GH'], ['name' => 'Yuxi', 'country_code' => 'CN'], ['name' => 'Anshun', 'country_code' => 'CN'], ['name' => 'Vancouver', 'country_code' => 'CA'], ['name' => 'Tangerang', 'country_code' => 'ID'], ['name' => 'Konya', 'country_code' => 'TR'], ['name' => 'Queens', 'country_code' => 'US'], ['name' => 'Yingkou', 'country_code' => 'CN'], ['name' => 'Adana', 'country_code' => 'TR'], ['name' => 'Medan', 'country_code' => 'ID'], ['name' => 'Sanmenxia', 'country_code' => 'CN'], ['name' => 'Indore', 'country_code' => 'IN'], ['name' => 'Ma anshan', 'country_code' => 'CN'], ['name' => 'Pingliang', 'country_code' => 'CN'], ['name' => 'Quzhou', 'country_code' => 'CN'], ['name' => 'Baku', 'country_code' => 'AZ'], ['name' => 'Gaoping', 'country_code' => 'CN'], ['name' => 'Huaibei', 'country_code' => 'CN'], ['name' => 'Xining', 'country_code' => 'CN'], ['name' => 'Harare', 'country_code' => 'ZW'], ['name' => 'Yan an', 'country_code' => 'CN'], ['name' => 'Havana', 'country_code' => 'CU'], ['name' => 'Phnom Penh', 'country_code' => 'KH'], ['name' => 'Fukuoka', 'country_code' => 'JP'], ['name' => 'Mogadishu', 'country_code' => 'SO'], ['name' => 'Jincheng', 'country_code' => 'CN'], ['name' => 'Puning', 'country_code' => 'CN'], ['name' => 'Lishui', 'country_code' => 'CN'], ['name' => 'Qingyang', 'country_code' => 'CN'], ['name' => 'Riverside', 'country_code' => 'US'], ['name' => 'Baltimore', 'country_code' => 'US'], ['name' => 'Haiphong', 'country_code' => 'VN'], ['name' => 'Las Vegas', 'country_code' => 'US'], ['name' => 'Laibin', 'country_code' => 'CN'], ['name' => 'Rawalpindi', 'country_code' => 'PK'], ['name' => 'Kumasi', 'country_code' => 'GH'], ['name' => 'Portland', 'country_code' => 'US'], ['name' => 'Vadodara', 'country_code' => 'IN'], ['name' => 'Perth', 'country_code' => 'AU'], ['name' => 'San Antonio', 'country_code' => 'US'], ['name' => 'Vishakhapatnam', 'country_code' => 'IN'], ['name' => 'Gujranwala', 'country_code' => 'PK'], ['name' => 'Gaziantep', 'country_code' => 'TR'], ['name' => 'Fushun', 'country_code' => 'CN'], ['name' => 'St. Louis', 'country_code' => 'US'], ['name' => 'Bamako', 'country_code' => 'ML'], ['name' => 'Quito', 'country_code' => 'EC'], ['name' => 'Minsk', 'country_code' => 'BY'], ['name' => 'Pingxiang', 'country_code' => 'CN'], ['name' => 'Chongzuo', 'country_code' => 'CN'], ['name' => 'Sanliurfa', 'country_code' => 'TR'], ['name' => 'Kananga', 'country_code' => 'CD'], ['name' => 'Peshawar', 'country_code' => 'PK'], ['name' => 'Sapporo', 'country_code' => 'JP'], ['name' => 'Hezhou', 'country_code' => 'CN'], ['name' => 'Jixi', 'country_code' => 'CN'], ['name' => 'Caracas', 'country_code' => 'VE'], ['name' => 'Fuxin', 'country_code' => 'CN'], ['name' => 'Aleppo', 'country_code' => 'SY'], ['name' => 'Almaty', 'country_code' => 'KZ'], ['name' => 'Dayr az Zawr', 'country_code' => 'SY'], ['name' => 'Vienna', 'country_code' => 'AT'], ['name' => 'Leeds', 'country_code' => 'GB'], ['name' => 'Sacramento', 'country_code' => 'US'], ['name' => 'Blantyre', 'country_code' => 'MW'], ['name' => 'Tainan', 'country_code' => 'TW'], ['name' => 'Zhuhai', 'country_code' => 'CN'], ['name' => 'Bucharest', 'country_code' => 'RO'], ['name' => 'Wuwei', 'country_code' => 'CN'], ['name' => 'Bhopal', 'country_code' => 'IN'], ['name' => 'Curitiba', 'country_code' => 'BR'], ['name' => 'Multan', 'country_code' => 'PK'], ['name' => 'Xiping', 'country_code' => 'CN'], ['name' => 'Asuncion', 'country_code' => 'PY'], ['name' => 'Saidu Sharif', 'country_code' => 'PK'], ['name' => 'Hamburg', 'country_code' => 'DE'], ['name' => 'Meru', 'country_code' => 'KE'], ['name' => 'Brazzaville', 'country_code' => 'CG'], ['name' => 'Orlando', 'country_code' => 'US'], ['name' => 'Mersin', 'country_code' => 'TR'], ['name' => 'Kyoto', 'country_code' => 'JP'], ['name' => 'Manaus', 'country_code' => 'BR'], ['name' => 'Liaoyang', 'country_code' => 'CN'], ['name' => 'Baiyin', 'country_code' => 'CN'], ['name' => 'San Jose', 'country_code' => 'US'], ['name' => 'Warsaw', 'country_code' => 'PL'], ['name' => 'Shengli', 'country_code' => 'CN'], ['name' => 'Lubumbashi', 'country_code' => 'CD'], ['name' => 'Haikou', 'country_code' => 'CN'], ['name' => 'Damascus', 'country_code' => 'SY'], ['name' => 'Shuyangzha', 'country_code' => 'CN'], ['name' => 'Brussels', 'country_code' => 'BE'], ['name' => 'Esfahan', 'country_code' => 'IR'], ['name' => 'Budapest', 'country_code' => 'HU'], ['name' => 'Heihe', 'country_code' => 'CN'], ['name' => 'Lusaka', 'country_code' => 'ZM'], ['name' => 'Hyderabad City', 'country_code' => 'PK'], ['name' => 'Diyarbakir', 'country_code' => 'TR'], ['name' => 'Chinchvad', 'country_code' => 'IN'], ['name' => 'Shuozhou', 'country_code' => 'CN'], ['name' => 'Cleveland', 'country_code' => 'US'], ['name' => 'Pittsburgh', 'country_code' => 'US'], ['name' => 'Patna', 'country_code' => 'IN'], ['name' => 'Mosul', 'country_code' => 'IQ'], ['name' => 'Austin', 'country_code' => 'US'], ['name' => 'Sanzhou', 'country_code' => 'CN'], ['name' => 'Mecca', 'country_code' => 'SA'], ['name' => 'Conakry', 'country_code' => 'GN'], ['name' => 'Kampala', 'country_code' => 'UG'], ['name' => 'Ecatepec', 'country_code' => 'MX'], ['name' => 'Cincinnati', 'country_code' => 'US'], ['name' => 'Makassar', 'country_code' => 'ID'], ['name' => 'Yushan', 'country_code' => 'CN'], ['name' => 'Ludhiana', 'country_code' => 'IN'], ['name' => 'Newcastle', 'country_code' => 'GB'], ['name' => 'Depok', 'country_code' => 'ID'], ['name' => 'Zhongli', 'country_code' => 'TW'], ['name' => 'Kansas City', 'country_code' => 'US'], ['name' => 'Ouagadougou', 'country_code' => 'BF'], ['name' => 'Davao', 'country_code' => 'PH'], ['name' => 'Manhattan', 'country_code' => 'US'], ['name' => 'Semarang', 'country_code' => 'ID'], ['name' => 'Yinchuan', 'country_code' => 'CN'], ['name' => 'Caloocan City', 'country_code' => 'PH'], ['name' => 'Novosibirsk', 'country_code' => 'RU'], ['name' => 'Chengtangcun', 'country_code' => 'CN'], ['name' => 'Agra', 'country_code' => 'IN'], ['name' => 'Karaj', 'country_code' => 'IR'], ['name' => 'Indianapolis', 'country_code' => 'US'], ['name' => 'Jingdezhen', 'country_code' => 'CN'], ['name' => 'Puebla', 'country_code' => 'MX'], ['name' => 'Kalyan', 'country_code' => 'IN'], ['name' => 'Madurai', 'country_code' => 'IN'], ['name' => 'Benxi', 'country_code' => 'CN'], ['name' => 'Jamshedpur', 'country_code' => 'IN'], ['name' => 'Recife', 'country_code' => 'BR'], ['name' => 'Columbus', 'country_code' => 'US'], ['name' => 'Tabriz', 'country_code' => 'IR'], ['name' => 'Maracaibo', 'country_code' => 'VE'], ['name' => 'Zhangjiajie', 'country_code' => 'CN'], ['name' => 'Beihai', 'country_code' => 'CN'], ['name' => 'Shuangyashan', 'country_code' => 'CN'], ['name' => 'Kobe', 'country_code' => 'JP'], ['name' => 'Charlotte', 'country_code' => 'US'], ['name' => 'Yucheng', 'country_code' => 'CN'], ['name' => 'Changshu', 'country_code' => 'CN'], ['name' => 'Lianjiang', 'country_code' => 'CN'], ['name' => 'Ximeicun', 'country_code' => 'CN'], ['name' => 'Jianguang', 'country_code' => 'CN'], ['name' => 'Madinat as Sadis min Uktubar', 'country_code' => 'EG'], ['name' => 'Xushan', 'country_code' => 'CN'], ['name' => 'Belem', 'country_code' => 'BR'], ['name' => 'Guiping', 'country_code' => 'CN'], ['name' => 'Leizhou', 'country_code' => 'CN'], ['name' => 'Gwangju', 'country_code' => 'KR'], ['name' => 'Nasik', 'country_code' => 'IN'], ['name' => 'Porto Alegre', 'country_code' => 'BR'], ['name' => 'Valencia', 'country_code' => 'VE'], ['name' => 'Onitsha', 'country_code' => 'NG'], ['name' => 'Virginia Beach', 'country_code' => 'US'], ['name' => 'Daejeon', 'country_code' => 'KR'], ['name' => 'Munich', 'country_code' => 'DE'], ['name' => 'Auckland', 'country_code' => 'NZ'], ['name' => 'Yekaterinburg', 'country_code' => 'RU'], ['name' => 'Huangshan', 'country_code' => 'CN'], ['name' => 'Huazhou', 'country_code' => 'CN'], ['name' => 'Shiraz', 'country_code' => 'IR'], ['name' => 'Pizhou', 'country_code' => 'CN'], ['name' => 'Palembang', 'country_code' => 'ID'], ['name' => 'Leon de los Aldama', 'country_code' => 'MX'], ['name' => 'El Kelaa des Srarhna', 'country_code' => 'MA'], ['name' => 'Kharkiv', 'country_code' => 'UA'], ['name' => 'Kawanakajima', 'country_code' => 'JP'], ['name' => 'Yangshe', 'country_code' => 'CN'], ['name' => 'Chizhou', 'country_code' => 'CN'], ['name' => 'Guyuan', 'country_code' => 'CN'], ['name' => 'Rui an', 'country_code' => 'CN'], ['name' => 'Birstall', 'country_code' => 'GB'], ['name' => 'Muscat', 'country_code' => 'OM'], ['name' => 'Hebi', 'country_code' => 'CN'], ['name' => 'Bronx', 'country_code' => 'US'], ['name' => 'Gaozhou', 'country_code' => 'CN'], ['name' => 'The Hague', 'country_code' => 'NL'], ['name' => 'Owerri', 'country_code' => 'NG'], ['name' => 'Sharjah', 'country_code' => 'AE'], ['name' => 'Faridabad', 'country_code' => 'IN'], ['name' => 'Ulaanbaatar', 'country_code' => 'MN'], ['name' => 'Goiania', 'country_code' => 'BR'], ['name' => 'Kayseri', 'country_code' => 'TR'], ['name' => 'Yueqing', 'country_code' => 'CN'], ['name' => 'Belgrade', 'country_code' => 'RS'], ['name' => 'Pingdu', 'country_code' => 'CN'], ['name' => 'Milan', 'country_code' => 'IT'], ['name' => 'Aurangabad', 'country_code' => 'IN'], ['name' => 'Yutan', 'country_code' => 'CN'], ['name' => 'Wenling', 'country_code' => 'CN'], ['name' => 'Milwaukee', 'country_code' => 'US'], ['name' => 'Sofia', 'country_code' => 'BG'], ['name' => 'Adelaide', 'country_code' => 'AU'], ['name' => 'Prague', 'country_code' => 'CZ'], ['name' => 'Samsun', 'country_code' => 'TR'], ['name' => 'Rajkot', 'country_code' => 'IN'], ['name' => 'Liangshi', 'country_code' => 'CN'], ['name' => 'Khulna', 'country_code' => 'BD'], ['name' => 'Cordoba', 'country_code' => 'AR'], ['name' => 'Guarulhos', 'country_code' => 'BR'], ['name' => 'Juarez', 'country_code' => 'MX'], ['name' => 'Saitama', 'country_code' => 'JP'], ['name' => 'Montevideo', 'country_code' => 'UY'], ['name' => 'Mbuji-Mayi', 'country_code' => 'CD'], ['name' => 'Fuqing', 'country_code' => 'CN'], ['name' => 'Xintai', 'country_code' => 'CN'], ['name' => 'Doha', 'country_code' => 'QA'], ['name' => 'Hiroshima', 'country_code' => 'JP'], ['name' => 'Meerut', 'country_code' => 'IN'], ['name' => 'Yushu', 'country_code' => 'CN'], ['name' => 'Rongcheng', 'country_code' => 'CN'], ['name' => 'Huazhou', 'country_code' => 'CN'], ['name' => 'Yangquan', 'country_code' => 'CN'], ['name' => 'Haicheng', 'country_code' => 'CN'], ['name' => 'Yingtan', 'country_code' => 'CN'], ['name' => 'Huaiyin', 'country_code' => 'CN'], ['name' => 'Wuzhong', 'country_code' => 'CN'], ['name' => 'Barranquilla', 'country_code' => 'CO'], ['name' => 'Jabalpur', 'country_code' => 'IN'], ['name' => 'Thane', 'country_code' => 'IN'], ['name' => 'Zhangye', 'country_code' => 'CN'], ['name' => 'Rucheng', 'country_code' => 'CN'], ['name' => 'Nizhniy Novgorod', 'country_code' => 'RU'], ['name' => 'Comayaguela', 'country_code' => 'HN'], ['name' => 'Shaoyang', 'country_code' => 'CN'], ['name' => 'Dhanbad', 'country_code' => 'IN'], ['name' => 'Yichun', 'country_code' => 'CN'], ['name' => 'Laiwu', 'country_code' => 'CN'], ['name' => 'Jingling', 'country_code' => 'CN'], ['name' => 'Kazan', 'country_code' => 'RU'], ['name' => 'Dayan', 'country_code' => 'CN'], ['name' => 'Suwon', 'country_code' => 'KR'], ['name' => 'Jiangyin', 'country_code' => 'CN'], ['name' => 'Yongcheng', 'country_code' => 'CN'], ['name' => 'Calgary', 'country_code' => 'CA'], ['name' => 'Can Tho', 'country_code' => 'VN'], ['name' => 'Abuja', 'country_code' => 'NG'], ['name' => 'Yiwu', 'country_code' => 'CN'], ['name' => 'Mandalay', 'country_code' => 'MM'], ['name' => 'Beidao', 'country_code' => 'CN'], ['name' => 'Al Basrah', 'country_code' => 'IQ'], ['name' => 'Shuangshui', 'country_code' => 'CN'], ['name' => 'Vila Velha', 'country_code' => 'BR'], ['name' => 'Allahabad', 'country_code' => 'IN'], ['name' => 'Varanasi', 'country_code' => 'IN'], ['name' => 'Chelyabinsk', 'country_code' => 'RU'], ['name' => 'Mombasa', 'country_code' => 'KE'], ['name' => 'Providence', 'country_code' => 'US'], ['name' => 'Qom', 'country_code' => 'IR'], ['name' => 'Maiduguri', 'country_code' => 'NG'], ['name' => 'Maputo', 'country_code' => 'MZ'], ['name' => 'Rosario', 'country_code' => 'AR'], ['name' => 'Benin City', 'country_code' => 'NG'], ['name' => 'Xinyu', 'country_code' => 'CN'], ['name' => 'Pikine', 'country_code' => 'SN'], ['name' => 'Ahvaz', 'country_code' => 'IR'], ['name' => 'Dublin', 'country_code' => 'IE'], ['name' => 'Jacksonville', 'country_code' => 'US'], ['name' => 'Medina', 'country_code' => 'SA'], ['name' => 'Srinagar', 'country_code' => 'IN'], ['name' => 'Omsk', 'country_code' => 'RU'], ['name' => 'Cilacap', 'country_code' => 'ID'], ['name' => 'Bandar Lampung', 'country_code' => 'ID'], ['name' => 'Samara', 'country_code' => 'RU'], ['name' => 'Guankou', 'country_code' => 'CN'], ['name' => 'Ulsan', 'country_code' => 'KR'], ['name' => 'Dingzhou', 'country_code' => 'CN'], ['name' => 'Campinas', 'country_code' => 'BR'], ['name' => 'Lianyuan', 'country_code' => 'CN'], ['name' => 'Rongcheng', 'country_code' => 'CN'], ['name' => 'Kaiyuan', 'country_code' => 'CN'], ['name' => 'Nay Pyi Taw', 'country_code' => 'MM'], ['name' => 'Dakar', 'country_code' => 'SN'], ['name' => 'Zhuji', 'country_code' => 'CN'], ['name' => 'Kigali', 'country_code' => 'RW'], ['name' => 'Zapopan', 'country_code' => 'MX'], ['name' => 'Leiyang', 'country_code' => 'CN'], ['name' => 'Santiago', 'country_code' => 'DO'], ['name' => 'Dadukou', 'country_code' => 'CN'], ['name' => 'Xiantao', 'country_code' => 'CN'], ['name' => 'Amritsar', 'country_code' => 'IN'], ['name' => 'Callao', 'country_code' => 'PE'], ['name' => 'Aligarh', 'country_code' => 'IN'], ['name' => 'Yingchuan', 'country_code' => 'CN'], ['name' => 'Tegucigalpa', 'country_code' => 'HN'], ['name' => 'Ciudad Nezahualcoyotl', 'country_code' => 'MX'], ['name' => 'Tripoli', 'country_code' => 'LY'], ['name' => 'Rostov', 'country_code' => 'RU'], ['name' => 'Nezahualcoyotl', 'country_code' => 'MX'], ['name' => 'Bhiwandi', 'country_code' => 'IN'], ['name' => 'Zhoushan', 'country_code' => 'CN'], ['name' => 'Tbilisi', 'country_code' => 'GE'], ['name' => 'Ufa', 'country_code' => 'RU'], ['name' => 'Fes', 'country_code' => 'MA'], ['name' => 'Sevilla', 'country_code' => 'ES'], ['name' => 'Mexicali', 'country_code' => 'MX'], ['name' => 'Bien Hoa', 'country_code' => 'VN'], ['name' => 'Gwalior', 'country_code' => 'IN'], ['name' => 'Ankang', 'country_code' => 'CN'], ['name' => 'Ikare', 'country_code' => 'NG'], ['name' => 'Huambo', 'country_code' => 'AO'], ['name' => 'Hegang', 'country_code' => 'CN'], ['name' => 'Salt Lake City', 'country_code' => 'US'], ['name' => 'Bhilai', 'country_code' => 'IN'], ['name' => 'Yuyao', 'country_code' => 'CN'], ['name' => 'N Djamena', 'country_code' => 'TD'], ['name' => 'Hanchuan', 'country_code' => 'CN'], ['name' => 'Gongzhuling', 'country_code' => 'CN'], ['name' => 'Irbid', 'country_code' => 'JO'], ['name' => 'Haora', 'country_code' => 'IN'], ['name' => 'Cologne', 'country_code' => 'DE'], ['name' => 'Krasnoyarsk', 'country_code' => 'RU'], ['name' => 'Yicheng', 'country_code' => 'CN'], ['name' => 'Sao Goncalo', 'country_code' => 'BR'], ['name' => 'Nashville', 'country_code' => 'US'], ['name' => 'Yerevan', 'country_code' => 'AM'], ['name' => 'Ranchi', 'country_code' => 'IN'], ['name' => 'Nur-Sultan', 'country_code' => 'KZ'], ['name' => 'Nouakchott', 'country_code' => 'MR'], ['name' => 'Vereeniging', 'country_code' => 'ZA'], ['name' => 'Richmond', 'country_code' => 'US'], ['name' => 'Sao Luis', 'country_code' => 'BR'], ['name' => 'San Pedro Sula', 'country_code' => 'HN'], ['name' => 'Taixing', 'country_code' => 'CN'], ['name' => 'Memphis', 'country_code' => 'US'], ['name' => 'Goyang', 'country_code' => 'KR'], ['name' => 'Bezwada', 'country_code' => 'IN'], ['name' => 'Edmonton', 'country_code' => 'CA'], ['name' => 'Mizhou', 'country_code' => 'CN'], ['name' => 'Tunis', 'country_code' => 'TN'], ['name' => 'Xishan', 'country_code' => 'CN'], ['name' => 'Ezhou', 'country_code' => 'CN'], ['name' => 'Barquisimeto', 'country_code' => 'VE'], ['name' => 'Sendai', 'country_code' => 'JP'], ['name' => 'Voronezh', 'country_code' => 'RU'], ['name' => 'Perm', 'country_code' => 'RU'], ['name' => 'Changwon', 'country_code' => 'KR'], ['name' => 'Zhongwei', 'country_code' => 'CN'], ['name' => 'Shouguang', 'country_code' => 'CN'], ['name' => 'Bogor', 'country_code' => 'ID'], ['name' => 'Raleigh', 'country_code' => 'US'], ['name' => 'Cartagena', 'country_code' => 'CO'], ['name' => 'Chandigarh', 'country_code' => 'IN'], ['name' => 'Bishkek', 'country_code' => 'KG'], ['name' => 'Matola', 'country_code' => 'MZ'], ['name' => 'Ogbomoso', 'country_code' => 'NG'], ['name' => 'Ashgabat', 'country_code' => 'TM'], ['name' => 'Maceio', 'country_code' => 'BR'], ['name' => 'Niamey', 'country_code' => 'NE'], ['name' => 'Managua', 'country_code' => 'NI'], ['name' => 'Patam', 'country_code' => 'ID'], ['name' => 'Tekirdag', 'country_code' => 'TR'], ['name' => 'Shubra al Khaymah', 'country_code' => 'EG'], ['name' => 'Linhai', 'country_code' => 'CN'], ['name' => 'Monrovia', 'country_code' => 'LR'], ['name' => 'Wafangdian', 'country_code' => 'CN'], ['name' => 'Zhongxiang', 'country_code' => 'CN'], ['name' => 'Odesa', 'country_code' => 'UA'], ['name' => 'Shymkent', 'country_code' => 'KZ'], ['name' => 'New Orleans', 'country_code' => 'US'], ['name' => 'Thu Duc', 'country_code' => 'VN'], ['name' => 'Volgograd', 'country_code' => 'RU'], ['name' => 'Port-au-Prince', 'country_code' => 'HT'], ['name' => 'Islamabad', 'country_code' => 'PK'], ['name' => 'Mysore', 'country_code' => 'IN'], ['name' => 'Xinyi', 'country_code' => 'CN'], ['name' => 'Kathmandu', 'country_code' => 'NP'], ['name' => 'Raipur', 'country_code' => 'IN'], ['name' => 'Nice', 'country_code' => 'FR'], ['name' => 'Arequipa', 'country_code' => 'PE'], ['name' => 'Port Harcourt', 'country_code' => 'NG'], ['name' => 'Louisville', 'country_code' => 'US'], ['name' => 'Zaoyang', 'country_code' => 'CN'], ['name' => 'Shuizhai', 'country_code' => 'CN'], ['name' => 'Dnipro', 'country_code' => 'UA'], ['name' => 'Kota', 'country_code' => 'IN'], ['name' => 'Quetta', 'country_code' => 'PK'], ['name' => 'Abu Dhabi', 'country_code' => 'AE'], ['name' => 'Stockholm', 'country_code' => 'SE'], ['name' => 'Ottawa', 'country_code' => 'CA'], ['name' => 'Asmara', 'country_code' => 'ER'], ['name' => 'Freetown', 'country_code' => 'SL'], ['name' => 'Jerusalem', 'country_code' => 'IL'], ['name' => 'Bangui', 'country_code' => 'CF'], ['name' => 'Panama City', 'country_code' => 'PA'], ['name' => 'Amsterdam', 'country_code' => 'NL'], ['name' => 'Lome', 'country_code' => 'TG'], ['name' => 'Libreville', 'country_code' => 'GA'], ['name' => 'Zagreb', 'country_code' => 'HR'], ['name' => 'Dushanbe', 'country_code' => 'TJ'], ['name' => 'Lilongwe', 'country_code' => 'MW'], ['name' => 'Cotonou', 'country_code' => 'BJ'], ['name' => 'Vientiane', 'country_code' => 'LA'], ['name' => 'Colombo', 'country_code' => 'LK'], ['name' => 'Pretoria', 'country_code' => 'ZA'], ['name' => 'Winnipeg', 'country_code' => 'CA'], ['name' => 'Quebec City', 'country_code' => 'CA'], ['name' => 'Oslo', 'country_code' => 'NO'], ['name' => 'Athens', 'country_code' => 'GR'], ['name' => 'Bujumbura', 'country_code' => 'BI'], ['name' => 'Helsinki', 'country_code' => 'FI'], ['name' => 'Skopje', 'country_code' => 'MK'], ['name' => 'Chisinau', 'country_code' => 'MD'], ['name' => 'Riga', 'country_code' => 'LV'], ['name' => 'Copenhagen', 'country_code' => 'DK'], ['name' => 'Kingston', 'country_code' => 'JM'], ['name' => 'Rabat', 'country_code' => 'MA'], ['name' => 'Vilnius', 'country_code' => 'LT'], ['name' => 'San Salvador', 'country_code' => 'SV'], ['name' => 'Djibouti', 'country_code' => 'DJ'], ['name' => 'Lisbon', 'country_code' => 'PT'], ['name' => 'Kitchener', 'country_code' => 'CA'], ['name' => 'Tallinn', 'country_code' => 'EE'], ['name' => 'Cape Town', 'country_code' => 'ZA'], ['name' => 'Bratislava', 'country_code' => 'SK'], ['name' => 'Tirana', 'country_code' => 'AL'], ['name' => 'Canberra', 'country_code' => 'AU'], ['name' => 'Wellington', 'country_code' => 'NZ'], ['name' => 'Beirut', 'country_code' => 'LB'], ['name' => 'Dodoma', 'country_code' => 'TZ'], ['name' => 'Halifax', 'country_code' => 'CA'], ['name' => 'Bissau', 'country_code' => 'GW'], ['name' => 'Juba', 'country_code' => 'SS'], ['name' => 'Port Moresby', 'country_code' => 'PG'], ['name' => 'Yamoussoukro', 'country_code' => 'CI'], ['name' => 'Victoria', 'country_code' => 'CA'], ['name' => 'Maseru', 'country_code' => 'LS'], ['name' => 'Nicosia', 'country_code' => 'CY'], ['name' => 'Windhoek', 'country_code' => 'NA'], ['name' => 'Porto-Novo', 'country_code' => 'BJ'], ['name' => 'Sucre', 'country_code' => 'BO'], ['name' => 'San Jose', 'country_code' => 'CR'], ['name' => 'Ljubljana', 'country_code' => 'SI'], ['name' => 'Sarajevo', 'country_code' => 'BA'], ['name' => 'Nassau', 'country_code' => 'BS'], ['name' => 'Bloemfontein', 'country_code' => 'ZA'], ['name' => 'Fort-de-France', 'country_code' => 'MQ'], ['name' => 'Gaborone', 'country_code' => 'BW'], ['name' => 'Paramaribo', 'country_code' => 'SR'], ['name' => 'Dili', 'country_code' => 'TL'], ['name' => 'Pristina', 'country_code' => 'XK'], ['name' => 'Georgetown', 'country_code' => 'GY'], ['name' => 'Malabo', 'country_code' => 'GQ'], ['name' => 'Gibraltar', 'country_code' => 'GI'], ['name' => 'Saint-Denis', 'country_code' => 'RE'], ['name' => 'Male', 'country_code' => 'MV'], ['name' => 'Podgorica', 'country_code' => 'ME'], ['name' => 'Manama', 'country_code' => 'BH'], ['name' => 'Port Louis', 'country_code' => 'MU'], ['name' => 'Willemstad', 'country_code' => 'CW'], ['name' => 'New Delhi', 'country_code' => 'IN'], ['name' => 'Bern', 'country_code' => 'CH'], ['name' => 'Papeete', 'country_code' => 'PF'], ['name' => 'Reykjavik', 'country_code' => 'IS'], ['name' => 'Praia', 'country_code' => 'CV'], ['name' => 'Luxembourg', 'country_code' => 'LU'], ['name' => 'Sri Jayewardenepura Kotte', 'country_code' => 'LK'], ['name' => 'Bridgetown', 'country_code' => 'BB'], ['name' => 'Moroni', 'country_code' => 'KM'], ['name' => 'Thimphu', 'country_code' => 'BT'], ['name' => 'Mbabane', 'country_code' => 'SZ'], ['name' => 'Noumea', 'country_code' => 'NC'], ['name' => 'Honiara', 'country_code' => 'SB'], ['name' => 'Suva', 'country_code' => 'FJ'], ['name' => 'Castries', 'country_code' => 'LC'], ['name' => 'Cayenne', 'country_code' => 'GF'], ['name' => 'Sao Tome', 'country_code' => 'ST'], ['name' => 'Port-Vila', 'country_code' => 'VU'], ['name' => 'Hamilton', 'country_code' => 'BM'], ['name' => 'Bandar Seri Begawan', 'country_code' => 'BN'], ['name' => 'Monaco', 'country_code' => 'MC'], ['name' => 'Gitega', 'country_code' => 'BI'], ['name' => 'Port of Spain', 'country_code' => 'TT'], ['name' => 'Apia', 'country_code' => 'WS'], ['name' => 'Douglas', 'country_code' => 'IM'], ['name' => 'Oranjestad', 'country_code' => 'AW'], ['name' => 'Saint Helier', 'country_code' => 'JE'], ['name' => 'Vaduz', 'country_code' => 'LI'], ['name' => 'Banjul', 'country_code' => 'GM'], ['name' => 'Mamoudzou', 'country_code' => 'YT'], ['name' => 'Majuro', 'country_code' => 'MH'], ['name' => 'Tarawa', 'country_code' => 'KI'], ['name' => 'George Town', 'country_code' => 'KY'], ['name' => 'Victoria', 'country_code' => 'SC'], ['name' => 'Kingstown', 'country_code' => 'VC'], ['name' => 'Saint John s', 'country_code' => 'AG'], ['name' => 'Nuku alofa', 'country_code' => 'TO'], ['name' => 'Andorra la Vella', 'country_code' => 'AD'], ['name' => 'Nuuk', 'country_code' => 'GL'], ['name' => 'Belmopan', 'country_code' => 'BZ'], ['name' => 'Roseau', 'country_code' => 'DM'], ['name' => 'Basseterre', 'country_code' => 'KN'], ['name' => 'Torshavn', 'country_code' => 'FO'], ['name' => 'Pago Pago', 'country_code' => 'AS'], ['name' => 'Valletta', 'country_code' => 'MT'], ['name' => 'Gaza', 'country_code' => 'XG'], ['name' => 'Grand Turk', 'country_code' => 'TC'], ['name' => 'Palikir', 'country_code' => 'FM'], ['name' => 'Funafuti', 'country_code' => 'TV'], ['name' => 'Lobamba', 'country_code' => 'SZ'], ['name' => 'Avarua', 'country_code' => 'CK'], ['name' => 'Saint George s', 'country_code' => 'GD'], ['name' => 'San Marino', 'country_code' => 'SM'], ['name' => 'Al Quds', 'country_code' => 'XW'], ['name' => 'Capitol Hill', 'country_code' => 'MP'], ['name' => 'Basse-Terre', 'country_code' => 'GP'], ['name' => 'Stanley', 'country_code' => 'FK'], ['name' => 'Vatican City', 'country_code' => 'VA'], ['name' => 'Alofi', 'country_code' => 'NU'], ['name' => 'Hagta', 'country_code' => 'GU'], ['name' => 'Jamestown', 'country_code' => 'SH'], ['name' => 'Marigot', 'country_code' => 'MF'], ['name' => 'Philipsburg', 'country_code' => 'SX'], ['name' => 'Road Town', 'country_code' => 'VG'], ['name' => 'Gustavia', 'country_code' => 'BL'], ['name' => 'Saint-Pierre', 'country_code' => 'PM'], ['name' => 'The Valley', 'country_code' => 'AI'], ['name' => 'Mata-Utu', 'country_code' => 'WF'], ['name' => 'Kingston', 'country_code' => 'NF'], ['name' => 'Ngerulmud', 'country_code' => 'PW'], ['name' => 'Tifariti', 'country_code' => 'MA'], ['name' => 'Tifariti', 'country_code' => 'EH'], ['name' => 'Longyearbyen', 'country_code' => 'XR'], ['name' => 'Adamstown', 'country_code' => 'PN'], ['name' => 'Flying Fish Cove', 'country_code' => 'CX'], ['name' => 'Bareilly', 'country_code' => 'IN'], ['name' => 'Quang Ha', 'country_code' => 'VN'], ['name' => 'Soacha', 'country_code' => 'CO'], ['name' => 'Kitaku', 'country_code' => 'JP'], ['name' => 'Jodhpur', 'country_code' => 'IN'], ['name' => 'Xingcheng', 'country_code' => 'CN'], ['name' => 'Dongtai', 'country_code' => 'CN'], ['name' => 'Yingcheng', 'country_code' => 'CN'], ['name' => 'Al Mansurah', 'country_code' => 'EG'], ['name' => 'Glasgow', 'country_code' => 'GB'], ['name' => 'Chiba', 'country_code' => 'JP'], ['name' => 'Luocheng', 'country_code' => 'CN'], ['name' => 'Danyang', 'country_code' => 'CN'], ['name' => 'Natal', 'country_code' => 'BR'], ['name' => 'Zhaodong', 'country_code' => 'CN'], ['name' => 'Nada', 'country_code' => 'CN'], ['name' => 'Xibeijie', 'country_code' => 'CN'], ['name' => 'Kirkuk', 'country_code' => 'IQ'], ['name' => 'Naples', 'country_code' => 'IT'], ['name' => 'Wuchuan', 'country_code' => 'CN'], ['name' => 'Huilong', 'country_code' => 'CN'], ['name' => 'Oklahoma City', 'country_code' => 'US'], ['name' => 'Toulouse', 'country_code' => 'FR'], ['name' => 'Malaga', 'country_code' => 'ES'], ['name' => 'Denizli', 'country_code' => 'TR'], ['name' => 'Dispur', 'country_code' => 'IN'], ['name' => 'Coimbatore', 'country_code' => 'IN'], ['name' => 'Guwahati', 'country_code' => 'IN'], ['name' => 'Songnam', 'country_code' => 'KR'], ['name' => 'Taishan', 'country_code' => 'CN'], ['name' => 'Solapur', 'country_code' => 'IN'], ['name' => 'Tangier', 'country_code' => 'MA'], ['name' => 'Anqiu', 'country_code' => 'CN'], ['name' => 'Feicheng', 'country_code' => 'CN'], ['name' => 'Meishan', 'country_code' => 'CN'], ['name' => 'Kisangani', 'country_code' => 'CD'], ['name' => 'Khartoum North', 'country_code' => 'SD'], ['name' => 'Aguascalientes', 'country_code' => 'MX'], ['name' => 'Marrakech', 'country_code' => 'MA'], ['name' => 'Donetsk', 'country_code' => 'UA'], ['name' => 'Taihecun', 'country_code' => 'CN'], ['name' => 'Trujillo', 'country_code' => 'PE'], ['name' => 'Cebu City', 'country_code' => 'PH'], ['name' => 'Taihe', 'country_code' => 'CN'], ['name' => 'Bridgeport', 'country_code' => 'US'], ['name' => 'Antwerp', 'country_code' => 'BE'], ['name' => 'Trichinopoly', 'country_code' => 'IN'], ['name' => 'Xin an', 'country_code' => 'CN'], ['name' => 'Padang', 'country_code' => 'ID'], ['name' => 'Qingzhou', 'country_code' => 'CN'], ['name' => 'Buffalo', 'country_code' => 'US'], ['name' => 'Lichuan', 'country_code' => 'CN'], ['name' => 'Daye', 'country_code' => 'CN'], ['name' => 'Fort Worth', 'country_code' => 'US'], ['name' => 'Hengzhou', 'country_code' => 'CN'], ['name' => 'Campo Grande', 'country_code' => 'BR'], ['name' => 'Zhuanghe', 'country_code' => 'CN'], ['name' => 'Hartford', 'country_code' => 'US'], ['name' => 'Ad Dammam', 'country_code' => 'SA'], ['name' => 'Bucheon', 'country_code' => 'KR'], ['name' => 'Lhasa', 'country_code' => 'CN'], ['name' => 'Homs', 'country_code' => 'SY'], ['name' => 'Jiaozhou', 'country_code' => 'CN'], ['name' => 'Merida', 'country_code' => 'MX'], ['name' => 'Yangchun', 'country_code' => 'CN'], ['name' => 'Concepcion', 'country_code' => 'CL'], ['name' => 'Dengtalu', 'country_code' => 'CN'], ['name' => 'Hubli', 'country_code' => 'IN'], ['name' => 'Abeokuta', 'country_code' => 'NG'], ['name' => 'Tucson', 'country_code' => 'US'], ['name' => 'Krasnodar', 'country_code' => 'RU'], ['name' => 'Natal', 'country_code' => 'BR'], ['name' => 'Chihuahua', 'country_code' => 'MX'], ['name' => 'Klang', 'country_code' => 'MY'], ['name' => 'Turin', 'country_code' => 'IT'], ['name' => 'Jos', 'country_code' => 'NG'], ['name' => 'Laiyang', 'country_code' => 'CN'], ['name' => 'Jalandhar', 'country_code' => 'IN'], ['name' => 'Sale', 'country_code' => 'MA'], ['name' => 'Marseille', 'country_code' => 'FR'], ['name' => 'Kaifeng Chengguanzhen', 'country_code' => 'CN'], ['name' => 'Eskisehir', 'country_code' => 'TR'], ['name' => 'Gaomi', 'country_code' => 'CN'], ['name' => 'Teresina', 'country_code' => 'BR'], ['name' => 'Ipoh', 'country_code' => 'MY'], ['name' => 'Hai an', 'country_code' => 'CN'], ['name' => 'Liverpool', 'country_code' => 'GB'], ['name' => 'Zamboanga City', 'country_code' => 'PH'], ['name' => 'Oran', 'country_code' => 'DZ'], ['name' => 'Southampton', 'country_code' => 'GB'], ['name' => 'Weichanglu', 'country_code' => 'CN'], ['name' => 'Pekanbaru', 'country_code' => 'ID'], ['name' => 'Portsmouth', 'country_code' => 'GB'], ['name' => 'Leping', 'country_code' => 'CN'], ['name' => 'Kermanshah', 'country_code' => 'IR'], ['name' => 'Hailun', 'country_code' => 'CN'], ['name' => 'Macheng', 'country_code' => 'CN'], ['name' => 'Ilorin', 'country_code' => 'NG'], ['name' => 'Omaha', 'country_code' => 'US'], ['name' => 'Yuci', 'country_code' => 'CN'], ['name' => 'Saratov', 'country_code' => 'RU'], ['name' => 'Sao Bernardo do Campo', 'country_code' => 'BR'], ['name' => 'Erbil', 'country_code' => 'IQ'], ['name' => 'Iguacu', 'country_code' => 'BR'], ['name' => 'El Paso', 'country_code' => 'US'], ['name' => 'Denpasar', 'country_code' => 'ID'], ['name' => 'Dehui', 'country_code' => 'CN'], ['name' => 'Naucalpan de Juarez', 'country_code' => 'MX'], ['name' => 'Bhubaneshwar', 'country_code' => 'IN'], ['name' => 'Tongchuan', 'country_code' => 'CN'], ['name' => 'Cheongju', 'country_code' => 'KR'], ['name' => 'Warri', 'country_code' => 'NG'], ['name' => 'Pointe-Noire', 'country_code' => 'CG'], ['name' => 'Rongjiawan', 'country_code' => 'CN'], ['name' => 'Butterworth', 'country_code' => 'MY'], ['name' => 'Bhayandar', 'country_code' => 'IN'], ['name' => 'San Luis Potosi', 'country_code' => 'MX'], ['name' => 'Renqiu', 'country_code' => 'CN'], ['name' => 'Joao Pessoa', 'country_code' => 'BR'], ['name' => 'Toluca', 'country_code' => 'MX'], ['name' => 'Honolulu', 'country_code' => 'US'], ['name' => 'Queretaro', 'country_code' => 'MX'], ['name' => 'Xindi', 'country_code' => 'CN'], ['name' => 'Wu an', 'country_code' => 'CN'], ['name' => 'Hermosillo', 'country_code' => 'MX'], ['name' => 'Wutong', 'country_code' => 'CN'], ['name' => 'Taguig City', 'country_code' => 'PH'], ['name' => 'Saltillo', 'country_code' => 'MX'], ['name' => 'Gaoyou', 'country_code' => 'CN'], ['name' => 'Hejian', 'country_code' => 'CN'], ['name' => 'Yiyang', 'country_code' => 'CN'], ['name' => 'Puxi', 'country_code' => 'CN'], ['name' => 'Zijinglu', 'country_code' => 'CN'], ['name' => 'Trabzon', 'country_code' => 'TR'], ['name' => 'Xiashi', 'country_code' => 'CN'], ['name' => 'Valencia', 'country_code' => 'ES'], ['name' => 'Dongyang', 'country_code' => 'CN'], ['name' => 'McAllen', 'country_code' => 'US'], ['name' => 'Abaete', 'country_code' => 'BR'], ['name' => 'Palermo', 'country_code' => 'CO'], ['name' => 'Johor Bahru', 'country_code' => 'MY'], ['name' => 'Qingping', 'country_code' => 'CN'], ['name' => 'Morelia', 'country_code' => 'MX'], ['name' => 'Niigata', 'country_code' => 'JP'], ['name' => 'Pasig City', 'country_code' => 'PH'], ['name' => 'Moradabad', 'country_code' => 'IN'], ['name' => 'Hamamatsu', 'country_code' => 'JP'], ['name' => 'Culiacan', 'country_code' => 'MX'], ['name' => 'Xiangxiang', 'country_code' => 'CN'], ['name' => 'Malang', 'country_code' => 'ID'], ['name' => 'Xingyi', 'country_code' => 'CN'], ['name' => 'Chaohucun', 'country_code' => 'CN'], ['name' => 'Fuyang', 'country_code' => 'CN'], ['name' => 'Antipolo', 'country_code' => 'PH'], ['name' => 'Lubango', 'country_code' => 'AO'], ['name' => 'Nottingham', 'country_code' => 'GB'], ['name' => 'Cencheng', 'country_code' => 'CN'], ['name' => 'Krakow', 'country_code' => 'PL'], ['name' => 'Erzurum', 'country_code' => 'TR'], ['name' => 'Hempstead', 'country_code' => 'US'], ['name' => 'Al Ayn', 'country_code' => 'AE'], ['name' => 'Songzi', 'country_code' => 'CN'], ['name' => 'Laixi', 'country_code' => 'CN'], ['name' => 'Bahawalpur', 'country_code' => 'PK'], ['name' => 'Zhongba', 'country_code' => 'CN'], ['name' => 'Qingnian', 'country_code' => 'CN'], ['name' => 'Albuquerque', 'country_code' => 'US'], ['name' => 'Kaduna', 'country_code' => 'NG'], ['name' => 'Tlalnepantla', 'country_code' => 'MX'], ['name' => 'Xinhualu', 'country_code' => 'CN'], ['name' => 'Guangshui', 'country_code' => 'CN'], ['name' => 'Frankfurt', 'country_code' => 'DE'], ['name' => 'Samarinda', 'country_code' => 'ID'], ['name' => 'Changhua', 'country_code' => 'TW'], ['name' => 'Pietermaritzburg', 'country_code' => 'ZA'], ['name' => 'Hungnam', 'country_code' => 'KP'], ['name' => 'Kolhapur', 'country_code' => 'IN'], ['name' => 'Ciudad Guayana', 'country_code' => 'VE'], ['name' => 'Cucuta', 'country_code' => 'CO'], ['name' => 'Licheng', 'country_code' => 'CN'], ['name' => 'Thiruvananthapuram', 'country_code' => 'IN'], ['name' => 'Tyumen', 'country_code' => 'RU'], ['name' => 'Cancun', 'country_code' => 'MX'], ['name' => 'Zaporizhzhia', 'country_code' => 'UA'], ['name' => 'Tlajomulco de Zuniga', 'country_code' => 'MX'], ['name' => 'Chengguan', 'country_code' => 'CN'], ['name' => 'Kumamoto', 'country_code' => 'JP'], ['name' => 'Nehe', 'country_code' => 'CN'], ['name' => 'Sokoto', 'country_code' => 'NG'], ['name' => 'Birmingham', 'country_code' => 'US'], ['name' => 'Zunhua', 'country_code' => 'CN'], ['name' => 'Orumiyeh', 'country_code' => 'IR'], ['name' => 'Oyo', 'country_code' => 'NG'], ['name' => 'Wugang', 'country_code' => 'CN'], ['name' => 'Shuangqiao', 'country_code' => 'CN'], ['name' => 'Rennes', 'country_code' => 'FR'], ['name' => 'Sizhan', 'country_code' => 'CN'], ['name' => 'Comodoro Rivadavia', 'country_code' => 'AR'], ['name' => 'Langzhong', 'country_code' => 'CN'], ['name' => 'Bristol', 'country_code' => 'GB'], ['name' => 'Qian an', 'country_code' => 'CN'], ['name' => 'Lviv', 'country_code' => 'UA'], ['name' => 'Zouping', 'country_code' => 'CN'], ['name' => 'Bremen', 'country_code' => 'DE'], ['name' => 'Reynosa', 'country_code' => 'MX'], ['name' => 'An Najaf', 'country_code' => 'IQ'], ['name' => 'Sagamihara', 'country_code' => 'JP'], ['name' => 'Guli', 'country_code' => 'CN'], ['name' => 'Sarasota', 'country_code' => 'US'], ['name' => 'Mississauga', 'country_code' => 'CA'], ['name' => 'Lingbao Chengguanzhen', 'country_code' => 'CN'], ['name' => 'Okayama', 'country_code' => 'JP'], ['name' => 'Anlu', 'country_code' => 'CN'], ['name' => 'Wusong', 'country_code' => 'CN'], ['name' => 'Dayton', 'country_code' => 'US'], ['name' => 'Changsha', 'country_code' => 'CN'], ['name' => 'Enugu', 'country_code' => 'NG'], ['name' => 'George Town', 'country_code' => 'MY'], ['name' => 'Jaboatao', 'country_code' => 'BR'], ['name' => 'Santo Andre', 'country_code' => 'BR'], ['name' => 'Xichang', 'country_code' => 'CN'], ['name' => 'Soledad', 'country_code' => 'CO'], ['name' => 'Chengxiang', 'country_code' => 'CN'], ['name' => 'Tolyatti', 'country_code' => 'RU'], ['name' => 'Saharanpur', 'country_code' => 'IN'], ['name' => 'Warangal', 'country_code' => 'IN'], ['name' => 'Edogawa', 'country_code' => 'JP'], ['name' => 'Osasco', 'country_code' => 'BR'], ['name' => 'Dashiqiao', 'country_code' => 'CN'], ['name' => 'Latakia', 'country_code' => 'SY'], ['name' => 'Rochester', 'country_code' => 'US'], ['name' => 'Fresno', 'country_code' => 'US'], ['name' => 'Banjarmasin', 'country_code' => 'ID'], ['name' => 'Salem', 'country_code' => 'IN'], ['name' => 'Uberlandia', 'country_code' => 'BR'], ['name' => 'Shishi', 'country_code' => 'CN'], ['name' => 'Grenoble', 'country_code' => 'FR'], ['name' => 'Guadalupe', 'country_code' => 'MX'], ['name' => 'Adachi', 'country_code' => 'JP'], ['name' => 'Qianxi', 'country_code' => 'CN'], ['name' => 'Aracaju', 'country_code' => 'BR'], ['name' => 'Bauchi', 'country_code' => 'NG'], ['name' => 'Hamilton', 'country_code' => 'CA'], ['name' => 'Lodz', 'country_code' => 'PL'], ['name' => 'Miluo Chengguanzhen', 'country_code' => 'CN'], ['name' => 'Gaizhou', 'country_code' => 'CN'], ['name' => 'Malegaon', 'country_code' => 'IN'], ['name' => 'Karbala ', 'country_code' => 'IQ'], ['name' => 'Leling', 'country_code' => 'CN'], ['name' => 'Sao Jose dos Campos', 'country_code' => 'BR'], ['name' => 'Jianshe', 'country_code' => 'CN'], ['name' => 'Acapulco de Juarez', 'country_code' => 'MX'], ['name' => 'Sheffield', 'country_code' => 'GB'], ['name' => 'Shizuoka', 'country_code' => 'JP'], ['name' => 'Jingcheng', 'country_code' => 'CN'], ['name' => 'City of Paranaque', 'country_code' => 'PH'], ['name' => 'Kochi', 'country_code' => 'IN'], ['name' => 'Allentown', 'country_code' => 'US'], ['name' => 'Tasikmalaya', 'country_code' => 'ID'], ['name' => 'Macau', 'country_code' => 'MO'], ['name' => 'Torreon', 'country_code' => 'MX'], ['name' => 'Xinmin', 'country_code' => 'CN'], ['name' => 'Shanhu', 'country_code' => 'CN'], ['name' => 'Zhongshu', 'country_code' => 'CN'], ['name' => 'Xigaze', 'country_code' => 'CN'], ['name' => 'Gold Coast', 'country_code' => 'AU'], ['name' => 'Cagayan de Oro', 'country_code' => 'PH'], ['name' => 'Gorakhpur', 'country_code' => 'IN'], ['name' => 'Pinghu', 'country_code' => 'CN'], ['name' => 'Palermo', 'country_code' => 'IT'], ['name' => 'Guankou', 'country_code' => 'CN'], ['name' => 'Tulsa', 'country_code' => 'US'], ['name' => 'Yatou', 'country_code' => 'CN'], ['name' => 'Songyang', 'country_code' => 'CN'], ['name' => 'Cape Coral', 'country_code' => 'US'], ['name' => 'Ch ongjin', 'country_code' => 'KP'], ['name' => 'Puyang Chengguanzhen', 'country_code' => 'CN'], ['name' => 'Qionghu', 'country_code' => 'CN'], ['name' => 'Ribeirao Preto', 'country_code' => 'BR'], ['name' => 'Dasmarinas', 'country_code' => 'PH'], ['name' => 'Wenchang', 'country_code' => 'CN'], ['name' => 'Shulan', 'country_code' => 'CN'], ['name' => 'Catia La Mar', 'country_code' => 'VE'], ['name' => 'Sargodha', 'country_code' => 'PK'], ['name' => 'Bouake', 'country_code' => 'CI'], ['name' => 'Sialkot City', 'country_code' => 'PK'], ['name' => 'As Sulaymaniyah', 'country_code' => 'IQ'], ['name' => 'Hwasu-dong', 'country_code' => 'KR'], ['name' => 'Jeonju', 'country_code' => 'KR'], ['name' => 'Durango', 'country_code' => 'MX'], ['name' => 'Shimoga', 'country_code' => 'IN'], ['name' => 'Ansan', 'country_code' => 'KR'], ['name' => 'Bulawayo', 'country_code' => 'ZW'], ['name' => 'Xiping', 'country_code' => 'CN'], ['name' => 'Sanhe', 'country_code' => 'CN'], ['name' => 'Guntur', 'country_code' => 'IN'], ['name' => 'Dali', 'country_code' => 'CN'], ['name' => 'Concord', 'country_code' => 'US'], ['name' => 'Contagem', 'country_code' => 'BR'], ['name' => 'Tiruppur', 'country_code' => 'IN'], ['name' => 'Ch onan', 'country_code' => 'KR'], ['name' => 'Zaragoza', 'country_code' => 'ES'], ['name' => 'Dusseldorf', 'country_code' => 'DE'], ['name' => 'Izhevsk', 'country_code' => 'RU'], ['name' => 'Guixi', 'country_code' => 'CN'], ['name' => 'Sorocaba', 'country_code' => 'BR'], ['name' => 'Villahermosa', 'country_code' => 'MX'], ['name' => 'Petaling Jaya', 'country_code' => 'MY'], ['name' => 'Tengyue', 'country_code' => 'CN'], ['name' => 'Wuxue', 'country_code' => 'CN'], ['name' => 'Utrecht', 'country_code' => 'NL'], ['name' => 'Kikwit', 'country_code' => 'CD'], ['name' => 'Colorado Springs', 'country_code' => 'US'], ['name' => 'Valenzuela', 'country_code' => 'PH'], ['name' => 'Qufu', 'country_code' => 'CN'], ['name' => 'Gaobeidian', 'country_code' => 'CN'], ['name' => 'Ruiming', 'country_code' => 'CN'], ['name' => 'Wroclaw', 'country_code' => 'PL'], ['name' => 'Rasht', 'country_code' => 'IR'], ['name' => 'Nantes', 'country_code' => 'FR'], ['name' => 'Stuttgart', 'country_code' => 'DE'], ['name' => 'Al Hufuf', 'country_code' => 'SA'], ['name' => 'Xinshi', 'country_code' => 'CN'], ['name' => 'Cochabamba', 'country_code' => 'BO'], ['name' => 'Barnaul', 'country_code' => 'RU'], ['name' => 'Tripoli', 'country_code' => 'LB'], ['name' => 'Jin e', 'country_code' => 'CN'], ['name' => 'Rotterdam', 'country_code' => 'NL'], ['name' => 'Benghazi', 'country_code' => 'LY'], ['name' => 'Kryvyi Rih', 'country_code' => 'UA'], ['name' => 'Yanggok', 'country_code' => 'KR'], ['name' => 'Changping', 'country_code' => 'CN'], ['name' => 'Raurkela', 'country_code' => 'IN'], ['name' => 'Halwan', 'country_code' => 'EG'], ['name' => 'Charleston', 'country_code' => 'US'], ['name' => 'Chimalhuacan', 'country_code' => 'MX'], ['name' => 'Xinxing', 'country_code' => 'CN'], ['name' => 'Suohe', 'country_code' => 'CN'], ['name' => 'Mangalore', 'country_code' => 'IN'], ['name' => 'Zhuangyuan', 'country_code' => 'CN'], ['name' => 'Ulyanovsk', 'country_code' => 'RU'], ['name' => 'Irkutsk', 'country_code' => 'RU'], ['name' => 'Nanded', 'country_code' => 'IN'], ['name' => 'Bacoor', 'country_code' => 'PH'], ['name' => 'Pontianak', 'country_code' => 'ID'], ['name' => 'Villa Nueva', 'country_code' => 'GT'], ['name' => 'Bazhou', 'country_code' => 'CN'], ['name' => 'Springfield', 'country_code' => 'US'], ['name' => 'Turpan', 'country_code' => 'CN'], ['name' => 'Xingtai', 'country_code' => 'CN'], ['name' => 'Meihekou', 'country_code' => 'CN'], ['name' => 'Cuiaba', 'country_code' => 'BR'], ['name' => 'Jurong', 'country_code' => 'CN'], ['name' => 'Feira de Santana', 'country_code' => 'BR'], ['name' => 'Khabarovsk', 'country_code' => 'RU'], ['name' => 'Zhugang', 'country_code' => 'CN'], ['name' => 'Xinji', 'country_code' => 'CN'], ['name' => 'Hamhung', 'country_code' => 'KP'], ['name' => 'Serang', 'country_code' => 'ID'], ['name' => 'Sanya', 'country_code' => 'CN'], ['name' => 'Buraydah', 'country_code' => 'SA'], ['name' => 'Ta izz', 'country_code' => 'YE'], ['name' => 'Montpellier', 'country_code' => 'FR'], ['name' => 'San Miguel de Tucuman', 'country_code' => 'AR'], ['name' => 'Yaroslavl', 'country_code' => 'RU'], ['name' => 'Zhangshu', 'country_code' => 'CN'], ['name' => 'Grand Rapids', 'country_code' => 'US'], ['name' => 'Vladivostok', 'country_code' => 'RU'], ['name' => 'Kuantan', 'country_code' => 'MY'], ['name' => 'Gothenburg', 'country_code' => 'SE'], ['name' => 'Cuttack', 'country_code' => 'IN'], ['name' => 'Jambi', 'country_code' => 'ID'], ['name' => 'Zhuozhou', 'country_code' => 'CN'], ['name' => 'Tianchang', 'country_code' => 'CN'], ['name' => 'Las Pinas City', 'country_code' => 'PH'], ['name' => 'Cimahi', 'country_code' => 'ID'], ['name' => 'Tuxtla', 'country_code' => 'MX'], ['name' => 'Balikpapan', 'country_code' => 'ID'], ['name' => 'Qamdo', 'country_code' => 'CN'], ['name' => 'Joinvile', 'country_code' => 'BR'], ['name' => 'Durban', 'country_code' => 'ZA'], ['name' => 'General Santos', 'country_code' => 'PH'], ['name' => 'Chanda', 'country_code' => 'IN'], ['name' => 'Kagoshima', 'country_code' => 'JP'], ['name' => 'Leipzig', 'country_code' => 'DE'], ['name' => 'Al Hillah', 'country_code' => 'SA'], ['name' => 'Makhachkala', 'country_code' => 'RU'], ['name' => 'Sihui', 'country_code' => 'CN'], ['name' => 'Mar del Plata', 'country_code' => 'AR'], ['name' => 'Brampton', 'country_code' => 'CA'], ['name' => 'Luocheng', 'country_code' => 'CN'], ['name' => 'Pereira', 'country_code' => 'CO'], ['name' => 'Mission Viejo', 'country_code' => 'US'], ['name' => 'Dortmund', 'country_code' => 'DE'], ['name' => 'Chuxiong', 'country_code' => 'CN'], ['name' => 'Makati City', 'country_code' => 'PH'], ['name' => 'Albany', 'country_code' => 'US'], ['name' => 'Shah Alam', 'country_code' => 'MY'], ['name' => 'Knoxville', 'country_code' => 'US'], ['name' => 'Essen', 'country_code' => 'DE'], ['name' => 'Shangzhi', 'country_code' => 'CN'], ['name' => 'Botou', 'country_code' => 'CN'], ['name' => 'Bucaramanga', 'country_code' => 'CO'], ['name' => 'Anyang', 'country_code' => 'KR'], ['name' => 'Genoa', 'country_code' => 'IT'], ['name' => 'Kuiju', 'country_code' => 'CN'], ['name' => 'Tlaquepaque', 'country_code' => 'MX'], ['name' => 'Puente Alto', 'country_code' => 'CL'], ['name' => 'Dehra Dun', 'country_code' => 'IN'], ['name' => 'At Ta if', 'country_code' => 'SA'], ['name' => 'San Jose del Monte', 'country_code' => 'PH'], ['name' => 'Bakersfield', 'country_code' => 'US'], ['name' => 'Wancheng', 'country_code' => 'CN'], ['name' => 'Hachioji', 'country_code' => 'JP'], ['name' => 'Ogden', 'country_code' => 'US'], ['name' => 'Xiulin', 'country_code' => 'CN'], ['name' => 'Fu an', 'country_code' => 'CN'], ['name' => 'Tomsk', 'country_code' => 'RU'], ['name' => 'Kerman', 'country_code' => 'IR'], ['name' => 'Kingston upon Hull', 'country_code' => 'GB'], ['name' => 'Al Mahallah al Kubra', 'country_code' => 'EG'], ['name' => 'Kumul', 'country_code' => 'CN'], ['name' => 'Luofeng', 'country_code' => 'CN'], ['name' => 'Lingyuan', 'country_code' => 'CN'], ['name' => 'Baton Rouge', 'country_code' => 'US'], ['name' => 'Wencheng', 'country_code' => 'CN'], ['name' => 'Ciudad Bolivar', 'country_code' => 'VE'], ['name' => 'Durgapur', 'country_code' => 'IN'], ['name' => 'Orenburg', 'country_code' => 'RU'], ['name' => 'Shenzhou', 'country_code' => 'CN'], ['name' => 'Asansol', 'country_code' => 'IN'], ['name' => 'Bacolod', 'country_code' => 'PH'], ['name' => 'Akron', 'country_code' => 'US'], ['name' => 'New Haven', 'country_code' => 'US'], ['name' => 'Zhenzhou', 'country_code' => 'CN'], ['name' => 'Surakarta', 'country_code' => 'ID'], ['name' => 'Jieshou', 'country_code' => 'CN'], ['name' => 'Lanxi', 'country_code' => 'CN'], ['name' => 'Zahedan', 'country_code' => 'IR'], ['name' => 'Dangyang', 'country_code' => 'CN'], ['name' => 'Columbia', 'country_code' => 'US'], ['name' => 'Kemerovo', 'country_code' => 'RU'], ['name' => 'Dresden', 'country_code' => 'DE'], ['name' => 'Veracruz', 'country_code' => 'MX'], ['name' => 'Bhavnagar', 'country_code' => 'IN'], ['name' => 'Luanzhou', 'country_code' => 'CN'], ['name' => 'Novokuznetsk', 'country_code' => 'RU'], ['name' => 'Nellore', 'country_code' => 'IN'], ['name' => 'Chiclayo', 'country_code' => 'PE'], ['name' => 'Palma', 'country_code' => 'ES'], ['name' => 'Al Hudaydah', 'country_code' => 'YE'], ['name' => 'Eslamshahr', 'country_code' => 'IR'], ['name' => 'Cabinda', 'country_code' => 'AO'], ['name' => 'Amravati', 'country_code' => 'IN'], ['name' => 'Korla', 'country_code' => 'CN'], ['name' => 'Huanghua', 'country_code' => 'CN'], ['name' => 'Londrina', 'country_code' => 'BR'], ['name' => 'Tabuk', 'country_code' => 'SA'], ['name' => 'Xingcheng', 'country_code' => 'CN'], ['name' => 'Kaiyuan', 'country_code' => 'CN'], ['name' => 'Valledupar', 'country_code' => 'CO'], ['name' => 'Fengcheng', 'country_code' => 'CN'], ['name' => 'Ajmer', 'country_code' => 'IN'], ['name' => 'Tinnevelly', 'country_code' => 'IN'], ['name' => 'Fuding', 'country_code' => 'CN'], ['name' => 'Maturin', 'country_code' => 'VE'], ['name' => 'An Nasiriyah', 'country_code' => 'IQ'], ['name' => 'Al Hillah', 'country_code' => 'IQ'], ['name' => 'Ibague', 'country_code' => 'CO'], ['name' => 'Hannover', 'country_code' => 'DE'], ['name' => 'Ryazan', 'country_code' => 'RU'], ['name' => 'Panshi', 'country_code' => 'CN'], ['name' => 'Kassala', 'country_code' => 'SD'], ['name' => 'Ananindeua', 'country_code' => 'BR'], ['name' => 'Chang an', 'country_code' => 'CN'], ['name' => 'Shashi', 'country_code' => 'CN'], ['name' => 'Poznan', 'country_code' => 'PL'], ['name' => 'Aksu', 'country_code' => 'CN'], ['name' => 'Salta', 'country_code' => 'AR'], ['name' => 'Astrakhan', 'country_code' => 'RU'], ['name' => 'Mingguang', 'country_code' => 'CN'], ['name' => 'Naberezhnyye Chelny', 'country_code' => 'RU'], ['name' => 'Bikaner', 'country_code' => 'IN'], ['name' => 'Agartala', 'country_code' => 'IN'], ['name' => 'Xalapa', 'country_code' => 'MX'], ['name' => 'Ndola', 'country_code' => 'ZM'], ['name' => 'Hamadan', 'country_code' => 'IR'], ['name' => 'Villavicencio', 'country_code' => 'CO'], ['name' => 'Ailan Mubage', 'country_code' => 'CN'], ['name' => 'Ensenada', 'country_code' => 'MX'], ['name' => 'Lyon', 'country_code' => 'FR'], ['name' => 'Bac Ninh', 'country_code' => 'VN'], ['name' => 'Ciudad Apodaca', 'country_code' => 'MX'], ['name' => 'Santa Teresa del Tuy', 'country_code' => 'VE'], ['name' => 'Maipu', 'country_code' => 'CL'], ['name' => 'Penza', 'country_code' => 'RU'], ['name' => 'Heroica Matamoros', 'country_code' => 'MX'], ['name' => 'Port Said', 'country_code' => 'EG'], ['name' => 'Yucheng', 'country_code' => 'CN'], ['name' => 'Meknes', 'country_code' => 'MA'], ['name' => 'Nuremberg', 'country_code' => 'DE'], ['name' => 'Pohang', 'country_code' => 'KR'], ['name' => 'Anda', 'country_code' => 'CN'], ['name' => 'Jinghong', 'country_code' => 'CN'], ['name' => 'Utsunomiya', 'country_code' => 'JP'], ['name' => 'Liaoyuan', 'country_code' => 'CN'], ['name' => 'Mesa', 'country_code' => 'US'], ['name' => 'Surrey', 'country_code' => 'CA'], ['name' => 'Caxias do Sul', 'country_code' => 'BR'], ['name' => 'Heshan', 'country_code' => 'CN'], ['name' => 'Cuautitlan Izcalli', 'country_code' => 'MX'], ['name' => 'Ujjain', 'country_code' => 'IN'], ['name' => 'Jiaji', 'country_code' => 'CN'], ['name' => 'Santa Marta', 'country_code' => 'CO'], ['name' => 'Beining', 'country_code' => 'CN'], ['name' => 'Hai Duong', 'country_code' => 'VN'], ['name' => 'Carrefour', 'country_code' => 'HT'], ['name' => 'Homyel ', 'country_code' => 'BY'], ['name' => 'Leicester', 'country_code' => 'GB'], ['name' => 'Yanji', 'country_code' => 'CN'], ['name' => 'Yicheng', 'country_code' => 'CN'], ['name' => 'Lipetsk', 'country_code' => 'RU'], ['name' => 'Choloma', 'country_code' => 'HN'], ['name' => 'Ulhasnagar', 'country_code' => 'IN'], ['name' => 'Encheng', 'country_code' => 'CN'], ['name' => 'Muntinlupa City', 'country_code' => 'PH'], ['name' => 'Linghai', 'country_code' => 'CN'], ['name' => 'Aden', 'country_code' => 'YE'], ['name' => 'Matsuyama', 'country_code' => 'JP'], ['name' => 'Jhansi', 'country_code' => 'IN'], ['name' => 'Kitwe', 'country_code' => 'ZM'], ['name' => 'Kashgar', 'country_code' => 'CN'], ['name' => 'Aba', 'country_code' => 'NG'], ['name' => 'Palm Bay', 'country_code' => 'US'], ['name' => 'Pingtung', 'country_code' => 'TW'], ['name' => 'Monteria', 'country_code' => 'CO'], ['name' => 'Samarkand', 'country_code' => 'UZ'], ['name' => 'Davangere', 'country_code' => 'IN'], ['name' => 'Jammu', 'country_code' => 'IN'], ['name' => 'Mazatlan', 'country_code' => 'MX'], ['name' => 'Murcia', 'country_code' => 'ES'], ['name' => 'Ile-Ife', 'country_code' => 'NG'], ['name' => 'Kirov', 'country_code' => 'RU'], ['name' => 'Qaraghandy', 'country_code' => 'KZ'], ['name' => 'Belas', 'country_code' => 'AO'], ['name' => 'Mazatan', 'country_code' => 'MX'], ['name' => 'Duisburg', 'country_code' => 'DE'], ['name' => 'Mykolaiv', 'country_code' => 'UA'], ['name' => 'Provo', 'country_code' => 'US'], ['name' => 'Meicheng', 'country_code' => 'CN'], ['name' => 'Niteroi', 'country_code' => 'BR'], ['name' => 'Matsudo', 'country_code' => 'JP'], ['name' => 'Sukkur', 'country_code' => 'PK'], ['name' => 'Rouen', 'country_code' => 'FR'], ['name' => 'Higashi-osaka', 'country_code' => 'JP'], ['name' => 'Worcester', 'country_code' => 'US'], ['name' => 'Hongjiang', 'country_code' => 'CN'], ['name' => 'Chimbote', 'country_code' => 'PE'], ['name' => 'Ixtapaluca', 'country_code' => 'MX'], ['name' => 'Dengtacun', 'country_code' => 'CN'], ['name' => 'Zhijiang', 'country_code' => 'CN'], ['name' => 'Chengjiao', 'country_code' => 'CN'], ['name' => 'Beipiao', 'country_code' => 'CN'], ['name' => 'Murrieta', 'country_code' => 'US'], ['name' => 'Kota Bharu', 'country_code' => 'MY'], ['name' => 'Ciudad Lopez Mateos', 'country_code' => 'MX'], ['name' => 'Vinh', 'country_code' => 'VN'], ['name' => 'Tultitlan de Mariano Escobedo', 'country_code' => 'MX'], ['name' => 'Duyun', 'country_code' => 'CN'], ['name' => 'Kandahar', 'country_code' => 'AF'], ['name' => 'Nishinomiya-hama', 'country_code' => 'JP'], ['name' => 'Larkana', 'country_code' => 'PK'], ['name' => 'Cheboksary', 'country_code' => 'RU'], ['name' => 'Yuanping', 'country_code' => 'CN'], ['name' => 'Port Sudan', 'country_code' => 'SD'], ['name' => 'Edinburgh', 'country_code' => 'GB'], ['name' => 'Belgaum', 'country_code' => 'IN'], ['name' => 'Tula', 'country_code' => 'RU'], ['name' => 'Suez', 'country_code' => 'EG'], ['name' => 'Shahe', 'country_code' => 'CN'], ['name' => 'Yazd', 'country_code' => 'IR'], ['name' => 'Serra', 'country_code' => 'BR'], ['name' => 'Nazret', 'country_code' => 'ET'], ['name' => 'Gaoping', 'country_code' => 'CN'], ['name' => 'Greenville', 'country_code' => 'US'], ['name' => 'Arak', 'country_code' => 'IR'], ['name' => 'San Nicolas de los Garza', 'country_code' => 'MX'], ['name' => 'Gulbarga', 'country_code' => 'IN'], ['name' => 'Juiz de Fora', 'country_code' => 'BR'], ['name' => 'Dunhua', 'country_code' => 'CN'], ['name' => 'Brookhaven', 'country_code' => 'US'], ['name' => 'Az Zarqa ', 'country_code' => 'JO'], ['name' => 'Americana', 'country_code' => 'BR'], ['name' => 'Ardabil', 'country_code' => 'IR'], ['name' => 'Sylhet', 'country_code' => 'BD'], ['name' => 'Wichita', 'country_code' => 'US'], ['name' => 'Toledo', 'country_code' => 'US'], ['name' => 'Kaihua', 'country_code' => 'CN'], ['name' => 'Caerdydd', 'country_code' => 'GB'], ['name' => 'Jamnagar', 'country_code' => 'IN'], ['name' => 'Dhulia', 'country_code' => 'IN'], ['name' => 'Nampula', 'country_code' => 'MZ'], ['name' => 'Gaya', 'country_code' => 'IN'], ['name' => 'Florianopolis', 'country_code' => 'BR'], ['name' => 'Chiniot', 'country_code' => 'PK'], ['name' => 'Jiannan', 'country_code' => 'CN'], ['name' => 'Oita', 'country_code' => 'JP'], ['name' => 'Wuhai', 'country_code' => 'CN'], ['name' => 'Kaliningrad', 'country_code' => 'RU'], ['name' => 'Nangong', 'country_code' => 'CN'], ['name' => 'Staten Island', 'country_code' => 'US'], ['name' => 'San Juan', 'country_code' => 'AR'], ['name' => 'Vila Velha', 'country_code' => 'BR'], ['name' => 'Macapa', 'country_code' => 'BR'], ['name' => 'Shekhupura', 'country_code' => 'PK'], ['name' => 'Des Moines', 'country_code' => 'US'], ['name' => 'Piura', 'country_code' => 'PE'], ['name' => 'Jiaojiangcun', 'country_code' => 'CN'], ['name' => 'Laohekou', 'country_code' => 'CN'], ['name' => 'Beian', 'country_code' => 'CN'], ['name' => 'Fujin', 'country_code' => 'CN'], ['name' => 'Celaya', 'country_code' => 'MX'], ['name' => 'Xiaoyi', 'country_code' => 'CN'], ['name' => 'Strasbourg', 'country_code' => 'FR'], ['name' => 'Lanus', 'country_code' => 'AR'], ['name' => 'Qingzhen', 'country_code' => 'CN'], ['name' => 'Jiangshan', 'country_code' => 'CN'], ['name' => 'Ba qubah', 'country_code' => 'IQ'], ['name' => 'Tamale', 'country_code' => 'GH'], ['name' => 'Gdansk', 'country_code' => 'PL'], ['name' => 'Manado', 'country_code' => 'ID'], ['name' => 'Jinchang', 'country_code' => 'CN'], ['name' => 'Kanazawa', 'country_code' => 'JP'], ['name' => 'Calabar', 'country_code' => 'NG'], ['name' => 'Long Beach', 'country_code' => 'US'], ['name' => 'Malatya', 'country_code' => 'TR'], ['name' => 'Hue', 'country_code' => 'VN'], ['name' => 'Cranbourne', 'country_code' => 'AU'], ['name' => 'Jalgaon', 'country_code' => 'IN'], ['name' => 'Port St. Lucie', 'country_code' => 'US'], ['name' => 'Maua', 'country_code' => 'BR'], ['name' => 'Fukuyama', 'country_code' => 'JP'], ['name' => 'Tel Aviv-Yafo', 'country_code' => 'IL'], ['name' => 'Xicheng', 'country_code' => 'CN'], ['name' => 'Marikina City', 'country_code' => 'PH'], ['name' => 'Pyeongtaek', 'country_code' => 'KR'], ['name' => 'Kurnool', 'country_code' => 'IN'], ['name' => 'City of Calamba', 'country_code' => 'PH'], ['name' => 'Denton', 'country_code' => 'US'], ['name' => 'Ar Ramadi', 'country_code' => 'IQ'], ['name' => 'Melaka', 'country_code' => 'MY'], ['name' => 'Jian ou', 'country_code' => 'CN'], ['name' => 'Huadian', 'country_code' => 'CN'], ['name' => 'Taoyuan District', 'country_code' => 'TW'], ['name' => 'Iloilo', 'country_code' => 'PH'], ['name' => 'Kota Kinabalu', 'country_code' => 'MY'], ['name' => 'Minzhu', 'country_code' => 'CN'], ['name' => 'Rajshahi', 'country_code' => 'BD'], ['name' => 'Tanta', 'country_code' => 'EG'], ['name' => 'Balashikha', 'country_code' => 'RU'], ['name' => 'Udaipur', 'country_code' => 'IN'], ['name' => 'Kursk', 'country_code' => 'RU'], ['name' => 'Mariupol', 'country_code' => 'UA'], ['name' => 'Bukavu', 'country_code' => 'CD'], ['name' => 'Hsinchu', 'country_code' => 'TW'], ['name' => 'Barcelona', 'country_code' => 'VE'], ['name' => 'Constantine', 'country_code' => 'DZ'], ['name' => 'Tanbei', 'country_code' => 'CN'], ['name' => 'Ado-Ekiti', 'country_code' => 'NG'], ['name' => 'Batman', 'country_code' => 'TR'], ['name' => 'Pasay City', 'country_code' => 'PH'], ['name' => 'Madison', 'country_code' => 'US'], ['name' => 'Baisha', 'country_code' => 'CN'], ['name' => 'Betim', 'country_code' => 'BR'], ['name' => 'Bellary', 'country_code' => 'IN'], ['name' => 'Santiago de Cuba', 'country_code' => 'CU'], ['name' => 'Yongji', 'country_code' => 'CN'], ['name' => 'Reno', 'country_code' => 'US'], ['name' => 'Danjiangkou', 'country_code' => 'CN'], ['name' => 'Kahramanmaras', 'country_code' => 'TR'], ['name' => 'Sao Jose do Rio Preto', 'country_code' => 'BR'], ['name' => 'Andijon', 'country_code' => 'UZ'], ['name' => 'Harrisburg', 'country_code' => 'US'], ['name' => 'Nancy', 'country_code' => 'FR'], ['name' => 'Puerto Plata', 'country_code' => 'DO'], ['name' => 'Machida', 'country_code' => 'JP'], ['name' => 'Ning an', 'country_code' => 'CN'], ['name' => 'Beira', 'country_code' => 'MZ'], ['name' => 'Little Rock', 'country_code' => 'US'], ['name' => 'San Cristobal', 'country_code' => 'VE'], ['name' => 'Zurich', 'country_code' => 'CH'], ['name' => 'Zhangjiakou Shi Xuanhua Qu', 'country_code' => 'CN'], ['name' => 'Sunch on', 'country_code' => 'KP'], ['name' => 'Diadema', 'country_code' => 'BR'], ['name' => 'Guangming', 'country_code' => 'CN'], ['name' => 'Sangli', 'country_code' => 'IN'], ['name' => 'Tuticorin', 'country_code' => 'IN'], ['name' => 'Herat', 'country_code' => 'AF'], ['name' => 'Kupang', 'country_code' => 'ID'], ['name' => 'Jeju', 'country_code' => 'KR'], ['name' => 'Bandar Abbas', 'country_code' => 'IR'], ['name' => 'Santos', 'country_code' => 'BR'], ['name' => 'Manizales', 'country_code' => 'CO'], ['name' => 'Stavropol', 'country_code' => 'RU'], ['name' => 'Katsina', 'country_code' => 'NG'], ['name' => 'Yogyakarta', 'country_code' => 'ID'], ['name' => 'Calicut', 'country_code' => 'IN'], ['name' => 'Zanjan', 'country_code' => 'IR'], ['name' => 'Welkom', 'country_code' => 'ZA'], ['name' => 'Ulan-Ude', 'country_code' => 'RU'], ['name' => 'Oakland', 'country_code' => 'US'], ['name' => 'Mazar-e Sharif', 'country_code' => 'AF'], ['name' => 'Kashan', 'country_code' => 'IR'], ['name' => 'Kenitra', 'country_code' => 'MA'], ['name' => 'Uyo', 'country_code' => 'NG'], ['name' => 'Maringa', 'country_code' => 'BR'], ['name' => 'Khamis Mushayt', 'country_code' => 'SA'], ['name' => 'Masan', 'country_code' => 'KR'], ['name' => 'Cusco', 'country_code' => 'PE'], ['name' => 'Sevastopol', 'country_code' => 'UA'], ['name' => 'Mandaluyong City', 'country_code' => 'PH'], ['name' => 'Porto Velho', 'country_code' => 'BR'], ['name' => 'Florencio Varela', 'country_code' => 'AR'], ['name' => 'Akola', 'country_code' => 'IN'], ['name' => 'Yan an Beilu', 'country_code' => 'CN'], ['name' => 'Agadir', 'country_code' => 'MA'], ['name' => 'Mogi das Cruzes', 'country_code' => 'BR'], ['name' => 'Durham', 'country_code' => 'US'], ['name' => 'Likasi', 'country_code' => 'CD'], ['name' => 'Buenaventura', 'country_code' => 'CO'], ['name' => 'Laval', 'country_code' => 'CA'], ['name' => 'Toyota', 'country_code' => 'JP'], ['name' => 'Winston-Salem', 'country_code' => 'US'], ['name' => 'Uijeongbu', 'country_code' => 'KR'], ['name' => 'Tver', 'country_code' => 'RU'], ['name' => 'Elazig', 'country_code' => 'TR'], ['name' => 'Akure', 'country_code' => 'NG'], ['name' => 'Hpa-An', 'country_code' => 'MM'], ['name' => 'Bonita Springs', 'country_code' => 'US'], ['name' => 'Mishan', 'country_code' => 'CN'], ['name' => 'Hailin', 'country_code' => 'CN'], ['name' => 'Seremban', 'country_code' => 'MY'], ['name' => 'Lecheng', 'country_code' => 'CN'], ['name' => 'Zhengjiatun', 'country_code' => 'CN'], ['name' => 'Luhansk', 'country_code' => 'UA'], ['name' => 'Pencheng', 'country_code' => 'CN'], ['name' => 'Magnitogorsk', 'country_code' => 'RU'], ['name' => 'Takamatsu', 'country_code' => 'JP'], ['name' => 'Angeles City', 'country_code' => 'PH'], ['name' => 'El Obeid', 'country_code' => 'SD'], ['name' => 'Dalai', 'country_code' => 'CN'], ['name' => 'Xingren', 'country_code' => 'CN'], ['name' => 'Kolwezi', 'country_code' => 'CD'], ['name' => 'Wenlan', 'country_code' => 'CN'], ['name' => 'Indio', 'country_code' => 'US'], ['name' => 'Palm Coast', 'country_code' => 'US'], ['name' => 'Arusha', 'country_code' => 'TZ'], ['name' => 'Fenyang', 'country_code' => 'CN'], ['name' => 'Paju', 'country_code' => 'KR'], ['name' => 'Oujda-Angad', 'country_code' => 'MA'], ['name' => 'Mataram', 'country_code' => 'ID'], ['name' => 'Chattanooga', 'country_code' => 'US'], ['name' => 'Lapu-Lapu City', 'country_code' => 'PH'], ['name' => 'Jhang City', 'country_code' => 'PK'], ['name' => 'Nagqu', 'country_code' => 'CN'], ['name' => 'Kisumu', 'country_code' => 'KE'], ['name' => 'Jayapura', 'country_code' => 'ID'], ['name' => 'Montes Claros', 'country_code' => 'BR'], ['name' => 'Rio Branco', 'country_code' => 'BR'], ['name' => 'Toyama', 'country_code' => 'JP'], ['name' => 'Fangting', 'country_code' => 'CN'], ['name' => 'Spokane', 'country_code' => 'US'], ['name' => 'Sochi', 'country_code' => 'RU'], ['name' => 'Bhagalpur', 'country_code' => 'IN'], ['name' => 'Ivanovo', 'country_code' => 'RU'], ['name' => 'Osogbo', 'country_code' => 'NG'], ['name' => 'Imus', 'country_code' => 'PH'], ['name' => 'Ciudad Obregon', 'country_code' => 'MX'], ['name' => 'Turkmenabat', 'country_code' => 'TM'], ['name' => 'Zaria', 'country_code' => 'NG'], ['name' => 'Namangan', 'country_code' => 'UZ'], ['name' => 'Bryansk', 'country_code' => 'RU'], ['name' => 'Taiping', 'country_code' => 'CN'], ['name' => 'Maracay', 'country_code' => 'VE'], ['name' => 'Jiexiu', 'country_code' => 'CN'], ['name' => 'Mbale', 'country_code' => 'UG'], ['name' => 'Taraz', 'country_code' => 'KZ'], ['name' => 'Asyut', 'country_code' => 'EG'], ['name' => 'Santa Fe', 'country_code' => 'AR'], ['name' => 'Campina Grande', 'country_code' => 'BR'], ['name' => 'Nagasaki', 'country_code' => 'JP'], ['name' => 'Szczecin', 'country_code' => 'PL'], ['name' => 'Ghulja', 'country_code' => 'CN'], ['name' => 'Syracuse', 'country_code' => 'US'], ['name' => 'Carapicuiba', 'country_code' => 'BR'], ['name' => 'Quilon', 'country_code' => 'IN'], ['name' => 'Jundiai', 'country_code' => 'BR'], ['name' => 'Gifu', 'country_code' => 'JP'], ['name' => 'Lancaster', 'country_code' => 'US'], ['name' => 'Eindhoven', 'country_code' => 'NL'], ['name' => 'Sikar', 'country_code' => 'IN'], ['name' => 'Tumkur', 'country_code' => 'IN'], ['name' => 'Jiangjiafan', 'country_code' => 'CN'], ['name' => 'Dera Ghazi Khan', 'country_code' => 'PK'], ['name' => 'Arlington', 'country_code' => 'US'], ['name' => 'Miyazaki', 'country_code' => 'JP'], ['name' => 'Stockton', 'country_code' => 'US'], ['name' => 'Bhatpara', 'country_code' => 'IN'], ['name' => 'Sandakan', 'country_code' => 'MY'], ['name' => 'Hejin', 'country_code' => 'CN'], ['name' => 'Thanh Hoa', 'country_code' => 'VN'], ['name' => 'Muzaffarnagar', 'country_code' => 'IN'], ['name' => 'Poughkeepsie', 'country_code' => 'US'], ['name' => 'Campos', 'country_code' => 'BR'], ['name' => 'Metz', 'country_code' => 'FR'], ['name' => 'Nha Trang', 'country_code' => 'VN'], ['name' => 'Belgorod', 'country_code' => 'RU'], ['name' => 'Yola', 'country_code' => 'NG'], ['name' => 'Lobito', 'country_code' => 'AO'], ['name' => 'Saurimo', 'country_code' => 'AO'], ['name' => 'Olinda', 'country_code' => 'BR'], ['name' => 'Bologna', 'country_code' => 'IT'], ['name' => 'Ad Diwaniyah', 'country_code' => 'IQ'], ['name' => 'Gujrat', 'country_code' => 'PK'], ['name' => 'Hancheng', 'country_code' => 'CN'], ['name' => 'Fuyu', 'country_code' => 'CN'], ['name' => 'Karamay', 'country_code' => 'CN'], ['name' => 'Kakinada', 'country_code' => 'IN'], ['name' => 'Augusta', 'country_code' => 'US'], ['name' => 'Bhilwara', 'country_code' => 'IN'], ['name' => 'Tieli', 'country_code' => 'CN'], ['name' => 'Cilegon', 'country_code' => 'ID'], ['name' => 'Baicheng', 'country_code' => 'CN'], ['name' => 'Nizamabad', 'country_code' => 'IN'], ['name' => 'Boise', 'country_code' => 'US'], ['name' => 'Tonala', 'country_code' => 'MX'], ['name' => 'Mwanza', 'country_code' => 'TZ'], ['name' => 'Aqtobe', 'country_code' => 'KZ'], ['name' => 'Oxnard', 'country_code' => 'US'], ['name' => 'Tetouan', 'country_code' => 'MA'], ['name' => 'Okazaki', 'country_code' => 'JP'], ['name' => 'Cariacica', 'country_code' => 'BR'], ['name' => 'Ha il', 'country_code' => 'SA'], ['name' => 'Las Palmas', 'country_code' => 'ES'], ['name' => 'Yidu', 'country_code' => 'CN'], ['name' => 'Lianzhou', 'country_code' => 'CN'], ['name' => 'Florence', 'country_code' => 'IT'], ['name' => 'Scranton', 'country_code' => 'US'], ['name' => 'Brno', 'country_code' => 'CZ'], ['name' => 'London', 'country_code' => 'CA'], ['name' => 'Modesto', 'country_code' => 'US'], ['name' => 'Kissimmee', 'country_code' => 'US'], ['name' => 'Pasto', 'country_code' => 'CO'], ['name' => 'Ichinomiya', 'country_code' => 'JP'], ['name' => 'Qazvin', 'country_code' => 'IR'], ['name' => 'Irapuato', 'country_code' => 'MX'], ['name' => 'Novi Sad', 'country_code' => 'RS'], ['name' => 'Shihezi', 'country_code' => 'CN'], ['name' => 'Shache', 'country_code' => 'CN'], ['name' => 'Panihati', 'country_code' => 'IN'], ['name' => 'Huancayo', 'country_code' => 'PE'], ['name' => 'Aurora', 'country_code' => 'US'], ['name' => 'Malabon', 'country_code' => 'PH'], ['name' => 'Petion-Ville', 'country_code' => 'HT'], ['name' => 'Sintra', 'country_code' => 'PT'], ['name' => 'Parbhani', 'country_code' => 'IN'], ['name' => 'Usulutan', 'country_code' => 'SV'], ['name' => 'Youngstown', 'country_code' => 'US'], ['name' => 'Christchurch', 'country_code' => 'NZ'], ['name' => 'Hatay', 'country_code' => 'TR'], ['name' => 'Iquitos', 'country_code' => 'PE'], ['name' => 'Sivas', 'country_code' => 'TR'], ['name' => 'Helixi', 'country_code' => 'CN'], ['name' => 'A Coruna', 'country_code' => 'ES'], ['name' => 'Manukau City', 'country_code' => 'NZ'], ['name' => 'Stoke-on-Trent', 'country_code' => 'GB'], ['name' => 'Cumana', 'country_code' => 'VE'], ['name' => 'Vinnytsia', 'country_code' => 'UA'], ['name' => 'Rohtak', 'country_code' => 'IN'], ['name' => 'Latur', 'country_code' => 'IN'], ['name' => 'Bello', 'country_code' => 'CO'], ['name' => 'Sanandaj', 'country_code' => 'IR'], ['name' => 'Nuevo Laredo', 'country_code' => 'MX'], ['name' => 'Ambon', 'country_code' => 'ID'], ['name' => 'Mandaue City', 'country_code' => 'PH'], ['name' => 'Keelung', 'country_code' => 'TW'], ['name' => 'Toyohashi', 'country_code' => 'JP'], ['name' => 'La Florida', 'country_code' => 'CL'], ['name' => 'Varna', 'country_code' => 'BG'], ['name' => 'Lengshuijiang', 'country_code' => 'CN'], ['name' => 'Anguo', 'country_code' => 'CN'], ['name' => 'Rajapalaiyam', 'country_code' => 'IN'], ['name' => 'Rodriguez', 'country_code' => 'PH'], ['name' => 'Madan', 'country_code' => 'IR'], ['name' => 'Az Zubayr', 'country_code' => 'IQ'], ['name' => 'Al Qatif', 'country_code' => 'SA'], ['name' => 'Cuernavaca', 'country_code' => 'MX'], ['name' => 'Nicolas Romero', 'country_code' => 'MX'], ['name' => 'Huichang', 'country_code' => 'CN'], ['name' => 'Vitsyebsk', 'country_code' => 'BY'], ['name' => 'Nagano', 'country_code' => 'JP'], ['name' => 'Bauru', 'country_code' => 'BR'], ['name' => 'Yanjiao', 'country_code' => 'CN'], ['name' => 'Bochum', 'country_code' => 'DE'], ['name' => 'Anapolis', 'country_code' => 'BR'], ['name' => 'Coventry', 'country_code' => 'GB'], ['name' => 'Zalantun', 'country_code' => 'CN'], ['name' => 'Tecamac', 'country_code' => 'MX'], ['name' => 'Ciudad General Escobedo', 'country_code' => 'MX'], ['name' => 'Wonsan', 'country_code' => 'KP'], ['name' => 'Kocaeli', 'country_code' => 'TR'], ['name' => 'Bengkulu', 'country_code' => 'ID'], ['name' => 'Shuanghejiedao', 'country_code' => 'CN'], ['name' => 'Surgut', 'country_code' => 'RU'], ['name' => 'Bobo-Dioulasso', 'country_code' => 'BF'], ['name' => 'Umuahia', 'country_code' => 'NG'], ['name' => 'Gedaref', 'country_code' => 'SD'], ['name' => 'Palu', 'country_code' => 'ID'], ['name' => 'Santa Rosa', 'country_code' => 'PH'], ['name' => 'Pokhara', 'country_code' => 'NP'], ['name' => 'Mahilyow', 'country_code' => 'BY'], ['name' => 'Wudalianchi', 'country_code' => 'CN'], ['name' => 'Sungai Petani', 'country_code' => 'MY'], ['name' => 'Nam Dinh', 'country_code' => 'VN'], ['name' => 'Sinuiju', 'country_code' => 'KP'], ['name' => 'Vitoria', 'country_code' => 'BR'], ['name' => 'Hrodna', 'country_code' => 'BY'], ['name' => 'Vladimir', 'country_code' => 'RU'], ['name' => 'Bilbao', 'country_code' => 'ES'], ['name' => 'Sao Vicente', 'country_code' => 'BR'], ['name' => 'Cubal', 'country_code' => 'AO'], ['name' => 'Yong an', 'country_code' => 'CN'], ['name' => 'Itaquaquecetuba', 'country_code' => 'BR'], ['name' => 'Wuppertal', 'country_code' => 'DE'], ['name' => 'Minatitlan', 'country_code' => 'MX'], ['name' => 'Nizhniy Tagil', 'country_code' => 'RU'], ['name' => 'Ponta Grossa', 'country_code' => 'BR'], ['name' => 'Hongzhai', 'country_code' => 'CN'], ['name' => 'Wakayama', 'country_code' => 'JP'], ['name' => 'Pavlodar', 'country_code' => 'KZ'], ['name' => 'Gimpo', 'country_code' => 'KR'], ['name' => 'Rahimyar Khan', 'country_code' => 'PK'], ['name' => 'Nara', 'country_code' => 'JP'], ['name' => 'Van', 'country_code' => 'TR'], ['name' => 'Corrientes', 'country_code' => 'AR'], ['name' => 'San Pedro', 'country_code' => 'PH'], ['name' => 'Neiva', 'country_code' => 'CO'], ['name' => 'Arkhangelsk', 'country_code' => 'RU'], ['name' => 'Licheng', 'country_code' => 'CN'], ['name' => 'Koshigaya', 'country_code' => 'JP'], ['name' => 'Cabimas', 'country_code' => 'VE'], ['name' => 'Yakeshi', 'country_code' => 'CN'], ['name' => 'Baguio City', 'country_code' => 'PH'], ['name' => 'Ahmadnagar', 'country_code' => 'IN'], ['name' => 'Fayetteville', 'country_code' => 'US'], ['name' => 'Canoas', 'country_code' => 'BR'], ['name' => 'Holguin', 'country_code' => 'CU'], ['name' => 'Qoqon', 'country_code' => 'UZ'], ['name' => 'Anaheim', 'country_code' => 'US'], ['name' => 'Yingmen', 'country_code' => 'CN'], ['name' => 'Piracicaba', 'country_code' => 'BR'], ['name' => 'Bydgoszcz', 'country_code' => 'PL'], ['name' => 'Antofagasta', 'country_code' => 'CL'], ['name' => 'Khorramabad', 'country_code' => 'IR'], ['name' => 'Rajahmundry', 'country_code' => 'IN'], ['name' => 'Chita', 'country_code' => 'RU'], ['name' => 'Caruaru', 'country_code' => 'BR'], ['name' => 'Makiivka', 'country_code' => 'UA'], ['name' => 'Chitungwiza', 'country_code' => 'ZW'], ['name' => 'Pensacola', 'country_code' => 'US'], ['name' => 'Victorville', 'country_code' => 'US'], ['name' => 'Tanch on', 'country_code' => 'KP'], ['name' => 'Tokorozawa', 'country_code' => 'JP'], ['name' => 'Sumqayit', 'country_code' => 'AZ'], ['name' => 'Kusti', 'country_code' => 'SD'], ['name' => 'Al Amarah', 'country_code' => 'IQ'], ['name' => 'Cuddapah', 'country_code' => 'IN'], ['name' => 'Simferopol', 'country_code' => 'UA'], ['name' => 'Plovdiv', 'country_code' => 'BG'], ['name' => 'Tarlac City', 'country_code' => 'PH'], ['name' => 'Otsu', 'country_code' => 'JP'], ['name' => 'Pelotas', 'country_code' => 'BR'], ['name' => 'Lancaster', 'country_code' => 'US'], ['name' => 'Greensboro', 'country_code' => 'US'], ['name' => 'Iligan', 'country_code' => 'PH'], ['name' => 'East London', 'country_code' => 'ZA'], ['name' => 'Franca', 'country_code' => 'BR'], ['name' => 'Brest', 'country_code' => 'BY'], ['name' => 'Kaluga', 'country_code' => 'RU'], ['name' => 'Yeosu', 'country_code' => 'KR'], ['name' => 'Corpus Christi', 'country_code' => 'US'], ['name' => 'Muzaffarpur', 'country_code' => 'IN'], ['name' => 'Lublin', 'country_code' => 'PL'], ['name' => 'Lianran', 'country_code' => 'CN'], ['name' => 'Alwar', 'country_code' => 'IN'], ['name' => 'Baishan', 'country_code' => 'CN'], ['name' => 'Kawagoe', 'country_code' => 'JP'], ['name' => 'Farg ona', 'country_code' => 'UZ'], ['name' => 'Tamuramachi-moriyama', 'country_code' => 'JP'], ['name' => 'Brahmapur', 'country_code' => 'IN'], ['name' => 'Buon Ma Thuot', 'country_code' => 'VN'], ['name' => 'Binan', 'country_code' => 'PH'], ['name' => 'Semey', 'country_code' => 'KZ'], ['name' => 'Tarsus', 'country_code' => 'TR'], ['name' => 'Alicante', 'country_code' => 'ES'], ['name' => 'Randburg', 'country_code' => 'ZA'], ['name' => 'Tepic', 'country_code' => 'MX'], ['name' => 'Jitpur', 'country_code' => 'NP'], ['name' => 'Kaesong', 'country_code' => 'KP'], ['name' => 'Beni', 'country_code' => 'CD'], ['name' => 'Petrolina', 'country_code' => 'BR'], ['name' => 'Chinju', 'country_code' => 'KR'], ['name' => 'Tangdong', 'country_code' => 'CN'], ['name' => 'Butuan', 'country_code' => 'PH'], ['name' => 'Reading', 'country_code' => 'GB'], ['name' => 'Uberaba', 'country_code' => 'BR'], ['name' => 'Belfast', 'country_code' => 'GB'], ['name' => 'Iwaki', 'country_code' => 'JP'], ['name' => 'Blida', 'country_code' => 'DZ'], ['name' => 'Hangu', 'country_code' => 'CN'], ['name' => 'Yingzhong', 'country_code' => 'CN'], ['name' => 'Vina del Mar', 'country_code' => 'CL'], ['name' => 'Bielefeld', 'country_code' => 'DE'], ['name' => 'Cuenca', 'country_code' => 'EC'], ['name' => 'Fort Wayne', 'country_code' => 'US'], ['name' => 'Lipa City', 'country_code' => 'PH'], ['name' => 'Wad Medani', 'country_code' => 'SD'], ['name' => 'Ribeirao das Neves', 'country_code' => 'BR'], ['name' => 'Kamarhati', 'country_code' => 'IN'], ['name' => 'Maebashi', 'country_code' => 'JP'], ['name' => 'Thessaloniki', 'country_code' => 'GR'], ['name' => 'Ganca', 'country_code' => 'AZ'], ['name' => 'Bilaspur', 'country_code' => 'IN'], ['name' => 'Santa Ana', 'country_code' => 'US'], ['name' => 'Mymensingh', 'country_code' => 'BD'], ['name' => 'Al Fayyum', 'country_code' => 'EG'], ['name' => 'Flint', 'country_code' => 'US'], ['name' => 'Kendari', 'country_code' => 'ID'], ['name' => 'Balikesir', 'country_code' => 'TR'], ['name' => 'Az Zaqaziq', 'country_code' => 'EG'], ['name' => 'Thai Nguyen', 'country_code' => 'VN'], ['name' => 'Smolensk', 'country_code' => 'RU'], ['name' => 'Asahikawa', 'country_code' => 'JP'], ['name' => 'Islip', 'country_code' => 'US'], ['name' => 'Wonju', 'country_code' => 'KR'], ['name' => 'Dahuk', 'country_code' => 'IQ'], ['name' => 'Batangas', 'country_code' => 'PH'], ['name' => 'Mathura', 'country_code' => 'IN'], ['name' => 'Barishal', 'country_code' => 'BD'], ['name' => 'Bamiantong', 'country_code' => 'CN'], ['name' => 'Patiala', 'country_code' => 'IN'], ['name' => 'Cainta', 'country_code' => 'PH'], ['name' => 'Bonn', 'country_code' => 'DE'], ['name' => 'Sao Jose dos Pinhais', 'country_code' => 'BR'], ['name' => 'Vung Tau', 'country_code' => 'VN'], ['name' => 'Markham', 'country_code' => 'CA'], ['name' => 'Saugor', 'country_code' => 'IN'], ['name' => 'Malmo', 'country_code' => 'SE'], ['name' => 'Roodepoort', 'country_code' => 'ZA'], ['name' => 'Gomez Palacio', 'country_code' => 'MX'], ['name' => 'Volzhskiy', 'country_code' => 'RU'], ['name' => 'Taourirt', 'country_code' => 'MA'], ['name' => 'Bijapur', 'country_code' => 'IN'], ['name' => 'Sukabumi', 'country_code' => 'ID'], ['name' => 'Fayetteville', 'country_code' => 'US'], ['name' => 'Taytay', 'country_code' => 'PH'], ['name' => 'Ulanhot', 'country_code' => 'CN'], ['name' => 'Nakuru', 'country_code' => 'KE'], ['name' => 'Yunzhong', 'country_code' => 'CN'], ['name' => 'Al Fallujah', 'country_code' => 'IQ'], ['name' => 'Kochi', 'country_code' => 'JP'], ['name' => 'Boa Vista', 'country_code' => 'BR'], ['name' => 'Gwangmyeongni', 'country_code' => 'KR'], ['name' => 'Bari', 'country_code' => 'IT'], ['name' => 'Pucallpa', 'country_code' => 'PE'], ['name' => 'Kuching', 'country_code' => 'MY'], ['name' => 'Zinder', 'country_code' => 'NE'], ['name' => 'Caucaia', 'country_code' => 'BR'], ['name' => 'Gonder', 'country_code' => 'ET'], ['name' => 'Jackson', 'country_code' => 'US'], ['name' => 'Mekele', 'country_code' => 'ET'], ['name' => 'Kulti', 'country_code' => 'IN'], ['name' => 'Santa Rosa', 'country_code' => 'US'], ['name' => 'Gonaives', 'country_code' => 'HT'], ['name' => 'Lansing', 'country_code' => 'US'], ['name' => 'Naha', 'country_code' => 'JP'], ['name' => 'Binxian', 'country_code' => 'CN'], ['name' => 'San Juan', 'country_code' => 'PR'], ['name' => 'Lexington', 'country_code' => 'US'], ['name' => 'Hotan', 'country_code' => 'CN'], ['name' => 'Uige', 'country_code' => 'AO'], ['name' => 'Newcastle', 'country_code' => 'AU'], ['name' => 'Kurgan', 'country_code' => 'RU'], ['name' => 'Kaiyuan', 'country_code' => 'CN'], ['name' => 'Temara', 'country_code' => 'MA'], ['name' => 'Uruapan', 'country_code' => 'MX'], ['name' => 'Camaguey', 'country_code' => 'CU'], ['name' => 'Ann Arbor', 'country_code' => 'US'], ['name' => 'San Salvador de Jujuy', 'country_code' => 'AR'], ['name' => 'Timisoara', 'country_code' => 'RO'], ['name' => 'Cordoba', 'country_code' => 'ES'], ['name' => 'Al Kut', 'country_code' => 'IQ'], ['name' => 'Tapachula', 'country_code' => 'MX'], ['name' => 'Shahjanpur', 'country_code' => 'IN'], ['name' => 'Cherepovets', 'country_code' => 'RU'], ['name' => 'San Miguelito', 'country_code' => 'PA'], ['name' => 'Menongue', 'country_code' => 'AO'], ['name' => 'Poltava', 'country_code' => 'UA'], ['name' => 'Henderson', 'country_code' => 'US'], ['name' => 'Maroua', 'country_code' => 'CM'], ['name' => 'Kaech on', 'country_code' => 'KP'], ['name' => 'Asan', 'country_code' => 'KR'], ['name' => 'Coatzacoalcos', 'country_code' => 'MX'], ['name' => 'Huntsville', 'country_code' => 'US'], ['name' => 'Oskemen', 'country_code' => 'KZ'], ['name' => 'Tampico', 'country_code' => 'MX'], ['name' => 'Trichur', 'country_code' => 'IN'], ['name' => 'Cluj-Napoca', 'country_code' => 'RO'], ['name' => 'General Trias', 'country_code' => 'PH'], ['name' => 'Cirebon', 'country_code' => 'ID'], ['name' => 'Boaco', 'country_code' => 'NI'], ['name' => 'Ca Mau', 'country_code' => 'VN'], ['name' => 'Cabuyao', 'country_code' => 'PH'], ['name' => 'Vologda', 'country_code' => 'RU'], ['name' => 'Saransk', 'country_code' => 'RU'], ['name' => 'Mobile', 'country_code' => 'US'], ['name' => 'Bor', 'country_code' => 'SS'], ['name' => 'Munster', 'country_code' => 'DE'], ['name' => 'Barddhaman', 'country_code' => 'IN'], ['name' => 'Toshima', 'country_code' => 'JP'], ['name' => 'Karlsruhe', 'country_code' => 'DE'], ['name' => 'Kasur', 'country_code' => 'PK'], ['name' => 'Yakou', 'country_code' => 'CN'], ['name' => 'Orel', 'country_code' => 'RU'], ['name' => 'Safi', 'country_code' => 'MA'], ['name' => 'Shahr-e Qods', 'country_code' => 'IR'], ['name' => 'Vitoria da Conquista', 'country_code' => 'BR'], ['name' => 'Hamah', 'country_code' => 'SY'], ['name' => 'Guaruja', 'country_code' => 'BR'], ['name' => 'Catania', 'country_code' => 'IT'], ['name' => 'Purnea', 'country_code' => 'IN'], ['name' => 'Datang', 'country_code' => 'CN'], ['name' => 'Fort Collins', 'country_code' => 'US'], ['name' => 'Port Elizabeth', 'country_code' => 'ZA'], ['name' => 'Alanya', 'country_code' => 'TR'], ['name' => 'Asheville', 'country_code' => 'US'], ['name' => 'Santa Clarita', 'country_code' => 'US'], ['name' => 'Gorgan', 'country_code' => 'IR'], ['name' => 'Quy Nhon', 'country_code' => 'VN'], ['name' => 'Sambalpur', 'country_code' => 'IN'], ['name' => 'Yokkaichi', 'country_code' => 'JP'], ['name' => 'Chalco', 'country_code' => 'MX'], ['name' => 'Mannheim', 'country_code' => 'DE'], ['name' => 'Namp o', 'country_code' => 'KP'], ['name' => 'Shahriar', 'country_code' => 'IR'], ['name' => 'Coban', 'country_code' => 'GT'], ['name' => 'Kasugai', 'country_code' => 'JP'], ['name' => 'Sapele', 'country_code' => 'NG'], ['name' => 'Blumenau', 'country_code' => 'BR'], ['name' => 'Sariwon', 'country_code' => 'KP'], ['name' => 'St. Catharines', 'country_code' => 'CA'], ['name' => 'Matadi', 'country_code' => 'CD'], ['name' => 'Niagara Falls', 'country_code' => 'CA'], ['name' => 'Firozabad', 'country_code' => 'IN'], ['name' => 'San Fernando', 'country_code' => 'PH'], ['name' => 'St. Paul', 'country_code' => 'US'], ['name' => 'Vladikavkaz', 'country_code' => 'RU'], ['name' => 'Yakutsk', 'country_code' => 'RU'], ['name' => 'Minna', 'country_code' => 'NG'], ['name' => 'Hisar', 'country_code' => 'IN'], ['name' => 'Puerto La Cruz', 'country_code' => 'VE'], ['name' => 'Podolsk', 'country_code' => 'RU'], ['name' => 'Ciudad Victoria', 'country_code' => 'MX'], ['name' => 'Ciudad del Este', 'country_code' => 'PY'], ['name' => 'Vaughan', 'country_code' => 'CA'], ['name' => 'Oakashicho', 'country_code' => 'JP'], ['name' => 'Pekalongan', 'country_code' => 'ID'], ['name' => 'Adiyaman', 'country_code' => 'TR'], ['name' => 'Vila Nova de Gaia', 'country_code' => 'PT'], ['name' => 'Curepipe', 'country_code' => 'MU'], ['name' => 'Cabanatuan City', 'country_code' => 'PH'], ['name' => 'Paulista', 'country_code' => 'BR'], ['name' => 'Oaxaca', 'country_code' => 'MX'], ['name' => 'Armenia', 'country_code' => 'CO'], ['name' => 'Akita', 'country_code' => 'JP'], ['name' => 'San Bernardo', 'country_code' => 'CL'], ['name' => 'Wollongong', 'country_code' => 'AU'], ['name' => 'Brest', 'country_code' => 'FR'], ['name' => 'Awka', 'country_code' => 'NG'], ['name' => 'Iksan', 'country_code' => 'KR'], ['name' => 'Taubate', 'country_code' => 'BR'], ['name' => 'Antioch', 'country_code' => 'US'], ['name' => 'Lakeland', 'country_code' => 'US'], ['name' => 'Soc Trang', 'country_code' => 'VN'], ['name' => 'Awasa', 'country_code' => 'ET'], ['name' => 'Mardan', 'country_code' => 'PK'], ['name' => 'Popayan', 'country_code' => 'CO'], ['name' => 'Praia Grande', 'country_code' => 'BR'], ['name' => 'Qianzhou', 'country_code' => 'CN'], ['name' => 'Cotabato', 'country_code' => 'PH'], ['name' => 'Valladolid', 'country_code' => 'ES'], ['name' => 'Mossoro', 'country_code' => 'BR'], ['name' => 'Coatepeque', 'country_code' => 'GT'], ['name' => 'Bidar', 'country_code' => 'IN'], ['name' => 'Bialystok', 'country_code' => 'PL'], ['name' => 'Merida', 'country_code' => 'VE'], ['name' => 'Murmansk', 'country_code' => 'RU'], ['name' => 'Ar Raqqah', 'country_code' => 'SY'], ['name' => 'Afyonkarahisar', 'country_code' => 'TR'], ['name' => 'Vigo', 'country_code' => 'ES'], ['name' => 'Jember', 'country_code' => 'ID'], ['name' => 'Bahia Blanca', 'country_code' => 'AR'], ['name' => 'Iskenderun', 'country_code' => 'TR'], ['name' => 'Al Mubarraz', 'country_code' => 'SA'], ['name' => 'Petropolis', 'country_code' => 'BR'], ['name' => 'Al Kharj', 'country_code' => 'SA'], ['name' => 'Rampur', 'country_code' => 'IN'], ['name' => 'Najran', 'country_code' => 'SA'], ['name' => 'Chernihiv', 'country_code' => 'UA'], ['name' => 'Yangsan', 'country_code' => 'KR'], ['name' => 'Comilla', 'country_code' => 'BD'], ['name' => 'Oyster Bay', 'country_code' => 'US'], ['name' => 'Valparaiso', 'country_code' => 'CL'], ['name' => 'Augsburg', 'country_code' => 'DE'], ['name' => 'Mbeya', 'country_code' => 'TZ'], ['name' => 'Limeira', 'country_code' => 'BR'], ['name' => 'Rangpur', 'country_code' => 'BD'], ['name' => 'Shiliguri', 'country_code' => 'IN'], ['name' => 'Aksaray', 'country_code' => 'TR'], ['name' => 'Navotas', 'country_code' => 'PH'], ['name' => 'Corum', 'country_code' => 'TR'], ['name' => 'Bali', 'country_code' => 'IN'], ['name' => 'Ismailia', 'country_code' => 'EG'], ['name' => 'Vila Teixeira da Silva', 'country_code' => 'AO'], ['name' => 'Panipat', 'country_code' => 'IN'], ['name' => 'Delmas', 'country_code' => 'HT'], ['name' => 'Batna', 'country_code' => 'DZ'], ['name' => 'Kunp o', 'country_code' => 'KR'], ['name' => 'Tambov', 'country_code' => 'RU'], ['name' => 'Iasi', 'country_code' => 'RO'], ['name' => 'Thies', 'country_code' => 'SN'], ['name' => 'Makurdi', 'country_code' => 'NG'], ['name' => 'Kherson', 'country_code' => 'UA'], ['name' => 'Groznyy', 'country_code' => 'RU'], ['name' => 'Hong an', 'country_code' => 'CN'], ['name' => 'Bafoussam', 'country_code' => 'CM'], ['name' => 'Resistencia', 'country_code' => 'AR'], ['name' => 'Brasov', 'country_code' => 'RO'], ['name' => 'Kassel', 'country_code' => 'DE'], ['name' => 'Juliaca', 'country_code' => 'PE'], ['name' => 'Karimnagar', 'country_code' => 'IN'], ['name' => 'Morioka', 'country_code' => 'JP'], ['name' => 'Setif', 'country_code' => 'DZ'], ['name' => 'Trenton', 'country_code' => 'US'], ['name' => 'Kaunas', 'country_code' => 'LT'], ['name' => 'Mulhouse', 'country_code' => 'FR'], ['name' => 'Sekondi', 'country_code' => 'GH'], ['name' => 'Lincoln', 'country_code' => 'US'], ['name' => 'Bhuj', 'country_code' => 'IN'], ['name' => 'Ichalkaranji', 'country_code' => 'IN'], ['name' => 'Tirupati', 'country_code' => 'IN'], ['name' => 'Springfield', 'country_code' => 'US'], ['name' => 'Anchorage', 'country_code' => 'US'], ['name' => 'Punto Fijo', 'country_code' => 'VE'], ['name' => 'Sincelejo', 'country_code' => 'CO'], ['name' => 'Plano', 'country_code' => 'US'], ['name' => 'Irvine', 'country_code' => 'US'], ['name' => 'Camacari', 'country_code' => 'BR'], ['name' => 'Orleans', 'country_code' => 'FR'], ['name' => 'Binangonan', 'country_code' => 'PH'], ['name' => 'Suzano', 'country_code' => 'BR'], ['name' => 'Hospet', 'country_code' => 'IN'], ['name' => 'Ostrava', 'country_code' => 'CZ'], ['name' => 'Tacna', 'country_code' => 'PE'], ['name' => 'Korhogo', 'country_code' => 'CI'], ['name' => 'Constanta', 'country_code' => 'RO'], ['name' => 'Haifa', 'country_code' => 'IL'], ['name' => 'Coacalco', 'country_code' => 'MX'], ['name' => 'Crato', 'country_code' => 'BR'], ['name' => 'Limoges', 'country_code' => 'FR'], ['name' => 'Davenport', 'country_code' => 'US'], ['name' => 'Fukushima', 'country_code' => 'JP'], ['name' => 'Barinas', 'country_code' => 'VE'], ['name' => 'Coro', 'country_code' => 'VE'], ['name' => 'Bago', 'country_code' => 'MM'], ['name' => 'Fuquan', 'country_code' => 'CN'], ['name' => 'Tongchuanshi', 'country_code' => 'CN'], ['name' => 'Aizawl', 'country_code' => 'IN'], ['name' => 'Santa Maria', 'country_code' => 'BR'], ['name' => 'Taboao da Serra', 'country_code' => 'BR'], ['name' => 'Maraba', 'country_code' => 'BR'], ['name' => 'Sannai', 'country_code' => 'IN'], ['name' => 'Huozhou', 'country_code' => 'CN'], ['name' => 'Temuco', 'country_code' => 'CL'], ['name' => 'Sterlitamak', 'country_code' => 'RU'], ['name' => 'Rockford', 'country_code' => 'US'], ['name' => 'Tegal', 'country_code' => 'ID'], ['name' => 'Ica', 'country_code' => 'PE'], ['name' => 'Newark', 'country_code' => 'US'], ['name' => 'Jining', 'country_code' => 'CN'], ['name' => 'Chuncheon', 'country_code' => 'KR'], ['name' => 'Malard', 'country_code' => 'IR'], ['name' => 'Pematangsiantar', 'country_code' => 'ID'], ['name' => 'Long Xuyen', 'country_code' => 'VN'], ['name' => 'Petrozavodsk', 'country_code' => 'RU'], ['name' => 'South Bend', 'country_code' => 'US'], ['name' => 'Mingaora', 'country_code' => 'PK'], ['name' => 'San Pedro Carcha', 'country_code' => 'GT'], ['name' => 'Barasat', 'country_code' => 'IN'], ['name' => 'Shreveport', 'country_code' => 'US'], ['name' => 'Sumbe', 'country_code' => 'AO'], ['name' => 'Viet Tri', 'country_code' => 'VN'], ['name' => 'Cherkasy', 'country_code' => 'UA'], ['name' => 'Caala', 'country_code' => 'AO'], ['name' => 'Wiesbaden', 'country_code' => 'DE'], ['name' => 'Kostroma', 'country_code' => 'RU'], ['name' => 'Round Lake Beach', 'country_code' => 'US'], ['name' => 'Gyeongsan', 'country_code' => 'KR'], ['name' => 'Governador Valadares', 'country_code' => 'BR'], ['name' => 'Katowice', 'country_code' => 'PL'], ['name' => 'Shaowu', 'country_code' => 'CN'], ['name' => 'Sfax', 'country_code' => 'TN'], ['name' => 'Nizhnevartovsk', 'country_code' => 'RU'], ['name' => 'Linxia Chengguanzhen', 'country_code' => 'CN'], ['name' => 'Pachuca', 'country_code' => 'MX'], ['name' => 'Juazeiro do Norte', 'country_code' => 'BR'], ['name' => 'Dire Dawa', 'country_code' => 'ET'], ['name' => 'Khmelnytskyi', 'country_code' => 'UA'], ['name' => 'Owo', 'country_code' => 'NG'], ['name' => 'San Cristobal', 'country_code' => 'DO'], ['name' => 'Savannah', 'country_code' => 'US'], ['name' => 'Posadas', 'country_code' => 'AR'], ['name' => 'Gatineau', 'country_code' => 'CA'], ['name' => 'Windsor', 'country_code' => 'CA'], ['name' => 'Myrtle Beach', 'country_code' => 'US'], ['name' => 'Mbandaka', 'country_code' => 'CD'], ['name' => 'Tehuacan', 'country_code' => 'MX'], ['name' => 'La Guaira', 'country_code' => 'VE'], ['name' => 'Kunsan', 'country_code' => 'KR'], ['name' => 'Chula Vista', 'country_code' => 'US'], ['name' => 'Ratlam', 'country_code' => 'IN'], ['name' => 'Yeosu', 'country_code' => 'KR'], ['name' => 'Crato', 'country_code' => 'BR'], ['name' => 'Derby', 'country_code' => 'GB'], ['name' => 'Tsu', 'country_code' => 'JP'], ['name' => 'Kafr ad Dawwar', 'country_code' => 'EG'], ['name' => 'Eugene', 'country_code' => 'US'], ['name' => 'Gijon', 'country_code' => 'ES'], ['name' => 'Bijiao', 'country_code' => 'CN'], ['name' => 'Chiayi', 'country_code' => 'TW'], ['name' => 'Palmas', 'country_code' => 'BR'], ['name' => 'Craiova', 'country_code' => 'RO'], ['name' => 'Sorong', 'country_code' => 'ID'], ['name' => 'Majene', 'country_code' => 'ID'], ['name' => 'Bukhara', 'country_code' => 'UZ'], ['name' => 'Aomori', 'country_code' => 'JP'], ['name' => 'Thai Binh', 'country_code' => 'VN'], ['name' => 'Minato', 'country_code' => 'JP'], ['name' => 'Binjai', 'country_code' => 'ID'], ['name' => 'Fuchu', 'country_code' => 'JP'], ['name' => 'Oral', 'country_code' => 'KZ'], ['name' => 'Brahmanbaria', 'country_code' => 'BD'], ['name' => 'Sarta', 'country_code' => 'IR'], ['name' => 'Imphal', 'country_code' => 'IN'], ['name' => 'Plymouth', 'country_code' => 'GB'], ['name' => 'Santo Domingo de los Colorados', 'country_code' => 'EC'], ['name' => 'Novorossiysk', 'country_code' => 'RU'], ['name' => 'Santa Ana', 'country_code' => 'SV'], ['name' => 'Zhytomyr', 'country_code' => 'UA'], ['name' => 'Villa Altagracia', 'country_code' => 'DO'], ['name' => 'Gombe', 'country_code' => 'NG'], ['name' => 'Mito', 'country_code' => 'JP'], ['name' => 'Espoo', 'country_code' => 'FI'], ['name' => 'Drug', 'country_code' => 'IN'], ['name' => 'Floridablanca', 'country_code' => 'CO'], ['name' => 'Bamenda', 'country_code' => 'CM'], ['name' => 'Handwara', 'country_code' => 'IN'], ['name' => 'Lucena', 'country_code' => 'PH'], ['name' => 'Canton', 'country_code' => 'US'], ['name' => 'Yoshkar-Ola', 'country_code' => 'RU'], ['name' => 'Parnamirim', 'country_code' => 'BR'], ['name' => 'Nalchik', 'country_code' => 'RU'], ['name' => 'Ichihara', 'country_code' => 'JP'], ['name' => 'Aswan', 'country_code' => 'EG'], ['name' => 'Salamanca', 'country_code' => 'MX'], ['name' => 'Inegol', 'country_code' => 'TR'], ['name' => 'Chernivtsi', 'country_code' => 'UA'], ['name' => 'Sumare', 'country_code' => 'BR'], ['name' => 'Lubbock', 'country_code' => 'US'], ['name' => 'Yanbu ', 'country_code' => 'SA'], ['name' => 'Sumy', 'country_code' => 'UA'], ['name' => 'Tshikapa', 'country_code' => 'CD'], ['name' => 'Anantapur', 'country_code' => 'IN'], ['name' => 'San Pablo', 'country_code' => 'PH'], ['name' => 'Reading', 'country_code' => 'US'], ['name' => 'Winter Haven', 'country_code' => 'US'], ['name' => 'Ipatinga', 'country_code' => 'BR'], ['name' => 'Myeik', 'country_code' => 'MM'], ['name' => 'Kutahya', 'country_code' => 'TR'], ['name' => 'Salem', 'country_code' => 'US'], ['name' => 'Djelfa', 'country_code' => 'DZ'], ['name' => 'Suncheon', 'country_code' => 'KR'], ['name' => 'Graz', 'country_code' => 'AT'], ['name' => 'St. Petersburg', 'country_code' => 'US'], ['name' => 'Engels', 'country_code' => 'RU'], ['name' => 'Kindu', 'country_code' => 'CD'], ['name' => 'Oruro', 'country_code' => 'BO'], ['name' => 'Dezful', 'country_code' => 'IR'], ['name' => 'Osmaniye', 'country_code' => 'TR'], ['name' => 'Lafayette', 'country_code' => 'US'], ['name' => 'Kyongju', 'country_code' => 'KR'], ['name' => 'Dumai', 'country_code' => 'ID'], ['name' => 'Gent', 'country_code' => 'BE'], ['name' => 'San Lorenzo', 'country_code' => 'PY'], ['name' => 'Geelong', 'country_code' => 'AU'], ['name' => 'Corlu', 'country_code' => 'TR'], ['name' => 'Nawabshah', 'country_code' => 'PK'], ['name' => 'Gelsenkirchen', 'country_code' => 'DE'], ['name' => 'Bordeaux', 'country_code' => 'FR'], ['name' => 'Monchengladbach', 'country_code' => 'DE'], ['name' => 'Volta Redonda', 'country_code' => 'BR'], ['name' => 'Matala', 'country_code' => 'AO'], ['name' => 'Annaba', 'country_code' => 'DZ'], ['name' => 'Barueri', 'country_code' => 'BR'], ['name' => 'Laredo', 'country_code' => 'US'], ['name' => 'Nonthaburi', 'country_code' => 'TH'], ['name' => 'Jersey City', 'country_code' => 'US'], ['name' => 'Venice', 'country_code' => 'IT'], ['name' => 'Quang Ngai', 'country_code' => 'VN'], ['name' => 'Concord', 'country_code' => 'US'], ['name' => 'Damanhur', 'country_code' => 'EG'], ['name' => 'Ciudad Benito Juarez', 'country_code' => 'MX'], ['name' => 'Cascavel', 'country_code' => 'BR'], ['name' => 'Hiratsuka', 'country_code' => 'JP'], ['name' => 'Columbus', 'country_code' => 'US'], ['name' => 'Chandler', 'country_code' => 'US'], ['name' => 'Sakarya', 'country_code' => 'TR'], ['name' => 'Tagum', 'country_code' => 'PH'], ['name' => 'Fukui', 'country_code' => 'JP'], ['name' => 'Soka', 'country_code' => 'JP'], ['name' => 'Kunduz', 'country_code' => 'AF'], ['name' => 'Ciudad Santa Catarina', 'country_code' => 'MX'], ['name' => 'Los Mochis', 'country_code' => 'MX'], ['name' => 'Imperatriz', 'country_code' => 'BR'], ['name' => 'Texcoco', 'country_code' => 'MX'], ['name' => 'Santa Maria', 'country_code' => 'PH'], ['name' => 'Misratah', 'country_code' => 'LY'], ['name' => 'Isparta', 'country_code' => 'TR'], ['name' => 'Foz do Iguacu', 'country_code' => 'BR'], ['name' => 'Verona', 'country_code' => 'IT'], ['name' => 'Huayin', 'country_code' => 'CN'], ['name' => 'Etawah', 'country_code' => 'IN'], ['name' => 'McKinney', 'country_code' => 'US'], ['name' => 'Playa del Carmen', 'country_code' => 'MX'], ['name' => 'Scottsdale', 'country_code' => 'US'], ['name' => 'Wolverhampton', 'country_code' => 'GB'], ['name' => 'Killeen', 'country_code' => 'US'], ['name' => 'Bergen', 'country_code' => 'NO'], ['name' => 'Tallahassee', 'country_code' => 'US'], ['name' => 'Horlivka', 'country_code' => 'UA'], ['name' => 'Antsirabe', 'country_code' => 'MG'], ['name' => 'Ondo', 'country_code' => 'NG'], ['name' => 'San Mateo', 'country_code' => 'PH'], ['name' => 'Ap Da Loi', 'country_code' => 'VN'], ['name' => 'Viamao', 'country_code' => 'BR'], ['name' => 'Peoria', 'country_code' => 'US'], ['name' => 'Gravatai', 'country_code' => 'BR'], ['name' => 'Kediri', 'country_code' => 'ID'], ['name' => 'Damaturu', 'country_code' => 'NG'], ['name' => 'Tokushima', 'country_code' => 'JP'], ['name' => 'Malolos', 'country_code' => 'PH'], ['name' => 'La Paz', 'country_code' => 'MX'], ['name' => 'Wilmington', 'country_code' => 'US'], ['name' => 'Raichur', 'country_code' => 'IN'], ['name' => 'Mawlamyine', 'country_code' => 'MM'], ['name' => 'Turmero', 'country_code' => 'VE'], ['name' => 'Kuala Terengganu', 'country_code' => 'MY'], ['name' => 'Daloa', 'country_code' => 'CI'], ['name' => 'Puerto Princesa', 'country_code' => 'PH'], ['name' => 'Mocamedes', 'country_code' => 'AO'], ['name' => 'Vitoria-Gasteiz', 'country_code' => 'ES'], ['name' => 'Qarshi', 'country_code' => 'UZ'], ['name' => 'Montgomery', 'country_code' => 'US'], ['name' => 'Gilbert', 'country_code' => 'US'], ['name' => 'Rishon LeZiyyon', 'country_code' => 'IL'], ['name' => 'Ongole', 'country_code' => 'IN'], ['name' => 'Arua', 'country_code' => 'UG'], ['name' => 'Bharatpur', 'country_code' => 'IN'], ['name' => 'Shinozaki', 'country_code' => 'JP'], ['name' => 'Goma', 'country_code' => 'CD'], ['name' => 'Rach Gia', 'country_code' => 'VN'], ['name' => 'Kanggye', 'country_code' => 'KP'], ['name' => 'Taganrog', 'country_code' => 'RU'], ['name' => 'Kiziltepe', 'country_code' => 'TR'], ['name' => 'El Fasher', 'country_code' => 'SD'], ['name' => 'Varzea Grande', 'country_code' => 'BR'], ['name' => 'Las Condes', 'country_code' => 'CL'], ['name' => 'Glendale', 'country_code' => 'US'], ['name' => 'Santiago del Estero', 'country_code' => 'AR'], ['name' => 'Hakodate', 'country_code' => 'JP'], ['name' => 'Usak', 'country_code' => 'TR'], ['name' => 'Begusarai', 'country_code' => 'IN'], ['name' => 'North Las Vegas', 'country_code' => 'US'], ['name' => 'Sonipat', 'country_code' => 'IN'], ['name' => 'Los Teques', 'country_code' => 'VE'], ['name' => 'Mabalacat', 'country_code' => 'PH'], ['name' => 'Jinshi', 'country_code' => 'CN'], ['name' => 'Chofugaoka', 'country_code' => 'JP'], ['name' => 'Osh', 'country_code' => 'KG'], ['name' => 'Iwo', 'country_code' => 'NG'], ['name' => 'Bata', 'country_code' => 'GQ'], ['name' => 'Komsomol sk-na-Amure', 'country_code' => 'RU'], ['name' => 'Babol', 'country_code' => 'IR'], ['name' => 'Galati', 'country_code' => 'RO'], ['name' => 'Al Bayda ', 'country_code' => 'LY'], ['name' => 'Kurmuk', 'country_code' => 'SD'], ['name' => 'Manzhouli', 'country_code' => 'CN'], ['name' => 'Braunschweig', 'country_code' => 'DE'], ['name' => 'Rivne', 'country_code' => 'UA'], ['name' => 'Gdynia', 'country_code' => 'PL'], ['name' => 'Soyapango', 'country_code' => 'SV'], ['name' => 'Palangkaraya', 'country_code' => 'ID'], ['name' => 'Silang', 'country_code' => 'PH'], ['name' => 'Al Minya', 'country_code' => 'EG'], ['name' => 'Hafr al Batin', 'country_code' => 'SA'], ['name' => 'Chigasaki', 'country_code' => 'JP'], ['name' => 'Bukan', 'country_code' => 'IR'], ['name' => 'Aachen', 'country_code' => 'DE'], ['name' => 'Kiel', 'country_code' => 'DE'], ['name' => 'Sahiwal', 'country_code' => 'PK'], ['name' => 'Thu Dau Mot', 'country_code' => 'VN'], ['name' => 'Novo Hamburgo', 'country_code' => 'BR'], ['name' => 'Sibu', 'country_code' => 'MY'], ['name' => 'Yato', 'country_code' => 'JP'], ['name' => 'Parana', 'country_code' => 'AR'], ['name' => 'Yamagata', 'country_code' => 'JP'], ['name' => 'Oruro', 'country_code' => 'BO'], ['name' => 'Tsukuba-kenkyugakuen-toshi', 'country_code' => 'JP'], ['name' => 'Merlo', 'country_code' => 'AR'], ['name' => 'Mage', 'country_code' => 'BR'], ['name' => 'Syktyvkar', 'country_code' => 'RU'], ['name' => 'Khimki', 'country_code' => 'RU'], ['name' => 'Biratnagar', 'country_code' => 'NP'], ['name' => 'Colombo', 'country_code' => 'BR'], ['name' => 'Chemnitz', 'country_code' => 'DE'], ['name' => 'Saskatoon', 'country_code' => 'CA'], ['name' => 'Colon', 'country_code' => 'PA'], ['name' => 'Itagui', 'country_code' => 'CO'], ['name' => 'Abertawe', 'country_code' => 'GB'], ['name' => 'Jessore', 'country_code' => 'BD'], ['name' => 'Beichengqu', 'country_code' => 'CN'], ['name' => 'Tuy Hoa', 'country_code' => 'VN'], ['name' => 'Shrirampur', 'country_code' => 'IN'], ['name' => 'Chesapeake', 'country_code' => 'US'], ['name' => 'Fuji', 'country_code' => 'JP'], ['name' => 'Hapur', 'country_code' => 'IN'], ['name' => 'Bahir Dar', 'country_code' => 'ET'], ['name' => 'Manisa', 'country_code' => 'TR'], ['name' => 'Tanga', 'country_code' => 'TZ'], ['name' => 'Sabzevar', 'country_code' => 'IR'], ['name' => 'Ramgundam', 'country_code' => 'IN'], ['name' => 'Porto', 'country_code' => 'PT'], ['name' => 'Baruta', 'country_code' => 'VE'], ['name' => 'Tacloban', 'country_code' => 'PH'], ['name' => 'Itaborai', 'country_code' => 'BR'], ['name' => 'Myitkyina', 'country_code' => 'MM'], ['name' => 'Barnstable', 'country_code' => 'US'], ['name' => 'Haeju', 'country_code' => 'KP'], ['name' => 'Petah Tiqwa', 'country_code' => 'IL'], ['name' => 'Norfolk', 'country_code' => 'US'], ['name' => 'Gonzalez Catan', 'country_code' => 'AR'], ['name' => 'Sete Lagoas', 'country_code' => 'BR'], ['name' => 'Tarapoto', 'country_code' => 'PE'], ['name' => 'Zhangping', 'country_code' => 'CN'], ['name' => 'San Juan del Rio', 'country_code' => 'MX'], ['name' => 'Sao Carlos', 'country_code' => 'BR'], ['name' => 'Fremont', 'country_code' => 'US'], ['name' => 'Halle', 'country_code' => 'DE'], ['name' => 'Sao Leopoldo', 'country_code' => 'BR'], ['name' => 'Arakawa', 'country_code' => 'JP'], ['name' => 'Duzce', 'country_code' => 'TR'], ['name' => 'Anju', 'country_code' => 'KP'], ['name' => 'Divinopolis', 'country_code' => 'BR'], ['name' => 'Aarhus', 'country_code' => 'DK'], ['name' => 'Kennewick', 'country_code' => 'US'], ['name' => 'Hobart', 'country_code' => 'AU'], ['name' => 'Atushi', 'country_code' => 'CN'], ['name' => 'Chimoio', 'country_code' => 'MZ'], ['name' => 'Limassol', 'country_code' => 'CY'], ['name' => 'Garland', 'country_code' => 'US'], ['name' => 'Magdeburg', 'country_code' => 'DE'], ['name' => 'Irving', 'country_code' => 'US'], ['name' => 'Hachimancho', 'country_code' => 'JP'], ['name' => 'Longueuil', 'country_code' => 'CA'], ['name' => 'Mokpo', 'country_code' => 'KR'], ['name' => 'Kosice', 'country_code' => 'SK'], ['name' => ' Ajman', 'country_code' => 'AE'], ['name' => 'Lille', 'country_code' => 'FR'], ['name' => 'Banda Aceh', 'country_code' => 'ID'], ['name' => 'Shenmu', 'country_code' => 'CN'], ['name' => 'Le Havre', 'country_code' => 'FR'], ['name' => 'Taiping', 'country_code' => 'MY'], ['name' => 'P yong-dong', 'country_code' => 'KP'], ['name' => 'Springs', 'country_code' => 'ZA'], ['name' => 'Ivano-Frankivsk', 'country_code' => 'UA'], ['name' => 'As Sib', 'country_code' => 'OM'], ['name' => 'Narayanganj', 'country_code' => 'BD'], ['name' => 'Maradi', 'country_code' => 'NE'], ['name' => 'Wuyishan', 'country_code' => 'CN'], ['name' => 'Sato', 'country_code' => 'JP'], ['name' => 'Amol', 'country_code' => 'IR'], ['name' => 'Quilmes', 'country_code' => 'AR'], ['name' => 'Mirpur Khas', 'country_code' => 'PK'], ['name' => 'Nizhnekamsk', 'country_code' => 'RU'], ['name' => 'Visalia', 'country_code' => 'US'], ['name' => 'Al Jubayl', 'country_code' => 'SA'], ['name' => 'Pathein', 'country_code' => 'MM'], ['name' => 'Secunderabad', 'country_code' => 'IN'], ['name' => 'Neya', 'country_code' => 'JP'], ['name' => 'Chishui', 'country_code' => 'CN'], ['name' => 'Centurion', 'country_code' => 'ZA'], ['name' => 'Atlantic City', 'country_code' => 'US'], ['name' => 'Uluberiya', 'country_code' => 'IN'], ['name' => 'Shakhty', 'country_code' => 'RU'], ['name' => 'Pakdasht', 'country_code' => 'IR'], ['name' => 'Granada', 'country_code' => 'ES'], ['name' => 'Abha', 'country_code' => 'SA'], ['name' => 'Ibb', 'country_code' => 'YE'], ['name' => 'Garoua', 'country_code' => 'CM'], ['name' => 'Bole', 'country_code' => 'CN'], ['name' => 'Ganda', 'country_code' => 'AO'], ['name' => 'Elche', 'country_code' => 'ES'], ['name' => 'Najafabad', 'country_code' => 'IR'], ['name' => 'Bayamo', 'country_code' => 'CU'], ['name' => 'Porbandar', 'country_code' => 'IN'], ['name' => 'Kamianske', 'country_code' => 'UA'], ['name' => 'Borujerd', 'country_code' => 'IR'], ['name' => 'Paradise', 'country_code' => 'US'], ['name' => 'Singaraja', 'country_code' => 'ID'], ['name' => 'Macae', 'country_code' => 'BR'], ['name' => 'Miri', 'country_code' => 'MY'], ['name' => 'Machala', 'country_code' => 'EC'], ['name' => 'Longquan', 'country_code' => 'CN'], ['name' => 'Monclova', 'country_code' => 'MX'], ['name' => 'Puducherry', 'country_code' => 'IN'], ['name' => 'Olongapo', 'country_code' => 'PH'], ['name' => 'Messina', 'country_code' => 'IT'], ['name' => 'Kremenchuk', 'country_code' => 'UA'], ['name' => 'Nashua', 'country_code' => 'US'], ['name' => 'Santarem', 'country_code' => 'BR'], ['name' => 'Badalona', 'country_code' => 'ES'], ['name' => 'Okara', 'country_code' => 'PK'], ['name' => 'Arlington', 'country_code' => 'US'], ['name' => 'Talisay', 'country_code' => 'PH'], ['name' => 'Hialeah', 'country_code' => 'US'], ['name' => 'Saidpur', 'country_code' => 'BD'], ['name' => 'York', 'country_code' => 'US'], ['name' => 'Saga', 'country_code' => 'JP'], ['name' => 'Burnaby', 'country_code' => 'CA'], ['name' => 'Rancagua', 'country_code' => 'CL'], ['name' => 'Dzerzhinsk', 'country_code' => 'RU'], ['name' => 'Milton Keynes', 'country_code' => 'GB'], ['name' => 'Marilia', 'country_code' => 'BR'], ['name' => 'Bratsk', 'country_code' => 'RU'], ['name' => 'Jiayuguan', 'country_code' => 'CN'], ['name' => 'Indaiatuba', 'country_code' => 'BR'], ['name' => 'Envigado', 'country_code' => 'CO'], ['name' => 'Freiburg im Breisgau', 'country_code' => 'DE'], ['name' => 'Eloy Alfaro', 'country_code' => 'EC'], ['name' => 'Maracanau', 'country_code' => 'BR'], ['name' => 'Ageoshimo', 'country_code' => 'JP'], ['name' => 'Qarchak', 'country_code' => 'IR'], ['name' => 'Neuquen', 'country_code' => 'AR'], ['name' => 'Ibb', 'country_code' => 'YE'], ['name' => 'Banfield', 'country_code' => 'AR'], ['name' => 'Cabo Frio', 'country_code' => 'BR'], ['name' => 'Singkawang', 'country_code' => 'ID'], ['name' => 'Orsk', 'country_code' => 'RU'], ['name' => 'Vizianagaram', 'country_code' => 'IN'], ['name' => 'North Hempstead', 'country_code' => 'US'], ['name' => 'Evansville', 'country_code' => 'US'], ['name' => 'Cotia', 'country_code' => 'BR'], ['name' => 'Pali', 'country_code' => 'IN'], ['name' => 'Noginsk', 'country_code' => 'RU'], ['name' => 'Kropyvnytskyi', 'country_code' => 'UA'], ['name' => 'Czestochowa', 'country_code' => 'PL'], ['name' => 'Rondonopolis', 'country_code' => 'BR'], ['name' => 'Guantanamo', 'country_code' => 'CU'], ['name' => 'Krefeld', 'country_code' => 'DE'], ['name' => 'Tanza', 'country_code' => 'PH'], ['name' => 'Marilao', 'country_code' => 'PH'], ['name' => 'Guadalupe', 'country_code' => 'MX'], ['name' => 'Taito', 'country_code' => 'JP'], ['name' => 'Kolpino', 'country_code' => 'RU'], ['name' => 'Burgas', 'country_code' => 'BG'], ['name' => 'Puerto Vallarta', 'country_code' => 'MX'], ['name' => 'Avondale', 'country_code' => 'US'], ['name' => 'Nyala', 'country_code' => 'SD'], ['name' => 'Brownsville', 'country_code' => 'US'], ['name' => 'Dasoguz', 'country_code' => 'TM'], ['name' => 'Turkistan', 'country_code' => 'KZ'], ['name' => 'Probolinggo', 'country_code' => 'ID'], ['name' => 'Jacarei', 'country_code' => 'BR'], ['name' => 'Gusau', 'country_code' => 'NG'], ['name' => 'Buenavista', 'country_code' => 'MX'], ['name' => 'Quetzaltenango', 'country_code' => 'GT'], ['name' => 'Tarrasa', 'country_code' => 'ES'], ['name' => 'Araraquara', 'country_code' => 'BR'], ['name' => 'Angarsk', 'country_code' => 'RU'], ['name' => 'Sousse', 'country_code' => 'TN'], ['name' => 'Nagercoil', 'country_code' => 'IN'], ['name' => 'Heroica Nogales', 'country_code' => 'MX'], ['name' => 'Apapa', 'country_code' => 'NG'], ['name' => 'Nyanza', 'country_code' => 'RW'], ['name' => 'Itapevi', 'country_code' => 'BR'], ['name' => 'Bac Lieu', 'country_code' => 'VN'], ['name' => 'Varamin', 'country_code' => 'IR'], ['name' => 'Padangsidempuan', 'country_code' => 'ID'], ['name' => 'Karnal', 'country_code' => 'IN'], ['name' => 'Mubi', 'country_code' => 'NG'], ['name' => 'Toamasina', 'country_code' => 'MG'], ['name' => 'Campeche', 'country_code' => 'MX'], ['name' => 'Korolev', 'country_code' => 'RU'], ['name' => 'Dourados', 'country_code' => 'BR'], ['name' => 'Hunchun', 'country_code' => 'CN'], ['name' => 'Tampere', 'country_code' => 'FI'], ['name' => 'Minamiozuma', 'country_code' => 'JP'], ['name' => 'Blagoveshchensk', 'country_code' => 'RU'], ['name' => 'Velikiy Novgorod', 'country_code' => 'RU'], ['name' => 'Longjin', 'country_code' => 'CN'], ['name' => 'Ashdod', 'country_code' => 'IL'], ['name' => 'Carlos Manuel de Cespedes', 'country_code' => 'CU'], ['name' => 'Nigde', 'country_code' => 'TR'], ['name' => 'Chapeco', 'country_code' => 'BR'], ['name' => 'Sandton', 'country_code' => 'ZA'], ['name' => 'Tanjore', 'country_code' => 'IN'], ['name' => 'Staryy Oskol', 'country_code' => 'RU'], ['name' => 'Itajai', 'country_code' => 'BR'], ['name' => 'Puri', 'country_code' => 'IN'], ['name' => 'Cartago', 'country_code' => 'CR'], ['name' => 'Ji an Shi', 'country_code' => 'CN'], ['name' => 'Soledad de Graciano Sanchez', 'country_code' => 'MX'], ['name' => 'Presidente Prudente', 'country_code' => 'BR'], ['name' => 'Jose C. Paz', 'country_code' => 'AR'], ['name' => 'Ternopil', 'country_code' => 'UA'], ['name' => 'Rufisque', 'country_code' => 'SN'], ['name' => 'Formosa', 'country_code' => 'AR'], ['name' => 'Sabadell', 'country_code' => 'ES'], ['name' => 'Gueckedou', 'country_code' => 'GN'], ['name' => 'Sambhal', 'country_code' => 'IN'], ['name' => 'Polokwane', 'country_code' => 'ZA'], ['name' => 'Neyshabur', 'country_code' => 'IR'], ['name' => 'Sidon', 'country_code' => 'LB'], ['name' => 'Radom', 'country_code' => 'PL'], ['name' => 'Lutsk', 'country_code' => 'UA'], ['name' => 'Oviedo', 'country_code' => 'ES'], ['name' => 'Gulfport', 'country_code' => 'US'], ['name' => 'Saveh', 'country_code' => 'IR'], ['name' => 'La Vega', 'country_code' => 'DO'], ['name' => 'Appleton', 'country_code' => 'US'], ['name' => 'Khomeyni Shahr', 'country_code' => 'IR'], ['name' => 'Juazeiro', 'country_code' => 'BR'], ['name' => 'Itabuna', 'country_code' => 'BR'], ['name' => 'Al Khubar', 'country_code' => 'SA'], ['name' => 'Islington', 'country_code' => 'GB'], ['name' => 'Cordoba', 'country_code' => 'MX'], ['name' => 'Ciudad Acuna', 'country_code' => 'MX'], ['name' => 'Tulua', 'country_code' => 'CO'], ['name' => 'Mainz', 'country_code' => 'DE'], ['name' => 'Hortolandia', 'country_code' => 'BR'], ['name' => 'Bitung', 'country_code' => 'ID'], ['name' => 'Naihati', 'country_code' => 'IN'], ['name' => 'Petrel', 'country_code' => 'ES'], ['name' => 'Damietta', 'country_code' => 'EG'], ['name' => 'Manta', 'country_code' => 'EC'], ['name' => 'Butembo', 'country_code' => 'CD'], ['name' => 'San Miguel', 'country_code' => 'SV'], ['name' => 'San Pedro de Macoris', 'country_code' => 'DO'], ['name' => 'Netanya', 'country_code' => 'IL'], ['name' => 'Bremerton', 'country_code' => 'US'], ['name' => 'Alor Setar', 'country_code' => 'MY'], ['name' => 'Hickory', 'country_code' => 'US'], ['name' => 'Luton', 'country_code' => 'GB'], ['name' => 'Tacoma', 'country_code' => 'US'], ['name' => 'Laayoune', 'country_code' => 'MA'], ['name' => 'Aberdeen', 'country_code' => 'GB'], ['name' => 'Lubeck', 'country_code' => 'DE'], ['name' => 'Denov', 'country_code' => 'UZ'], ['name' => 'Matrah', 'country_code' => 'OM'], ['name' => 'Qostanay', 'country_code' => 'KZ'], ['name' => 'Banjarbaru', 'country_code' => 'ID'], ['name' => 'Sa Dec', 'country_code' => 'VN'], ['name' => 'Norwich', 'country_code' => 'GB'], ['name' => 'Gujiao', 'country_code' => 'CN'], ['name' => 'Cartagena', 'country_code' => 'ES'], ['name' => 'Petropavl', 'country_code' => 'KZ'], ['name' => 'Marg ilon', 'country_code' => 'UZ'], ['name' => 'Gangneung', 'country_code' => 'KR'], ['name' => 'San Bernardino', 'country_code' => 'US'], ['name' => 'Cua', 'country_code' => 'VE'], ['name' => 'Meycauayan', 'country_code' => 'PH'], ['name' => 'Vantaa', 'country_code' => 'FI'], ['name' => 'As Samawah', 'country_code' => 'IQ'], ['name' => 'Ormoc', 'country_code' => 'PH'], ['name' => 'College Station', 'country_code' => 'US'], ['name' => 'Golmud', 'country_code' => 'CN'], ['name' => 'Kalamazoo', 'country_code' => 'US'], ['name' => 'Regina', 'country_code' => 'CA'], ['name' => 'Thousand Oaks', 'country_code' => 'US'], ['name' => 'La Victoria', 'country_code' => 'VE'], ['name' => 'Shimla', 'country_code' => 'IN'], ['name' => 'Mohammedia', 'country_code' => 'MA'], ['name' => 'Babruysk', 'country_code' => 'BY'], ['name' => 'Roanoke', 'country_code' => 'US'], ['name' => 'Osan', 'country_code' => 'KR'], ['name' => 'Geneva', 'country_code' => 'CH'], ['name' => 'Fontana', 'country_code' => 'US'], ['name' => 'Sikasso', 'country_code' => 'ML'], ['name' => 'Alvorada', 'country_code' => 'BR'], ['name' => 'Warnes', 'country_code' => 'BO'], ['name' => 'Ciudad Madero', 'country_code' => 'MX'], ['name' => 'Oberhausen', 'country_code' => 'DE'], ['name' => 'El Tigre', 'country_code' => 'VE'], ['name' => 'Jerez de la Frontera', 'country_code' => 'ES'], ['name' => 'Jalalabad', 'country_code' => 'AF'], ['name' => 'Moreno Valley', 'country_code' => 'US'], ['name' => 'Sidi Bel Abbes', 'country_code' => 'DZ'], ['name' => 'Limbe', 'country_code' => 'CM'], ['name' => 'Kure', 'country_code' => 'JP'], ['name' => 'Tumaco', 'country_code' => 'CO'], ['name' => 'Padova', 'country_code' => 'IT'], ['name' => 'Pamplona', 'country_code' => 'ES'], ['name' => 'Arroyo Naranjo', 'country_code' => 'CU'], ['name' => 'Ploiesti', 'country_code' => 'RO'], ['name' => 'Criciuma', 'country_code' => 'BR'], ['name' => 'Metepec', 'country_code' => 'MX'], ['name' => 'Rio Grande', 'country_code' => 'BR'], ['name' => 'Pskov', 'country_code' => 'RU'], ['name' => 'Bila Tserkva', 'country_code' => 'UA'], ['name' => 'Chungju', 'country_code' => 'KR'], ['name' => 'Babylon', 'country_code' => 'US'], ['name' => 'Tunja', 'country_code' => 'CO'], ['name' => 'Barrancabermeja', 'country_code' => 'CO'], ['name' => 'Cachoeiro de Itapemirim', 'country_code' => 'BR'], ['name' => 'Santa Cruz', 'country_code' => 'ES'], ['name' => 'San-Pedro', 'country_code' => 'CI'], ['name' => 'Bukit Mertajam', 'country_code' => 'MY'], ['name' => 'Ijebu-Ode', 'country_code' => 'NG'], ['name' => 'Cork', 'country_code' => 'IE'], ['name' => 'Guarenas', 'country_code' => 'VE'], ['name' => 'Taisheng', 'country_code' => 'CN'], ['name' => 'Rostock', 'country_code' => 'DE'], ['name' => 'Dongning', 'country_code' => 'CN'], ['name' => 'Moratuwa', 'country_code' => 'LK'], ['name' => 'Burutu', 'country_code' => 'NG'], ['name' => 'Ich on', 'country_code' => 'KR'], ['name' => 'Puerto Cabello', 'country_code' => 'VE'], ['name' => 'Beersheba', 'country_code' => 'IL'], ['name' => 'Nasim Shahr', 'country_code' => 'IR'], ['name' => 'North Port', 'country_code' => 'US'], ['name' => 'Almere', 'country_code' => 'NL'], ['name' => 'Lubuklinggau', 'country_code' => 'ID'], ['name' => 'Qina', 'country_code' => 'EG'], ['name' => 'Mary', 'country_code' => 'TM'], ['name' => 'Fargo', 'country_code' => 'US'], ['name' => 'Huangyan', 'country_code' => 'CN'], ['name' => 'Santa Clara', 'country_code' => 'CU'], ['name' => 'Kharagpur', 'country_code' => 'IN'], ['name' => 'Northcote', 'country_code' => 'NZ'], ['name' => 'Waitakere', 'country_code' => 'NZ'], ['name' => 'Monywa', 'country_code' => 'MM'], ['name' => 'Dindigul', 'country_code' => 'IN'], ['name' => 'Morogoro', 'country_code' => 'TZ'], ['name' => 'Green Bay', 'country_code' => 'US'], ['name' => 'Cidade de Nacala', 'country_code' => 'MZ'], ['name' => 'Talca', 'country_code' => 'CL'], ['name' => 'Portoviejo', 'country_code' => 'EC'], ['name' => 'Spring Valley', 'country_code' => 'US'], ['name' => 'Pingzhen', 'country_code' => 'TW'], ['name' => 'Linz', 'country_code' => 'AT'], ['name' => 'Trieste', 'country_code' => 'IT'], ['name' => 'Phan Thiet', 'country_code' => 'VN'], ['name' => 'Kalemie', 'country_code' => 'CD'], ['name' => 'Biskra', 'country_code' => 'DZ'], ['name' => 'Kamirenjaku', 'country_code' => 'JP'], ['name' => 'Ingraj Bazar', 'country_code' => 'IN'], ['name' => 'Bani Suwayf', 'country_code' => 'EG'], ['name' => 'Ellore', 'country_code' => 'IN'], ['name' => 'Leon', 'country_code' => 'ES'], ['name' => 'Mytishchi', 'country_code' => 'RU'], ['name' => 'Zanzibar', 'country_code' => 'TZ'], ['name' => 'Jiutai', 'country_code' => 'CN'], ['name' => 'Qa em Shahr', 'country_code' => 'IR'], ['name' => 'Bolu', 'country_code' => 'TR'], ['name' => 'Amarillo', 'country_code' => 'US'], ['name' => 'Ziguinchor', 'country_code' => 'SN'], ['name' => 'Ternate', 'country_code' => 'ID'], ['name' => 'Puqi', 'country_code' => 'CN'], ['name' => 'Bene Beraq', 'country_code' => 'IL'], ['name' => 'Passo Fundo', 'country_code' => 'BR'], ['name' => 'La Ceiba', 'country_code' => 'HN'], ['name' => 'Yachiyo', 'country_code' => 'JP'], ['name' => 'Coquimbo', 'country_code' => 'CL'], ['name' => 'Mandi Burewala', 'country_code' => 'PK'], ['name' => 'Marawi City', 'country_code' => 'PH'], ['name' => 'Erfurt', 'country_code' => 'DE'], ['name' => 'Portland', 'country_code' => 'US'], ['name' => 'Groningen', 'country_code' => 'NL'], ['name' => 'Biysk', 'country_code' => 'RU'], ['name' => 'Charleroi', 'country_code' => 'BE'], ['name' => 'La Romana', 'country_code' => 'DO'], ['name' => 'Mazabuka', 'country_code' => 'ZM'], ['name' => 'Poza Rica de Hidalgo', 'country_code' => 'MX'], ['name' => 'Torun', 'country_code' => 'PL'], ['name' => 'Tanjungpinang', 'country_code' => 'ID'], ['name' => 'Zhubei', 'country_code' => 'TW'], ['name' => 'Djougou', 'country_code' => 'BJ'], ['name' => 'Luxor', 'country_code' => 'EG'], ['name' => 'Tarakan', 'country_code' => 'ID'], ['name' => 'Santa Barbara', 'country_code' => 'US'], ['name' => 'Gainesville', 'country_code' => 'US'], ['name' => 'Las Tunas', 'country_code' => 'CU'], ['name' => 'Al Khawr', 'country_code' => 'QA'], ['name' => 'Lyubertsy', 'country_code' => 'RU'], ['name' => 'Matsue', 'country_code' => 'JP'], ['name' => 'Sosnowiec', 'country_code' => 'PL'], ['name' => 'Arica', 'country_code' => 'CL'], ['name' => 'Al Khums', 'country_code' => 'LY'], ['name' => 'Almeria', 'country_code' => 'ES'], ['name' => 'Huacho', 'country_code' => 'PE'], ['name' => 'Debrecen', 'country_code' => 'HU'], ['name' => 'Nandyal', 'country_code' => 'IN'], ['name' => 'Cajamarca', 'country_code' => 'PE'], ['name' => 'Huntington', 'country_code' => 'US'], ['name' => 'Croydon', 'country_code' => 'GB'], ['name' => 'Lashkar Gah', 'country_code' => 'AF'], ['name' => 'Haldia', 'country_code' => 'IN'], ['name' => 'San Pablo de las Salinas', 'country_code' => 'MX'], ['name' => 'Mai Adua', 'country_code' => 'NG'], ['name' => 'Jacobabad', 'country_code' => 'PK'], ['name' => 'Tokat', 'country_code' => 'TR'], ['name' => 'Qyzylorda', 'country_code' => 'KZ'], ['name' => 'Nema', 'country_code' => 'MR'], ['name' => 'Olympia', 'country_code' => 'US'], ['name' => 'Gurgaon', 'country_code' => 'IN'], ['name' => 'Guacara', 'country_code' => 'VE'], ['name' => 'Liege', 'country_code' => 'BE'], ['name' => 'Oulu', 'country_code' => 'FI'], ['name' => 'Frisco', 'country_code' => 'US'], ['name' => 'Isidro Casanova', 'country_code' => 'AR'], ['name' => 'Maimanah', 'country_code' => 'AF'], ['name' => 'Yonkers', 'country_code' => 'US'], ['name' => 'Rio Claro', 'country_code' => 'BR'], ['name' => 'Norwich', 'country_code' => 'US'], ['name' => 'Az Zawiyah', 'country_code' => 'LY'], ['name' => 'Bulandshahr', 'country_code' => 'IN'], ['name' => 'Kasama', 'country_code' => 'ZM'], ['name' => 'Puerto Cortes', 'country_code' => 'HN'], ['name' => 'Kouribga', 'country_code' => 'MA'], ['name' => 'Lahad Datu', 'country_code' => 'MY'], ['name' => 'Bojnurd', 'country_code' => 'IR'], ['name' => 'Pagadian', 'country_code' => 'PH'], ['name' => 'Fuenlabrada', 'country_code' => 'ES'], ['name' => 'Banja Luka', 'country_code' => 'BA'], ['name' => 'Glendale', 'country_code' => 'US'], ['name' => 'Huntington Beach', 'country_code' => 'US'], ['name' => 'Baharampur', 'country_code' => 'IN'], ['name' => 'Taranto', 'country_code' => 'IT'], ['name' => 'Brescia', 'country_code' => 'IT'], ['name' => 'Logrono', 'country_code' => 'ES'], ['name' => 'Ashino', 'country_code' => 'JP'], ['name' => 'Martapura', 'country_code' => 'ID'], ['name' => 'Chakradharpur', 'country_code' => 'IN'], ['name' => 'Deltona', 'country_code' => 'US'], ['name' => 'Chilpancingo', 'country_code' => 'MX'], ['name' => 'Naga City', 'country_code' => 'PH'], ['name' => 'Richmond', 'country_code' => 'CA'], ['name' => 'Holon', 'country_code' => 'IL'], ['name' => 'Gemena', 'country_code' => 'CD'], ['name' => 'Tocuyito', 'country_code' => 'VE'], ['name' => 'Oradea', 'country_code' => 'RO'], ['name' => 'Legazpi City', 'country_code' => 'PH'], ['name' => 'Hedong', 'country_code' => 'CN'], ['name' => 'Madhyamgram', 'country_code' => 'IN'], ['name' => 'Aurora', 'country_code' => 'US'], ['name' => 'Bhiwani', 'country_code' => 'IN'], ['name' => 'Burhanpur', 'country_code' => 'IN'], ['name' => 'Higashi-Hiroshima', 'country_code' => 'JP'], ['name' => 'Mbanza-Ngungu', 'country_code' => 'CD'], ['name' => 'Huanuco', 'country_code' => 'PE'], ['name' => 'Hino', 'country_code' => 'JP'], ['name' => 'Zipaquira', 'country_code' => 'CO'], ['name' => 'Beni Mellal', 'country_code' => 'MA'], ['name' => 'Prokopyevsk', 'country_code' => 'RU'], ['name' => 'Rajin', 'country_code' => 'KP'], ['name' => 'Ghandinagar', 'country_code' => 'IN'], ['name' => 'Eldoret', 'country_code' => 'KE'], ['name' => 'Kusong', 'country_code' => 'KP'], ['name' => 'Suhaj', 'country_code' => 'EG'], ['name' => 'Khammam', 'country_code' => 'IN'], ['name' => 'Kirikkale', 'country_code' => 'TR'], ['name' => 'Parma', 'country_code' => 'IT'], ['name' => 'Suzuka', 'country_code' => 'JP'], ['name' => 'Brikama', 'country_code' => 'GM'], ['name' => 'Acarigua', 'country_code' => 'VE'], ['name' => 'Hugli', 'country_code' => 'IN'], ['name' => 'Viransehir', 'country_code' => 'TR'], ['name' => 'San Luis Rio Colorado', 'country_code' => 'MX'], ['name' => 'Iskandar', 'country_code' => 'UZ'], ['name' => 'Tempe', 'country_code' => 'US'], ['name' => 'Naka', 'country_code' => 'JP'], ['name' => 'Leganes', 'country_code' => 'ES'], ['name' => 'Kenema', 'country_code' => 'SL'], ['name' => 'La Serena', 'country_code' => 'CL'], ['name' => 'Overland Park', 'country_code' => 'US'], ['name' => 'Bandar-e Bushehr', 'country_code' => 'IR'], ['name' => 'Prato', 'country_code' => 'IT'], ['name' => 'Cholula de Rivadabia', 'country_code' => 'MX'], ['name' => 'Anseong', 'country_code' => 'KR'], ['name' => 'Yuzhno-Sakhalinsk', 'country_code' => 'RU'], ['name' => 'Richmond Hill', 'country_code' => 'CA'], ['name' => 'Dese', 'country_code' => 'ET'], ['name' => 'Gorontalo', 'country_code' => 'ID'], ['name' => 'Grand Prairie', 'country_code' => 'US'], ['name' => 'Quelimane', 'country_code' => 'MZ'], ['name' => 'Tebessa', 'country_code' => 'DZ'], ['name' => 'Kumagaya', 'country_code' => 'JP'], ['name' => 'Al Jahra ', 'country_code' => 'KW'], ['name' => 'Karaman', 'country_code' => 'TR'], ['name' => 'La Plata', 'country_code' => 'AR'], ['name' => 'San Juan Sacatepequez', 'country_code' => 'GT'], ['name' => 'Cap-Haitien', 'country_code' => 'HT'], ['name' => 'Oakville', 'country_code' => 'CA'], ['name' => 'Sunrise Manor', 'country_code' => 'US'], ['name' => 'Muar', 'country_code' => 'MY'], ['name' => 'Godoy Cruz', 'country_code' => 'AR'], ['name' => 'Mus', 'country_code' => 'TR'], ['name' => 'Hyesan', 'country_code' => 'KP'], ['name' => 'Kielce', 'country_code' => 'PL'], ['name' => 'Arapiraca', 'country_code' => 'BR'], ['name' => 'Valencia', 'country_code' => 'PH'], ['name' => 'Aracatuba', 'country_code' => 'BR'], ['name' => 'Swindon', 'country_code' => 'GB'], ['name' => 'Castanhal', 'country_code' => 'BR'], ['name' => 'Guanare', 'country_code' => 'VE'], ['name' => 'Waco', 'country_code' => 'US'], ['name' => 'Basildon', 'country_code' => 'GB'], ['name' => 'Madiun', 'country_code' => 'ID'], ['name' => 'Valera', 'country_code' => 'VE'], ['name' => 'Mahbubnagar', 'country_code' => 'IN'], ['name' => 'Pasuruan', 'country_code' => 'ID'], ['name' => 'Aydin', 'country_code' => 'TR'], ['name' => 'Shibin al Kawm', 'country_code' => 'EG'], ['name' => 'Armavir', 'country_code' => 'RU'], ['name' => 'Nova Friburgo', 'country_code' => 'BR'], ['name' => 'Donostia', 'country_code' => 'ES'], ['name' => 'Balakovo', 'country_code' => 'RU'], ['name' => 'Batu', 'country_code' => 'ID'], ['name' => 'Anjomachi', 'country_code' => 'JP'], ['name' => 'Salinas', 'country_code' => 'US'], ['name' => 'Mwene-Ditu', 'country_code' => 'CD'], ['name' => 'Son Tay', 'country_code' => 'VN'], ['name' => 'Ferraz de Vasconcelos', 'country_code' => 'BR'], ['name' => 'Santa Barbara d Oeste', 'country_code' => 'BR'], ['name' => 'Saddiqabad', 'country_code' => 'PK'], ['name' => 'Rybinsk', 'country_code' => 'RU'], ['name' => 'Chongju', 'country_code' => 'KP'], ['name' => 'Hagen', 'country_code' => 'DE'], ['name' => 'Ngaoundere', 'country_code' => 'CM'], ['name' => 'Potosi', 'country_code' => 'BO'], ['name' => 'San Carlos City', 'country_code' => 'PH'], ['name' => 'Pak Kret', 'country_code' => 'TH'], ['name' => 'Waterbury', 'country_code' => 'US'], ['name' => 'Donghua', 'country_code' => 'CN'], ['name' => 'Parakou', 'country_code' => 'BJ'], ['name' => 'Mutare', 'country_code' => 'ZW'], ['name' => 'Mataro', 'country_code' => 'ES'], ['name' => 'Narsingdi', 'country_code' => 'BD'], ['name' => 'Pinar del Rio', 'country_code' => 'CU'], ['name' => 'Clarksville', 'country_code' => 'US'], ['name' => 'Raiganj', 'country_code' => 'IN'], ['name' => 'Tachikawa', 'country_code' => 'JP'], ['name' => 'Prabumulih', 'country_code' => 'ID'], ['name' => 'Angra dos Reis', 'country_code' => 'BR'], ['name' => 'San Francisco de Macoris', 'country_code' => 'DO'], ['name' => 'Al Hasakah', 'country_code' => 'SY'], ['name' => 'Turku', 'country_code' => 'FI'], ['name' => 'Guatire', 'country_code' => 'VE'], ['name' => 'Iquique', 'country_code' => 'CL'], ['name' => 'Cedar Rapids', 'country_code' => 'US'], ['name' => 'Kofu', 'country_code' => 'JP'], ['name' => 'San Diego', 'country_code' => 'VE'], ['name' => 'Gharyan', 'country_code' => 'LY'], ['name' => 'Tottori', 'country_code' => 'JP'], ['name' => 'Bournemouth', 'country_code' => 'GB'], ['name' => 'Chaedok', 'country_code' => 'KP'], ['name' => 'Joetsu', 'country_code' => 'JP'], ['name' => 'Prizren', 'country_code' => 'XK'], ['name' => 'Sioux Falls', 'country_code' => 'US'], ['name' => 'Kairouan', 'country_code' => 'TN'], ['name' => 'Shendi', 'country_code' => 'SD'], ['name' => 'Izuo', 'country_code' => 'JP'], ['name' => 'Reims', 'country_code' => 'FR'], ['name' => 'Modena', 'country_code' => 'IT'], ['name' => 'Ed Damazin', 'country_code' => 'SD'], ['name' => 'Khujand', 'country_code' => 'TJ'], ['name' => 'El Jadid', 'country_code' => 'MA'], ['name' => 'Dunhuang', 'country_code' => 'CN'], ['name' => 'Huntington', 'country_code' => 'US'], ['name' => 'Mahesana', 'country_code' => 'IN'], ['name' => 'Guri', 'country_code' => 'KR'], ['name' => 'Jamaame', 'country_code' => 'SO'], ['name' => 'Panabo', 'country_code' => 'PH'], ['name' => 'Breda', 'country_code' => 'NL'], ['name' => 'Adoni', 'country_code' => 'IN'], ['name' => 'Semnan', 'country_code' => 'IR'], ['name' => 'Temirtau', 'country_code' => 'KZ'], ['name' => 'Basel', 'country_code' => 'CH'], ['name' => 'Yei', 'country_code' => 'SS'], ['name' => 'Ontario', 'country_code' => 'US'], ['name' => 'Luzhang', 'country_code' => 'CN'], ['name' => 'Hagerstown', 'country_code' => 'US'], ['name' => 'Al Qamishli', 'country_code' => 'SY'], ['name' => 'Ibirite', 'country_code' => 'BR'], ['name' => 'Manzanillo', 'country_code' => 'MX'], ['name' => 'Erie', 'country_code' => 'US'], ['name' => 'Teresopolis', 'country_code' => 'BR'], ['name' => 'Vancouver', 'country_code' => 'US'], ['name' => 'Nampa', 'country_code' => 'US'], ['name' => 'Fardis', 'country_code' => 'IR'], ['name' => 'Fianarantsoa', 'country_code' => 'MG'], ['name' => 'Banjar', 'country_code' => 'ID'], ['name' => 'Severodvinsk', 'country_code' => 'RU'], ['name' => 'Rzeszow', 'country_code' => 'PL'], ['name' => 'Siguiri', 'country_code' => 'GN'], ['name' => 'Calbayog City', 'country_code' => 'PH'], ['name' => 'Bhusaval', 'country_code' => 'IN'], ['name' => 'Trondheim', 'country_code' => 'NO'], ['name' => 'Aqtau', 'country_code' => 'KZ'], ['name' => 'Nis', 'country_code' => 'RS'], ['name' => 'Araguaina', 'country_code' => 'BR'], ['name' => 'Narashino', 'country_code' => 'JP'], ['name' => 'Abakan', 'country_code' => 'RU'], ['name' => 'Burlington', 'country_code' => 'CA'], ['name' => 'Bahraigh', 'country_code' => 'IN'], ['name' => 'Potsdam', 'country_code' => 'DE'], ['name' => 'Bo', 'country_code' => 'SL'], ['name' => 'Worthing', 'country_code' => 'GB'], ['name' => 'Pinrang', 'country_code' => 'ID'], ['name' => 'Guarapuava', 'country_code' => 'BR'], ['name' => 'Spartanburg', 'country_code' => 'US'], ['name' => 'Braila', 'country_code' => 'RO'], ['name' => 'Gastonia', 'country_code' => 'US'], ['name' => 'Amadora', 'country_code' => 'PT'], ['name' => 'Braga', 'country_code' => 'PT'], ['name' => 'Fort Lauderdale', 'country_code' => 'US'], ['name' => 'Kabankalan', 'country_code' => 'PH'], ['name' => 'Reggio di Calabria', 'country_code' => 'IT'], ['name' => 'Tonk', 'country_code' => 'IN'], ['name' => 'Berazategui', 'country_code' => 'AR'], ['name' => 'Khowy', 'country_code' => 'IR'], ['name' => 'Sirsa', 'country_code' => 'IN'], ['name' => 'Tangail', 'country_code' => 'BD'], ['name' => 'Jaunpur', 'country_code' => 'IN'], ['name' => 'Dosquebradas', 'country_code' => 'CO'], ['name' => 'Saarbrucken', 'country_code' => 'DE'], ['name' => 'Santo Tomas', 'country_code' => 'PH'], ['name' => 'Petropavlovsk-Kamchatskiy', 'country_code' => 'RU'], ['name' => 'Sittwe', 'country_code' => 'MM'], ['name' => 'Epe', 'country_code' => 'NG'], ['name' => 'Phan Rang-Thap Cham', 'country_code' => 'VN'], ['name' => 'Jaragua do Sul', 'country_code' => 'BR'], ['name' => 'Jima', 'country_code' => 'ET'], ['name' => 'Townsville', 'country_code' => 'AU'], ['name' => 'Lhokseumawe', 'country_code' => 'ID'], ['name' => 'Gliwice', 'country_code' => 'PL'], ['name' => 'Funtua', 'country_code' => 'NG'], ['name' => 'Hinthada', 'country_code' => 'MM'], ['name' => 'Turbo', 'country_code' => 'CO'], ['name' => 'La Rioja', 'country_code' => 'AR'], ['name' => 'Canakkale', 'country_code' => 'TR'], ['name' => 'Madanapalle', 'country_code' => 'IN'], ['name' => 'Palopo', 'country_code' => 'ID'], ['name' => 'Ayacucho', 'country_code' => 'PE'], ['name' => 'Obuase', 'country_code' => 'GH'], ['name' => 'Alleppey', 'country_code' => 'IN'], ['name' => 'Ipswich', 'country_code' => 'GB'], ['name' => 'Boma', 'country_code' => 'CD'], ['name' => 'Tiaret', 'country_code' => 'DZ'], ['name' => 'Edirne', 'country_code' => 'TR'], ['name' => 'Longjing', 'country_code' => 'CN'], ['name' => 'Split', 'country_code' => 'HR'], ['name' => 'Ilheus', 'country_code' => 'BR'], ['name' => 'Lorain', 'country_code' => 'US'], ['name' => 'Barra Mansa', 'country_code' => 'BR'], ['name' => 'Klerksdorp', 'country_code' => 'ZA'], ['name' => 'Murfreesboro', 'country_code' => 'US'], ['name' => 'High Point', 'country_code' => 'US'], ['name' => 'Hamm', 'country_code' => 'DE'], ['name' => 'Tarija', 'country_code' => 'BO'], ['name' => 'Al Arish', 'country_code' => 'EG'], ['name' => 'Sao Jose de Ribamar', 'country_code' => 'BR'], ['name' => 'Paita', 'country_code' => 'PE'], ['name' => 'Yopal', 'country_code' => 'CO'], ['name' => 'Salatiga', 'country_code' => 'ID'], ['name' => 'Newport News', 'country_code' => 'US'], ['name' => 'Torbali', 'country_code' => 'TR'], ['name' => 'Langsa', 'country_code' => 'ID'], ['name' => 'Bade', 'country_code' => 'TW'], ['name' => 'Bida', 'country_code' => 'NG'], ['name' => 'Salalah', 'country_code' => 'OM'], ['name' => 'Santander', 'country_code' => 'ES'], ['name' => 'Matosinhos', 'country_code' => 'PT'], ['name' => 'Birjand', 'country_code' => 'IR'], ['name' => 'Lin an', 'country_code' => 'CN'], ['name' => 'Chicoloapan', 'country_code' => 'MX'], ['name' => 'Vellore', 'country_code' => 'IN'], ['name' => 'Dam Dam', 'country_code' => 'IN'], ['name' => 'Bejaia', 'country_code' => 'DZ'], ['name' => 'Rancho Cucamonga', 'country_code' => 'US'], ['name' => 'Norilsk', 'country_code' => 'RU'], ['name' => 'Baranavichy', 'country_code' => 'BY'], ['name' => 'Nossa Senhora do Socorro', 'country_code' => 'BR'], ['name' => 'Hemet', 'country_code' => 'US'], ['name' => 'Yangmei', 'country_code' => 'TW'], ['name' => 'Ciudad Valles', 'country_code' => 'MX'], ['name' => 'Kadugli', 'country_code' => 'SD'], ['name' => 'Les Cayes', 'country_code' => 'HT'], ['name' => 'Alcorcon', 'country_code' => 'ES'], ['name' => 'Piraeus', 'country_code' => 'GR'], ['name' => 'Sunderland', 'country_code' => 'GB'], ['name' => 'Linhares', 'country_code' => 'BR'], ['name' => 'Letpandan', 'country_code' => 'MM'], ['name' => 'Zabrze', 'country_code' => 'PL'], ['name' => 'Almada', 'country_code' => 'PT'], ['name' => 'Ilford', 'country_code' => 'GB'], ['name' => 'Plzen', 'country_code' => 'CZ'], ['name' => 'Cuautla', 'country_code' => 'MX'], ['name' => 'Rio Verde', 'country_code' => 'BR'], ['name' => 'Santa Cruz', 'country_code' => 'US'], ['name' => 'Saint-Louis', 'country_code' => 'SN'], ['name' => 'Ait Melloul', 'country_code' => 'MA'], ['name' => 'Toulon', 'country_code' => 'FR'], ['name' => 'Ciudad del Carmen', 'country_code' => 'MX'], ['name' => 'Danbury', 'country_code' => 'US'], ['name' => 'Castellon de la Plana', 'country_code' => 'ES'], ['name' => 'Peoria', 'country_code' => 'US'], ['name' => 'Oeiras', 'country_code' => 'PT'], ['name' => 'Dagupan City', 'country_code' => 'PH'], ['name' => 'Catumbela', 'country_code' => 'AO'], ['name' => 'Eregli', 'country_code' => 'TR'], ['name' => 'Oceanside', 'country_code' => 'US'], ['name' => 'Shibirghan', 'country_code' => 'AF'], ['name' => 'Chandannagar', 'country_code' => 'IN'], ['name' => 'Harar', 'country_code' => 'ET'], ['name' => 'Middlesbrough', 'country_code' => 'GB'], ['name' => 'Tyre', 'country_code' => 'LB'], ['name' => 'Koronadal', 'country_code' => 'PH'], ['name' => 'Olsztyn', 'country_code' => 'PL'], ['name' => 'Cuddalore', 'country_code' => 'IN'], ['name' => 'Getafe', 'country_code' => 'ES'], ['name' => 'Maragheh', 'country_code' => 'IR'], ['name' => 'Obiraki', 'country_code' => 'JP'], ['name' => 'Tebingtinggi', 'country_code' => 'ID'], ['name' => 'Comitan', 'country_code' => 'MX'], ['name' => 'Takaoka', 'country_code' => 'JP'], ['name' => 'Sirjan', 'country_code' => 'IR'], ['name' => 'Tanauan', 'country_code' => 'PH'], ['name' => 'Menemen', 'country_code' => 'TR'], ['name' => 'Malaybalay', 'country_code' => 'PH'], ['name' => 'Elk Grove', 'country_code' => 'US'], ['name' => 'Syzran', 'country_code' => 'RU'], ['name' => 'Carupano', 'country_code' => 'VE'], ['name' => 'Saint-Etienne', 'country_code' => 'FR'], ['name' => 'Luziania', 'country_code' => 'BR'], ['name' => 'Lagos de Moreno', 'country_code' => 'MX'], ['name' => 'Albacete', 'country_code' => 'ES'], ['name' => 'Ludwigshafen', 'country_code' => 'DE'], ['name' => 'Leon', 'country_code' => 'NI'], ['name' => 'Chirala', 'country_code' => 'IN'], ['name' => 'Titagarh', 'country_code' => 'IN'], ['name' => 'Bielsko-Biala', 'country_code' => 'PL'], ['name' => 'Beppucho', 'country_code' => 'JP'], ['name' => 'General Mariano Alvarez', 'country_code' => 'PH'], ['name' => 'Bytom', 'country_code' => 'PL'], ['name' => 'Linjiang', 'country_code' => 'CN'], ['name' => 'Ha Long', 'country_code' => 'VN'], ['name' => 'Deo', 'country_code' => 'IN'], ['name' => 'Tiantoujiao', 'country_code' => 'CN'], ['name' => 'Pembroke Pines', 'country_code' => 'US'], ['name' => 'Tlemcen', 'country_code' => 'DZ'], ['name' => 'Hitachi', 'country_code' => 'JP'], ['name' => 'Shahin Shahr', 'country_code' => 'IR'], ['name' => 'Orekhovo-Borisovo Yuzhnoye', 'country_code' => 'RU'], ['name' => 'Vallejo', 'country_code' => 'US'], ['name' => 'Bertoua', 'country_code' => 'CM'], ['name' => 'Moca', 'country_code' => 'DO'], ['name' => 'Banyuwangi', 'country_code' => 'ID'], ['name' => 'Mulheim', 'country_code' => 'DE'], ['name' => 'Sacaba', 'country_code' => 'BO'], ['name' => 'Carpina', 'country_code' => 'BR'], ['name' => 'Reggio Emilia', 'country_code' => 'IT'], ['name' => 'Banha', 'country_code' => 'EG'], ['name' => 'Barrie', 'country_code' => 'CA'], ['name' => 'Krasnogorsk', 'country_code' => 'RU'], ['name' => 'Kaolack', 'country_code' => 'SN'], ['name' => 'Izumo', 'country_code' => 'JP'], ['name' => 'Burgos', 'country_code' => 'ES'], ['name' => 'Niiza', 'country_code' => 'JP'], ['name' => 'Guanajuato', 'country_code' => 'MX'], ['name' => 'Francisco Morato', 'country_code' => 'BR'], ['name' => 'Garden Grove', 'country_code' => 'US'], ['name' => 'Volgodonsk', 'country_code' => 'RU'], ['name' => 'Bago', 'country_code' => 'PH'], ['name' => 'Toledo', 'country_code' => 'PH'], ['name' => 'Kamensk-Ural skiy', 'country_code' => 'RU'], ['name' => 'Enterprise', 'country_code' => 'US'], ['name' => 'Kohat', 'country_code' => 'PK'], ['name' => 'Cuauhtemoc', 'country_code' => 'MX'], ['name' => 'Medford', 'country_code' => 'US'], ['name' => 'Loja', 'country_code' => 'EC'], ['name' => 'Hamilton', 'country_code' => 'NZ'], ['name' => 'Ussuriysk', 'country_code' => 'RU'], ['name' => 'Uvira', 'country_code' => 'CD'], ['name' => 'Portmore', 'country_code' => 'JM'], ['name' => 'Machilipatnam', 'country_code' => 'IN'], ['name' => 'Bordj Bou Arreridj', 'country_code' => 'DZ'], ['name' => 'Nukus', 'country_code' => 'UZ'], ['name' => 'Malayer', 'country_code' => 'IR'], ['name' => 'Timon', 'country_code' => 'BR'], ['name' => 'N Zerekore', 'country_code' => 'GN'], ['name' => 'Cary', 'country_code' => 'US'], ['name' => 'Kluang', 'country_code' => 'MY'], ['name' => 'Novocherkassk', 'country_code' => 'RU'], ['name' => 'Metouia', 'country_code' => 'TN'], ['name' => 'Nishio', 'country_code' => 'JP'], ['name' => 'Marysville', 'country_code' => 'US'], ['name' => 'Digos', 'country_code' => 'PH'], ['name' => 'San Luis', 'country_code' => 'AR'], ['name' => 'Puerto Montt', 'country_code' => 'CL'], ['name' => 'Corona', 'country_code' => 'US'], ['name' => 'Oldenburg', 'country_code' => 'DE'], ['name' => 'Medinipur', 'country_code' => 'IN'], ['name' => 'Fenglu', 'country_code' => 'CN'], ['name' => 'Al Marj', 'country_code' => 'LY'], ['name' => 'Sosan', 'country_code' => 'KR'], ['name' => 'Ocala', 'country_code' => 'US'], ['name' => 'Uppsala', 'country_code' => 'SE'], ['name' => 'Gondomar', 'country_code' => 'PT'], ['name' => 'Santa Rita', 'country_code' => 'VE'], ['name' => 'San Juan', 'country_code' => 'DO'], ['name' => 'Jamalpur', 'country_code' => 'BD'], ['name' => 'Pocos de Caldas', 'country_code' => 'BR'], ['name' => 'Fredericksburg', 'country_code' => 'US'], ['name' => 'Sobral', 'country_code' => 'BR'], ['name' => 'Baramula', 'country_code' => 'IN'], ['name' => 'Roxas City', 'country_code' => 'PH'], ['name' => 'Ambato', 'country_code' => 'EC'], ['name' => 'Sorsogon', 'country_code' => 'PH'], ['name' => 'Higuey', 'country_code' => 'DO'], ['name' => 'Tanjungbalai', 'country_code' => 'ID'], ['name' => 'Huich on', 'country_code' => 'KP'], ['name' => 'Mahabad', 'country_code' => 'IR'], ['name' => 'Itapecerica da Serra', 'country_code' => 'BR'], ['name' => 'Sao Caetano do Sul', 'country_code' => 'BR'], ['name' => 'Basuo', 'country_code' => 'CN'], ['name' => 'Zlatoust', 'country_code' => 'RU'], ['name' => 'Rustenburg', 'country_code' => 'ZA'], ['name' => 'Patra', 'country_code' => 'GR'], ['name' => 'Riohacha', 'country_code' => 'CO'], ['name' => 'Catape', 'country_code' => 'AO'], ['name' => 'Nador', 'country_code' => 'MA'], ['name' => 'Gainesville', 'country_code' => 'US'], ['name' => 'Itu', 'country_code' => 'BR'], ['name' => 'Offa', 'country_code' => 'NG'], ['name' => 'Fatehpur', 'country_code' => 'IN'], ['name' => 'Arar', 'country_code' => 'SA'], ['name' => 'Ha Tinh', 'country_code' => 'VN'], ['name' => 'Kandy', 'country_code' => 'LK'], ['name' => 'Al Kufah', 'country_code' => 'IQ'], ['name' => 'Kimberley', 'country_code' => 'ZA'], ['name' => 'Iwata', 'country_code' => 'JP'], ['name' => 'Kismaayo', 'country_code' => 'SO'], ['name' => 'Tenali', 'country_code' => 'IN'], ['name' => 'Takaoka', 'country_code' => 'JP'], ['name' => 'Skikda', 'country_code' => 'DZ'], ['name' => 'Nantou', 'country_code' => 'TW'], ['name' => 'Siirt', 'country_code' => 'TR'], ['name' => 'Kuytun', 'country_code' => 'CN'], ['name' => 'Osnabruck', 'country_code' => 'DE'], ['name' => 'Korfez', 'country_code' => 'TR'], ['name' => 'Perugia', 'country_code' => 'IT'], ['name' => 'Udipi', 'country_code' => 'IN'], ['name' => 'Oshawa', 'country_code' => 'CA'], ['name' => 'Klaipeda', 'country_code' => 'LT'], ['name' => 'Leverkusen', 'country_code' => 'DE'], ['name' => 'Idlib', 'country_code' => 'SY'], ['name' => 'Bechar', 'country_code' => 'DZ'], ['name' => 'Warrington', 'country_code' => 'GB'], ['name' => 'Sitalpur', 'country_code' => 'IN'], ['name' => 'Caxias', 'country_code' => 'BR'], ['name' => 'Cienfuegos', 'country_code' => 'CU'], ['name' => 'Proddatur', 'country_code' => 'IN'], ['name' => 'Conjeeveram', 'country_code' => 'IN'], ['name' => 'Saqqez', 'country_code' => 'IR'], ['name' => 'Zhanlicun', 'country_code' => 'CN'], ['name' => 'Huddersfield', 'country_code' => 'GB'], ['name' => 'Fukang', 'country_code' => 'CN'], ['name' => 'Slough', 'country_code' => 'GB'], ['name' => 'Bhisho', 'country_code' => 'ZA'], ['name' => 'Chillan', 'country_code' => 'CL'], ['name' => 'Abu Hulayfah', 'country_code' => 'KW'], ['name' => 'Odense', 'country_code' => 'DK'], ['name' => 'Metro', 'country_code' => 'ID'], ['name' => 'Ramat Gan', 'country_code' => 'IL'], ['name' => 'Muridke', 'country_code' => 'PK'], ['name' => 'Ipswich', 'country_code' => 'AU'], ['name' => 'Ruse', 'country_code' => 'BG'], ['name' => 'Myingyan', 'country_code' => 'MM'], ['name' => 'Haarlem', 'country_code' => 'NL'], ['name' => 'Tema', 'country_code' => 'GH'], ['name' => 'Piedras Negras', 'country_code' => 'MX'], ['name' => 'Itapetininga', 'country_code' => 'BR'], ['name' => 'Pocheon', 'country_code' => 'KR'], ['name' => 'Turgutlu', 'country_code' => 'TR'], ['name' => 'Navsari', 'country_code' => 'IN'], ['name' => 'Wau', 'country_code' => 'SS'], ['name' => 'Ube', 'country_code' => 'JP'], ['name' => 'Golcuk', 'country_code' => 'TR'], ['name' => 'Muzaffargarh', 'country_code' => 'PK'], ['name' => 'Kebili', 'country_code' => 'TN'], ['name' => 'Jizzax', 'country_code' => 'UZ'], ['name' => 'Atyrau', 'country_code' => 'KZ'], ['name' => 'Simao', 'country_code' => 'CN'], ['name' => 'Mostar', 'country_code' => 'BA'], ['name' => 'El Geneina', 'country_code' => 'SD'], ['name' => 'Jinggang', 'country_code' => 'CN'], ['name' => 'Bandar-e Mahshahr', 'country_code' => 'IR'], ['name' => 'Manchester', 'country_code' => 'US'], ['name' => 'Anaco', 'country_code' => 'VE'], ['name' => 'Sullana', 'country_code' => 'PE'], ['name' => 'Godhra', 'country_code' => 'IN'], ['name' => 'Zemun', 'country_code' => 'RS'], ['name' => 'Jutiapa', 'country_code' => 'GT'], ['name' => 'Budaun', 'country_code' => 'IN'], ['name' => 'Chittoor', 'country_code' => 'IN'], ['name' => 'San Martin Texmelucan de Labastida', 'country_code' => 'MX'], ['name' => 'Andong', 'country_code' => 'KR'], ['name' => 'Ash Shatrah', 'country_code' => 'IQ'], ['name' => 'Guadalajara', 'country_code' => 'ES'], ['name' => 'Rafsanjan', 'country_code' => 'IR'], ['name' => 'Benoni', 'country_code' => 'ZA'], ['name' => 'Lubao', 'country_code' => 'PH'], ['name' => 'Heidelberg', 'country_code' => 'DE'], ['name' => 'Al Ghardaqah', 'country_code' => 'EG'], ['name' => 'Salihli', 'country_code' => 'TR'], ['name' => 'Ndalatando', 'country_code' => 'AO'], ['name' => 'Apeldoorn', 'country_code' => 'NL'], ['name' => 'Elektrostal', 'country_code' => 'RU'], ['name' => 'Jequie', 'country_code' => 'BR'], ['name' => 'Bontang', 'country_code' => 'ID'], ['name' => 'Dong Hoi', 'country_code' => 'VN'], ['name' => 'Krishnanagar', 'country_code' => 'IN'], ['name' => 'Szeged', 'country_code' => 'HU'], ['name' => 'Sherbrooke', 'country_code' => 'CA'], ['name' => 'Solingen', 'country_code' => 'DE'], ['name' => 'Tacheng', 'country_code' => 'CN'], ['name' => 'Dhamar', 'country_code' => 'YE'], ['name' => 'San Miguel', 'country_code' => 'AR'], ['name' => 'Jose Maria Ezeiza', 'country_code' => 'AR'], ['name' => 'Bayamon', 'country_code' => 'PR'], ['name' => 'Braganca Paulista', 'country_code' => 'BR'], ['name' => 'Ra s al Khaymah', 'country_code' => 'AE'], ['name' => 'Pindamonhangaba', 'country_code' => 'BR'], ['name' => 'Dijon', 'country_code' => 'FR'], ['name' => 'Zhengding', 'country_code' => 'CN'], ['name' => 'Giron', 'country_code' => 'CO'], ['name' => 'Khost', 'country_code' => 'AF'], ['name' => 'Darmstadt', 'country_code' => 'DE'], ['name' => 'Saint-Marc', 'country_code' => 'HT'], ['name' => 'La Laguna', 'country_code' => 'ES'], ['name' => 'Arad', 'country_code' => 'RO'], ['name' => 'Khanpur', 'country_code' => 'PK'], ['name' => 'Taunggyi', 'country_code' => 'MM'], ['name' => 'Bingol', 'country_code' => 'TR'], ['name' => 'San Nicolas de los Arroyos', 'country_code' => 'AR'], ['name' => 'Huaycan', 'country_code' => 'PE'], ['name' => 'Bajos de Haina', 'country_code' => 'DO'], ['name' => 'Kramatorsk', 'country_code' => 'UA'], ['name' => 'Livorno', 'country_code' => 'IT'], ['name' => 'Shahr-e Kord', 'country_code' => 'IR'], ['name' => 'Talas', 'country_code' => 'TR'], ['name' => 'Ekibastuz', 'country_code' => 'KZ'], ['name' => 'Trece Martires City', 'country_code' => 'PH'], ['name' => 'Hat Yai', 'country_code' => 'TH'], ['name' => 'Chirchiq', 'country_code' => 'UZ'], ['name' => 'Catamarca', 'country_code' => 'AR'], ['name' => 'Jijiga', 'country_code' => 'ET'], ['name' => 'Champaign', 'country_code' => 'US'], ['name' => 'Alexandria', 'country_code' => 'US'], ['name' => 'George', 'country_code' => 'ZA'], ['name' => 'Herne', 'country_code' => 'DE'], ['name' => 'Ravenna', 'country_code' => 'IT'], ['name' => 'Higashimurayama', 'country_code' => 'JP'], ['name' => 'Hayward', 'country_code' => 'US'], ['name' => 'Abaetetuba', 'country_code' => 'BR'], ['name' => 'Ogaki', 'country_code' => 'JP'], ['name' => 'Saharsa', 'country_code' => 'IN'], ['name' => 'Stara Zagora', 'country_code' => 'BG'], ['name' => 'Chau Doc', 'country_code' => 'VN'], ['name' => 'Guimaraes', 'country_code' => 'PT'], ['name' => 'Matsuzaka', 'country_code' => 'JP'], ['name' => 'Haripur', 'country_code' => 'IN'], ['name' => 'Springfield', 'country_code' => 'US'], ['name' => 'San Cristobal', 'country_code' => 'MX'], ['name' => 'Rafael Castillo', 'country_code' => 'AR'], ['name' => 'Rio Cuarto', 'country_code' => 'AR'], ['name' => 'Bonao', 'country_code' => 'DO'], ['name' => 'Villeurbanne', 'country_code' => 'FR'], ['name' => 'Villanueva', 'country_code' => 'HN'], ['name' => 'Gojra', 'country_code' => 'PK'], ['name' => 'Teixeira de Freitas', 'country_code' => 'BR'], ['name' => 'Lakewood', 'country_code' => 'US'], ['name' => 'Oxford', 'country_code' => 'GB'], ['name' => 'Camarajibe', 'country_code' => 'BR'], ['name' => 'Lafayette', 'country_code' => 'US'], ['name' => 'Fethiye', 'country_code' => 'TR'], ['name' => 'Uiwang', 'country_code' => 'KR'], ['name' => 'Navojoa', 'country_code' => 'MX'], ['name' => 'Calama', 'country_code' => 'CL'], ['name' => 'Erzincan', 'country_code' => 'TR'], ['name' => 'Chaoshan', 'country_code' => 'CN'], ['name' => 'Middelburg', 'country_code' => 'ZA'], ['name' => 'Lajes', 'country_code' => 'BR'], ['name' => 'Salzburg', 'country_code' => 'AT'], ['name' => 'Mandi Bahauddin', 'country_code' => 'PK'], ['name' => 'Zonguldak', 'country_code' => 'TR'], ['name' => 'Isiro', 'country_code' => 'CD'], ['name' => 'El Eulma', 'country_code' => 'DZ'], ['name' => 'Jiutepec', 'country_code' => 'MX'], ['name' => 'Batumi', 'country_code' => 'GE'], ['name' => 'Pathankot', 'country_code' => 'IN'], ['name' => 'Nazilli', 'country_code' => 'TR'], ['name' => 'Frederick', 'country_code' => 'US'], ['name' => 'Pitesti', 'country_code' => 'RO'], ['name' => 'Chlef', 'country_code' => 'DZ'], ['name' => 'Chetumal', 'country_code' => 'MX'], ['name' => 'Angers', 'country_code' => 'FR'], ['name' => 'Hanam', 'country_code' => 'KR'], ['name' => 'Matagalpa', 'country_code' => 'NI'], ['name' => 'Vidisha', 'country_code' => 'IN'], ['name' => 'Paranagua', 'country_code' => 'BR'], ['name' => 'Cam Pha', 'country_code' => 'VN'], ['name' => 'Esmeraldas', 'country_code' => 'EC'], ['name' => 'Kariya', 'country_code' => 'JP'], ['name' => 'Lake Charles', 'country_code' => 'US'], ['name' => 'Odessa', 'country_code' => 'US'], ['name' => 'Mexico', 'country_code' => 'PH'], ['name' => 'Cagliari', 'country_code' => 'IT'], ['name' => 'Zaanstad', 'country_code' => 'NL'], ['name' => 'Hitachi-Naka', 'country_code' => 'JP'], ['name' => 'Nalgonda', 'country_code' => 'IN'], ['name' => 'Ordu', 'country_code' => 'TR'], ['name' => 'Tuscaloosa', 'country_code' => 'US'], ['name' => 'Horad Barysaw', 'country_code' => 'BY'], ['name' => 'Souk Ahras', 'country_code' => 'DZ'], ['name' => 'Neuss', 'country_code' => 'DE'], ['name' => 'Rio das Ostras', 'country_code' => 'BR'], ['name' => 'Miskolc', 'country_code' => 'HU'], ['name' => 'Warner Robins', 'country_code' => 'US'], ['name' => 'Bartin', 'country_code' => 'TR'], ['name' => 'Palmdale', 'country_code' => 'US'], ['name' => 'Melitopol', 'country_code' => 'UA'], ['name' => 'Cadiz', 'country_code' => 'PH'], ['name' => 'Zango', 'country_code' => 'NG'], ['name' => 'Concepcion', 'country_code' => 'PH'], ['name' => 'Hollywood', 'country_code' => 'US'], ['name' => 'Balurghat', 'country_code' => 'IN'], ['name' => 'Midland', 'country_code' => 'US'], ['name' => 'Surigao', 'country_code' => 'PH'], ['name' => 'Dibrugarh', 'country_code' => 'IN'], ['name' => 'Mahajanga', 'country_code' => 'MG'], ['name' => 'Pikit', 'country_code' => 'PH'], ['name' => 'Salavat', 'country_code' => 'RU'], ['name' => 'Bandirma', 'country_code' => 'TR'], ['name' => 'Leesburg', 'country_code' => 'US'], ['name' => 'Tuguegarao', 'country_code' => 'PH'], ['name' => 'Gandajika', 'country_code' => 'CD'], ['name' => 'Silao', 'country_code' => 'MX'], ['name' => 'San Miguel', 'country_code' => 'PH'], ['name' => 'Regensburg', 'country_code' => 'DE'], ['name' => 'Port Arthur', 'country_code' => 'US'], ['name' => 'York', 'country_code' => 'GB'], ['name' => 'Palo Negro', 'country_code' => 'VE'], ['name' => 'Almetyevsk', 'country_code' => 'RU'], ['name' => 'Osorno', 'country_code' => 'CL'], ['name' => 'Lucapa', 'country_code' => 'AO'], ['name' => 'Kafr ash Shaykh', 'country_code' => 'EG'], ['name' => 'Tama', 'country_code' => 'JP'], ['name' => 'Seogwipo', 'country_code' => 'KR'], ['name' => 'Tochigi', 'country_code' => 'JP'], ['name' => 'Moanda', 'country_code' => 'CD'], ['name' => 'Barreiras', 'country_code' => 'BR'], ['name' => 'Tete', 'country_code' => 'MZ'], ['name' => 'Mzuzu', 'country_code' => 'MW'], ['name' => 'Parnaiba', 'country_code' => 'BR'], ['name' => 'Fyzabad', 'country_code' => 'IN'], ['name' => 'Harrow', 'country_code' => 'GB'], ['name' => 'Poole', 'country_code' => 'GB'], ['name' => 'Hoeryong', 'country_code' => 'KP'], ['name' => 'Kirsehir', 'country_code' => 'TR'], ['name' => 'Muskegon', 'country_code' => 'US'], ['name' => 'Sievierodonetsk', 'country_code' => 'UA'], ['name' => 'Sinpo', 'country_code' => 'KP'], ['name' => 'Dutse', 'country_code' => 'NG'], ['name' => 'Baliuag', 'country_code' => 'PH'], ['name' => 'Silchar', 'country_code' => 'IN'], ['name' => 'Macon', 'country_code' => 'US'], ['name' => 'Polomolok', 'country_code' => 'PH'], ['name' => 'Cairns', 'country_code' => 'AU'], ['name' => 'Yilan', 'country_code' => 'TW'], ['name' => 'Papantla de Olarte', 'country_code' => 'MX'], ['name' => 'Kansas City', 'country_code' => 'US'], ['name' => 'Dahuaishu', 'country_code' => 'CN'], ['name' => 'Ciudad de Melilla', 'country_code' => 'ES'], ['name' => 'Shantipur', 'country_code' => 'IN'], ['name' => 'Golmeh', 'country_code' => 'IR'], ['name' => 'Peristeri', 'country_code' => 'GR'], ['name' => 'Ueda', 'country_code' => 'JP'], ['name' => 'Hindupur', 'country_code' => 'IN'], ['name' => 'Sunnyvale', 'country_code' => 'US'], ['name' => 'Fengyicun', 'country_code' => 'CN'], ['name' => 'Baubau', 'country_code' => 'ID'], ['name' => 'Mudon', 'country_code' => 'MM'], ['name' => 'Taza', 'country_code' => 'MA'], ['name' => 'Settat', 'country_code' => 'MA'], ['name' => 'Tulancingo', 'country_code' => 'MX'], ['name' => 'Erode', 'country_code' => 'IN'], ['name' => 'Midsayap', 'country_code' => 'PH'], ['name' => 'Gwangyang', 'country_code' => 'KR'], ['name' => 'Tororo', 'country_code' => 'UG'], ['name' => 'Kukichuo', 'country_code' => 'JP'], ['name' => 'Gonbad-e Kavus', 'country_code' => 'IR'], ['name' => 'Al Manaqil', 'country_code' => 'SD'], ['name' => 'Miass', 'country_code' => 'RU'], ['name' => 'Chinandega', 'country_code' => 'NI'], ['name' => 'Nimes', 'country_code' => 'FR'], ['name' => 'Saint Albans', 'country_code' => 'GB'], ['name' => 'Nakhodka', 'country_code' => 'RU'], ['name' => 'Quevedo', 'country_code' => 'EC'], ['name' => 'Bintulu', 'country_code' => 'MY'], ['name' => 'Pomona', 'country_code' => 'US'], ['name' => 'Siem Reap', 'country_code' => 'KH'], ['name' => 'Foggia', 'country_code' => 'IT'], ['name' => 'Escondido', 'country_code' => 'US'], ['name' => 'Cao Lanh', 'country_code' => 'VN'], ['name' => 'Riobamba', 'country_code' => 'EC'], ['name' => 'Vryheid', 'country_code' => 'ZA'], ['name' => 'Benguela', 'country_code' => 'AO'], ['name' => 'As Suwayhirah as Sahil', 'country_code' => 'OM'], ['name' => 'Paderborn', 'country_code' => 'DE'], ['name' => 'Sayama', 'country_code' => 'JP'], ['name' => 'Zamora', 'country_code' => 'MX'], ['name' => 'Manzanillo', 'country_code' => 'CU'], ['name' => 'Pasadena', 'country_code' => 'US'], ['name' => 'Florencio Varela', 'country_code' => 'AR'], ['name' => 'Badajoz', 'country_code' => 'ES'], ['name' => 'Talcahuano', 'country_code' => 'CL'], ['name' => 'Patos de Minas', 'country_code' => 'BR'], ['name' => 'Copiapo', 'country_code' => 'CL'], ['name' => 'M Sila', 'country_code' => 'DZ'], ['name' => 'Kragujevac', 'country_code' => 'RS'], ['name' => 'Pointe-a-Pitre', 'country_code' => 'GP'], ['name' => 'Rimini', 'country_code' => 'IT'], ['name' => 'Dundee', 'country_code' => 'GB'], ['name' => 'Ocumare del Tuy', 'country_code' => 'VE'], ['name' => 'Komaki', 'country_code' => 'JP'], ['name' => 'Valdivia', 'country_code' => 'CL'], ['name' => 'Gulu', 'country_code' => 'UG'], ['name' => 'Shimotoda', 'country_code' => 'JP'], ['name' => 'Shahrud', 'country_code' => 'IR'], ['name' => 'Kutaisi', 'country_code' => 'GE'], ['name' => 'Kashikishi', 'country_code' => 'ZM'], ['name' => 'Sumbawanga', 'country_code' => 'TZ'], ['name' => 'Keren', 'country_code' => 'ER'], ['name' => 'Odivelas', 'country_code' => 'PT'], ['name' => 'Centro Habana', 'country_code' => 'CU'], ['name' => 'New Bedford', 'country_code' => 'US'], ['name' => 'Jamuria', 'country_code' => 'IN'], ['name' => 'Salamanca', 'country_code' => 'ES'], ['name' => 'Sariaya', 'country_code' => 'PH'], ['name' => 'Potchefstroom', 'country_code' => 'ZA'], ['name' => 'Arnhem', 'country_code' => 'NL'], ['name' => 'Concordia', 'country_code' => 'AR'], ['name' => 'Abbottabad', 'country_code' => 'PK'], ['name' => 'Delicias', 'country_code' => 'MX'], ['name' => 'Mallawi', 'country_code' => 'EG'], ['name' => 'Agri', 'country_code' => 'TR'], ['name' => 'Amasya', 'country_code' => 'TR'], ['name' => 'Lang Son', 'country_code' => 'VN'], ['name' => 'Iruma', 'country_code' => 'JP'], ['name' => 'Kastamonu', 'country_code' => 'TR'], ['name' => 'Marvdasht', 'country_code' => 'IR'], ['name' => 'Marbella', 'country_code' => 'ES'], ['name' => 'Kanasin', 'country_code' => 'MX'], ['name' => 'Chingola', 'country_code' => 'ZM'], ['name' => 'Dongsheng', 'country_code' => 'CN'], ['name' => 'Fairfield', 'country_code' => 'US'], ['name' => 'Mostaganem', 'country_code' => 'DZ'], ['name' => 'Habra', 'country_code' => 'IN'], ['name' => 'Mauli', 'country_code' => 'IN'], ['name' => 'Sibiu', 'country_code' => 'RO'], ['name' => 'Naperville', 'country_code' => 'US'], ['name' => 'Quilpue', 'country_code' => 'CL'], ['name' => 'Yonago', 'country_code' => 'JP'], ['name' => 'Dolores Hidalgo Cuna de la Independencia Nacional', 'country_code' => 'MX'], ['name' => 'Kopeysk', 'country_code' => 'RU'], ['name' => 'Luleburgaz', 'country_code' => 'TR'], ['name' => 'Al Hawiyah', 'country_code' => 'SA'], ['name' => 'Bellevue', 'country_code' => 'US'], ['name' => 'Binghamton', 'country_code' => 'US'], ['name' => 'Nchelenge', 'country_code' => 'ZM'], ['name' => 'Negombo', 'country_code' => 'LK'], ['name' => 'Ambala', 'country_code' => 'IN'], ['name' => 'Disuq', 'country_code' => 'EG'], ['name' => 'Turbat', 'country_code' => 'PK'], ['name' => 'Mangghystau', 'country_code' => 'KZ'], ['name' => 'Malakal', 'country_code' => 'SS'], ['name' => 'Bacau', 'country_code' => 'RO'], ['name' => 'Elkhart', 'country_code' => 'US'], ['name' => 'Topeka', 'country_code' => 'US'], ['name' => 'Mogi Guacu', 'country_code' => 'BR'], ['name' => 'Man', 'country_code' => 'CI'], ['name' => 'Joliet', 'country_code' => 'US'], ['name' => 'Pyatigorsk', 'country_code' => 'RU'], ['name' => 'Clermont-Ferrand', 'country_code' => 'FR'], ['name' => 'Moshi', 'country_code' => 'TZ'], ['name' => 'Bizerte', 'country_code' => 'TN'], ['name' => 'Dar a', 'country_code' => 'SY'], ['name' => 'Rubtsovsk', 'country_code' => 'RU'], ['name' => 'Cam Ranh', 'country_code' => 'VN'], ['name' => 'Wamba', 'country_code' => 'CD'], ['name' => 'Franco da Rocha', 'country_code' => 'BR'], ['name' => 'Odintsovo', 'country_code' => 'RU'], ['name' => 'Dadu', 'country_code' => 'PK'], ['name' => 'Sagay', 'country_code' => 'PH'], ['name' => 'Balti', 'country_code' => 'MD'], ['name' => 'Misato', 'country_code' => 'JP'], ['name' => 'Pleiku', 'country_code' => 'VN'], ['name' => 'Araucaria', 'country_code' => 'BR'], ['name' => 'San Juan', 'country_code' => 'PH'], ['name' => 'Mejicanos', 'country_code' => 'SV'], ['name' => 'Colina', 'country_code' => 'CL'], ['name' => 'Kolomna', 'country_code' => 'RU'], ['name' => 'Larisa', 'country_code' => 'GR'], ['name' => 'Yima', 'country_code' => 'CN'], ['name' => 'Santo Agostinho', 'country_code' => 'BR'], ['name' => 'Beaumont', 'country_code' => 'US'], ['name' => 'Sinop', 'country_code' => 'BR'], ['name' => 'Garcia', 'country_code' => 'MX'], ['name' => 'Bani', 'country_code' => 'DO'], ['name' => 'Xintang', 'country_code' => 'CN'], ['name' => 'Matanzas', 'country_code' => 'CU'], ['name' => 'Ilagan', 'country_code' => 'PH'], ['name' => 'David', 'country_code' => 'PA'], ['name' => 'Le Mans', 'country_code' => 'FR'], ['name' => 'San Justo', 'country_code' => 'AR'], ['name' => 'Quchan', 'country_code' => 'IR'], ['name' => 'Berezniki', 'country_code' => 'RU'], ['name' => 'Porto Seguro', 'country_code' => 'BR'], ['name' => 'Shillong', 'country_code' => 'IN'], ['name' => 'Eregli', 'country_code' => 'TR'], ['name' => 'Durres', 'country_code' => 'AL'], ['name' => 'Yalova', 'country_code' => 'TR'], ['name' => 'Huelva', 'country_code' => 'ES'], ['name' => 'Kusatsu', 'country_code' => 'JP'], ['name' => 'Villa de Cura', 'country_code' => 'VE'], ['name' => 'Kakamigahara', 'country_code' => 'JP'], ['name' => 'Paterson', 'country_code' => 'US'], ['name' => 'Merced', 'country_code' => 'US'], ['name' => 'Kolar', 'country_code' => 'IN'], ['name' => 'Cape Coast', 'country_code' => 'GH'], ['name' => 'Al Mukalla', 'country_code' => 'YE'], ['name' => 'Flores', 'country_code' => 'GT'], ['name' => 'Comayagua', 'country_code' => 'HN'], ['name' => 'Dongxing', 'country_code' => 'CN'], ['name' => 'Barranca', 'country_code' => 'PE'], ['name' => 'Khasavyurt', 'country_code' => 'RU'], ['name' => 'Saguenay', 'country_code' => 'CA'], ['name' => 'Tuxtepec', 'country_code' => 'MX'], ['name' => 'Kumba', 'country_code' => 'CM'], ['name' => 'Barrechid', 'country_code' => 'MA'], ['name' => 'Bharatpur', 'country_code' => 'NP'], ['name' => 'Florencia', 'country_code' => 'CO'], ['name' => 'Pueblo', 'country_code' => 'US'], ['name' => 'Coimbra', 'country_code' => 'PT'], ['name' => 'Ajdabiya', 'country_code' => 'LY'], ['name' => 'Tyler', 'country_code' => 'US'], ['name' => 'Ciego de Avila', 'country_code' => 'CU'], ['name' => 'San Jose', 'country_code' => 'PH'], ['name' => 'Pecs', 'country_code' => 'HU'], ['name' => 'Ghazni', 'country_code' => 'AF'], ['name' => 'Blackpool', 'country_code' => 'GB'], ['name' => 'Nawabganj', 'country_code' => 'BD'], ['name' => 'Altay', 'country_code' => 'CN'], ['name' => 'El Progreso', 'country_code' => 'HN'], ['name' => 'Torrance', 'country_code' => 'US'], ['name' => 'Pemba', 'country_code' => 'MZ'], ['name' => 'Tuxpam de Rodriguez Cano', 'country_code' => 'MX'], ['name' => 'Jau', 'country_code' => 'BR'], ['name' => 'Touggourt', 'country_code' => 'DZ'], ['name' => 'Nevsehir', 'country_code' => 'TR'], ['name' => 'Levis', 'country_code' => 'CA'], ['name' => 'Bhimavaram', 'country_code' => 'IN'], ['name' => 'Bilbays', 'country_code' => 'EG'], ['name' => 'Jinjiang', 'country_code' => 'CN'], ['name' => 'Tottenham', 'country_code' => 'GB'], ['name' => 'Aix-en-Provence', 'country_code' => 'FR'], ['name' => 'Cizre', 'country_code' => 'TR'], ['name' => 'Los Angeles', 'country_code' => 'CL'], ['name' => 'Gisenyi', 'country_code' => 'RW'], ['name' => 'Boca Chica', 'country_code' => 'DO'], ['name' => 'Yuma', 'country_code' => 'US'], ['name' => 'Telford', 'country_code' => 'GB'], ['name' => 'Toledo', 'country_code' => 'BR'], ['name' => 'Lichinga', 'country_code' => 'MZ'], ['name' => 'Ozamiz City', 'country_code' => 'PH'], ['name' => 'Moundou', 'country_code' => 'TD'], ['name' => 'Tetovo', 'country_code' => 'MK'], ['name' => 'Nizip', 'country_code' => 'TR'], ['name' => 'Maykop', 'country_code' => 'RU'], ['name' => 'Bahawalnagar', 'country_code' => 'PK'], ['name' => 'Fukayacho', 'country_code' => 'JP'], ['name' => 'Lausanne', 'country_code' => 'CH'], ['name' => 'Kamalshahr', 'country_code' => 'IR'], ['name' => 'Gweru', 'country_code' => 'ZW'], ['name' => 'Kelowna', 'country_code' => 'CA'], ['name' => 'Metairie', 'country_code' => 'US'], ['name' => 'Irakleio', 'country_code' => 'GR'], ['name' => 'Mandsaur', 'country_code' => 'IN'], ['name' => 'Rybnik', 'country_code' => 'PL'], ['name' => 'Nong an', 'country_code' => 'CN'], ['name' => 'Inezgane', 'country_code' => 'MA'], ['name' => 'Rize', 'country_code' => 'TR'], ['name' => 'Vlore', 'country_code' => 'AL'], ['name' => 'Jahrom', 'country_code' => 'IR'], ['name' => 'Surprise', 'country_code' => 'US'], ['name' => 'Columbia', 'country_code' => 'US'], ['name' => 'Colima', 'country_code' => 'MX'], ['name' => 'Athens', 'country_code' => 'US'], ['name' => 'Roseville', 'country_code' => 'US'], ['name' => 'Thornton', 'country_code' => 'US'], ['name' => 'Khuzdar', 'country_code' => 'PK'], ['name' => 'Tepatitlan de Morelos', 'country_code' => 'MX'], ['name' => 'Abbotsford', 'country_code' => 'CA'], ['name' => 'Mati', 'country_code' => 'PH'], ['name' => 'Valle de Santiago', 'country_code' => 'MX'], ['name' => 'Ruda Slaska', 'country_code' => 'PL'], ['name' => 'Miramar', 'country_code' => 'US'], ['name' => 'Batu Pahat', 'country_code' => 'MY'], ['name' => 'Pasadena', 'country_code' => 'US'], ['name' => 'Kovrov', 'country_code' => 'RU'], ['name' => 'Teofilo Otoni', 'country_code' => 'BR'], ['name' => 'Mesquite', 'country_code' => 'US'], ['name' => 'Kokubunji', 'country_code' => 'JP'], ['name' => 'Shizhaobi', 'country_code' => 'CN'], ['name' => 'Kumbakonam', 'country_code' => 'IN'], ['name' => 'Kidapawan', 'country_code' => 'PH'], ['name' => 'Capas', 'country_code' => 'PH'], ['name' => 'Olathe', 'country_code' => 'US'], ['name' => 'Santa Maria', 'country_code' => 'US'], ['name' => 'Masaya', 'country_code' => 'NI'], ['name' => 'Medea', 'country_code' => 'DZ'], ['name' => 'Yaritagua', 'country_code' => 'VE'], ['name' => 'San Jose', 'country_code' => 'PH'], ['name' => 'Houma', 'country_code' => 'US'], ['name' => 'Samarra ', 'country_code' => 'IQ'], ['name' => 'Fusagasuga', 'country_code' => 'CO'], ['name' => 'Sale', 'country_code' => 'GB'], ['name' => 'Al Aqabah', 'country_code' => 'JO'], ['name' => 'Torbat-e Heydariyeh', 'country_code' => 'IR'], ['name' => 'Momostenango', 'country_code' => 'GT'], ['name' => 'Ituzaingo', 'country_code' => 'AR'], ['name' => 'Dawei', 'country_code' => 'MM'], ['name' => 'Boulogne-Billancourt', 'country_code' => 'FR'], ['name' => 'Zielona Gora', 'country_code' => 'PL'], ['name' => 'Kuwana', 'country_code' => 'JP'], ['name' => 'Atbara', 'country_code' => 'SD'], ['name' => 'Tours', 'country_code' => 'FR'], ['name' => 'Pakpattan', 'country_code' => 'PK'], ['name' => 'Shizuishan', 'country_code' => 'CN'], ['name' => 'Chicacole', 'country_code' => 'IN'], ['name' => 'Botucatu', 'country_code' => 'BR'], ['name' => 'Dhahran', 'country_code' => 'SA'], ['name' => 'Pabna', 'country_code' => 'BD'], ['name' => 'Cameta', 'country_code' => 'BR'], ['name' => 'San Miguel de Allende', 'country_code' => 'MX'], ['name' => 'Koga', 'country_code' => 'JP'], ['name' => 'Coquitlam', 'country_code' => 'CA'], ['name' => 'Carrollton', 'country_code' => 'US'], ['name' => 'Tan An', 'country_code' => 'VN'], ['name' => 'Grand Junction', 'country_code' => 'US'], ['name' => 'Ishizaki', 'country_code' => 'JP'], ['name' => 'Kokshetau', 'country_code' => 'KZ'], ['name' => 'Zacatecas', 'country_code' => 'MX'], ['name' => 'Barahona', 'country_code' => 'DO'], ['name' => 'Piranshahr', 'country_code' => 'IR'], ['name' => 'Tiruvannamalai', 'country_code' => 'IN'], ['name' => 'Tarragona', 'country_code' => 'ES'], ['name' => 'Amiens', 'country_code' => 'FR'], ['name' => 'Umtata', 'country_code' => 'ZA'], ['name' => 'Charleston', 'country_code' => 'US'], ['name' => 'Orange', 'country_code' => 'US'], ['name' => 'Fullerton', 'country_code' => 'US'], ['name' => 'Sancti Spiritus', 'country_code' => 'CU'], ['name' => 'Barbacena', 'country_code' => 'BR'], ['name' => 'Bat Yam', 'country_code' => 'IL'], ['name' => 'Boca del Rio', 'country_code' => 'MX'], ['name' => 'Zama', 'country_code' => 'JP'], ['name' => 'Mojokerto', 'country_code' => 'ID'], ['name' => 'Darwin', 'country_code' => 'AU'], ['name' => 'Ingolstadt', 'country_code' => 'DE'], ['name' => 'Mandya', 'country_code' => 'IN'], ['name' => 'Boulogne-sur-Mer', 'country_code' => 'FR'], ['name' => 'Greeley', 'country_code' => 'US'], ['name' => 'Ch ungmu', 'country_code' => 'KR'], ['name' => 'Al Khmissat', 'country_code' => 'MA'], ['name' => 'Birganj', 'country_code' => 'NP'], ['name' => 'Igdir', 'country_code' => 'TR'], ['name' => 'Palhoca', 'country_code' => 'BR'], ['name' => 'Lira', 'country_code' => 'UG'], ['name' => 'Negage', 'country_code' => 'AO'], ['name' => 'Gunungsitoli', 'country_code' => 'ID'], ['name' => 'Danao', 'country_code' => 'PH'], ['name' => 'Sabara', 'country_code' => 'BR'], ['name' => 'Yunxian Chengguanzhen', 'country_code' => 'CN'], ['name' => 'Atibaia', 'country_code' => 'BR'], ['name' => 'Jyvaskyla', 'country_code' => 'FI'], ['name' => 'Bankura', 'country_code' => 'IN'], ['name' => 'Vila Franca de Xira', 'country_code' => 'PT'], ['name' => 'Quillacollo', 'country_code' => 'BO'], ['name' => 'Garanhuns', 'country_code' => 'BR'], ['name' => 'Santa Maria Texmelucan', 'country_code' => 'MX'], ['name' => 'Livingstone', 'country_code' => 'ZM'], ['name' => 'Toowoomba', 'country_code' => 'AU'], ['name' => 'Bima', 'country_code' => 'ID'], ['name' => 'Kisarazu', 'country_code' => 'JP'], ['name' => 'Porto Amboim', 'country_code' => 'AO'], ['name' => 'Kigoma', 'country_code' => 'TZ'], ['name' => 'Maia', 'country_code' => 'PT'], ['name' => 'Yaizu', 'country_code' => 'JP'], ['name' => 'Encarnacion', 'country_code' => 'PY'], ['name' => 'Carolina', 'country_code' => 'PR'], ['name' => 'Marivan', 'country_code' => 'IR'], ['name' => 'Santa Tecla', 'country_code' => 'SV'], ['name' => 'Inazawa', 'country_code' => 'JP'], ['name' => 'Uppsala', 'country_code' => 'SE'], ['name' => 'Chech on', 'country_code' => 'KR'], ['name' => 'Jinotega', 'country_code' => 'NI'], ['name' => 'Tiraspol', 'country_code' => 'MD'], ['name' => 'Apucarana', 'country_code' => 'BR'], ['name' => 'Pageralam', 'country_code' => 'ID'], ['name' => 'Tizi Ouzou', 'country_code' => 'DZ'], ['name' => 'Giresun', 'country_code' => 'TR'], ['name' => 'Termiz', 'country_code' => 'UZ'], ['name' => 'Zinacantepec', 'country_code' => 'MX'], ['name' => 'Targu-Mures', 'country_code' => 'RO'], ['name' => 'Las Cruces', 'country_code' => 'US'], ['name' => 'Salerno', 'country_code' => 'IT'], ['name' => ' s-Hertogenbosch', 'country_code' => 'NL'], ['name' => 'Panama City', 'country_code' => 'US'], ['name' => 'Blitar', 'country_code' => 'ID'], ['name' => 'Harlingen', 'country_code' => 'US'], ['name' => 'Chiang Mai', 'country_code' => 'TH'], ['name' => 'Brighton', 'country_code' => 'GB'], ['name' => 'Dos Hermanas', 'country_code' => 'ES'], ['name' => 'Tobruk', 'country_code' => 'LY'], ['name' => 'Tauranga', 'country_code' => 'NZ'], ['name' => 'Pyay', 'country_code' => 'MM'], ['name' => 'Ramapo', 'country_code' => 'US'], ['name' => 'Cartago', 'country_code' => 'CO'], ['name' => 'Santiago', 'country_code' => 'PH'], ['name' => 'May Pen', 'country_code' => 'JM'], ['name' => 'Urganch', 'country_code' => 'UZ'], ['name' => 'Zakhu', 'country_code' => 'IQ'], ['name' => 'Dumaguete City', 'country_code' => 'PH'], ['name' => 'West Valley City', 'country_code' => 'US'], ['name' => 'Shuangcheng', 'country_code' => 'CN'], ['name' => 'Andimeshk', 'country_code' => 'IR'], ['name' => 'Santa Rita', 'country_code' => 'BR'], ['name' => 'Ksar El Kebir', 'country_code' => 'MA'], ['name' => 'Consolacion', 'country_code' => 'PH'], ['name' => 'Tabaco', 'country_code' => 'PH'], ['name' => 'Nakhon Ratchasima', 'country_code' => 'TH'], ['name' => 'El Oued', 'country_code' => 'DZ'], ['name' => 'Jazan', 'country_code' => 'SA'], ['name' => 'Ashqelon', 'country_code' => 'IL'], ['name' => 'Laghouat', 'country_code' => 'DZ'], ['name' => 'Moron', 'country_code' => 'MN'], ['name' => 'Shahreza', 'country_code' => 'IR'], ['name' => 'Zabol', 'country_code' => 'IR'], ['name' => 'Nasugbu', 'country_code' => 'PH'], ['name' => 'Hampton', 'country_code' => 'US'], ['name' => 'Araruama', 'country_code' => 'BR'], ['name' => 'Arayat', 'country_code' => 'PH'], ['name' => 'Calapan', 'country_code' => 'PH'], ['name' => 'Trois-Rivieres', 'country_code' => 'CA'], ['name' => 'Urdaneta', 'country_code' => 'PH'], ['name' => 'Zhangmu Touwei', 'country_code' => 'CN'], ['name' => 'Milagro', 'country_code' => 'EC'], ['name' => 'Heroica Guaymas', 'country_code' => 'MX'], ['name' => 'Minglanilla', 'country_code' => 'PH'], ['name' => 'Apatzingan de la Constitucion', 'country_code' => 'MX'], ['name' => 'Batticaloa', 'country_code' => 'LK'], ['name' => 'Navoiy', 'country_code' => 'UZ'], ['name' => 'Rehovot', 'country_code' => 'IL'], ['name' => 'Campo Largo', 'country_code' => 'BR'], ['name' => 'Idfu', 'country_code' => 'EG'], ['name' => 'Tando Allahyar', 'country_code' => 'PK'], ['name' => 'Warren', 'country_code' => 'US'], ['name' => 'Mauldin', 'country_code' => 'US'], ['name' => 'Bloomington', 'country_code' => 'US'], ['name' => 'Enfield', 'country_code' => 'GB'], ['name' => 'Apopa', 'country_code' => 'SV'], ['name' => 'Segou', 'country_code' => 'ML'], ['name' => 'Coral Springs', 'country_code' => 'US'], ['name' => 'Innsbruck', 'country_code' => 'AT'], ['name' => 'Ome', 'country_code' => 'JP'], ['name' => 'Battambang', 'country_code' => 'KH'], ['name' => 'Jijel', 'country_code' => 'DZ'], ['name' => 'Hassan', 'country_code' => 'IN'], ['name' => 'Pitalito', 'country_code' => 'CO'], ['name' => 'Round Rock', 'country_code' => 'US'], ['name' => 'Abiko', 'country_code' => 'JP'], ['name' => 'Yakima', 'country_code' => 'US'], ['name' => 'Khorramshahr', 'country_code' => 'IR'], ['name' => 'Ouargla', 'country_code' => 'DZ'], ['name' => 'Tra Vinh', 'country_code' => 'VN'], ['name' => 'Ninh Binh', 'country_code' => 'VN'], ['name' => 'San Carlos', 'country_code' => 'PH'], ['name' => 'Gyor', 'country_code' => 'HU'], ['name' => 'Odemis', 'country_code' => 'TR'], ['name' => 'Kamez', 'country_code' => 'AL'], ['name' => 'Ferrara', 'country_code' => 'IT'], ['name' => 'San Luis', 'country_code' => 'GT'], ['name' => 'Ibarra', 'country_code' => 'EC'], ['name' => 'Sterling Heights', 'country_code' => 'US'], ['name' => 'Stavanger', 'country_code' => 'NO'], ['name' => 'Yavatmal', 'country_code' => 'IN'], ['name' => 'Kent', 'country_code' => 'US'], ['name' => 'Karabuk', 'country_code' => 'TR'], ['name' => 'High Wycombe', 'country_code' => 'GB'], ['name' => 'Calabozo', 'country_code' => 'VE'], ['name' => 'Lae', 'country_code' => 'PG'], ['name' => 'Pilibhit', 'country_code' => 'IN'], ['name' => 'Guelph', 'country_code' => 'CA'], ['name' => 'Palghat', 'country_code' => 'IN'], ['name' => 'Sogamoso', 'country_code' => 'CO'], ['name' => 'Buea', 'country_code' => 'CM'], ['name' => 'Nanqiaotou', 'country_code' => 'CN'], ['name' => 'Ji-Parana', 'country_code' => 'BR'], ['name' => 'Rijeka', 'country_code' => 'HR'], ['name' => 'Santa Cruz do Sul', 'country_code' => 'BR'], ['name' => 'Spanish Town', 'country_code' => 'JM'], ['name' => 'Palakollu', 'country_code' => 'IN'], ['name' => 'Dipolog', 'country_code' => 'PH'], ['name' => 'Narita', 'country_code' => 'JP'], ['name' => 'Surat Thani', 'country_code' => 'TH'], ['name' => 'Relizane', 'country_code' => 'DZ'], ['name' => 'Malasiqui', 'country_code' => 'PH'], ['name' => 'Cienaga', 'country_code' => 'CO'], ['name' => 'Parepare', 'country_code' => 'ID'], ['name' => 'Vasteras', 'country_code' => 'SE'], ['name' => 'Hagonoy', 'country_code' => 'PH'], ['name' => 'Torrejon de Ardoz', 'country_code' => 'ES'], ['name' => 'Burlington', 'country_code' => 'US'], ['name' => 'Nueva Concepcion', 'country_code' => 'GT'], ['name' => 'La Trinidad', 'country_code' => 'PH'], ['name' => 'Abohar', 'country_code' => 'IN'], ['name' => 'Tychy', 'country_code' => 'PL'], ['name' => 'Marand', 'country_code' => 'IR'], ['name' => 'Quibdo', 'country_code' => 'CO'], ['name' => 'Girardot', 'country_code' => 'CO'], ['name' => 'Pouso Alegre', 'country_code' => 'BR'], ['name' => 'Kanchrapara', 'country_code' => 'IN'], ['name' => 'Rustavi', 'country_code' => 'GE'], ['name' => 'Bellingham', 'country_code' => 'US'], ['name' => 'Itapipoca', 'country_code' => 'BR'], ['name' => 'Onomichi', 'country_code' => 'JP'], ['name' => 'Kislovodsk', 'country_code' => 'RU'], ['name' => 'Maranguape', 'country_code' => 'BR'], ['name' => 'Kozan', 'country_code' => 'TR'], ['name' => 'Udon Thani', 'country_code' => 'TH'], ['name' => 'Jiroft', 'country_code' => 'IR'], ['name' => 'Tabora', 'country_code' => 'TZ'], ['name' => 'Santa Clara', 'country_code' => 'US'], ['name' => 'Vitoria de Santo Antao', 'country_code' => 'BR'], ['name' => 'Cayirova', 'country_code' => 'TR'], ['name' => 'Sannar', 'country_code' => 'SD'], ['name' => 'Lucheng', 'country_code' => 'CN'], ['name' => 'Racine', 'country_code' => 'US'], ['name' => 'Greenville', 'country_code' => 'US'], ['name' => 'Zhaozhou', 'country_code' => 'CN'], ['name' => 'Saida', 'country_code' => 'DZ'], ['name' => 'Esteli', 'country_code' => 'NI'], ['name' => 'Taldyqorghan', 'country_code' => 'KZ'], ['name' => 'Conselheiro Lafaiete', 'country_code' => 'BR'], ['name' => 'Cambridge', 'country_code' => 'CA'], ['name' => 'Calabayan', 'country_code' => 'PH'], ['name' => 'Baidoa', 'country_code' => 'SO'], ['name' => 'Jaramana', 'country_code' => 'SY'], ['name' => 'Fengcheng', 'country_code' => 'CN'], ['name' => 'Furth', 'country_code' => 'DE'], ['name' => 'Serpukhov', 'country_code' => 'RU'], ['name' => 'Bolton', 'country_code' => 'GB'], ['name' => 'Tukuyu', 'country_code' => 'TZ'], ['name' => 'Stamford', 'country_code' => 'US'], ['name' => 'Villa Alemana', 'country_code' => 'CL'], ['name' => 'Chinguar', 'country_code' => 'AO'], ['name' => 'Tariba', 'country_code' => 'VE'], ['name' => 'Wurzburg', 'country_code' => 'DE'], ['name' => 'Songnim', 'country_code' => 'KP'], ['name' => 'Mansa', 'country_code' => 'ZM'], ['name' => 'Elizabeth', 'country_code' => 'US'], ['name' => 'Opole', 'country_code' => 'PL'], ['name' => 'Novocheboksarsk', 'country_code' => 'RU'], ['name' => 'Araras', 'country_code' => 'BR'], ['name' => 'Petapa', 'country_code' => 'GT'], ['name' => 'Romford', 'country_code' => 'GB'], ['name' => 'Mit Ghamr', 'country_code' => 'EG'], ['name' => 'Puno', 'country_code' => 'PE'], ['name' => 'Jaranwala', 'country_code' => 'PK'], ['name' => 'Salto', 'country_code' => 'UY'], ['name' => 'Newport', 'country_code' => 'GB'], ['name' => 'Ahmadpur East', 'country_code' => 'PK'], ['name' => 'Alagoinhas', 'country_code' => 'BR'], ['name' => 'Annecy', 'country_code' => 'FR'], ['name' => 'Kamina', 'country_code' => 'CD'], ['name' => 'Vihari', 'country_code' => 'PK'], ['name' => 'Koforidua', 'country_code' => 'GH'], ['name' => 'Azua', 'country_code' => 'DO'], ['name' => 'Baigou', 'country_code' => 'CN'], ['name' => 'Temperley', 'country_code' => 'AR'], ['name' => 'Drohobych', 'country_code' => 'UA'], ['name' => 'Seto', 'country_code' => 'JP'], ['name' => 'Shiyan', 'country_code' => 'CN'], ['name' => 'Bataysk', 'country_code' => 'RU'], ['name' => 'Whitby', 'country_code' => 'CA'], ['name' => 'Mariveles', 'country_code' => 'PH'], ['name' => 'Pinsk', 'country_code' => 'BY'], ['name' => 'Sakaka', 'country_code' => 'SA'], ['name' => 'Tumen', 'country_code' => 'CN'], ['name' => 'My Tho', 'country_code' => 'VN'], ['name' => 'Hathras', 'country_code' => 'IN'], ['name' => 'La Granja', 'country_code' => 'CL'], ['name' => 'Divo', 'country_code' => 'CI'], ['name' => 'Guasdualito', 'country_code' => 'VE'], ['name' => 'Domodedovo', 'country_code' => 'RU'], ['name' => 'Darnah', 'country_code' => 'LY'], ['name' => 'Kadoma', 'country_code' => 'JP'], ['name' => 'Salmas', 'country_code' => 'IR'], ['name' => 'Port Blair', 'country_code' => 'IN'], ['name' => 'Cubatao', 'country_code' => 'BR'], ['name' => 'Kaspiysk', 'country_code' => 'RU'], ['name' => 'Anderlecht', 'country_code' => 'BE'], ['name' => 'Alipur Duar', 'country_code' => 'IN'], ['name' => 'Neftekamsk', 'country_code' => 'RU'], ['name' => 'Daraga', 'country_code' => 'PH'], ['name' => 'Omiyacho', 'country_code' => 'JP'], ['name' => 'Johnson City', 'country_code' => 'US'], ['name' => 'Orebro', 'country_code' => 'SE'], ['name' => 'Silay', 'country_code' => 'PH'], ['name' => 'Bam', 'country_code' => 'IR'], ['name' => 'Ulm', 'country_code' => 'DE'], ['name' => 'Lafia', 'country_code' => 'NG'], ['name' => 'Monza', 'country_code' => 'IT'], ['name' => 'Tay Ninh', 'country_code' => 'VN'], ['name' => 'Santana de Parnaiba', 'country_code' => 'BR'], ['name' => 'Nefteyugansk', 'country_code' => 'RU'], ['name' => 'Heilbronn', 'country_code' => 'DE'], ['name' => 'Pakokku', 'country_code' => 'MM'], ['name' => 'Payakumbuh', 'country_code' => 'ID'], ['name' => 'Duitama', 'country_code' => 'CO'], ['name' => 'Angren', 'country_code' => 'UZ'], ['name' => 'Barcarena Nova', 'country_code' => 'BR'], ['name' => 'Basirhat', 'country_code' => 'IN'], ['name' => 'Miramar', 'country_code' => 'MX'], ['name' => 'Ixtlahuaca', 'country_code' => 'MX'], ['name' => 'Latina', 'country_code' => 'IT'], ['name' => 'Guarapari', 'country_code' => 'BR'], ['name' => 'Unye', 'country_code' => 'TR'], ['name' => 'Ramos Mejia', 'country_code' => 'AR'], ['name' => 'Uruguaiana', 'country_code' => 'BR'], ['name' => 'Navadwip', 'country_code' => 'IN'], ['name' => 'Exeter', 'country_code' => 'GB'], ['name' => 'Pforzheim', 'country_code' => 'DE'], ['name' => 'Lynchburg', 'country_code' => 'US'], ['name' => 'Larache', 'country_code' => 'MA'], ['name' => 'Iizuka', 'country_code' => 'JP'], ['name' => 'Guntakal', 'country_code' => 'IN'], ['name' => 'Catabola', 'country_code' => 'AO'], ['name' => 'Pangkalpinang', 'country_code' => 'ID'], ['name' => 'Simi Valley', 'country_code' => 'US'], ['name' => 'Jolo', 'country_code' => 'PH'], ['name' => 'Aalborg', 'country_code' => 'DK'], ['name' => 'Ban Bang Pu Mai', 'country_code' => 'TH'], ['name' => 'Solihull', 'country_code' => 'GB'], ['name' => 'Halisahar', 'country_code' => 'IN'], ['name' => 'Magway', 'country_code' => 'MM'], ['name' => 'Shashemene', 'country_code' => 'ET'], ['name' => 'Rishra', 'country_code' => 'IN'], ['name' => 'Malanje', 'country_code' => 'AO'], ['name' => 'Jizhou', 'country_code' => 'CN'], ['name' => 'Magelang', 'country_code' => 'ID'], ['name' => 'Gashua', 'country_code' => 'NG'], ['name' => 'Shchelkovo', 'country_code' => 'RU'], ['name' => 'Kampong Cham', 'country_code' => 'KH'], ['name' => 'Floridablanca', 'country_code' => 'PH'], ['name' => 'Novomoskovsk', 'country_code' => 'RU'], ['name' => 'Santa Lucia Cotzumalguapa', 'country_code' => 'GT'], ['name' => 'Talavera', 'country_code' => 'PH'], ['name' => 'Cam Ranh', 'country_code' => 'VN'], ['name' => 'Giugliano in Campania', 'country_code' => 'IT'], ['name' => 'Kumbo', 'country_code' => 'CM'], ['name' => 'Cagua', 'country_code' => 'VE'], ['name' => 'Jandira', 'country_code' => 'BR'], ['name' => 'Amatitlan', 'country_code' => 'GT'], ['name' => 'Gateshead', 'country_code' => 'GB'], ['name' => 'Amherst', 'country_code' => 'US'], ['name' => 'Honcho', 'country_code' => 'JP'], ['name' => 'Orizaba', 'country_code' => 'MX'], ['name' => 'Ciudad de Atlixco', 'country_code' => 'MX'], ['name' => 'Fort Smith', 'country_code' => 'US'], ['name' => 'Balneario de Camboriu', 'country_code' => 'BR'], ['name' => 'Resende', 'country_code' => 'BR'], ['name' => 'Daitocho', 'country_code' => 'JP'], ['name' => 'Arapongas', 'country_code' => 'BR'], ['name' => 'Polatli', 'country_code' => 'TR'], ['name' => 'Porlamar', 'country_code' => 'VE'], ['name' => 'Fugu', 'country_code' => 'CN'], ['name' => 'Cadiz', 'country_code' => 'ES'], ['name' => 'Kenosha', 'country_code' => 'US'], ['name' => 'Norman', 'country_code' => 'US'], ['name' => 'Gingoog', 'country_code' => 'PH'], ['name' => 'Zhaxi', 'country_code' => 'CN'], ['name' => 'Gorzow Wielkopolski', 'country_code' => 'PL'], ['name' => 'Porac', 'country_code' => 'PH'], ['name' => 'Duma', 'country_code' => 'SY'], ['name' => 'Wolfsburg', 'country_code' => 'DE'], ['name' => 'Gexianzhuang', 'country_code' => 'CN'], ['name' => 'South Lyon', 'country_code' => 'US'], ['name' => 'Maastricht', 'country_code' => 'NL'], ['name' => 'Leeuwarden', 'country_code' => 'NL'], ['name' => 'Pervouralsk', 'country_code' => 'RU'], ['name' => 'Algeciras', 'country_code' => 'ES'], ['name' => 'New Mirpur', 'country_code' => 'PK'], ['name' => 'Noksan', 'country_code' => 'KR'], ['name' => 'Boulder', 'country_code' => 'US'], ['name' => 'Bimbo', 'country_code' => 'CF'], ['name' => 'Baia Mare', 'country_code' => 'RO'], ['name' => 'Savannakhet', 'country_code' => 'LA'], ['name' => 'Al Hajar al Aswad', 'country_code' => 'SY'], ['name' => 'Khrustalnyi', 'country_code' => 'UA'], ['name' => 'Kadirli', 'country_code' => 'TR'], ['name' => 'Brits', 'country_code' => 'ZA'], ['name' => 'Cherkessk', 'country_code' => 'RU'], ['name' => 'Indramayu', 'country_code' => 'ID'], ['name' => 'Rudnyy', 'country_code' => 'KZ'], ['name' => 'Bergamo', 'country_code' => 'IT'], ['name' => 'Magangue', 'country_code' => 'CO'], ['name' => 'Maicao', 'country_code' => 'CO'], ['name' => 'Delgado', 'country_code' => 'SV'], ['name' => 'San Pedro Garza Garcia', 'country_code' => 'MX'], ['name' => 'Pleven', 'country_code' => 'BG'], ['name' => 'Derbent', 'country_code' => 'RU'], ['name' => 'Preston', 'country_code' => 'GB'], ['name' => 'Formosa', 'country_code' => 'BR'], ['name' => 'Kisii', 'country_code' => 'KE'], ['name' => 'Villa de Alvarez', 'country_code' => 'MX'], ['name' => 'Pati', 'country_code' => 'ID'], ['name' => 'Longtian', 'country_code' => 'CN'], ['name' => 'Munuf', 'country_code' => 'EG'], ['name' => 'Gagnoa', 'country_code' => 'CI'], ['name' => 'Bocaue', 'country_code' => 'PH'], ['name' => 'Abilene', 'country_code' => 'US'], ['name' => 'Punta Arenas', 'country_code' => 'CL'], ['name' => 'Varginha', 'country_code' => 'BR'], ['name' => 'Lehigh Acres', 'country_code' => 'US'], ['name' => 'Dabrowa Gornicza', 'country_code' => 'PL'], ['name' => 'Munch on', 'country_code' => 'KP'], ['name' => 'Khenifra', 'country_code' => 'MA'], ['name' => 'Hoi An', 'country_code' => 'VN'], ['name' => 'Alberton', 'country_code' => 'ZA'], ['name' => 'Lianhe', 'country_code' => 'CN'], ['name' => 'Ise', 'country_code' => 'JP'], ['name' => 'Jirja', 'country_code' => 'EG'], ['name' => 'San Fernando', 'country_code' => 'PH'], ['name' => 'Patnos', 'country_code' => 'TR'], ['name' => 'Sidi Bouzid', 'country_code' => 'TN'], ['name' => 'Blackburn', 'country_code' => 'GB'], ['name' => 'Barretos', 'country_code' => 'BR'], ['name' => 'Machiques', 'country_code' => 'VE'], ['name' => 'Ciudad Hidalgo', 'country_code' => 'MX'], ['name' => 'San Fernando', 'country_code' => 'VE'], ['name' => 'Jalapa', 'country_code' => 'GT'], ['name' => 'Pescara', 'country_code' => 'IT'], ['name' => 'Guelma', 'country_code' => 'DZ'], ['name' => 'Behbahan', 'country_code' => 'IR'], ['name' => 'Baidyabati', 'country_code' => 'IN'], ['name' => 'Pearland', 'country_code' => 'US'], ['name' => 'Xiangcheng', 'country_code' => 'CN'], ['name' => 'Mufulira', 'country_code' => 'ZM'], ['name' => 'Maina', 'country_code' => 'GU'], ['name' => 'Kotamobagu', 'country_code' => 'ID'], ['name' => 'Dharmavaram', 'country_code' => 'IN'], ['name' => 'Edea', 'country_code' => 'CM'], ['name' => 'Setubal', 'country_code' => 'PT'], ['name' => 'Montreuil', 'country_code' => 'FR'], ['name' => 'Ciudad Ojeda', 'country_code' => 'VE'], ['name' => 'Bento Goncalves', 'country_code' => 'BR'], ['name' => 'Pedro Juan Caballero', 'country_code' => 'PY'], ['name' => 'Fier', 'country_code' => 'AL'], ['name' => 'Orekhovo-Zuyevo', 'country_code' => 'RU'], ['name' => 'Kamalia', 'country_code' => 'PK'], ['name' => 'Gyumri', 'country_code' => 'AM'], ['name' => 'Hoa Binh', 'country_code' => 'VN'], ['name' => 'Kashiwara', 'country_code' => 'JP'], ['name' => 'Perpignan', 'country_code' => 'FR'], ['name' => 'Siracusa', 'country_code' => 'IT'], ['name' => 'Dorud', 'country_code' => 'IR'], ['name' => 'Puerto Barrios', 'country_code' => 'GT'], ['name' => 'Ribeirao Pires', 'country_code' => 'BR'], ['name' => 'Port-de-Paix', 'country_code' => 'HT'], ['name' => 'Ondjiva', 'country_code' => 'AO'], ['name' => 'Wuling', 'country_code' => 'CN'], ['name' => 'Samandag', 'country_code' => 'TR'], ['name' => 'Tsuruoka', 'country_code' => 'JP'], ['name' => 'Shuixi', 'country_code' => 'CN'], ['name' => 'Upington', 'country_code' => 'ZA'], ['name' => 'Walthamstow', 'country_code' => 'GB'], ['name' => 'Berkeley', 'country_code' => 'US'], ['name' => 'Plock', 'country_code' => 'PL'], ['name' => 'Poblacion', 'country_code' => 'PH'], ['name' => 'Richardson', 'country_code' => 'US'], ['name' => 'Dogubayazit', 'country_code' => 'TR'], ['name' => 'Redding', 'country_code' => 'US'], ['name' => 'Arvada', 'country_code' => 'US'], ['name' => 'East Los Angeles', 'country_code' => 'US'], ['name' => 'Valinhos', 'country_code' => 'BR'], ['name' => 'Itabira', 'country_code' => 'BR'], ['name' => 'Chilapa de Alvarez', 'country_code' => 'MX'], ['name' => 'Cachoeirinha', 'country_code' => 'BR'], ['name' => 'St. George', 'country_code' => 'US'], ['name' => 'Kot Addu', 'country_code' => 'PK'], ['name' => 'Kallithea', 'country_code' => 'GR'], ['name' => 'Gottingen', 'country_code' => 'DE'], ['name' => 'Pakxe', 'country_code' => 'LA'], ['name' => 'Billings', 'country_code' => 'US'], ['name' => 'Carcar', 'country_code' => 'PH'], ['name' => 'Santa Cruz', 'country_code' => 'PH'], ['name' => 'Guelmim', 'country_code' => 'MA'], ['name' => 'Darjeeling', 'country_code' => 'IN'], ['name' => 'Ebetsu', 'country_code' => 'JP'], ['name' => 'Yuba City', 'country_code' => 'US'], ['name' => 'Mohammad Shahr', 'country_code' => 'IR'], ['name' => 'Fujimino', 'country_code' => 'JP'], ['name' => 'Sertaozinho', 'country_code' => 'BR'], ['name' => 'Kuopio', 'country_code' => 'FI'], ['name' => 'Poa', 'country_code' => 'BR'], ['name' => 'Saint-Denis', 'country_code' => 'FR'], ['name' => 'Ghardaia', 'country_code' => 'DZ'], ['name' => 'Almirante Tamandare', 'country_code' => 'BR'], ['name' => 'San Carlos', 'country_code' => 'VE'], ['name' => 'Ciudad Choluteca', 'country_code' => 'HN'], ['name' => 'Varzea Paulista', 'country_code' => 'BR'], ['name' => 'Rochester', 'country_code' => 'US'], ['name' => 'Catanduva', 'country_code' => 'BR'], ['name' => 'Zahle', 'country_code' => 'LB'], ['name' => 'Guagua', 'country_code' => 'PH'], ['name' => 'Gudivada', 'country_code' => 'IN'], ['name' => 'Nazarabad', 'country_code' => 'IR'], ['name' => 'Leominster', 'country_code' => 'US'], ['name' => 'Ajax', 'country_code' => 'CA'], ['name' => 'Lomas de Zamora', 'country_code' => 'AR'], ['name' => 'Kingsport', 'country_code' => 'US'], ['name' => 'Butwal', 'country_code' => 'NP'], ['name' => 'Nouadhibou', 'country_code' => 'MR'], ['name' => 'Xuqiaocun', 'country_code' => 'CN'], ['name' => 'Duluth', 'country_code' => 'US'], ['name' => 'Dongsheng', 'country_code' => 'CN'], ['name' => 'Nazran', 'country_code' => 'RU'], ['name' => 'Elblag', 'country_code' => 'PL'], ['name' => 'Sopur', 'country_code' => 'IN'], ['name' => 'Totonicapan', 'country_code' => 'GT'], ['name' => 'Paulo Afonso', 'country_code' => 'BR'], ['name' => 'Santo Tomas', 'country_code' => 'PH'], ['name' => 'Guaratingueta', 'country_code' => 'BR'], ['name' => 'Huaraz', 'country_code' => 'PE'], ['name' => 'Guimba', 'country_code' => 'PH'], ['name' => 'Rock Hill', 'country_code' => 'US'], ['name' => 'Kasuga', 'country_code' => 'JP'], ['name' => 'Gabes', 'country_code' => 'TN'], ['name' => 'Gilroy', 'country_code' => 'US'], ['name' => 'Cheltenham', 'country_code' => 'GB'], ['name' => 'Cambridge', 'country_code' => 'US'], ['name' => 'Nevinnomyssk', 'country_code' => 'RU'], ['name' => 'Bruges', 'country_code' => 'BE'], ['name' => 'Lahti', 'country_code' => 'FI'], ['name' => 'Reutov', 'country_code' => 'RU'], ['name' => 'Bandundu', 'country_code' => 'CD'], ['name' => 'Igarassu', 'country_code' => 'BR'], ['name' => 'Trento', 'country_code' => 'IT'], ['name' => 'Charallave', 'country_code' => 'VE'], ['name' => 'Yongqing', 'country_code' => 'CN'], ['name' => 'Nowshera', 'country_code' => 'PK'], ['name' => 'Dharan', 'country_code' => 'NP'], ['name' => 'Akishima', 'country_code' => 'JP'], ['name' => 'Birigui', 'country_code' => 'BR'], ['name' => 'Bottrop', 'country_code' => 'DE'], ['name' => 'Berkane', 'country_code' => 'MA'], ['name' => 'Konosu', 'country_code' => 'JP'], ['name' => 'Sugar Land', 'country_code' => 'US'], ['name' => 'Glan', 'country_code' => 'PH'], ['name' => 'Linkoping', 'country_code' => 'SE'], ['name' => 'Votorantim', 'country_code' => 'BR'], ['name' => 'Tanay', 'country_code' => 'PH'], ['name' => 'Karatepe', 'country_code' => 'TR'], ['name' => 'Forli', 'country_code' => 'IT'], ['name' => 'Cuautitlan', 'country_code' => 'MX'], ['name' => 'Ikoma', 'country_code' => 'JP'], ['name' => 'Candelaria', 'country_code' => 'PH'], ['name' => 'Martinez de la Torre', 'country_code' => 'MX'], ['name' => 'Yulu', 'country_code' => 'CN'], ['name' => 'Tecoman', 'country_code' => 'MX'], ['name' => 'Giyon', 'country_code' => 'ET'], ['name' => 'Texas City', 'country_code' => 'US'], ['name' => 'Bama', 'country_code' => 'NG'], ['name' => 'Bayawan', 'country_code' => 'PH'], ['name' => 'Codo', 'country_code' => 'BR'], ['name' => 'Iowa City', 'country_code' => 'US'], ['name' => 'Drammen', 'country_code' => 'NO'], ['name' => 'Saginaw', 'country_code' => 'US'], ['name' => 'Kabwe', 'country_code' => 'ZM'], ['name' => 'Malita', 'country_code' => 'PH'], ['name' => 'Facatativa', 'country_code' => 'CO'], ['name' => 'Araguari', 'country_code' => 'BR'], ['name' => 'Nobeoka', 'country_code' => 'JP'], ['name' => 'Jalingo', 'country_code' => 'NG'], ['name' => 'Luanshya', 'country_code' => 'ZM'], ['name' => 'Agadez', 'country_code' => 'NE'], ['name' => 'Uzhhorod', 'country_code' => 'UA'], ['name' => 'Besancon', 'country_code' => 'FR'], ['name' => 'Adilabad', 'country_code' => 'IN'], ['name' => 'Obninsk', 'country_code' => 'RU'], ['name' => 'Uribia', 'country_code' => 'CO'], ['name' => 'Piedecuesta', 'country_code' => 'CO'], ['name' => 'Chico', 'country_code' => 'US'], ['name' => 'Angono', 'country_code' => 'PH'], ['name' => 'Huanren', 'country_code' => 'CN'], ['name' => 'San Martin', 'country_code' => 'AR'], ['name' => 'Kapakli', 'country_code' => 'TR'], ['name' => 'Basingstoke', 'country_code' => 'GB'], ['name' => 'Walbrzych', 'country_code' => 'PL'], ['name' => 'Maidstone', 'country_code' => 'GB'], ['name' => 'Xai-Xai', 'country_code' => 'MZ'], ['name' => 'Reutlingen', 'country_code' => 'DE'], ['name' => 'Langley', 'country_code' => 'CA'], ['name' => 'Dover', 'country_code' => 'US'], ['name' => 'Rosario', 'country_code' => 'PH'], ['name' => 'Temixco', 'country_code' => 'MX'], ['name' => 'Kindia', 'country_code' => 'GN'], ['name' => 'Narasaraopet', 'country_code' => 'IN'], ['name' => 'Nyiregyhaza', 'country_code' => 'HU'], ['name' => 'Kyzyl', 'country_code' => 'RU'], ['name' => 'Machakos', 'country_code' => 'KE'], ['name' => 'Belfort', 'country_code' => 'FR'], ['name' => 'Nkongsamba', 'country_code' => 'CM'], ['name' => 'Uba', 'country_code' => 'BR'], ['name' => 'Guadalajara de Buga', 'country_code' => 'CO'], ['name' => 'Cassongue', 'country_code' => 'AO'], ['name' => 'Mendoza', 'country_code' => 'AR'], ['name' => 'Clearwater', 'country_code' => 'US'], ['name' => 'Tandil', 'country_code' => 'AR'], ['name' => 'Manpo', 'country_code' => 'KP'], ['name' => 'Beppu', 'country_code' => 'JP'], ['name' => 'Buzau', 'country_code' => 'RO'], ['name' => 'Tatui', 'country_code' => 'BR'], ['name' => 'Naga', 'country_code' => 'PH'], ['name' => 'Dimitrovgrad', 'country_code' => 'RU'], ['name' => 'Port-Gentil', 'country_code' => 'GA'], ['name' => 'Sassari', 'country_code' => 'IT'], ['name' => 'Coeur d Alene', 'country_code' => 'US'], ['name' => 'Bage', 'country_code' => 'BR'], ['name' => 'Chittaurgarh', 'country_code' => 'IN'], ['name' => 'Seaside', 'country_code' => 'US'], ['name' => 'Helsingborg', 'country_code' => 'SE'], ['name' => 'Coronel', 'country_code' => 'CL'], ['name' => 'Independence', 'country_code' => 'US'], ['name' => 'Smithtown', 'country_code' => 'US'], ['name' => 'Argenteuil', 'country_code' => 'FR'], ['name' => 'San Antonio Enchisi', 'country_code' => 'MX'], ['name' => 'Boke', 'country_code' => 'GN'], ['name' => 'West Jordan', 'country_code' => 'US'], ['name' => 'Phatthaya', 'country_code' => 'TH'], ['name' => 'Khon Kaen', 'country_code' => 'TH'], ['name' => 'Ramenskoye', 'country_code' => 'RU'], ['name' => 'Kilis', 'country_code' => 'TR'], ['name' => 'Shibuya', 'country_code' => 'JP'], ['name' => 'Parral', 'country_code' => 'MX'], ['name' => 'Qiaotou', 'country_code' => 'CN'], ['name' => 'Swabi', 'country_code' => 'PK'], ['name' => 'Huejutla de Reyes', 'country_code' => 'MX'], ['name' => 'Sabha', 'country_code' => 'LY'], ['name' => 'Tahoua', 'country_code' => 'NE'], ['name' => 'Chelmsford', 'country_code' => 'GB'], ['name' => 'Shacheng', 'country_code' => 'CN'], ['name' => 'Altamira', 'country_code' => 'BR'], ['name' => 'Doncaster', 'country_code' => 'GB'], ['name' => 'Valle de La Pascua', 'country_code' => 'VE'], ['name' => 'Brandon', 'country_code' => 'US'], ['name' => 'Bloomington', 'country_code' => 'US'], ['name' => 'Nasushiobara', 'country_code' => 'JP'], ['name' => 'Toliara', 'country_code' => 'MG'], ['name' => 'Berdiansk', 'country_code' => 'UA'], ['name' => 'Koencho', 'country_code' => 'JP'], ['name' => 'El Monte', 'country_code' => 'US'], ['name' => 'Piraquara', 'country_code' => 'BR'], ['name' => 'Niihama', 'country_code' => 'JP'], ['name' => 'North Charleston', 'country_code' => 'US'], ['name' => 'Carlsbad', 'country_code' => 'US'], ['name' => 'Bansbaria', 'country_code' => 'IN'], ['name' => 'Puerto Madryn', 'country_code' => 'AR'], ['name' => 'Tucurui', 'country_code' => 'BR'], ['name' => 'Sano', 'country_code' => 'JP'], ['name' => 'Ariana', 'country_code' => 'TN'], ['name' => 'Sloviansk', 'country_code' => 'UA'], ['name' => 'Koblenz', 'country_code' => 'DE'], ['name' => 'Oktyabr skiy', 'country_code' => 'RU'], ['name' => 'St. Cloud', 'country_code' => 'US'], ['name' => 'Salto', 'country_code' => 'BR'], ['name' => 'Zhijiang', 'country_code' => 'CN'], ['name' => 'Hatsukaichi', 'country_code' => 'JP'], ['name' => 'Chorzow', 'country_code' => 'PL'], ['name' => 'Las Delicias', 'country_code' => 'MX'], ['name' => 'Bijeljina', 'country_code' => 'BA'], ['name' => 'Lilan', 'country_code' => 'CN'], ['name' => 'Temecula', 'country_code' => 'US'], ['name' => 'Bremerhaven', 'country_code' => 'DE'], ['name' => 'Bet Shemesh', 'country_code' => 'IL'], ['name' => 'Ciudad de la Costa', 'country_code' => 'UY'], ['name' => 'Clovis', 'country_code' => 'US'], ['name' => 'Bernal', 'country_code' => 'AR'], ['name' => 'Kamagaya', 'country_code' => 'JP'], ['name' => 'Valparai', 'country_code' => 'IN'], ['name' => 'Iringa', 'country_code' => 'TZ'], ['name' => 'Magalang', 'country_code' => 'PH'], ['name' => 'Meridian', 'country_code' => 'US'], ['name' => 'Saanich', 'country_code' => 'CA'], ['name' => 'Asela', 'country_code' => 'ET'], ['name' => 'Los Banos', 'country_code' => 'PH'], ['name' => 'Kankan', 'country_code' => 'GN'], ['name' => 'Cuito', 'country_code' => 'AO'], ['name' => 'Kusadasi', 'country_code' => 'TR'], ['name' => 'Jounie', 'country_code' => 'LB'], ['name' => 'Colchester', 'country_code' => 'GB'], ['name' => 'Recklinghausen', 'country_code' => 'DE'], ['name' => 'Pul-e Khumri', 'country_code' => 'AF'], ['name' => 'Tawau', 'country_code' => 'MY'], ['name' => 'Quilengues', 'country_code' => 'AO'], ['name' => 'San Francisco del Rincon', 'country_code' => 'MX'], ['name' => 'Curico', 'country_code' => 'CL'], ['name' => 'The Woodlands', 'country_code' => 'US'], ['name' => 'Paarl', 'country_code' => 'ZA'], ['name' => 'Hofu', 'country_code' => 'JP'], ['name' => 'Hikone', 'country_code' => 'JP'], ['name' => 'Itatiba', 'country_code' => 'BR'], ['name' => 'Rosario', 'country_code' => 'PH'], ['name' => 'Caraguatatuba', 'country_code' => 'BR'], ['name' => 'Bukittinggi', 'country_code' => 'ID'], ['name' => 'Wythenshawe', 'country_code' => 'GB'], ['name' => 'Erlangen', 'country_code' => 'DE'], ['name' => 'Jendouba', 'country_code' => 'TN'], ['name' => 'Sa-ch on', 'country_code' => 'KR'], ['name' => 'Ponce', 'country_code' => 'PR'], ['name' => 'Kipushi', 'country_code' => 'CD'], ['name' => 'Mazhang', 'country_code' => 'CN'], ['name' => 'Akcakale', 'country_code' => 'TR'], ['name' => 'Bergisch Gladbach', 'country_code' => 'DE'], ['name' => 'City of Isabela', 'country_code' => 'PH'], ['name' => 'Euriapolis', 'country_code' => 'BR'], ['name' => 'Novyy Urengoy', 'country_code' => 'RU'], ['name' => 'Montero', 'country_code' => 'BO'], ['name' => 'Madrid', 'country_code' => 'CO'], ['name' => 'Burdur', 'country_code' => 'TR'], ['name' => 'Westminster', 'country_code' => 'US'], ['name' => 'Acailandia', 'country_code' => 'BR'], ['name' => 'Castelar', 'country_code' => 'AR'], ['name' => 'Sokode', 'country_code' => 'TG'], ['name' => 'Jaen', 'country_code' => 'ES'], ['name' => 'Vicenza', 'country_code' => 'IT'], ['name' => 'Costa Mesa', 'country_code' => 'US'], ['name' => 'Rotherham', 'country_code' => 'GB'], ['name' => 'Hualien', 'country_code' => 'TW'], ['name' => 'San Carlos de Bariloche', 'country_code' => 'AR'], ['name' => 'Naic', 'country_code' => 'PH'], ['name' => 'Otaru', 'country_code' => 'JP'], ['name' => 'Alphen aan den Rijn', 'country_code' => 'NL'], ['name' => 'Monroe', 'country_code' => 'US'], ['name' => 'Zwolle', 'country_code' => 'NL'], ['name' => 'Higashiomi', 'country_code' => 'JP'], ['name' => 'Utica', 'country_code' => 'US'], ['name' => 'Santa Lucia', 'country_code' => 'VE'], ['name' => 'Carora', 'country_code' => 'VE'], ['name' => 'Khenchela', 'country_code' => 'DZ'], ['name' => 'Iriga City', 'country_code' => 'PH'], ['name' => 'Champdani', 'country_code' => 'IN'], ['name' => 'Umuarama', 'country_code' => 'BR'], ['name' => 'Oshu', 'country_code' => 'JP'], ['name' => 'Remscheid', 'country_code' => 'DE'], ['name' => 'Habikino', 'country_code' => 'JP'], ['name' => 'Kamyshin', 'country_code' => 'RU'], ['name' => 'Osmanabad', 'country_code' => 'IN'], ['name' => 'Esteban Echeverria', 'country_code' => 'AR'], ['name' => 'Dolgoprudnyy', 'country_code' => 'RU'], ['name' => 'Shkoder', 'country_code' => 'AL'], ['name' => 'Jena', 'country_code' => 'DE'], ['name' => 'Mopti', 'country_code' => 'ML'], ['name' => 'Kars', 'country_code' => 'TR'], ['name' => 'Santana', 'country_code' => 'BR'], ['name' => 'Olmaliq', 'country_code' => 'UZ'], ['name' => 'Cavite City', 'country_code' => 'PH'], ['name' => 'Bou Saada', 'country_code' => 'DZ'], ['name' => 'Candaba', 'country_code' => 'PH'], ['name' => 'Tangjia', 'country_code' => 'CN'], ['name' => 'Nikopol', 'country_code' => 'UA'], ['name' => 'Ciudad Mante', 'country_code' => 'MX'], ['name' => 'Pompano Beach', 'country_code' => 'US'], ['name' => 'Laoag', 'country_code' => 'PH'], ['name' => 'Corumba', 'country_code' => 'BR'], ['name' => 'Zhukovskiy', 'country_code' => 'RU'], ['name' => 'West Palm Beach', 'country_code' => 'US'], ['name' => 'Kristiansand', 'country_code' => 'NO'], ['name' => 'Funchal', 'country_code' => 'PT'], ['name' => 'Colatina', 'country_code' => 'BR'], ['name' => 'Ligao', 'country_code' => 'PH'], ['name' => 'Kuqa', 'country_code' => 'CN'], ['name' => 'Nsukka', 'country_code' => 'NG'], ['name' => 'Escuintla', 'country_code' => 'MX'], ['name' => 'Hounslow', 'country_code' => 'GB'], ['name' => 'Terni', 'country_code' => 'IT'], ['name' => 'Norzagaray', 'country_code' => 'PH'], ['name' => 'Waterloo', 'country_code' => 'US'], ['name' => 'Parintins', 'country_code' => 'BR'], ['name' => 'Trier', 'country_code' => 'DE'], ['name' => 'Terrebonne', 'country_code' => 'CA'], ['name' => 'Namur', 'country_code' => 'BE'], ['name' => 'Rochdale', 'country_code' => 'GB'], ['name' => 'Murom', 'country_code' => 'RU'], ['name' => 'Bedford', 'country_code' => 'GB'], ['name' => 'Tondabayashicho', 'country_code' => 'JP'], ['name' => 'Everett', 'country_code' => 'US'], ['name' => 'Pingquan', 'country_code' => 'CN'], ['name' => 'Manzini', 'country_code' => 'SZ'], ['name' => 'El Centro', 'country_code' => 'US'], ['name' => 'Villa Mercedes', 'country_code' => 'AR'], ['name' => 'Winterthur', 'country_code' => 'CH'], ['name' => 'Jawhar', 'country_code' => 'SO'], ['name' => 'Tuzla', 'country_code' => 'BA'], ['name' => 'Tarnow', 'country_code' => 'PL'], ['name' => 'Gafsa', 'country_code' => 'TN'], ['name' => 'Santa Fe', 'country_code' => 'US'], ['name' => 'Khardah', 'country_code' => 'IN'], ['name' => 'Gapan', 'country_code' => 'PH'], ['name' => 'Nguru', 'country_code' => 'NG'], ['name' => 'Bandar-e Anzali', 'country_code' => 'IR'], ['name' => 'Khushab', 'country_code' => 'PK'], ['name' => 'Plaridel', 'country_code' => 'PH'], ['name' => 'Downey', 'country_code' => 'US'], ['name' => 'Spring Hill', 'country_code' => 'US'], ['name' => 'Stockport', 'country_code' => 'GB'], ['name' => 'Kecskemet', 'country_code' => 'HU'], ['name' => 'Catalao', 'country_code' => 'BR'], ['name' => 'Lowell', 'country_code' => 'US'], ['name' => 'Sonsonate', 'country_code' => 'SV'], ['name' => 'Ahuachapan', 'country_code' => 'SV'], ['name' => 'Fresnillo', 'country_code' => 'MX'], ['name' => 'Centennial', 'country_code' => 'US'], ['name' => 'Fasa', 'country_code' => 'IR'], ['name' => 'As Salamiyah', 'country_code' => 'SY'], ['name' => 'Yessentuki', 'country_code' => 'RU'], ['name' => 'Elgin', 'country_code' => 'US'], ['name' => 'Tabuk', 'country_code' => 'PH'], ['name' => 'Coronel Fabriciano', 'country_code' => 'BR'], ['name' => 'Kiffa', 'country_code' => 'MR'], ['name' => 'Santander de Quilichao', 'country_code' => 'CO'], ['name' => 'Dali', 'country_code' => 'CN'], ['name' => 'Calumpit', 'country_code' => 'PH'], ['name' => 'Yenangyaung', 'country_code' => 'MM'], ['name' => 'Ourinhos', 'country_code' => 'BR'], ['name' => 'Quibor', 'country_code' => 'VE'], ['name' => 'Iguala de la Independencia', 'country_code' => 'MX'], ['name' => 'Borazjan', 'country_code' => 'IR'], ['name' => 'Richmond', 'country_code' => 'US'], ['name' => 'Socopo', 'country_code' => 'VE'], ['name' => 'Shinyanga', 'country_code' => 'TZ'], ['name' => 'Ash Shaykh Uthman', 'country_code' => 'YE'], ['name' => 'Genhe', 'country_code' => 'CN'], ['name' => 'Montego Bay', 'country_code' => 'JM'], ['name' => 'Baneh', 'country_code' => 'IR'], ['name' => 'Shirayamamachi', 'country_code' => 'JP'], ['name' => 'Msaken', 'country_code' => 'TN'], ['name' => 'Mascara', 'country_code' => 'DZ'], ['name' => 'Espejo', 'country_code' => 'CL'], ['name' => 'Darlington', 'country_code' => 'GB'], ['name' => 'Broken Arrow', 'country_code' => 'US'], ['name' => 'Milton', 'country_code' => 'CA'], ['name' => 'Yoju', 'country_code' => 'KR'], ['name' => 'Xishancun', 'country_code' => 'CN'], ['name' => 'Bangaon', 'country_code' => 'IN'], ['name' => 'Miami Gardens', 'country_code' => 'US'], ['name' => 'Pisco', 'country_code' => 'PE'], ['name' => 'Dera Ismail Khan', 'country_code' => 'PK'], ['name' => 'Taitung', 'country_code' => 'TW'], ['name' => 'Bend', 'country_code' => 'US'], ['name' => 'Burlington', 'country_code' => 'US'], ['name' => 'Sandacho', 'country_code' => 'JP'], ['name' => 'Kandi', 'country_code' => 'BJ'], ['name' => 'Aguachica', 'country_code' => 'CO'], ['name' => 'Apalit', 'country_code' => 'PH'], ['name' => 'Baybay', 'country_code' => 'PH'], ['name' => 'Labe', 'country_code' => 'GN'], ['name' => 'Ariquemes', 'country_code' => 'BR'], ['name' => 'Jurupa Valley', 'country_code' => 'US'], ['name' => 'Medenine', 'country_code' => 'TN'], ['name' => 'Muriae', 'country_code' => 'BR'], ['name' => 'Taoyang', 'country_code' => 'CN'], ['name' => 'Gualeguaychu', 'country_code' => 'AR'], ['name' => 'Kasserine', 'country_code' => 'TN'], ['name' => 'Beja', 'country_code' => 'TN'], ['name' => 'Caen', 'country_code' => 'FR'], ['name' => 'Botosani', 'country_code' => 'RO'], ['name' => 'Sandy Springs', 'country_code' => 'US'], ['name' => 'Yongju', 'country_code' => 'KR'], ['name' => 'Gresham', 'country_code' => 'US'], ['name' => 'Uitenhage', 'country_code' => 'ZA'], ['name' => 'Bukoba', 'country_code' => 'TZ'], ['name' => 'Maxixe', 'country_code' => 'MZ'], ['name' => 'Soubre', 'country_code' => 'CI'], ['name' => 'Lewisville', 'country_code' => 'US'], ['name' => 'Ipiales', 'country_code' => 'CO'], ['name' => 'Mineshita', 'country_code' => 'JP'], ['name' => 'Hillsboro', 'country_code' => 'US'], ['name' => 'Soma', 'country_code' => 'TR'], ['name' => 'San Buenaventura', 'country_code' => 'US'], ['name' => 'Musoma', 'country_code' => 'TZ'], ['name' => 'Novoshakhtinsk', 'country_code' => 'RU'], ['name' => 'Libmanan', 'country_code' => 'PH'], ['name' => 'San Juan', 'country_code' => 'PH'], ['name' => 'Crawley', 'country_code' => 'GB'], ['name' => 'Ferizaj', 'country_code' => 'XK'], ['name' => 'Ikeda', 'country_code' => 'JP'], ['name' => 'St. John s', 'country_code' => 'CA'], ['name' => 'Jacksonville', 'country_code' => 'US'], ['name' => 'Salford', 'country_code' => 'GB'], ['name' => 'Wembley', 'country_code' => 'GB'], ['name' => 'Pottstown', 'country_code' => 'US'], ['name' => 'Adigrat', 'country_code' => 'ET'], ['name' => 'Itauna', 'country_code' => 'BR'], ['name' => 'Al Fqih Ben Calah', 'country_code' => 'MA'], ['name' => 'Moncton', 'country_code' => 'CA'], ['name' => 'Tadpatri', 'country_code' => 'IN'], ['name' => 'Huauchinango', 'country_code' => 'MX'], ['name' => 'Yasuj', 'country_code' => 'IR'], ['name' => 'Tipitapa', 'country_code' => 'NI'], ['name' => 'Alto Hospicio', 'country_code' => 'CL'], ['name' => 'Jalpaiguri', 'country_code' => 'IN'], ['name' => 'Dagenham', 'country_code' => 'GB'], ['name' => 'Mangaldan', 'country_code' => 'PH'], ['name' => 'Birnin Kebbi', 'country_code' => 'NG'], ['name' => 'Samana', 'country_code' => 'DO'], ['name' => 'Siauliai', 'country_code' => 'LT'], ['name' => 'Seversk', 'country_code' => 'RU'], ['name' => 'El Limon', 'country_code' => 'VE'], ['name' => 'Reus', 'country_code' => 'ES'], ['name' => 'Inglewood', 'country_code' => 'US'], ['name' => 'Sarh', 'country_code' => 'TD'], ['name' => 'An Nuhud', 'country_code' => 'SD'], ['name' => 'San Rafael', 'country_code' => 'AR'], ['name' => 'Koszalin', 'country_code' => 'PL'], ['name' => 'Escuintla', 'country_code' => 'GT'], ['name' => 'Tagbilaran City', 'country_code' => 'PH'], ['name' => 'Tajimi', 'country_code' => 'JP'], ['name' => 'Thunder Bay', 'country_code' => 'CA'], ['name' => 'Pavlohrad', 'country_code' => 'UA'], ['name' => 'Yevpatoriia', 'country_code' => 'UA'], ['name' => 'Douliu', 'country_code' => 'TW'], ['name' => 'Emmen', 'country_code' => 'NL'], ['name' => 'Moortebeek', 'country_code' => 'BE'], ['name' => 'Chaman', 'country_code' => 'PK'], ['name' => 'Queenstown', 'country_code' => 'ZA'], ['name' => 'Umm Qasr', 'country_code' => 'IQ'], ['name' => 'Sliven', 'country_code' => 'BG'], ['name' => 'Suriapet', 'country_code' => 'IN'], ['name' => 'Kogon Shahri', 'country_code' => 'UZ'], ['name' => 'Ban Mangkon', 'country_code' => 'TH'], ['name' => 'League City', 'country_code' => 'US'], ['name' => 'Dinalupihan', 'country_code' => 'PH'], ['name' => 'Kefar Sava', 'country_code' => 'IL'], ['name' => 'Alchevsk', 'country_code' => 'UA'], ['name' => 'Chichicastenango', 'country_code' => 'GT'], ['name' => 'Araxa', 'country_code' => 'BR'], ['name' => 'Gillingham', 'country_code' => 'GB'], ['name' => 'Roubaix', 'country_code' => 'FR'], ['name' => 'Eau Claire', 'country_code' => 'US'], ['name' => 'Bolzano', 'country_code' => 'IT'], ['name' => 'Cambe', 'country_code' => 'BR'], ['name' => 'Charsadda', 'country_code' => 'PK'], ['name' => 'Erdenet', 'country_code' => 'MN'], ['name' => 'Turlock', 'country_code' => 'US'], ['name' => 'Temple', 'country_code' => 'US'], ['name' => 'La Piedad', 'country_code' => 'MX'], ['name' => 'Chongshan', 'country_code' => 'CN'], ['name' => 'Himamaylan', 'country_code' => 'PH'], ['name' => 'Mansfield', 'country_code' => 'GB'], ['name' => 'Mmabatho', 'country_code' => 'ZA'], ['name' => 'Ilebo', 'country_code' => 'CD'], ['name' => 'Taungoo', 'country_code' => 'MM'], ['name' => 'Daet', 'country_code' => 'PH'], ['name' => 'Mao', 'country_code' => 'DO'], ['name' => 'Dieppe', 'country_code' => 'CA'], ['name' => 'Arzamas', 'country_code' => 'RU'], ['name' => 'Moron', 'country_code' => 'AR'], ['name' => 'Longjiang', 'country_code' => 'CN'], ['name' => 'San Felipe', 'country_code' => 'MX'], ['name' => 'Songea', 'country_code' => 'TZ'], ['name' => 'Artem', 'country_code' => 'RU'], ['name' => 'Erechim', 'country_code' => 'BR'], ['name' => 'Noyabrsk', 'country_code' => 'RU'], ['name' => 'Ilopango', 'country_code' => 'SV'], ['name' => 'Nakhon Si Thammarat', 'country_code' => 'TH'], ['name' => 'Petrzalka', 'country_code' => 'SK'], ['name' => 'Tubarao', 'country_code' => 'BR'], ['name' => 'Chabahar', 'country_code' => 'IR'], ['name' => 'Monastir', 'country_code' => 'TN'], ['name' => 'Raba', 'country_code' => 'ID'], ['name' => 'Orsha', 'country_code' => 'BY'], ['name' => 'Patos', 'country_code' => 'BR'], ['name' => 'Jincheng', 'country_code' => 'CN'], ['name' => 'La Banda', 'country_code' => 'AR'], ['name' => 'Sioux City', 'country_code' => 'US'], ['name' => 'Kemalpasa', 'country_code' => 'TR'], ['name' => 'Salisbury', 'country_code' => 'US'], ['name' => 'Vinh Long', 'country_code' => 'VN'], ['name' => 'Passos', 'country_code' => 'BR'], ['name' => 'Ballarat', 'country_code' => 'AU'], ['name' => 'Davie', 'country_code' => 'US'], ['name' => 'Aihua', 'country_code' => 'CN'], ['name' => 'Achinsk', 'country_code' => 'RU'], ['name' => 'Daly City', 'country_code' => 'US'], ['name' => 'Dunedin', 'country_code' => 'NZ'], ['name' => 'Contramaestre', 'country_code' => 'CU'], ['name' => 'Subotica', 'country_code' => 'RS'], ['name' => 'Girona', 'country_code' => 'ES'], ['name' => 'Nusaybin', 'country_code' => 'TR'], ['name' => 'Lo Barnechea', 'country_code' => 'CL'], ['name' => 'Paco do Lumiar', 'country_code' => 'BR'], ['name' => 'Trincomalee', 'country_code' => 'LK'], ['name' => 'Mang La', 'country_code' => 'VN'], ['name' => 'Nova Serrana', 'country_code' => 'BR'], ['name' => 'Akhmim', 'country_code' => 'EG'], ['name' => 'Azare', 'country_code' => 'NG'], ['name' => 'Brovary', 'country_code' => 'UA'], ['name' => 'Itumbiara', 'country_code' => 'BR'], ['name' => 'Yelets', 'country_code' => 'RU'], ['name' => 'Pushkino', 'country_code' => 'RU'], ['name' => 'Tikrit', 'country_code' => 'IQ'], ['name' => 'Robat Karim', 'country_code' => 'IR'], ['name' => 'Malacatan', 'country_code' => 'GT'], ['name' => 'Koutiala', 'country_code' => 'ML'], ['name' => 'Lerma', 'country_code' => 'MX'], ['name' => 'Ciudad Rio Bravo', 'country_code' => 'MX'], ['name' => 'Highlands Ranch', 'country_code' => 'US'], ['name' => 'Allen', 'country_code' => 'US'], ['name' => 'Tarim', 'country_code' => 'YE'], ['name' => 'Kroonstad', 'country_code' => 'ZA'], ['name' => 'Mazyr', 'country_code' => 'BY'], ['name' => 'Kandhkot', 'country_code' => 'PK'], ['name' => 'Toride', 'country_code' => 'JP'], ['name' => 'Granada', 'country_code' => 'NI'], ['name' => 'Ituiutaba', 'country_code' => 'BR'], ['name' => 'Kongolo', 'country_code' => 'CD'], ['name' => 'Moers', 'country_code' => 'DE'], ['name' => 'Liberec', 'country_code' => 'CZ'], ['name' => 'Yozgat', 'country_code' => 'TR'], ['name' => 'Novara', 'country_code' => 'IT'], ['name' => 'Subic', 'country_code' => 'PH'], ['name' => 'Al Faw', 'country_code' => 'IQ'], ['name' => 'West Covina', 'country_code' => 'US'], ['name' => 'Salzgitter', 'country_code' => 'DE'], ['name' => 'Berdsk', 'country_code' => 'RU'], ['name' => 'Sparks', 'country_code' => 'US'], ['name' => 'Waterloo', 'country_code' => 'CA'], ['name' => 'Lavras', 'country_code' => 'BR'], ['name' => 'Galle', 'country_code' => 'LK'], ['name' => 'San Vicente de Baracaldo', 'country_code' => 'ES'], ['name' => 'Lingayen', 'country_code' => 'PH'], ['name' => 'Tadepallegudem', 'country_code' => 'IN'], ['name' => 'Zomba', 'country_code' => 'MW'], ['name' => 'Dobrich', 'country_code' => 'BG'], ['name' => 'Sergiyev Posad', 'country_code' => 'RU'], ['name' => 'Konotop', 'country_code' => 'UA'], ['name' => 'Wichita Falls', 'country_code' => 'US'], ['name' => 'Courbevoic', 'country_code' => 'FR'], ['name' => 'Zihuatanejo', 'country_code' => 'MX'], ['name' => 'Fugangcun', 'country_code' => 'CN'], ['name' => 'Trindade', 'country_code' => 'BR'], ['name' => 'San Ildefonso', 'country_code' => 'PH'], ['name' => 'Bouskoura', 'country_code' => 'MA'], ['name' => 'Inzai', 'country_code' => 'JP'], ['name' => 'Khak-e Ali', 'country_code' => 'IR'], ['name' => 'Maumere', 'country_code' => 'ID'], ['name' => 'Samal', 'country_code' => 'PH'], ['name' => 'San Mateo', 'country_code' => 'US'], ['name' => 'Villa Luzuriaga', 'country_code' => 'AR'], ['name' => 'Eastbourne', 'country_code' => 'GB'], ['name' => 'Worcester', 'country_code' => 'GB'], ['name' => 'Caseros', 'country_code' => 'AR'], ['name' => 'Fyfield', 'country_code' => 'GB'], ['name' => 'Quezon', 'country_code' => 'PH'], ['name' => 'Ginowan', 'country_code' => 'JP'], ['name' => 'Tula de Allende', 'country_code' => 'MX'], ['name' => 'Catbalogan', 'country_code' => 'PH'], ['name' => 'Abengourou', 'country_code' => 'CI'], ['name' => 'Lower Hutt', 'country_code' => 'NZ'], ['name' => 'Delft', 'country_code' => 'NL'], ['name' => 'Kamianets-Podilskyi', 'country_code' => 'UA'], ['name' => 'Kalyani', 'country_code' => 'IN'], ['name' => 'Kilinochchi', 'country_code' => 'LK'], ['name' => 'Columbia', 'country_code' => 'US'], ['name' => 'Saijo', 'country_code' => 'JP'], ['name' => 'Piacenza', 'country_code' => 'IT'], ['name' => 'EdDamer', 'country_code' => 'SD'], ['name' => 'Norwalk', 'country_code' => 'US'], ['name' => 'Santa Rosa', 'country_code' => 'AR'], ['name' => 'Isehara', 'country_code' => 'JP'], ['name' => 'Dolisie', 'country_code' => 'CG'], ['name' => 'Itaperuna', 'country_code' => 'BR'], ['name' => 'Negapatam', 'country_code' => 'IN'], ['name' => 'Pateros', 'country_code' => 'PH'], ['name' => 'Wigan', 'country_code' => 'GB'], ['name' => 'Tourcoing', 'country_code' => 'FR'], ['name' => 'Malungun', 'country_code' => 'PH'], ['name' => 'Siegen', 'country_code' => 'DE'], ['name' => 'Dongguazhen', 'country_code' => 'CN'], ['name' => 'Biak', 'country_code' => 'ID'], ['name' => 'Elista', 'country_code' => 'RU'], ['name' => 'Yishi', 'country_code' => 'CN'], ['name' => 'Libertad', 'country_code' => 'AR'], ['name' => 'Mazatenango', 'country_code' => 'GT'], ['name' => 'Rialto', 'country_code' => 'US'], ['name' => 'Breves', 'country_code' => 'BR'], ['name' => 'Lida', 'country_code' => 'BY'], ['name' => 'Thika', 'country_code' => 'KE'], ['name' => 'Manteca', 'country_code' => 'US'], ['name' => 'Bumba', 'country_code' => 'CD'], ['name' => 'Guiguinto', 'country_code' => 'PH'], ['name' => 'Bayugan', 'country_code' => 'PH'], ['name' => 'Burzaco', 'country_code' => 'AR'], ['name' => 'Sakado', 'country_code' => 'JP'], ['name' => 'Sao Lourenco da Mata', 'country_code' => 'BR'], ['name' => 'Talara', 'country_code' => 'PE'], ['name' => 'Messaad', 'country_code' => 'DZ'], ['name' => 'Novokuybyshevsk', 'country_code' => 'RU'], ['name' => 'Yilong', 'country_code' => 'CN'], ['name' => 'Bergama', 'country_code' => 'TR'], ['name' => 'Naujan', 'country_code' => 'PH'], ['name' => 'Miryang', 'country_code' => 'KR'], ['name' => 'Nyeri', 'country_code' => 'KE'], ['name' => 'Mengdingjie', 'country_code' => 'CN'], ['name' => 'Satu Mare', 'country_code' => 'RO'], ['name' => 'Houzhuang', 'country_code' => 'CN'], ['name' => 'Hildesheim', 'country_code' => 'DE'], ['name' => 'Nanterre', 'country_code' => 'FR'], ['name' => 'Sangju', 'country_code' => 'KR'], ['name' => 'Kirklareli', 'country_code' => 'TR'], ['name' => 'Hove', 'country_code' => 'GB'], ['name' => 'Arden-Arcade', 'country_code' => 'US'], ['name' => 'Bhadreswar', 'country_code' => 'IN'], ['name' => 'Noginsk', 'country_code' => 'RU'], ['name' => 'Nikaia', 'country_code' => 'GR'], ['name' => 'Hengnan', 'country_code' => 'CN'], ['name' => 'Saint Helens', 'country_code' => 'GB'], ['name' => 'Talisay', 'country_code' => 'PH'], ['name' => 'El Cajon', 'country_code' => 'US'], ['name' => 'Bethal', 'country_code' => 'ZA'], ['name' => 'Mumias', 'country_code' => 'KE'], ['name' => 'Burbank', 'country_code' => 'US'], ['name' => 'Longmont', 'country_code' => 'US'], ['name' => 'Lakewood', 'country_code' => 'US'], ['name' => 'Mayari', 'country_code' => 'CU'], ['name' => 'Mositai', 'country_code' => 'CN'], ['name' => 'Yunfu', 'country_code' => 'CN'], ['name' => 'Cawayan', 'country_code' => 'PH'], ['name' => 'Dhangadhi', 'country_code' => 'NP'], ['name' => 'Kashmar', 'country_code' => 'IR'], ['name' => 'Maramag', 'country_code' => 'PH'], ['name' => 'San Felipe del Progreso', 'country_code' => 'MX'], ['name' => 'Klagenfurt', 'country_code' => 'AT'], ['name' => 'Delta', 'country_code' => 'CA'], ['name' => 'Vilhena', 'country_code' => 'BR'], ['name' => 'Chilakalurupet', 'country_code' => 'IN'], ['name' => 'Coatepec', 'country_code' => 'MX'], ['name' => 'Sabratah', 'country_code' => 'LY'], ['name' => 'Chishtian', 'country_code' => 'PK'], ['name' => 'Boryeong', 'country_code' => 'KR'], ['name' => 'Shushtar', 'country_code' => 'IR'], ['name' => 'Jingping', 'country_code' => 'CN'], ['name' => 'Santo Antonio de Jesus', 'country_code' => 'BR'], ['name' => 'Teluk Intan', 'country_code' => 'MY'], ['name' => 'Hemel Hempstead', 'country_code' => 'GB'], ['name' => 'Assis', 'country_code' => 'BR'], ['name' => 'Berisso', 'country_code' => 'AR'], ['name' => 'Tizayuca', 'country_code' => 'MX'], ['name' => 'Renton', 'country_code' => 'US'], ['name' => 'Ancona', 'country_code' => 'IT'], ['name' => 'Vitry-sur-Seine', 'country_code' => 'FR'], ['name' => 'Chatham', 'country_code' => 'CA'], ['name' => ' Ibri', 'country_code' => 'OM'], ['name' => 'Vista', 'country_code' => 'US'], ['name' => 'Zheleznogorsk', 'country_code' => 'RU'], ['name' => 'Logan', 'country_code' => 'US'], ['name' => 'Sungai Penuh', 'country_code' => 'ID'], ['name' => 'Prescott Valley', 'country_code' => 'US'], ['name' => 'Trinidad', 'country_code' => 'BO'], ['name' => 'Olomouc', 'country_code' => 'CZ'], ['name' => 'Vacaville', 'country_code' => 'US'], ['name' => 'San Luis de la Paz', 'country_code' => 'MX'], ['name' => 'Ain Oussera', 'country_code' => 'DZ'], ['name' => 'Itaituba', 'country_code' => 'BR'], ['name' => 'Wakefield', 'country_code' => 'GB'], ['name' => 'Liancheng', 'country_code' => 'CN'], ['name' => 'Kousseri', 'country_code' => 'CM'], ['name' => 'Oued Zem', 'country_code' => 'MA'], ['name' => 'Edinburg', 'country_code' => 'US'], ['name' => 'Weifen', 'country_code' => 'CN'], ['name' => 'Gutersloh', 'country_code' => 'DE'], ['name' => 'Carmel', 'country_code' => 'US'], ['name' => 'Spokane Valley', 'country_code' => 'US'], ['name' => 'Oum el Bouaghi', 'country_code' => 'DZ'], ['name' => 'Watford', 'country_code' => 'GB'], ['name' => 'San Angelo', 'country_code' => 'US'], ['name' => 'Jilotepec', 'country_code' => 'MX'], ['name' => 'Salihorsk', 'country_code' => 'BY'], ['name' => 'Barnsley', 'country_code' => 'GB'], ['name' => 'Cottbus', 'country_code' => 'DE'], ['name' => 'Bongao', 'country_code' => 'PH'], ['name' => 'Kpalime', 'country_code' => 'TG'], ['name' => 'Kaiserslautern', 'country_code' => 'DE'], ['name' => 'Carmona', 'country_code' => 'PH'], ['name' => 'Gangtok', 'country_code' => 'IN'], ['name' => 'La Crosse', 'country_code' => 'US'], ['name' => 'Ahar', 'country_code' => 'IR'], ['name' => 'Konan', 'country_code' => 'JP'], ['name' => 'Diourbel', 'country_code' => 'SN'], ['name' => 'Bulan', 'country_code' => 'PH'], ['name' => 'Masjed Soleyman', 'country_code' => 'IR'], ['name' => 'Mairipora', 'country_code' => 'BR'], ['name' => 'Torbat-e Jam', 'country_code' => 'IR'], ['name' => 'Manolo Fortich', 'country_code' => 'PH'], ['name' => 'Edison', 'country_code' => 'US'], ['name' => 'Idaho Falls', 'country_code' => 'US'], ['name' => 'Morales', 'country_code' => 'GT'], ['name' => 'Holland', 'country_code' => 'US'], ['name' => 'Red Deer', 'country_code' => 'CA'], ['name' => 'Charlottesville', 'country_code' => 'US'], ['name' => 'Shahrisabz', 'country_code' => 'UZ'], ['name' => 'Longview', 'country_code' => 'US'], ['name' => 'Lincoln', 'country_code' => 'GB'], ['name' => 'Navapolatsk', 'country_code' => 'BY'], ['name' => 'Woodbridge', 'country_code' => 'US'], ['name' => 'Bacabal', 'country_code' => 'BR'], ['name' => 'Tracy', 'country_code' => 'US'], ['name' => 'Kamloops', 'country_code' => 'CA'], ['name' => 'Nanxicun', 'country_code' => 'CN'], ['name' => 'Ramnicu Valcea', 'country_code' => 'RO'], ['name' => 'Pulilan', 'country_code' => 'PH'], ['name' => 'Kettering', 'country_code' => 'GB'], ['name' => 'Viseu', 'country_code' => 'PT'], ['name' => 'Bayeux', 'country_code' => 'BR'], ['name' => 'Kohima', 'country_code' => 'IN'], ['name' => 'Mingacevir', 'country_code' => 'AZ'], ['name' => 'Janakpur', 'country_code' => 'NP'], ['name' => 'Chipata', 'country_code' => 'ZM'], ['name' => 'Ciudad General Belgrano', 'country_code' => 'AR'], ['name' => 'Khanty-Mansiysk', 'country_code' => 'RU'], ['name' => 'Creteil', 'country_code' => 'FR'], ['name' => 'Maribor', 'country_code' => 'SI'], ['name' => 'Yashio', 'country_code' => 'JP'], ['name' => 'Bismarck', 'country_code' => 'US'], ['name' => 'Herzliyya', 'country_code' => 'IL'], ['name' => 'Yen Bai', 'country_code' => 'VN'], ['name' => 'San Fernando', 'country_code' => 'ES'], ['name' => 'Shumen', 'country_code' => 'BG'], ['name' => 'Orem', 'country_code' => 'US'], ['name' => 'Half Way Tree', 'country_code' => 'JM'], ['name' => 'Vi Thanh', 'country_code' => 'VN'], ['name' => 'Tumbes', 'country_code' => 'PE'], ['name' => 'Malindi', 'country_code' => 'KE'], ['name' => 'Szekesfehervar', 'country_code' => 'HU'], ['name' => 'San Joaquin', 'country_code' => 'CL'], ['name' => 'Xirdalan', 'country_code' => 'AZ'], ['name' => 'Tenancingo', 'country_code' => 'MX'], ['name' => 'Ponta Pora', 'country_code' => 'BR'], ['name' => 'Wangqing', 'country_code' => 'CN'], ['name' => 'Sibolga', 'country_code' => 'ID'], ['name' => 'Aubervilliers', 'country_code' => 'FR'], ['name' => 'Balanga', 'country_code' => 'PH'], ['name' => 'Bunia', 'country_code' => 'CD'], ['name' => 'Arauca', 'country_code' => 'CO'], ['name' => 'La Reina', 'country_code' => 'CL'], ['name' => 'Sidi Slimane', 'country_code' => 'MA'], ['name' => 'Peje', 'country_code' => 'XK'], ['name' => 'Yishui', 'country_code' => 'CN'], ['name' => 'Fulham', 'country_code' => 'GB'], ['name' => 'Schwerin', 'country_code' => 'DE'], ['name' => 'La Marsa', 'country_code' => 'TN'], ['name' => 'San Francisco Solano', 'country_code' => 'AR'], ['name' => 'Zifta', 'country_code' => 'EG'], ['name' => 'Colombes', 'country_code' => 'FR'], ['name' => 'Cankiri', 'country_code' => 'TR'], ['name' => 'East Ham', 'country_code' => 'GB'], ['name' => 'Yotsukaido', 'country_code' => 'JP'], ['name' => 'Ceske Budejovice', 'country_code' => 'CZ'], ['name' => 'Masbate', 'country_code' => 'PH'], ['name' => 'Kakamega', 'country_code' => 'KE'], ['name' => 'Rio Gallegos', 'country_code' => 'AR'], ['name' => 'Tataouine', 'country_code' => 'TN'], ['name' => 'Fenggang', 'country_code' => 'CN'], ['name' => 'Ludwigsburg', 'country_code' => 'DE'], ['name' => 'Compton', 'country_code' => 'US'], ['name' => 'Errachidia', 'country_code' => 'MA'], ['name' => 'Esslingen', 'country_code' => 'DE'], ['name' => 'Nisshin', 'country_code' => 'JP'], ['name' => 'Al Bahah', 'country_code' => 'SA'], ['name' => 'Obu', 'country_code' => 'JP'], ['name' => 'Sunrise', 'country_code' => 'US'], ['name' => 'Hartlepool', 'country_code' => 'GB'], ['name' => 'Xiancun', 'country_code' => 'CN'], ['name' => 'Naxcivan', 'country_code' => 'AZ'], ['name' => 'Gjakove', 'country_code' => 'XK'], ['name' => 'Mtwara', 'country_code' => 'TZ'], ['name' => 'Ealing', 'country_code' => 'GB'], ['name' => 'Birkenhead', 'country_code' => 'GB'], ['name' => 'Guercif', 'country_code' => 'MA'], ['name' => 'Quincy', 'country_code' => 'US'], ['name' => 'Ben Arous', 'country_code' => 'TN'], ['name' => 'Lynn', 'country_code' => 'US'], ['name' => 'Catarman', 'country_code' => 'PH'], ['name' => 'Monte Chingolo', 'country_code' => 'AR'], ['name' => 'Drobeta-Turnu Severin', 'country_code' => 'RO'], ['name' => 'Tultepec', 'country_code' => 'MX'], ['name' => 'Haskovo', 'country_code' => 'BG'], ['name' => 'Suceava', 'country_code' => 'RO'], ['name' => 'Al Fujayrah', 'country_code' => 'AE'], ['name' => 'Tartu', 'country_code' => 'EE'], ['name' => 'Ciudad Lazaro Cardenas', 'country_code' => 'MX'], ['name' => 'Hradec Kralove', 'country_code' => 'CZ'], ['name' => 'Sirnak', 'country_code' => 'TR'], ['name' => 'South Gate', 'country_code' => 'US'], ['name' => 'Tonacatepeque', 'country_code' => 'SV'], ['name' => 'Miaoli', 'country_code' => 'TW'], ['name' => 'Makeni', 'country_code' => 'SL'], ['name' => 'Nuneaton', 'country_code' => 'GB'], ['name' => 'Itanhaem', 'country_code' => 'BR'], ['name' => 'Brixton', 'country_code' => 'GB'], ['name' => 'Kirkland', 'country_code' => 'US'], ['name' => 'Usti nad Labem', 'country_code' => 'CZ'], ['name' => 'Levallois-Perret', 'country_code' => 'FR'], ['name' => 'Brusque', 'country_code' => 'BR'], ['name' => 'Santiago de Compostela', 'country_code' => 'ES'], ['name' => 'Pardubice', 'country_code' => 'CZ'], ['name' => 'Magadan', 'country_code' => 'RU'], ['name' => 'Tulcea', 'country_code' => 'RO'], ['name' => 'Bender', 'country_code' => 'MD'], ['name' => 'Ben Guerir', 'country_code' => 'MA'], ['name' => 'Panevezys', 'country_code' => 'LT'], ['name' => 'Jaffna', 'country_code' => 'LK'], ['name' => 'Bromley', 'country_code' => 'GB'], ['name' => 'Queluz', 'country_code' => 'PT'], ['name' => 'Bath', 'country_code' => 'GB'], ['name' => 'Kargilik', 'country_code' => 'CN'], ['name' => 'Pandi', 'country_code' => 'PH'], ['name' => 'Oulad Teima', 'country_code' => 'MA'], ['name' => 'Edmonton', 'country_code' => 'GB'], ['name' => 'Lqoliaa', 'country_code' => 'MA'], ['name' => 'Hayes', 'country_code' => 'GB'], ['name' => 'Lobnya', 'country_code' => 'RU'], ['name' => 'Francistown', 'country_code' => 'BW'], ['name' => 'Aulnay-sous-Bois', 'country_code' => 'FR'], ['name' => 'Jonkoping', 'country_code' => 'SE'], ['name' => 'Isulan', 'country_code' => 'PH'], ['name' => 'Fuengirola', 'country_code' => 'ES'], ['name' => 'Umea', 'country_code' => 'SE'], ['name' => 'Glyfada', 'country_code' => 'GR'], ['name' => 'Kitanagoya', 'country_code' => 'JP'], ['name' => 'Cadereyta Jimenez', 'country_code' => 'MX'], ['name' => 'Babahoyo', 'country_code' => 'EC'], ['name' => 'Westminster', 'country_code' => 'US'], ['name' => 'Remedios de Escalada', 'country_code' => 'AR'], ['name' => 'Vanadzor', 'country_code' => 'AM'], ['name' => 'Germantown', 'country_code' => 'US'], ['name' => 'Higashiyamato', 'country_code' => 'JP'], ['name' => 'Catanzaro', 'country_code' => 'IT'], ['name' => 'Tartus', 'country_code' => 'SY'], ['name' => 'Valjevo', 'country_code' => 'RS'], ['name' => 'Santa Monica', 'country_code' => 'US'], ['name' => 'Poitiers', 'country_code' => 'FR'], ['name' => 'Acayucan', 'country_code' => 'MX'], ['name' => 'Nenjiang', 'country_code' => 'CN'], ['name' => 'Gjilan', 'country_code' => 'XK'], ['name' => 'Jalal-Abad', 'country_code' => 'KG'], ['name' => 'Presov', 'country_code' => 'SK'], ['name' => 'Balkanabat', 'country_code' => 'TM'], ['name' => 'Mechelen', 'country_code' => 'BE'], ['name' => 'Mukacheve', 'country_code' => 'UA'], ['name' => 'As Salt', 'country_code' => 'JO'], ['name' => 'Tangxing', 'country_code' => 'CN'], ['name' => 'Volos', 'country_code' => 'GR'], ['name' => 'Versailles', 'country_code' => 'FR'], ['name' => 'Viana do Castelo', 'country_code' => 'PT'], ['name' => 'Woolwich', 'country_code' => 'GB'], ['name' => 'Miami Beach', 'country_code' => 'US'], ['name' => 'San Leandro', 'country_code' => 'US'], ['name' => 'Sesto San Giovanni', 'country_code' => 'IT'], ['name' => 'Ciudad de Ceuta', 'country_code' => 'ES'], ['name' => 'Bracknell', 'country_code' => 'GB'], ['name' => 'Podujeve', 'country_code' => 'XK'], ['name' => 'Apizaco', 'country_code' => 'MX'], ['name' => 'San Baudilio de Llobregat', 'country_code' => 'ES'], ['name' => 'Coronel Oviedo', 'country_code' => 'PY'], ['name' => 'Tala', 'country_code' => 'MX'], ['name' => 'Carrieres-sur-Seine', 'country_code' => 'FR'], ['name' => 'Fuentes del Valle', 'country_code' => 'MX'], ['name' => 'Ebolowa', 'country_code' => 'CM'], ['name' => 'Torre del Greco', 'country_code' => 'IT'], ['name' => 'San Juan de los Morros', 'country_code' => 'VE'], ['name' => 'Citrus Heights', 'country_code' => 'US'], ['name' => 'State College', 'country_code' => 'US'], ['name' => 'Koudougou', 'country_code' => 'BF'], ['name' => 'Darayya', 'country_code' => 'SY'], ['name' => 'Lokossa', 'country_code' => 'BJ'], ['name' => 'Salina Cruz', 'country_code' => 'MX'], ['name' => 'Daxincun', 'country_code' => 'CN'], ['name' => 'Concepcion', 'country_code' => 'PY'], ['name' => 'Jalpa de Mendez', 'country_code' => 'MX'], ['name' => 'Kawit', 'country_code' => 'PH'], ['name' => 'Mardin', 'country_code' => 'TR'], ['name' => 'Xishancun', 'country_code' => 'CN'], ['name' => 'Mingxing', 'country_code' => 'CN'], ['name' => 'Nakhon Sawan', 'country_code' => 'TH'], ['name' => 'Nacajuca', 'country_code' => 'MX'], ['name' => 'Cardenas', 'country_code' => 'MX'], ['name' => 'Loznica', 'country_code' => 'RS'], ['name' => 'Edgware', 'country_code' => 'GB'], ['name' => 'Tucupita', 'country_code' => 'VE'], ['name' => 'Nabatiye', 'country_code' => 'LB'], ['name' => 'Ezpeleta', 'country_code' => 'AR'], ['name' => 'Owariasahi', 'country_code' => 'JP'], ['name' => 'Toledo', 'country_code' => 'ES'], ['name' => 'Piatra Neamt', 'country_code' => 'RO'], ['name' => 'Busto Arsizio', 'country_code' => 'IT'], ['name' => 'Ath Thawrah', 'country_code' => 'SY'], ['name' => 'Hawthorne', 'country_code' => 'US'], ['name' => 'Avare', 'country_code' => 'BR'], ['name' => 'Maasin', 'country_code' => 'PH'], ['name' => 'Kouvola', 'country_code' => 'FI'], ['name' => 'Kuznetsk', 'country_code' => 'RU'], ['name' => 'El Bayadh', 'country_code' => 'DZ'], ['name' => 'Ciudad Lerdo', 'country_code' => 'MX'], ['name' => 'Issy-les-Moulineaux', 'country_code' => 'FR'], ['name' => 'Como', 'country_code' => 'IT'], ['name' => 'Pori', 'country_code' => 'FI'], ['name' => 'Scunthorpe', 'country_code' => 'GB'], ['name' => 'Yambol', 'country_code' => 'BG'], ['name' => 'Louga', 'country_code' => 'SN'], ['name' => 'Manfalut', 'country_code' => 'EG'], ['name' => 'Whittier', 'country_code' => 'US'], ['name' => 'Clifton', 'country_code' => 'US'], ['name' => 'Puerto Maldonado', 'country_code' => 'PE'], ['name' => 'Hetauda', 'country_code' => 'NP'], ['name' => 'Tacambaro de Codallos', 'country_code' => 'MX'], ['name' => 'Chaguanas', 'country_code' => 'TT'], ['name' => 'Cunduacan', 'country_code' => 'MX'], ['name' => 'Pazardzhik', 'country_code' => 'BG'], ['name' => 'Uman', 'country_code' => 'UA'], ['name' => 'Nazareth', 'country_code' => 'IL'], ['name' => 'Ivanteyevka', 'country_code' => 'RU'], ['name' => 'Nagaoka', 'country_code' => 'JP'], ['name' => 'Osijek', 'country_code' => 'HR'], ['name' => 'Cozumel', 'country_code' => 'MX'], ['name' => 'Cukai', 'country_code' => 'MY'], ['name' => 'Mbarara', 'country_code' => 'UG'], ['name' => 'Lucerne', 'country_code' => 'CH'], ['name' => 'Mitrovice', 'country_code' => 'XK'], ['name' => 'Cabo San Lucas', 'country_code' => 'MX'], ['name' => 'Champigny-sur-Marne', 'country_code' => 'FR'], ['name' => 'Rivera', 'country_code' => 'UY'], ['name' => 'Kunitachi', 'country_code' => 'JP'], ['name' => 'Ouidah', 'country_code' => 'BJ'], ['name' => 'Newmarket', 'country_code' => 'CA'], ['name' => 'Bumahen', 'country_code' => 'IR'], ['name' => 'Milpitas', 'country_code' => 'US'], ['name' => 'Pernik', 'country_code' => 'BG'], ['name' => 'Clichy', 'country_code' => 'FR'], ['name' => 'Phuket', 'country_code' => 'TH'], ['name' => 'Ho', 'country_code' => 'GH'], ['name' => 'West Bromwich', 'country_code' => 'GB'], ['name' => 'Le Bardo', 'country_code' => 'TN'], ['name' => 'Alhambra', 'country_code' => 'US'], ['name' => 'Zilina', 'country_code' => 'SK'], ['name' => 'Esteio', 'country_code' => 'BR'], ['name' => 'Resita', 'country_code' => 'RO'], ['name' => 'Chatham', 'country_code' => 'GB'], ['name' => 'Rueil-Malmaison', 'country_code' => 'FR'], ['name' => 'Casoria', 'country_code' => 'IT'], ['name' => 'Antsiranana', 'country_code' => 'MG'], ['name' => 'Purmerend', 'country_code' => 'NL'], ['name' => 'Dudley', 'country_code' => 'GB'], ['name' => 'Ban Talat Rangsit', 'country_code' => 'TH'], ['name' => 'Lodwar', 'country_code' => 'KE'], ['name' => 'Targu Jiu', 'country_code' => 'RO'], ['name' => 'Chania', 'country_code' => 'GR'], ['name' => 'Zacatlan', 'country_code' => 'MX'], ['name' => 'Upper Darby', 'country_code' => 'US'], ['name' => 'Prosperidad', 'country_code' => 'PH'], ['name' => 'Abomey', 'country_code' => 'BJ'], ['name' => 'Mountain View', 'country_code' => 'US'], ['name' => 'Blagoevgrad', 'country_code' => 'BG'], ['name' => 'Nabunturan', 'country_code' => 'PH'], ['name' => 'Elbasan', 'country_code' => 'AL'], ['name' => 'Al Muharraq', 'country_code' => 'BH'], ['name' => 'White Rock', 'country_code' => 'CA'], ['name' => 'Nea Ionia', 'country_code' => 'GR'], ['name' => 'Campo Formoso', 'country_code' => 'BR'], ['name' => 'Kayes', 'country_code' => 'ML'], ['name' => 'Kalibo', 'country_code' => 'PH'], ['name' => 'Sao Mateus', 'country_code' => 'BR'], ['name' => 'South Shields', 'country_code' => 'GB'], ['name' => 'Paisley', 'country_code' => 'GB'], ['name' => 'Weston-super-Mare', 'country_code' => 'GB'], ['name' => 'Goiana', 'country_code' => 'BR'], ['name' => 'Bilecik', 'country_code' => 'TR'], ['name' => 'Juchitan de Zaragoza', 'country_code' => 'MX'], ['name' => 'Buena Park', 'country_code' => 'US'], ['name' => 'Silver Spring', 'country_code' => 'US'], ['name' => 'Palmerston North', 'country_code' => 'NZ'], ['name' => 'Daugavpils', 'country_code' => 'LV'], ['name' => 'Cinisello Balsamo', 'country_code' => 'IT'], ['name' => 'Huolu', 'country_code' => 'CN'], ['name' => 'Saint-Maur-des-Fosses', 'country_code' => 'FR'], ['name' => 'Hakkari', 'country_code' => 'TR'], ['name' => 'Somerville', 'country_code' => 'US'], ['name' => 'Chalandri', 'country_code' => 'GR'], ['name' => 'Bury', 'country_code' => 'GB'], ['name' => 'Tres Lagoas', 'country_code' => 'BR'], ['name' => 'Gravesend', 'country_code' => 'GB'], ['name' => 'Deerfield Beach', 'country_code' => 'US'], ['name' => 'Targoviste', 'country_code' => 'RO'], ['name' => 'Rubi', 'country_code' => 'ES'], ['name' => 'Galway', 'country_code' => 'IE'], ['name' => 'Natitingou', 'country_code' => 'BJ'], ['name' => 'Fnidq', 'country_code' => 'MA'], ['name' => 'Paysandu', 'country_code' => 'UY'], ['name' => 'Cicero', 'country_code' => 'US'], ['name' => 'Atakpame', 'country_code' => 'TG'], ['name' => 'Focsani', 'country_code' => 'RO'], ['name' => 'Aviles', 'country_code' => 'ES'], ['name' => 'Drancy', 'country_code' => 'FR'], ['name' => 'Iguatu', 'country_code' => 'BR'], ['name' => 'Alabel', 'country_code' => 'PH'], ['name' => 'Le Kram', 'country_code' => 'TN'], ['name' => 'Zuwarah', 'country_code' => 'LY'], ['name' => 'Shancheng', 'country_code' => 'CN'], ['name' => 'Sidi Qacem', 'country_code' => 'MA'], ['name' => 'Chiquimula', 'country_code' => 'GT'], ['name' => 'Puerto Ayacucho', 'country_code' => 'VE'], ['name' => 'Lawrence', 'country_code' => 'US'], ['name' => 'Ouahigouya', 'country_code' => 'BF'], ['name' => 'Mahdia', 'country_code' => 'TN'], ['name' => 'Nakhon Pathom', 'country_code' => 'TH'], ['name' => 'Lowestoft', 'country_code' => 'GB'], ['name' => 'Pau', 'country_code' => 'FR'], ['name' => 'Tejupilco', 'country_code' => 'MX'], ['name' => 'Cheyenne', 'country_code' => 'US'], ['name' => 'Ubon Ratchathani', 'country_code' => 'TH'], ['name' => 'Tustin', 'country_code' => 'US'], ['name' => 'Lakewood', 'country_code' => 'US'], ['name' => 'Carlisle', 'country_code' => 'GB'], ['name' => 'Lisala', 'country_code' => 'CD'], ['name' => 'Szombathely', 'country_code' => 'HU'], ['name' => 'Banska Bystrica', 'country_code' => 'SK'], ['name' => 'Pine Hills', 'country_code' => 'US'], ['name' => 'Ra ananna', 'country_code' => 'IL'], ['name' => 'Harrogate', 'country_code' => 'GB'], ['name' => 'Aveiro', 'country_code' => 'PT'], ['name' => 'Tambacounda', 'country_code' => 'SN'], ['name' => 'Newcastle under Lyme', 'country_code' => 'GB'], ['name' => 'New Rochelle', 'country_code' => 'US'], ['name' => 'Kensington', 'country_code' => 'GB'], ['name' => 'La Rochelle', 'country_code' => 'FR'], ['name' => 'Aregua', 'country_code' => 'PY'], ['name' => 'Lebanon', 'country_code' => 'US'], ['name' => 'East Kilbride', 'country_code' => 'GB'], ['name' => 'Wa', 'country_code' => 'GH'], ['name' => 'Nitra', 'country_code' => 'SK'], ['name' => 'Lomas del Mirador', 'country_code' => 'AR'], ['name' => 'Lelystad', 'country_code' => 'NL'], ['name' => 'Maghaghah', 'country_code' => 'EG'], ['name' => 'Mpanda', 'country_code' => 'TZ'], ['name' => 'Gladbeck', 'country_code' => 'DE'], ['name' => 'Sankt Gallen', 'country_code' => 'CH'], ['name' => 'Cannes', 'country_code' => 'FR'], ['name' => 'Alameda', 'country_code' => 'US'], ['name' => 'Thornton Heath', 'country_code' => 'GB'], ['name' => 'Watsonville', 'country_code' => 'US'], ['name' => 'Taluqan', 'country_code' => 'AF'], ['name' => 'Jinja', 'country_code' => 'UG'], ['name' => 'Davis', 'country_code' => 'US'], ['name' => 'Berberati', 'country_code' => 'CF'], ['name' => 'Esbjerg', 'country_code' => 'DK'], ['name' => 'Zrenjanin', 'country_code' => 'RS'], ['name' => 'San Felipe', 'country_code' => 'VE'], ['name' => 'Las Piedras', 'country_code' => 'UY'], ['name' => 'Surt', 'country_code' => 'LY'], ['name' => 'Tamazunchale', 'country_code' => 'MX'], ['name' => 'Moulay Abdallah', 'country_code' => 'MA'], ['name' => 'Pancevo', 'country_code' => 'RS'], ['name' => 'Abeche', 'country_code' => 'TD'], ['name' => 'Balagtas', 'country_code' => 'PH'], ['name' => 'Palaio Faliro', 'country_code' => 'GR'], ['name' => 'Bellflower', 'country_code' => 'US'], ['name' => 'Jacona de Plancarte', 'country_code' => 'MX'], ['name' => 'Ashford', 'country_code' => 'GB'], ['name' => 'Bokhtar', 'country_code' => 'TJ'], ['name' => 'Chiryu', 'country_code' => 'JP'], ['name' => 'Nek emte', 'country_code' => 'ET'], ['name' => 'Calais', 'country_code' => 'FR'], ['name' => 'Tamanrasset', 'country_code' => 'DZ'], ['name' => 'Ramla', 'country_code' => 'IL'], ['name' => 'Montrouge', 'country_code' => 'FR'], ['name' => 'Zadar', 'country_code' => 'HR'], ['name' => 'Southall', 'country_code' => 'GB'], ['name' => 'Guamuchil', 'country_code' => 'MX'], ['name' => 'Musashimurayama', 'country_code' => 'JP'], ['name' => 'Quang Tri', 'country_code' => 'VN'], ['name' => 'Antibes', 'country_code' => 'FR'], ['name' => 'Mineiros', 'country_code' => 'BR'], ['name' => 'Bistrita', 'country_code' => 'RO'], ['name' => 'Tissemsilt', 'country_code' => 'DZ'], ['name' => 'Joensuu', 'country_code' => 'FI'], ['name' => 'Bella Vista', 'country_code' => 'AR'], ['name' => 'Rugby', 'country_code' => 'GB'], ['name' => 'Darhan', 'country_code' => 'MN'], ['name' => 'Guasave', 'country_code' => 'MX'], ['name' => 'Teyateyaneng', 'country_code' => 'LS'], ['name' => 'Burton upon Trent', 'country_code' => 'GB'], ['name' => 'Gouda', 'country_code' => 'NL'], ['name' => 'Karlstad', 'country_code' => 'SE'], ['name' => 'Uxbridge', 'country_code' => 'GB'], ['name' => 'Zacatecoluca', 'country_code' => 'SV'], ['name' => 'Baldwin Park', 'country_code' => 'US'], ['name' => 'Zlin', 'country_code' => 'CZ'], ['name' => 'Spijkenisse', 'country_code' => 'NL'], ['name' => 'Rioverde', 'country_code' => 'MX'], ['name' => 'Prey Veng', 'country_code' => 'KH'], ['name' => 'Ipil', 'country_code' => 'PH'], ['name' => 'Inowroclaw', 'country_code' => 'PL'], ['name' => 'Jinsha', 'country_code' => 'CN'], ['name' => 'Crewe', 'country_code' => 'GB'], ['name' => 'Matehuala', 'country_code' => 'MX'], ['name' => 'Bitola', 'country_code' => 'MK'], ['name' => 'San Andres', 'country_code' => 'CO'], ['name' => 'Garissa', 'country_code' => 'KE'], ['name' => 'Longkoucun', 'country_code' => 'CN'], ['name' => 'Manokwari', 'country_code' => 'ID'], ['name' => 'Hekinan', 'country_code' => 'JP'], ['name' => 'Masvingo', 'country_code' => 'ZW'], ['name' => 'Vincennes', 'country_code' => 'FR'], ['name' => 'Yoshikawa', 'country_code' => 'JP'], ['name' => 'Assab', 'country_code' => 'ER'], ['name' => 'Gosport', 'country_code' => 'GB'], ['name' => 'Wandsworth', 'country_code' => 'GB'], ['name' => 'Cuscatancingo', 'country_code' => 'SV'], ['name' => 'Salima', 'country_code' => 'MW'], ['name' => 'Nabeul', 'country_code' => 'TN'], ['name' => 'Virac', 'country_code' => 'PH'], ['name' => 'Centreville', 'country_code' => 'US'], ['name' => 'Birobidzhan', 'country_code' => 'RU'], ['name' => 'Tsurugashima', 'country_code' => 'JP'], ['name' => 'Cabadbaran', 'country_code' => 'PH'], ['name' => 'Kirtipur', 'country_code' => 'NP'], ['name' => 'Irece', 'country_code' => 'BR'], ['name' => 'El Kef', 'country_code' => 'TN'], ['name' => 'Frontera', 'country_code' => 'MX'], ['name' => 'Neuilly-sur-Seine', 'country_code' => 'FR'], ['name' => 'Farah', 'country_code' => 'AF'], ['name' => 'Warzat', 'country_code' => 'MA'], ['name' => 'Finchley', 'country_code' => 'GB'], ['name' => 'Camden', 'country_code' => 'US'], ['name' => 'Galatsi', 'country_code' => 'GR'], ['name' => 'Evanston', 'country_code' => 'US'], ['name' => 'Noisy-le-Grand', 'country_code' => 'FR'], ['name' => 'Skien', 'country_code' => 'NO'], ['name' => 'Caguas', 'country_code' => 'PR'], ['name' => 'Yawata-shimizui', 'country_code' => 'JP'], ['name' => 'Debre Mark os', 'country_code' => 'ET'], ['name' => 'Dabou', 'country_code' => 'CI'], ['name' => 'Sa dah', 'country_code' => 'YE'], ['name' => 'Feltham', 'country_code' => 'GB'], ['name' => 'San Antonio', 'country_code' => 'PY'], ['name' => 'Lappeenranta', 'country_code' => 'FI'], ['name' => 'Thohoyandou', 'country_code' => 'ZA'], ['name' => 'Castelldefels', 'country_code' => 'ES'], ['name' => 'Torremolinos', 'country_code' => 'ES'], ['name' => 'Chingford', 'country_code' => 'GB'], ['name' => 'New Britain', 'country_code' => 'US'], ['name' => 'Arba Minch ', 'country_code' => 'ET'], ['name' => 'Abancay', 'country_code' => 'PE'], ['name' => 'Ivry-sur-Seine', 'country_code' => 'FR'], ['name' => 'Toyoake', 'country_code' => 'JP'], ['name' => 'Havirov', 'country_code' => 'CZ'], ['name' => 'Veliko Tarnovo', 'country_code' => 'BG'], ['name' => 'Inverness', 'country_code' => 'GB'], ['name' => 'Wilde', 'country_code' => 'AR'], ['name' => 'Pawtucket', 'country_code' => 'US'], ['name' => 'Cacak', 'country_code' => 'RS'], ['name' => 'Karakax', 'country_code' => 'CN'], ['name' => 'La Chorrera', 'country_code' => 'PA'], ['name' => 'Washington', 'country_code' => 'GB'], ['name' => 'Lauderhill', 'country_code' => 'US'], ['name' => 'Balsas', 'country_code' => 'BR'], ['name' => 'Matara', 'country_code' => 'LK'], ['name' => 'Benalmadena', 'country_code' => 'ES'], ['name' => 'Al Qusiyah', 'country_code' => 'EG'], ['name' => 'Zaandam', 'country_code' => 'NL'], ['name' => 'Szolnok', 'country_code' => 'HU'], ['name' => 'Mamou', 'country_code' => 'GN'], ['name' => 'Slatina', 'country_code' => 'RO'], ['name' => 'Youssoufia', 'country_code' => 'MA'], ['name' => 'Bitlis', 'country_code' => 'TR'], ['name' => 'Ajaccio', 'country_code' => 'FR'], ['name' => 'Maidenhead', 'country_code' => 'GB'], ['name' => 'Kasese', 'country_code' => 'UG'], ['name' => 'Phitsanulok', 'country_code' => 'TH'], ['name' => 'Hatogaya-honcho', 'country_code' => 'JP'], ['name' => 'Misantla', 'country_code' => 'MX'], ['name' => 'Zinjibar', 'country_code' => 'YE'], ['name' => 'Courcouronnes', 'country_code' => 'FR'], ['name' => 'New Westminster', 'country_code' => 'CA'], ['name' => 'Kumanovo', 'country_code' => 'MK'], ['name' => 'Givatayim', 'country_code' => 'IL'], ['name' => 'Valle Hermoso', 'country_code' => 'MX'], ['name' => 'Jiquilpan de Juarez', 'country_code' => 'MX'], ['name' => 'Cergy', 'country_code' => 'FR'], ['name' => 'Capelle aan den IJssel', 'country_code' => 'NL'], ['name' => 'Mindelo', 'country_code' => 'CV'], ['name' => 'Chiang Rai', 'country_code' => 'TH'], ['name' => 'Ain Harrouda', 'country_code' => 'MA'], ['name' => 'Aksum', 'country_code' => 'ET'], ['name' => 'Wimbledon', 'country_code' => 'GB'], ['name' => 'Sunyani', 'country_code' => 'GH'], ['name' => 'Viladecans', 'country_code' => 'ES'], ['name' => 'Loughborough', 'country_code' => 'GB'], ['name' => 'Abnub', 'country_code' => 'EG'], ['name' => 'Colonia del Sol', 'country_code' => 'MX'], ['name' => 'Venissieux', 'country_code' => 'FR'], ['name' => 'Sagaing', 'country_code' => 'MM'], ['name' => 'Wilmington', 'country_code' => 'US'], ['name' => 'Gardez', 'country_code' => 'AF'], ['name' => 'Thakhek', 'country_code' => 'LA'], ['name' => 'Nizwa', 'country_code' => 'OM'], ['name' => 'Tynemouth', 'country_code' => 'GB'], ['name' => 'Vushtrri', 'country_code' => 'XK'], ['name' => 'Walsall', 'country_code' => 'GB'], ['name' => 'Moquegua', 'country_code' => 'PE'], ['name' => 'Itapeva', 'country_code' => 'BR'], ['name' => 'Lynwood', 'country_code' => 'US'], ['name' => 'Jinxing', 'country_code' => 'CN'], ['name' => 'Rochester', 'country_code' => 'GB'], ['name' => 'Georgiyevsk', 'country_code' => 'RU'], ['name' => 'Passaic', 'country_code' => 'US'], ['name' => 'Valenca', 'country_code' => 'BR'], ['name' => 'Castellammare di Stabia', 'country_code' => 'IT'], ['name' => 'Huatusco', 'country_code' => 'MX'], ['name' => 'Vratsa', 'country_code' => 'BG'], ['name' => 'L Aquila', 'country_code' => 'IT'], ['name' => 'Debre Birhan', 'country_code' => 'ET'], ['name' => 'Borongan', 'country_code' => 'PH'], ['name' => 'Putrajaya', 'country_code' => 'MY'], ['name' => 'Liepaja', 'country_code' => 'LV'], ['name' => 'Acton', 'country_code' => 'GB'], ['name' => 'Pantin', 'country_code' => 'FR'], ['name' => 'Antony', 'country_code' => 'FR'], ['name' => 'Bouira', 'country_code' => 'DZ'], ['name' => 'Veenendaal', 'country_code' => 'NL'], ['name' => 'Mitcham', 'country_code' => 'GB'], ['name' => 'San Jose del Guaviare', 'country_code' => 'CO'], ['name' => 'Ponta Delgada', 'country_code' => 'PT'], ['name' => 'Gavle', 'country_code' => 'SE'], ['name' => 'Wrecsam', 'country_code' => 'GB'], ['name' => 'Villa Dominico', 'country_code' => 'AR'], ['name' => 'Kitamoto', 'country_code' => 'JP'], ['name' => 'Afragola', 'country_code' => 'IT'], ['name' => 'Saki', 'country_code' => 'AZ'], ['name' => 'Zamosc', 'country_code' => 'PL'], ['name' => 'Adrar', 'country_code' => 'DZ'], ['name' => 'Waterlooville', 'country_code' => 'GB'], ['name' => 'Tomigusuku', 'country_code' => 'JP'], ['name' => 'Buynaksk', 'country_code' => 'RU'], ['name' => 'Hameenlinna', 'country_code' => 'FI'], ['name' => 'Guaynabo', 'country_code' => 'PR'], ['name' => 'Gaithersburg', 'country_code' => 'US'], ['name' => 'Union City', 'country_code' => 'US'], ['name' => 'Vyronas', 'country_code' => 'GR'], ['name' => 'Scarborough', 'country_code' => 'GB'], ['name' => 'Cacador', 'country_code' => 'BR'], ['name' => 'South San Francisco', 'country_code' => 'US'], ['name' => 'Timbauba', 'country_code' => 'BR'], ['name' => 'Curvelo', 'country_code' => 'BR'], ['name' => 'Manacapuru', 'country_code' => 'BR'], ['name' => 'Cabedelo', 'country_code' => 'BR'], ['name' => 'Tecate', 'country_code' => 'MX'], ['name' => 'Lao Cai', 'country_code' => 'VN'], ['name' => 'Farnborough', 'country_code' => 'GB'], ['name' => 'Vaasa', 'country_code' => 'FI'], ['name' => 'Molepolole', 'country_code' => 'BW'], ['name' => 'Potenza', 'country_code' => 'IT'], ['name' => 'San Marcos', 'country_code' => 'SV'], ['name' => 'Dimbokro', 'country_code' => 'CI'], ['name' => 'Arrecife', 'country_code' => 'ES'], ['name' => 'El Prat de Llobregat', 'country_code' => 'ES'], ['name' => 'Katwijk', 'country_code' => 'NL'], ['name' => 'Valle de Bravo', 'country_code' => 'MX'], ['name' => 'Mount Vernon', 'country_code' => 'US'], ['name' => 'Amozoc', 'country_code' => 'MX'], ['name' => 'Twickenham', 'country_code' => 'GB'], ['name' => 'Stourbridge', 'country_code' => 'GB'], ['name' => 'Fryazino', 'country_code' => 'RU'], ['name' => 'Linares', 'country_code' => 'MX'], ['name' => 'Streatham', 'country_code' => 'GB'], ['name' => 'Barking', 'country_code' => 'GB'], ['name' => 'Epinay-sur-Seine', 'country_code' => 'FR'], ['name' => 'Bolgatanga', 'country_code' => 'GH'], ['name' => 'Sabinas', 'country_code' => 'MX'], ['name' => 'Lechang', 'country_code' => 'CN'], ['name' => 'Teoloyucan', 'country_code' => 'MX'], ['name' => 'Sokhumi', 'country_code' => 'GE'], ['name' => 'Collado-Villalba', 'country_code' => 'ES'], ['name' => 'La Seyne-sur-Mer', 'country_code' => 'FR'], ['name' => 'Agia Paraskevi', 'country_code' => 'GR'], ['name' => 'Redondo Beach', 'country_code' => 'US'], ['name' => 'Kraljevo', 'country_code' => 'RS'], ['name' => 'Tamarac', 'country_code' => 'US'], ['name' => 'Novi Pazar', 'country_code' => 'RS'], ['name' => 'Bayburt', 'country_code' => 'TR'], ['name' => 'M diq', 'country_code' => 'MA'], ['name' => 'Nalut', 'country_code' => 'LY'], ['name' => 'Granollers', 'country_code' => 'ES'], ['name' => 'Zacapa', 'country_code' => 'GT'], ['name' => 'Tatabanya', 'country_code' => 'HU'], ['name' => 'Acambaro', 'country_code' => 'MX'], ['name' => 'Troyes', 'country_code' => 'FR'], ['name' => 'Prilep', 'country_code' => 'MK'], ['name' => 'Trnava', 'country_code' => 'SK'], ['name' => 'Los Polvorines', 'country_code' => 'AR'], ['name' => 'Kardzhali', 'country_code' => 'BG'], ['name' => 'Goz-Beida', 'country_code' => 'TD'], ['name' => 'San Marcos', 'country_code' => 'GT'], ['name' => 'Maisons-Alfort', 'country_code' => 'FR'], ['name' => 'La Linea de la Concepcion', 'country_code' => 'ES'], ['name' => 'Masaka', 'country_code' => 'UG'], ['name' => 'Singida', 'country_code' => 'TZ'], ['name' => 'Dewsbury', 'country_code' => 'GB'], ['name' => 'Ioannina', 'country_code' => 'GR'], ['name' => 'Florence-Graham', 'country_code' => 'US'], ['name' => 'Calarasi', 'country_code' => 'RO'], ['name' => 'Forest', 'country_code' => 'BE'], ['name' => 'Sarcelles', 'country_code' => 'FR'], ['name' => 'Nieuwegein', 'country_code' => 'NL'], ['name' => 'Altamira', 'country_code' => 'MX'], ['name' => 'Widnes', 'country_code' => 'GB'], ['name' => 'Schenectady', 'country_code' => 'US'], ['name' => 'Cortazar', 'country_code' => 'MX'], ['name' => 'Rundu', 'country_code' => 'NA'], ['name' => 'Portici', 'country_code' => 'IT'], ['name' => 'Tago', 'country_code' => 'JP'], ['name' => 'Songkhla', 'country_code' => 'TH'], ['name' => 'Solwezi', 'country_code' => 'ZM'], ['name' => 'Villejuif', 'country_code' => 'FR'], ['name' => 'Kitale', 'country_code' => 'KE'], ['name' => 'As Suwayda ', 'country_code' => 'SY'], ['name' => 'Ouezzane', 'country_code' => 'MA'], ['name' => 'Elk', 'country_code' => 'PL'], ['name' => 'Euclides da Cunha', 'country_code' => 'BR'], ['name' => 'Bayonne', 'country_code' => 'US'], ['name' => 'Faro', 'country_code' => 'PT'], ['name' => 'Faizabad', 'country_code' => 'AF'], ['name' => 'Sinop', 'country_code' => 'TR'], ['name' => 'Solola', 'country_code' => 'GT'], ['name' => 'Yoro', 'country_code' => 'HN'], ['name' => 'Pruszkow', 'country_code' => 'PL'], ['name' => 'Cosamaloapan', 'country_code' => 'MX'], ['name' => 'East Orange', 'country_code' => 'US'], ['name' => 'Etterbeek', 'country_code' => 'BE'], ['name' => 'Nagari', 'country_code' => 'IN'], ['name' => 'Inhambane', 'country_code' => 'MZ'], ['name' => 'Taunton', 'country_code' => 'GB'], ['name' => 'Bangor', 'country_code' => 'GB'], ['name' => 'Alba Iulia', 'country_code' => 'RO'], ['name' => 'Pirapora', 'country_code' => 'BR'], ['name' => 'Aylesbury', 'country_code' => 'GB'], ['name' => 'Sombrerete', 'country_code' => 'MX'], ['name' => 'Latacunga', 'country_code' => 'EC'], ['name' => 'Manouba', 'country_code' => 'TN'], ['name' => 'Le Blanc-Mesnil', 'country_code' => 'FR'], ['name' => 'Gorno-Altaysk', 'country_code' => 'RU'], ['name' => 'Braganca', 'country_code' => 'BR'], ['name' => 'San Jose', 'country_code' => 'PH'], ['name' => 'Hasuda', 'country_code' => 'JP'], ['name' => 'Sao Borja', 'country_code' => 'BR'], ['name' => 'Halesowen', 'country_code' => 'GB'], ['name' => 'Marano di Napoli', 'country_code' => 'IT'], ['name' => 'Legnano', 'country_code' => 'IT'], ['name' => 'Nkhotakota', 'country_code' => 'MW'], ['name' => 'Mukocho', 'country_code' => 'JP'], ['name' => 'Kyustendil', 'country_code' => 'BG'], ['name' => 'Brentwood', 'country_code' => 'US'], ['name' => 'Rades', 'country_code' => 'TN'], ['name' => 'Karakol', 'country_code' => 'KG'], ['name' => 'Tsushima', 'country_code' => 'JP'], ['name' => 'Canela', 'country_code' => 'BR'], ['name' => 'Cherbourg', 'country_code' => 'FR'], ['name' => 'Ruislip', 'country_code' => 'GB'], ['name' => 'Bondy', 'country_code' => 'FR'], ['name' => 'Anuradhapura', 'country_code' => 'LK'], ['name' => 'Gabrovo', 'country_code' => 'BG'], ['name' => 'Poblacion', 'country_code' => 'PH'], ['name' => 'Kratie', 'country_code' => 'KH'], ['name' => 'Assen', 'country_code' => 'NL'], ['name' => 'Beledweyne', 'country_code' => 'SO'], ['name' => 'Royal Tunbridge Wells', 'country_code' => 'GB'], ['name' => 'Jette', 'country_code' => 'BE'], ['name' => 'Saint-Ouen', 'country_code' => 'FR'], ['name' => 'Khartsyzk', 'country_code' => 'UA'], ['name' => 'Wallasey', 'country_code' => 'GB'], ['name' => 'Barrow in Furness', 'country_code' => 'GB'], ['name' => 'Stryi', 'country_code' => 'UA'], ['name' => 'Sopron', 'country_code' => 'HU'], ['name' => 'North Miami', 'country_code' => 'US'], ['name' => 'Maldonado', 'country_code' => 'UY'], ['name' => 'Skokie', 'country_code' => 'US'], ['name' => 'Leskovac', 'country_code' => 'RS'], ['name' => 'Santa Rosa', 'country_code' => 'BR'], ['name' => 'Saraburi', 'country_code' => 'TH'], ['name' => 'Rayong', 'country_code' => 'TH'], ['name' => 'Ban Bang Kaeo', 'country_code' => 'TH'], ['name' => 'Kolda', 'country_code' => 'SN'], ['name' => 'Santarem', 'country_code' => 'PT'], ['name' => 'Fontenay-sous-Bois', 'country_code' => 'FR'], ['name' => 'Suresnes', 'country_code' => 'FR'], ['name' => 'Fussa', 'country_code' => 'JP'], ['name' => 'Napier', 'country_code' => 'NZ'], ['name' => 'Chornomorsk', 'country_code' => 'UA'], ['name' => 'Puerto Limon', 'country_code' => 'CR'], ['name' => 'Madang', 'country_code' => 'PG'], ['name' => 'Lytkarino', 'country_code' => 'RU'], ['name' => 'Rafael Calzada', 'country_code' => 'AR'], ['name' => 'Pico Rivera', 'country_code' => 'US'], ['name' => 'Kaposvar', 'country_code' => 'HU'], ['name' => 'Bayombong', 'country_code' => 'PH'], ['name' => 'Montebello', 'country_code' => 'US'], ['name' => 'Bamyan', 'country_code' => 'AF'], ['name' => 'Ban Rangsit', 'country_code' => 'TH'], ['name' => 'Portugalete', 'country_code' => 'ES'], ['name' => 'Rovaniemi', 'country_code' => 'FI'], ['name' => 'Yala', 'country_code' => 'TH'], ['name' => 'Giurgiu', 'country_code' => 'RO'], ['name' => 'Chambery', 'country_code' => 'FR'], ['name' => 'Samut Sakhon', 'country_code' => 'TH'], ['name' => 'Bobigny', 'country_code' => 'FR'], ['name' => 'Janauba', 'country_code' => 'BR'], ['name' => 'North Bergen', 'country_code' => 'US'], ['name' => 'Seinajoki', 'country_code' => 'FI'], ['name' => 'The Hammocks', 'country_code' => 'US'], ['name' => 'Ruhengeri', 'country_code' => 'RW'], ['name' => 'Suileng', 'country_code' => 'CN'], ['name' => 'National City', 'country_code' => 'US'], ['name' => 'Benslimane', 'country_code' => 'MA'], ['name' => 'Koja', 'country_code' => 'JP'], ['name' => 'Coconut Creek', 'country_code' => 'US'], ['name' => 'Ben Tre', 'country_code' => 'VN'], ['name' => 'Coyhaique', 'country_code' => 'CL'], ['name' => 'Gaalkacyo', 'country_code' => 'SO'], ['name' => 'Hunedoara', 'country_code' => 'RO'], ['name' => 'Limerick', 'country_code' => 'IE'], ['name' => 'Longxing', 'country_code' => 'CN'], ['name' => 'Trang', 'country_code' => 'TH'], ['name' => 'Teresa', 'country_code' => 'PH'], ['name' => 'Melo', 'country_code' => 'UY'], ['name' => 'Oyem', 'country_code' => 'GA'], ['name' => 'Lokoja', 'country_code' => 'NG'], ['name' => 'Juigalpa', 'country_code' => 'NI'], ['name' => 'Fountainebleau', 'country_code' => 'US'], ['name' => 'Vaxjo', 'country_code' => 'SE'], ['name' => 'La Habra', 'country_code' => 'US'], ['name' => 'Malden', 'country_code' => 'US'], ['name' => 'Banfora', 'country_code' => 'BF'], ['name' => 'San Pedro', 'country_code' => 'MX'], ['name' => 'Lorient', 'country_code' => 'FR'], ['name' => 'Swidnica', 'country_code' => 'PL'], ['name' => 'Sidi Bennour', 'country_code' => 'MA'], ['name' => 'South Whittier', 'country_code' => 'US'], ['name' => 'Zushi', 'country_code' => 'JP'], ['name' => 'Temascalcingo', 'country_code' => 'MX'], ['name' => 'Hereford', 'country_code' => 'GB'], ['name' => 'Mbanza Kongo', 'country_code' => 'AO'], ['name' => 'Veszprem', 'country_code' => 'HU'], ['name' => 'Ellesmere Port', 'country_code' => 'GB'], ['name' => 'Serrinha', 'country_code' => 'BR'], ['name' => 'Caridad', 'country_code' => 'PH'], ['name' => 'Evry', 'country_code' => 'FR'], ['name' => 'Tezonapa', 'country_code' => 'MX'], ['name' => 'Mislata', 'country_code' => 'ES'], ['name' => 'Etchojoa', 'country_code' => 'MX'], ['name' => 'West Allis', 'country_code' => 'US'], ['name' => 'Uzice', 'country_code' => 'RS'], ['name' => 'Taylorsville', 'country_code' => 'US'], ['name' => 'Itanagar', 'country_code' => 'IN'], ['name' => 'Romita', 'country_code' => 'MX'], ['name' => 'Antigua Guatemala', 'country_code' => 'GT'], ['name' => 'Suhareke', 'country_code' => 'XK'], ['name' => 'Klimovsk', 'country_code' => 'RU'], ['name' => 'Bungoma', 'country_code' => 'KE'], ['name' => 'San Jose Iturbide', 'country_code' => 'MX'], ['name' => 'Monterey Park', 'country_code' => 'US'], ['name' => 'Merida', 'country_code' => 'ES'], ['name' => 'Hod HaSharon', 'country_code' => 'IL'], ['name' => 'Puteaux', 'country_code' => 'FR'], ['name' => 'Rodos', 'country_code' => 'GR'], ['name' => 'Formiga', 'country_code' => 'BR'], ['name' => 'Al Hoceima', 'country_code' => 'MA'], ['name' => 'Actopan', 'country_code' => 'MX'], ['name' => 'Samannud', 'country_code' => 'EG'], ['name' => 'Hamura', 'country_code' => 'JP'], ['name' => 'Midalt', 'country_code' => 'MA'], ['name' => 'Gardena', 'country_code' => 'US'], ['name' => 'Bekescsaba', 'country_code' => 'HU'], ['name' => 'Azrou', 'country_code' => 'MA'], ['name' => 'Cupertino', 'country_code' => 'US'], ['name' => 'La Mesa', 'country_code' => 'US'], ['name' => 'Dzerzhinskiy', 'country_code' => 'RU'], ['name' => 'Artemisa', 'country_code' => 'CU'], ['name' => 'San Buenaventura', 'country_code' => 'MX'], ['name' => 'Brookline', 'country_code' => 'US'], ['name' => 'Kitgum', 'country_code' => 'UG'], ['name' => 'Yevlax', 'country_code' => 'AZ'], ['name' => 'Viedma', 'country_code' => 'AR'], ['name' => 'Cerro de Pasco', 'country_code' => 'PE'], ['name' => 'Kabinda', 'country_code' => 'CD'], ['name' => 'Braintree', 'country_code' => 'GB'], ['name' => 'Tacuarembo', 'country_code' => 'UY'], ['name' => 'Clamart', 'country_code' => 'FR'], ['name' => 'Liuhu', 'country_code' => 'CN'], ['name' => 'Krusevac', 'country_code' => 'RS'], ['name' => 'Margate', 'country_code' => 'US'], ['name' => 'Qiryat Ata', 'country_code' => 'IL'], ['name' => 'Aversa', 'country_code' => 'IT'], ['name' => 'Carson City', 'country_code' => 'US'], ['name' => 'Meaux', 'country_code' => 'FR'], ['name' => 'Mandapeta', 'country_code' => 'IN'], ['name' => 'Evora', 'country_code' => 'PT'], ['name' => 'Barlad', 'country_code' => 'RO'], ['name' => 'Port Coquitlam', 'country_code' => 'CA'], ['name' => 'Rosh Ha Ayin', 'country_code' => 'IL'], ['name' => 'Middletown', 'country_code' => 'US'], ['name' => 'Bondoukou', 'country_code' => 'CI'], ['name' => 'San Fernando', 'country_code' => 'TT'], ['name' => 'Chelles', 'country_code' => 'FR'], ['name' => 'Novohrad-Volynskyi', 'country_code' => 'UA'], ['name' => 'Union', 'country_code' => 'US'], ['name' => 'Huamantla', 'country_code' => 'MX'], ['name' => 'Sabaneta', 'country_code' => 'CO'], ['name' => 'Sartrouville', 'country_code' => 'FR'], ['name' => 'Vidin', 'country_code' => 'BG'], ['name' => 'White Plains', 'country_code' => 'US'], ['name' => 'Sevran', 'country_code' => 'FR'], ['name' => 'Huehuetenango', 'country_code' => 'GT'], ['name' => 'Jefferson City', 'country_code' => 'US'], ['name' => 'Zalaegerszeg', 'country_code' => 'HU'], ['name' => 'Hendon', 'country_code' => 'GB'], ['name' => 'Arcadia', 'country_code' => 'US'], ['name' => 'Hilden', 'country_code' => 'DE'], ['name' => 'Slavonski Brod', 'country_code' => 'HR'], ['name' => 'Legionowo', 'country_code' => 'PL'], ['name' => 'Magong', 'country_code' => 'TW'], ['name' => 'Umm el Fahm', 'country_code' => 'IL'], ['name' => 'Alfortville', 'country_code' => 'FR'], ['name' => 'Samut Prakan', 'country_code' => 'TH'], ['name' => 'Nuevo Casas Grandes', 'country_code' => 'MX'], ['name' => 'Pavia', 'country_code' => 'PH'], ['name' => 'Kidderminster', 'country_code' => 'GB'], ['name' => 'Lipjan', 'country_code' => 'XK'], ['name' => 'Zumpango', 'country_code' => 'MX'], ['name' => 'Crosby', 'country_code' => 'GB'], ['name' => 'Al Mafraq', 'country_code' => 'JO'], ['name' => 'Hamilton', 'country_code' => 'GB'], ['name' => 'Altrincham', 'country_code' => 'GB'], ['name' => 'Huntington Park', 'country_code' => 'US'], ['name' => 'Mafeteng', 'country_code' => 'LS'], ['name' => 'Esplugas de Llobregat', 'country_code' => 'ES'], ['name' => 'Medford', 'country_code' => 'US'], ['name' => 'Chinhoyi', 'country_code' => 'ZW'], ['name' => 'Gumushane', 'country_code' => 'TR'], ['name' => 'Pithapuram', 'country_code' => 'IN'], ['name' => 'Belize City', 'country_code' => 'BZ'], ['name' => 'Acatzingo', 'country_code' => 'MX'], ['name' => 'Maun', 'country_code' => 'BW'], ['name' => 'Barri', 'country_code' => 'GB'], ['name' => 'Biel/Bienne', 'country_code' => 'CH'], ['name' => 'Bac Giang', 'country_code' => 'VN'], ['name' => 'Ushuaia', 'country_code' => 'AR'], ['name' => 'Dunfermline', 'country_code' => 'GB'], ['name' => 'Royal Leamington Spa', 'country_code' => 'GB'], ['name' => 'Zalau', 'country_code' => 'RO'], ['name' => 'Sfantu-Gheorghe', 'country_code' => 'RO'], ['name' => 'Mugla', 'country_code' => 'TR'], ['name' => 'Llanelli', 'country_code' => 'GB'], ['name' => 'Tandag', 'country_code' => 'PH'], ['name' => 'Phra Nakhon Si Ayutthaya', 'country_code' => 'TH'], ['name' => 'Montesilvano', 'country_code' => 'IT'], ['name' => 'Kranj', 'country_code' => 'SI'], ['name' => 'Salama', 'country_code' => 'GT'], ['name' => 'Zouerate', 'country_code' => 'MR'], ['name' => 'Mollet', 'country_code' => 'ES'], ['name' => 'Trencin', 'country_code' => 'SK'], ['name' => 'Rahovec', 'country_code' => 'XK'], ['name' => 'Jelgava', 'country_code' => 'LV'], ['name' => 'Tamiami', 'country_code' => 'US'], ['name' => 'Vaslui', 'country_code' => 'RO'], ['name' => 'Saint-Quentin', 'country_code' => 'FR'], ['name' => 'Massy', 'country_code' => 'FR'], ['name' => 'Kendale Lakes', 'country_code' => 'US'], ['name' => 'Castelo Branco', 'country_code' => 'PT'], ['name' => 'Rio Tinto', 'country_code' => 'PT'], ['name' => 'San Giorgio a Cremano', 'country_code' => 'IT'], ['name' => 'Vigan', 'country_code' => 'PH'], ['name' => 'Weymouth', 'country_code' => 'GB'], ['name' => 'Santa Rosa de Copan', 'country_code' => 'HN'], ['name' => 'Gallarate', 'country_code' => 'IT'], ['name' => 'Halmstad', 'country_code' => 'SE'], ['name' => 'Corbeil-Essonnes', 'country_code' => 'FR'], ['name' => 'Ohrid', 'country_code' => 'MK'], ['name' => 'Greenford', 'country_code' => 'GB'], ['name' => 'Ponte Nova', 'country_code' => 'BR'], ['name' => 'Matamoros', 'country_code' => 'MX'], ['name' => 'Guliston', 'country_code' => 'UZ'], ['name' => 'Rowley Regis', 'country_code' => 'GB'], ['name' => 'Bootle', 'country_code' => 'GB'], ['name' => 'Ibiza', 'country_code' => 'ES'], ['name' => 'Francisco I. Madero', 'country_code' => 'MX'], ['name' => 'New Brunswick', 'country_code' => 'US'], ['name' => 'Casalnuovo di Napoli', 'country_code' => 'IT'], ['name' => 'Lautoka', 'country_code' => 'FJ'], ['name' => 'Senhor do Bonfim', 'country_code' => 'BR'], ['name' => 'Ercolano', 'country_code' => 'IT'], ['name' => 'M.A. Rasulzada', 'country_code' => 'AZ'], ['name' => 'Fountain Valley', 'country_code' => 'US'], ['name' => 'Whangarei', 'country_code' => 'NZ'], ['name' => 'Villagran', 'country_code' => 'MX'], ['name' => 'Paignton', 'country_code' => 'GB'], ['name' => 'Lampang', 'country_code' => 'TH'], ['name' => 'Lancaster', 'country_code' => 'GB'], ['name' => 'Vranje', 'country_code' => 'RS'], ['name' => 'Abu Qir', 'country_code' => 'EG'], ['name' => 'Naval', 'country_code' => 'PH'], ['name' => 'Ithaca', 'country_code' => 'US'], ['name' => 'Chiapa de Corzo', 'country_code' => 'MX'], ['name' => 'Madinat Hamad', 'country_code' => 'BH'], ['name' => 'Oak Lawn', 'country_code' => 'US'], ['name' => 'Boac', 'country_code' => 'PH'], ['name' => 'Padangpanjang', 'country_code' => 'ID'], ['name' => 'Mikkeli', 'country_code' => 'FI'], ['name' => 'Malisheve', 'country_code' => 'XK'], ['name' => 'Gutao', 'country_code' => 'CN'], ['name' => 'Busia', 'country_code' => 'UG'], ['name' => 'Morden', 'country_code' => 'GB'], ['name' => 'Catford', 'country_code' => 'GB'], ['name' => 'Folkestone', 'country_code' => 'GB'], ['name' => 'Berwyn', 'country_code' => 'US'], ['name' => 'Charikar', 'country_code' => 'AF'], ['name' => 'Aloha', 'country_code' => 'US'], ['name' => 'Shiraoka', 'country_code' => 'JP'], ['name' => 'Prachuap Khiri Khan', 'country_code' => 'TH'], ['name' => 'Irvington', 'country_code' => 'US'], ['name' => 'Korce', 'country_code' => 'AL'], ['name' => 'Rosemead', 'country_code' => 'US'], ['name' => 'Tulcan', 'country_code' => 'EC'], ['name' => 'Rosny-sous-Bois', 'country_code' => 'FR'], ['name' => 'Muban Saeng Bua Thong', 'country_code' => 'TH'], ['name' => 'Paramount', 'country_code' => 'US'], ['name' => 'Louangphabang', 'country_code' => 'LA'], ['name' => 'Stratford', 'country_code' => 'GB'], ['name' => 'Choisy-le-Roi', 'country_code' => 'FR'], ['name' => 'Iganga', 'country_code' => 'UG'], ['name' => 'Cagnes-sur-Mer', 'country_code' => 'FR'], ['name' => 'Sakon Nakhon', 'country_code' => 'TH'], ['name' => 'Sutton in Ashfield', 'country_code' => 'GB'], ['name' => 'Pursat', 'country_code' => 'KH'], ['name' => 'Bayonne', 'country_code' => 'FR'], ['name' => 'Macclesfield', 'country_code' => 'GB'], ['name' => 'Eger', 'country_code' => 'HU'], ['name' => 'Nes Ziyyona', 'country_code' => 'IL'], ['name' => 'San Vicente', 'country_code' => 'SV'], ['name' => 'Cologno Monzese', 'country_code' => 'IT'], ['name' => 'Santiago Teyahualco', 'country_code' => 'MX'], ['name' => 'Marondera', 'country_code' => 'ZW'], ['name' => 'Wellingborough', 'country_code' => 'GB'], ['name' => 'Scafati', 'country_code' => 'IT'], ['name' => 'Moskovskiy', 'country_code' => 'RU'], ['name' => 'Rho', 'country_code' => 'IT'], ['name' => 'Gao', 'country_code' => 'ML'], ['name' => 'Maha Sarakham', 'country_code' => 'TH'], ['name' => 'Revere', 'country_code' => 'US'], ['name' => 'Barra do Corda', 'country_code' => 'BR'], ['name' => 'Aspen Hill', 'country_code' => 'US'], ['name' => 'Kirkcaldy', 'country_code' => 'GB'], ['name' => 'Helena', 'country_code' => 'US'], ['name' => 'Takeo', 'country_code' => 'KH'], ['name' => 'Hrazdan', 'country_code' => 'AM'], ['name' => 'Barnet', 'country_code' => 'GB'], ['name' => 'Vejle', 'country_code' => 'DK'], ['name' => 'Noisy-le-Sec', 'country_code' => 'FR'], ['name' => 'Santurce-Antiguo', 'country_code' => 'ES'], ['name' => 'Cumbernauld', 'country_code' => 'GB'], ['name' => 'Valladolid', 'country_code' => 'MX'], ['name' => 'West New York', 'country_code' => 'US'], ['name' => 'Mangochi', 'country_code' => 'MW'], ['name' => 'Hoboken', 'country_code' => 'US'], ['name' => 'Mongu', 'country_code' => 'ZM'], ['name' => 'Myrnohrad', 'country_code' => 'UA'], ['name' => 'Iwakura', 'country_code' => 'JP'], ['name' => 'Takahama', 'country_code' => 'JP'], ['name' => 'Boujad', 'country_code' => 'MA'], ['name' => 'Oak Park', 'country_code' => 'US'], ['name' => 'Batley', 'country_code' => 'GB'], ['name' => 'Jinotepe', 'country_code' => 'NI'], ['name' => 'Collegno', 'country_code' => 'IT'], ['name' => 'Ain El Aouda', 'country_code' => 'MA'], ['name' => 'Elmshorn', 'country_code' => 'DE'], ['name' => 'Floriano', 'country_code' => 'BR'], ['name' => 'Bang Bua Thong', 'country_code' => 'TH'], ['name' => 'Suzukawa', 'country_code' => 'JP'], ['name' => 'Lamia', 'country_code' => 'GR'], ['name' => 'Chake Chake', 'country_code' => 'TZ'], ['name' => 'Vaulx-en-Velin', 'country_code' => 'FR'], ['name' => 'Lankaran', 'country_code' => 'AZ'], ['name' => 'Vila Real', 'country_code' => 'PT'], ['name' => 'Ocosingo', 'country_code' => 'MX'], ['name' => 'Itamaraju', 'country_code' => 'BR'], ['name' => 'Pen-y-Bont ar Ogwr', 'country_code' => 'GB'], ['name' => 'Ramos Arizpe', 'country_code' => 'MX'], ['name' => 'Teplice', 'country_code' => 'CZ'], ['name' => 'Ratnapura', 'country_code' => 'LK'], ['name' => 'Jihlava', 'country_code' => 'CZ'], ['name' => 'Sombor', 'country_code' => 'RS'], ['name' => 'Levittown', 'country_code' => 'US'], ['name' => 'Bodo', 'country_code' => 'NO'], ['name' => 'Vryburg', 'country_code' => 'ZA'], ['name' => 'Eltham', 'country_code' => 'GB'], ['name' => 'Surbiton', 'country_code' => 'GB'], ['name' => 'Perth Amboy', 'country_code' => 'US'], ['name' => 'Ashton', 'country_code' => 'GB'], ['name' => 'Qasbat Tadla', 'country_code' => 'MA'], ['name' => 'Tizimin', 'country_code' => 'MX'], ['name' => 'Seguela', 'country_code' => 'CI'], ['name' => 'Placentia', 'country_code' => 'US'], ['name' => 'Guozhen', 'country_code' => 'CN'], ['name' => 'Stretford', 'country_code' => 'GB'], ['name' => 'Evere', 'country_code' => 'BE'], ['name' => 'Sar-e Pul', 'country_code' => 'AF'], ['name' => 'Komotini', 'country_code' => 'GR'], ['name' => 'Camocim', 'country_code' => 'BR'], ['name' => 'Cuetzalan', 'country_code' => 'MX'], ['name' => 'Loreto', 'country_code' => 'MX'], ['name' => 'Larnaca', 'country_code' => 'CY'], ['name' => 'Capanema', 'country_code' => 'BR'], ['name' => 'Gennevilliers', 'country_code' => 'FR'], ['name' => 'Bodupal', 'country_code' => 'IN'], ['name' => 'Longchamps', 'country_code' => 'AR'], ['name' => 'Alytus', 'country_code' => 'LT'], ['name' => 'Sisophon', 'country_code' => 'KH'], ['name' => 'Aliso Viejo', 'country_code' => 'US'], ['name' => 'Skenderaj', 'country_code' => 'XK'], ['name' => 'Jarash', 'country_code' => 'JO'], ['name' => 'Harasta', 'country_code' => 'SY'], ['name' => 'Puttalam', 'country_code' => 'LK'], ['name' => 'Iba', 'country_code' => 'PH'], ['name' => 'Welwyn Garden City', 'country_code' => 'GB'], ['name' => 'Jurmala', 'country_code' => 'LV'], ['name' => 'Bagneux', 'country_code' => 'FR'], ['name' => 'Gbadolite', 'country_code' => 'CD'], ['name' => 'Garges-les-Gonesse', 'country_code' => 'FR'], ['name' => 'Livry-Gargan', 'country_code' => 'FR'], ['name' => 'West Bridgford', 'country_code' => 'GB'], ['name' => 'Trujillo', 'country_code' => 'VE'], ['name' => 'Azemmour', 'country_code' => 'MA'], ['name' => 'Lissone', 'country_code' => 'IT'], ['name' => 'Country Club', 'country_code' => 'US'], ['name' => 'Goianesia', 'country_code' => 'BR'], ['name' => 'Yeovil', 'country_code' => 'GB'], ['name' => 'Beckenham', 'country_code' => 'GB'], ['name' => 'Gracias', 'country_code' => 'HN'], ['name' => 'Ma an', 'country_code' => 'JO'], ['name' => 'Cojutepeque', 'country_code' => 'SV'], ['name' => 'Selibe Phikwe', 'country_code' => 'BW'], ['name' => 'Villa Alsina', 'country_code' => 'AR'], ['name' => 'Plainfield', 'country_code' => 'US'], ['name' => 'Invercargill', 'country_code' => 'NZ'], ['name' => 'Wheaton', 'country_code' => 'US'], ['name' => 'Campobasso', 'country_code' => 'IT'], ['name' => 'Tlalmanalco', 'country_code' => 'MX'], ['name' => 'Moyobamba', 'country_code' => 'PE'], ['name' => 'Al Kharjah', 'country_code' => 'EG'], ['name' => 'Kotelniki', 'country_code' => 'RU'], ['name' => 'Nichelino', 'country_code' => 'IT'], ['name' => 'Al Balyana', 'country_code' => 'EG'], ['name' => 'Paderno Dugnano', 'country_code' => 'IT'], ['name' => 'Meudon', 'country_code' => 'FR'], ['name' => 'Zaranj', 'country_code' => 'AF'], ['name' => 'La Garenne-Colombes', 'country_code' => 'FR'], ['name' => 'Odienne', 'country_code' => 'CI'], ['name' => 'Cheshunt', 'country_code' => 'GB'], ['name' => 'Nausori', 'country_code' => 'FJ'], ['name' => 'North Bethesda', 'country_code' => 'US'], ['name' => 'Hagere Hiywet', 'country_code' => 'ET'], ['name' => 'Cerritos', 'country_code' => 'US'], ['name' => 'Dosso', 'country_code' => 'NE'], ['name' => 'Kangar', 'country_code' => 'MY'], ['name' => 'Al Aaroui', 'country_code' => 'MA'], ['name' => 'Figueras', 'country_code' => 'ES'], ['name' => 'Lakewood', 'country_code' => 'US'], ['name' => 'Montana', 'country_code' => 'BG'], ['name' => 'Huancavelica', 'country_code' => 'PE'], ['name' => 'Perth', 'country_code' => 'GB'], ['name' => 'Brumado', 'country_code' => 'BR'], ['name' => 'Dollard-des-Ormeaux', 'country_code' => 'CA'], ['name' => 'El ad', 'country_code' => 'IL'], ['name' => 'Couva', 'country_code' => 'TT'], ['name' => 'Lulea', 'country_code' => 'SE'], ['name' => 'Waterford', 'country_code' => 'IE'], ['name' => 'Bagnolet', 'country_code' => 'FR'], ['name' => 'Ramat HaSharon', 'country_code' => 'IL'], ['name' => 'Nelson', 'country_code' => 'NZ'], ['name' => 'Wajir', 'country_code' => 'KE'], ['name' => 'San Feliu de Llobregat', 'country_code' => 'ES'], ['name' => 'Mairena del Aljarafe', 'country_code' => 'ES'], ['name' => 'Bloomfield', 'country_code' => 'US'], ['name' => 'San Isidro', 'country_code' => 'AR'], ['name' => 'Corroios', 'country_code' => 'PT'], ['name' => 'Karlovy Vary', 'country_code' => 'CZ'], ['name' => 'Jose Marmol', 'country_code' => 'AR'], ['name' => 'Ayr', 'country_code' => 'GB'], ['name' => 'Banbury', 'country_code' => 'GB'], ['name' => 'Wokingham', 'country_code' => 'GB'], ['name' => 'Moroleon', 'country_code' => 'MX'], ['name' => 'Mantes-la-Jolie', 'country_code' => 'FR'], ['name' => 'Cypress', 'country_code' => 'US'], ['name' => 'Hollister', 'country_code' => 'US'], ['name' => 'La Courneuve', 'country_code' => 'FR'], ['name' => 'Inhumas', 'country_code' => 'BR'], ['name' => 'Rovenky', 'country_code' => 'UA'], ['name' => 'Middelburg', 'country_code' => 'NL'], ['name' => 'Asadabad', 'country_code' => 'AF'], ['name' => 'Tlapa de Comonfort', 'country_code' => 'MX'], ['name' => 'Chatillon', 'country_code' => 'FR'], ['name' => 'Birendranagar', 'country_code' => 'NP'], ['name' => 'Krasnoznamensk', 'country_code' => 'RU'], ['name' => 'Ceres', 'country_code' => 'US'], ['name' => 'Nueva Loja', 'country_code' => 'EC'], ['name' => 'Puerto Escondido', 'country_code' => 'MX'], ['name' => 'Noveleta', 'country_code' => 'PH'], ['name' => 'Bangued', 'country_code' => 'PH'], ['name' => 'Seregno', 'country_code' => 'IT'], ['name' => 'Serowe', 'country_code' => 'BW'], ['name' => 'Mandeville', 'country_code' => 'JM'], ['name' => 'Nong Khai', 'country_code' => 'TH'], ['name' => 'Salekhard', 'country_code' => 'RU'], ['name' => 'Mercedes', 'country_code' => 'UY'], ['name' => 'University', 'country_code' => 'US'], ['name' => 'Antelope', 'country_code' => 'US'], ['name' => 'Leiria', 'country_code' => 'PT'], ['name' => 'Parras de la Fuente', 'country_code' => 'MX'], ['name' => 'Emiliano Zapata', 'country_code' => 'MX'], ['name' => 'Bindura', 'country_code' => 'ZW'], ['name' => 'Gori', 'country_code' => 'GE'], ['name' => 'Bastia', 'country_code' => 'FR'], ['name' => 'Isiolo', 'country_code' => 'KE'], ['name' => 'La Mirada', 'country_code' => 'US'], ['name' => 'Inuma', 'country_code' => 'JP'], ['name' => 'Havant', 'country_code' => 'GB'], ['name' => 'Chalon-sur-Saone', 'country_code' => 'FR'], ['name' => 'Torre Annunziata', 'country_code' => 'IT'], ['name' => 'Leribe', 'country_code' => 'LS'], ['name' => 'Nocera Inferiore', 'country_code' => 'IT'], ['name' => 'Kanash', 'country_code' => 'RU'], ['name' => 'Hinckley', 'country_code' => 'GB'], ['name' => 'Njombe', 'country_code' => 'TZ'], ['name' => 'Melito di Napoli', 'country_code' => 'IT'], ['name' => 'Erith', 'country_code' => 'GB'], ['name' => 'Talence', 'country_code' => 'FR'], ['name' => 'New Amsterdam', 'country_code' => 'GY'], ['name' => 'Kerkrade', 'country_code' => 'NL'], ['name' => 'North Highlands', 'country_code' => 'US'], ['name' => 'Karmiel', 'country_code' => 'IL'], ['name' => 'Morley', 'country_code' => 'GB'], ['name' => 'Hajjah', 'country_code' => 'YE'], ['name' => 'Empalme', 'country_code' => 'MX'], ['name' => 'Kokkola', 'country_code' => 'FI'], ['name' => 'Florin', 'country_code' => 'US'], ['name' => 'Covina', 'country_code' => 'US'], ['name' => 'Bang Kruai', 'country_code' => 'TH'], ['name' => 'Tubod', 'country_code' => 'PH'], ['name' => 'Murzuq', 'country_code' => 'LY'], ['name' => 'Ripollet', 'country_code' => 'ES'], ['name' => 'San Adrian de Besos', 'country_code' => 'ES'], ['name' => 'Caluire-et-Cuire', 'country_code' => 'FR'], ['name' => 'Rosso', 'country_code' => 'MR'], ['name' => 'Villa de Zaachila', 'country_code' => 'MX'], ['name' => 'Naj Hammadi', 'country_code' => 'EG'], ['name' => 'Charenton-le-Pont', 'country_code' => 'FR'], ['name' => 'Hammam-Lif', 'country_code' => 'TN'], ['name' => 'Chitre', 'country_code' => 'PA'], ['name' => 'Salgueiro', 'country_code' => 'BR'], ['name' => 'Badulla', 'country_code' => 'LK'], ['name' => 'Nagykanizsa', 'country_code' => 'HU'], ['name' => 'Malakoff', 'country_code' => 'FR'], ['name' => 'Welling', 'country_code' => 'GB'], ['name' => 'Viti', 'country_code' => 'XK'], ['name' => 'Boosaaso', 'country_code' => 'SO'], ['name' => 'Izucar de Matamoros', 'country_code' => 'MX'], ['name' => 'Qiryat Ono', 'country_code' => 'IL'], ['name' => 'Castleford', 'country_code' => 'GB'], ['name' => 'Santiago', 'country_code' => 'PA'], ['name' => 'Fareham', 'country_code' => 'GB'], ['name' => 'Le Cannet', 'country_code' => 'FR'], ['name' => 'Kanye', 'country_code' => 'BW'], ['name' => 'Embu', 'country_code' => 'KE'], ['name' => 'Choma', 'country_code' => 'ZM'], ['name' => 'Aweil', 'country_code' => 'SS'], ['name' => 'Ostersund', 'country_code' => 'SE'], ['name' => 'Merthyr Tudful', 'country_code' => 'GB'], ['name' => 'Trollhattan', 'country_code' => 'SE'], ['name' => 'Rye', 'country_code' => 'US'], ['name' => 'Valenciennes', 'country_code' => 'FR'], ['name' => 'Everett', 'country_code' => 'US'], ['name' => 'Sibenik', 'country_code' => 'HR'], ['name' => 'Coatbridge', 'country_code' => 'GB'], ['name' => 'Saint-Brieuc', 'country_code' => 'FR'], ['name' => 'Cobija', 'country_code' => 'BO'], ['name' => 'Yuchengcun', 'country_code' => 'CN'], ['name' => 'Urmston', 'country_code' => 'GB'], ['name' => 'Farim', 'country_code' => 'GW'], ['name' => 'Daijiazhuang', 'country_code' => 'CN'], ['name' => 'Slobozia', 'country_code' => 'RO'], ['name' => 'Mafamude', 'country_code' => 'PT'], ['name' => 'Mrirt', 'country_code' => 'MA'], ['name' => 'Vilvoorde', 'country_code' => 'BE'], ['name' => 'Kingswood', 'country_code' => 'GB'], ['name' => 'Jerada', 'country_code' => 'MA'], ['name' => 'Hammam Sousse', 'country_code' => 'TN'], ['name' => 'Rozzano', 'country_code' => 'IT'], ['name' => 'Gbarnga', 'country_code' => 'LR'], ['name' => 'Stains', 'country_code' => 'FR'], ['name' => 'Alexandria', 'country_code' => 'RO'], ['name' => 'Madinat Isa', 'country_code' => 'BH'], ['name' => 'Igualada', 'country_code' => 'ES'], ['name' => 'Thun', 'country_code' => 'CH'], ['name' => 'Vanves', 'country_code' => 'FR'], ['name' => 'Kingston upon Thames', 'country_code' => 'GB'], ['name' => 'Buta', 'country_code' => 'CD'], ['name' => 'Bron', 'country_code' => 'FR'], ['name' => 'Targovishte', 'country_code' => 'BG'], ['name' => 'Nueva Gerona', 'country_code' => 'CU'], ['name' => 'Tindouf', 'country_code' => 'DZ'], ['name' => 'Jaltipan de Morelos', 'country_code' => 'MX'], ['name' => 'Bluefields', 'country_code' => 'NI'], ['name' => 'Strumica', 'country_code' => 'MK'], ['name' => 'Liberia', 'country_code' => 'CR'], ['name' => 'Bellinzona', 'country_code' => 'CH'], ['name' => 'Pattani', 'country_code' => 'TH'], ['name' => 'Artigas', 'country_code' => 'UY'], ['name' => 'Arlington', 'country_code' => 'US'], ['name' => 'Pinneberg', 'country_code' => 'DE'], ['name' => 'Newbury', 'country_code' => 'GB'], ['name' => 'Coyotepec', 'country_code' => 'MX'], ['name' => 'Oakland Park', 'country_code' => 'US'], ['name' => 'Donggangli', 'country_code' => 'CN'], ['name' => 'Gagny', 'country_code' => 'FR'], ['name' => 'Alcantarilla', 'country_code' => 'ES'], ['name' => 'Dunaujvaros', 'country_code' => 'HU'], ['name' => 'Sutton', 'country_code' => 'GB'], ['name' => 'Melun', 'country_code' => 'FR'], ['name' => 'Bridgwater', 'country_code' => 'GB'], ['name' => 'Kabale', 'country_code' => 'UG'], ['name' => 'Desio', 'country_code' => 'IT'], ['name' => 'Swidnik', 'country_code' => 'PL'], ['name' => 'Altadena', 'country_code' => 'US'], ['name' => 'Qiryat Bialik', 'country_code' => 'IL'], ['name' => 'Bishops Stortford', 'country_code' => 'GB'], ['name' => 'Bois-Colombes', 'country_code' => 'FR'], ['name' => 'Nogent-sur-Marne', 'country_code' => 'FR'], ['name' => 'Lecherias', 'country_code' => 'VE'], ['name' => 'Arras', 'country_code' => 'FR'], ['name' => 'Umm al Qaywayn', 'country_code' => 'AE'], ['name' => 'Reze', 'country_code' => 'FR'], ['name' => 'Duncan', 'country_code' => 'CA'], ['name' => 'El Aioun', 'country_code' => 'MA'], ['name' => 'Chimaltenango', 'country_code' => 'GT'], ['name' => 'Kirkby', 'country_code' => 'GB'], ['name' => 'Salisbury', 'country_code' => 'GB'], ['name' => 'Katsuren-haebaru', 'country_code' => 'JP'], ['name' => 'Tarbes', 'country_code' => 'FR'], ['name' => 'Boumerdes', 'country_code' => 'DZ'], ['name' => 'North Lauderdale', 'country_code' => 'US'], ['name' => 'Leidschendam', 'country_code' => 'NL'], ['name' => 'Caerphilly', 'country_code' => 'GB'], ['name' => 'Hackensack', 'country_code' => 'US'], ['name' => 'Caloundra', 'country_code' => 'AU'], ['name' => 'Wattrelos', 'country_code' => 'FR'], ['name' => 'Kampong Chhnang', 'country_code' => 'KH'], ['name' => 'Cleveland Heights', 'country_code' => 'US'], ['name' => 'Fort Portal', 'country_code' => 'UG'], ['name' => 'Ermezinde', 'country_code' => 'PT'], ['name' => 'Veles', 'country_code' => 'MK'], ['name' => 'Or Yehuda', 'country_code' => 'IL'], ['name' => 'Haedo', 'country_code' => 'AR'], ['name' => 'Paracho de Verduzco', 'country_code' => 'MX'], ['name' => 'Stip', 'country_code' => 'MK'], ['name' => 'Drogheda', 'country_code' => 'IE'], ['name' => 'Trujillo Alto', 'country_code' => 'PR'], ['name' => 'Concord', 'country_code' => 'US'], ['name' => 'Kalmar', 'country_code' => 'SE'], ['name' => 'Playa Vicente', 'country_code' => 'MX'], ['name' => 'Munro', 'country_code' => 'AR'], ['name' => 'Matale', 'country_code' => 'LK'], ['name' => 'Uman', 'country_code' => 'MX'], ['name' => 'Grays', 'country_code' => 'GB'], ['name' => 'Abingdon', 'country_code' => 'GB'], ['name' => 'Nanuque', 'country_code' => 'BR'], ['name' => 'San Diego de la Union', 'country_code' => 'MX'], ['name' => 'Hodmezovasarhely', 'country_code' => 'HU'], ['name' => 'Ramsgate', 'country_code' => 'GB'], ['name' => 'Annandale', 'country_code' => 'US'], ['name' => 'Rohnert Park', 'country_code' => 'US'], ['name' => 'Zugdidi', 'country_code' => 'GE'], ['name' => 'Mityana', 'country_code' => 'UG'], ['name' => 'Cacem', 'country_code' => 'PT'], ['name' => 'Le Kremlin-Bicetre', 'country_code' => 'FR'], ['name' => 'Salem', 'country_code' => 'US'], ['name' => 'Ilkeston', 'country_code' => 'GB'], ['name' => 'Kapan', 'country_code' => 'AM'], ['name' => 'Pomigliano d Arco', 'country_code' => 'IT'], ['name' => 'Beverwijk', 'country_code' => 'NL'], ['name' => 'Aldershot', 'country_code' => 'GB'], ['name' => 'Cleethorpes', 'country_code' => 'GB'], ['name' => 'Minas', 'country_code' => 'UY'], ['name' => 'Mamburao', 'country_code' => 'PH'], ['name' => 'Leighton Buzzard', 'country_code' => 'GB'], ['name' => 'Alajuela', 'country_code' => 'CR'], ['name' => 'North Miami Beach', 'country_code' => 'US'], ['name' => 'Franceville', 'country_code' => 'GA'], ['name' => 'Garbahaarrey', 'country_code' => 'SO'], ['name' => 'Perote', 'country_code' => 'MX'], ['name' => 'Annemasse', 'country_code' => 'FR'], ['name' => 'Saronno', 'country_code' => 'IT'], ['name' => 'Whitney', 'country_code' => 'US'], ['name' => 'Freeport', 'country_code' => 'US'], ['name' => 'Juan Rodriguez Clara', 'country_code' => 'MX'], ['name' => 'Dubrovnik', 'country_code' => 'HR'], ['name' => 'Blyth', 'country_code' => 'GB'], ['name' => 'San Bruno', 'country_code' => 'US'], ['name' => 'Quinhamel', 'country_code' => 'GW'], ['name' => 'Franconville', 'country_code' => 'FR'], ['name' => 'Hicksville', 'country_code' => 'US'], ['name' => 'Silistra', 'country_code' => 'BG'], ['name' => 'West Babylon', 'country_code' => 'US'], ['name' => 'Saint-Martin-d Heres', 'country_code' => 'FR'], ['name' => 'Guarda', 'country_code' => 'PT'], ['name' => 'Si Sa Ket', 'country_code' => 'TH'], ['name' => 'Aldridge', 'country_code' => 'GB'], ['name' => 'Kampot', 'country_code' => 'KH'], ['name' => 'Fribourg', 'country_code' => 'CH'], ['name' => 'Long Eaton', 'country_code' => 'GB'], ['name' => 'La Barca', 'country_code' => 'MX'], ['name' => 'Le Perreux-Sur-Marne', 'country_code' => 'FR'], ['name' => 'Arnold', 'country_code' => 'GB'], ['name' => 'Lovech', 'country_code' => 'BG'], ['name' => 'Miercurea-Ciuc', 'country_code' => 'RO'], ['name' => 'Cachan', 'country_code' => 'FR'], ['name' => 'Berat', 'country_code' => 'AL'], ['name' => 'Small Heath', 'country_code' => 'GB'], ['name' => 'Myrhorod', 'country_code' => 'UA'], ['name' => 'Ardahan', 'country_code' => 'TR'], ['name' => 'Villafranca del Panades', 'country_code' => 'ES'], ['name' => 'Dock Sur', 'country_code' => 'AR'], ['name' => 'Bambari', 'country_code' => 'CF'], ['name' => 'Blanes', 'country_code' => 'ES'], ['name' => 'Herne Bay', 'country_code' => 'GB'], ['name' => 'Aziylal', 'country_code' => 'MA'], ['name' => 'Tonala', 'country_code' => 'MX'], ['name' => 'Nakama', 'country_code' => 'JP'], ['name' => 'Cao Bang', 'country_code' => 'VN'], ['name' => 'San Jose', 'country_code' => 'UY'], ['name' => 'Aberdare', 'country_code' => 'GB'], ['name' => 'Douai', 'country_code' => 'FR'], ['name' => 'Daman', 'country_code' => 'IN'], ['name' => 'Bell Gardens', 'country_code' => 'US'], ['name' => 'Cesano Maderno', 'country_code' => 'IT'], ['name' => 'Razgrad', 'country_code' => 'BG'], ['name' => 'Placilla de Penuelas', 'country_code' => 'CL'], ['name' => 'Kahama', 'country_code' => 'TZ'], ['name' => 'Amudalavalasa', 'country_code' => 'IN'], ['name' => 'Lindi', 'country_code' => 'TZ'], ['name' => 'Savigny-sur-Orge', 'country_code' => 'FR'], ['name' => 'Campbell', 'country_code' => 'US'], ['name' => 'Port Talbot', 'country_code' => 'GB'], ['name' => 'Puntarenas', 'country_code' => 'CR'], ['name' => 'Woonsocket', 'country_code' => 'US'], ['name' => 'Biougra', 'country_code' => 'MA'], ['name' => 'Xico', 'country_code' => 'MX'], ['name' => 'Narathiwat', 'country_code' => 'TH'], ['name' => 'Mugnano di Napoli', 'country_code' => 'IT'], ['name' => 'Sidi Yahia El Gharb', 'country_code' => 'MA'], ['name' => 'Nueva Rosita', 'country_code' => 'MX'], ['name' => 'Echirolles', 'country_code' => 'FR'], ['name' => 'Ciampino', 'country_code' => 'IT'], ['name' => 'La Paz', 'country_code' => 'HN'], ['name' => 'Villa Adelina', 'country_code' => 'AR'], ['name' => 'Morshansk', 'country_code' => 'RU'], ['name' => 'Arzano', 'country_code' => 'IT'], ['name' => 'Palayan City', 'country_code' => 'PH'], ['name' => 'Lusambo', 'country_code' => 'CD'], ['name' => 'Salvatierra', 'country_code' => 'MX'], ['name' => 'Marcq-en-Baroeul', 'country_code' => 'FR'], ['name' => 'Villarrica', 'country_code' => 'PY'], ['name' => 'Zacatelco', 'country_code' => 'MX'], ['name' => 'Corsico', 'country_code' => 'IT'], ['name' => 'Kozani', 'country_code' => 'GR'], ['name' => 'Vredenburg', 'country_code' => 'ZA'], ['name' => 'Malbork', 'country_code' => 'PL'], ['name' => 'Wilrijk', 'country_code' => 'BE'], ['name' => 'Panaji', 'country_code' => 'IN'], ['name' => 'Greenacres', 'country_code' => 'US'], ['name' => 'Le Pre-Saint-Gervais', 'country_code' => 'FR'], ['name' => 'Hyde', 'country_code' => 'GB'], ['name' => 'Famagusta', 'country_code' => 'CY'], ['name' => 'Puerto Francisco de Orellana', 'country_code' => 'EC'], ['name' => 'San Roque', 'country_code' => 'PH'], ['name' => 'Ngozi', 'country_code' => 'BI'], ['name' => 'Burjasot', 'country_code' => 'ES'], ['name' => 'Miyoshidai', 'country_code' => 'JP'], ['name' => 'Chartres', 'country_code' => 'FR'], ['name' => 'Barreiros', 'country_code' => 'BR'], ['name' => 'Wilkes-Barre', 'country_code' => 'US'], ['name' => 'Fleet', 'country_code' => 'GB'], ['name' => 'Samkir', 'country_code' => 'AZ'], ['name' => 'Villefranche-sur-Saone', 'country_code' => 'FR'], ['name' => 'Parnu', 'country_code' => 'EE'], ['name' => 'Whitley Bay', 'country_code' => 'GB'], ['name' => 'Dun Dealgan', 'country_code' => 'IE'], ['name' => 'Shengli', 'country_code' => 'CN'], ['name' => 'Al Karnak', 'country_code' => 'EG'], ['name' => 'Sayula de Aleman', 'country_code' => 'MX'], ['name' => 'Bjelovar', 'country_code' => 'HR'], ['name' => 'Teaneck', 'country_code' => 'US'], ['name' => 'Grugliasco', 'country_code' => 'IT'], ['name' => 'Al Bayda ', 'country_code' => 'YE'], ['name' => 'Villepinte', 'country_code' => 'FR'], ['name' => 'Ez Zahra', 'country_code' => 'TN'], ['name' => 'Yambio', 'country_code' => 'SS'], ['name' => 'Bouar', 'country_code' => 'CF'], ['name' => 'Beeston', 'country_code' => 'GB'], ['name' => 'Ban Sai Ma Tai', 'country_code' => 'TH'], ['name' => 'Camberley', 'country_code' => 'GB'], ['name' => 'Agualva', 'country_code' => 'PT'], ['name' => 'Poissy', 'country_code' => 'FR'], ['name' => 'Mariano Escobedo', 'country_code' => 'MX'], ['name' => 'Neuilly-sur-Marne', 'country_code' => 'FR'], ['name' => 'Kaya', 'country_code' => 'BF'], ['name' => 'Inongo', 'country_code' => 'CD'], ['name' => 'Kanie', 'country_code' => 'JP'], ['name' => 'Sainte-Genevieve-des-Bois', 'country_code' => 'FR'], ['name' => 'Montclair', 'country_code' => 'US'], ['name' => 'Retalhuleu', 'country_code' => 'GT'], ['name' => 'Decan', 'country_code' => 'XK'], ['name' => 'Dunstable', 'country_code' => 'GB'], ['name' => 'Xacmaz', 'country_code' => 'AZ'], ['name' => 'Chachoengsao', 'country_code' => 'TH'], ['name' => 'Bletchley', 'country_code' => 'GB'], ['name' => 'Baler', 'country_code' => 'PH'], ['name' => 'Denton', 'country_code' => 'GB'], ['name' => 'Surin', 'country_code' => 'TH'], ['name' => 'San Gabriel', 'country_code' => 'US'], ['name' => 'Koumra', 'country_code' => 'TD'], ['name' => 'North Shields', 'country_code' => 'GB'], ['name' => 'Hallandale Beach', 'country_code' => 'US'], ['name' => 'Massawa', 'country_code' => 'ER'], ['name' => 'Pont-y-pwl', 'country_code' => 'GB'], ['name' => 'San Juan Despi', 'country_code' => 'ES'], ['name' => 'Kenton', 'country_code' => 'GB'], ['name' => 'Santa Elena', 'country_code' => 'EC'], ['name' => 'Pioltello', 'country_code' => 'IT'], ['name' => 'Keizer', 'country_code' => 'US'], ['name' => 'Mochudi', 'country_code' => 'BW'], ['name' => 'Vernier', 'country_code' => 'CH'], ['name' => 'Chelsea', 'country_code' => 'US'], ['name' => 'Bridlington', 'country_code' => 'GB'], ['name' => 'Sant Antimo', 'country_code' => 'IT'], ['name' => 'Sopot', 'country_code' => 'PL'], ['name' => 'La Puente', 'country_code' => 'US'], ['name' => 'Celje', 'country_code' => 'SI'], ['name' => 'Houilles', 'country_code' => 'FR'], ['name' => 'Waipahu', 'country_code' => 'US'], ['name' => 'Conflans-Sainte-Honorine', 'country_code' => 'FR'], ['name' => 'Florida', 'country_code' => 'UY'], ['name' => 'Pierrefitte-sur-Seine', 'country_code' => 'FR'], ['name' => 'Istog', 'country_code' => 'XK'], ['name' => 'Agcabadi', 'country_code' => 'AZ'], ['name' => 'Bollate', 'country_code' => 'IT'], ['name' => 'L Hay-les-Roses', 'country_code' => 'FR'], ['name' => 'Annapolis', 'country_code' => 'US'], ['name' => 'Romblon', 'country_code' => 'PH'], ['name' => 'Culver City', 'country_code' => 'US'], ['name' => 'Walkden', 'country_code' => 'GB'], ['name' => 'Mambajao', 'country_code' => 'PH'], ['name' => 'Durazno', 'country_code' => 'UY'], ['name' => 'Sao Francisco do Sul', 'country_code' => 'BR'], ['name' => 'Panuco', 'country_code' => 'MX'], ['name' => 'Nueva Italia de Ruiz', 'country_code' => 'MX'], ['name' => 'Xam Nua', 'country_code' => 'LA'], ['name' => 'Tromso', 'country_code' => 'NO'], ['name' => 'Januaria', 'country_code' => 'BR'], ['name' => 'Koekelberg', 'country_code' => 'BE'], ['name' => 'Creil', 'country_code' => 'FR'], ['name' => 'Northolt', 'country_code' => 'GB'], ['name' => 'Dedougou', 'country_code' => 'BF'], ['name' => 'Frankfort', 'country_code' => 'US'], ['name' => 'Armavir', 'country_code' => 'AM'], ['name' => 'Ayutuxtepeque', 'country_code' => 'SV'], ['name' => 'Northglenn', 'country_code' => 'US'], ['name' => 'Kavadarci', 'country_code' => 'MK'], ['name' => 'Vrilissia', 'country_code' => 'GR'], ['name' => 'Miahuatlan de Porfirio Diaz', 'country_code' => 'MX'], ['name' => 'Barda', 'country_code' => 'AZ'], ['name' => 'Ha Giang', 'country_code' => 'VN'], ['name' => 'Chatenay-Malabry', 'country_code' => 'FR'], ['name' => 'Tuyen Quang', 'country_code' => 'VN'], ['name' => 'El Hajeb', 'country_code' => 'MA'], ['name' => 'Karonga', 'country_code' => 'MW'], ['name' => 'Palaiseau', 'country_code' => 'FR'], ['name' => 'Fort Lee', 'country_code' => 'US'], ['name' => 'Casalecchio di Reno', 'country_code' => 'IT'], ['name' => 'Highbury', 'country_code' => 'GB'], ['name' => 'Zinacantan', 'country_code' => 'MX'], ['name' => 'Premia de Mar', 'country_code' => 'ES'], ['name' => 'Ewell', 'country_code' => 'GB'], ['name' => 'Tunceli', 'country_code' => 'TR'], ['name' => 'Les Lilas', 'country_code' => 'FR'], ['name' => 'Lake Worth', 'country_code' => 'US'], ['name' => 'Wisbech', 'country_code' => 'GB'], ['name' => 'Bossangoa', 'country_code' => 'CF'], ['name' => 'Kline', 'country_code' => 'XK'], ['name' => 'Tit Mellil', 'country_code' => 'MA'], ['name' => 'Riacho de Santana', 'country_code' => 'BR'], ['name' => 'Bucha', 'country_code' => 'UA'], ['name' => 'Chorley', 'country_code' => 'GB'], ['name' => 'Zaio', 'country_code' => 'MA'], ['name' => 'Athis-Mons', 'country_code' => 'FR'], ['name' => 'Kendall West', 'country_code' => 'US'], ['name' => 'Falkirk', 'country_code' => 'GB'], ['name' => 'Montclair', 'country_code' => 'US'], ['name' => 'Jacarezinho', 'country_code' => 'BR'], ['name' => 'Zeghanghane', 'country_code' => 'MA'], ['name' => 'Hanwell', 'country_code' => 'GB'], ['name' => 'Jimenez', 'country_code' => 'MX'], ['name' => 'Tuxpan', 'country_code' => 'MX'], ['name' => 'Choybalsan', 'country_code' => 'MN'], ['name' => 'Am-Timan', 'country_code' => 'TD'], ['name' => 'Tenkodogo', 'country_code' => 'BF'], ['name' => 'La Presa', 'country_code' => 'US'], ['name' => 'Massama', 'country_code' => 'PT'], ['name' => 'Brugherio', 'country_code' => 'IT'], ['name' => 'Macuspana', 'country_code' => 'MX'], ['name' => 'Stanton', 'country_code' => 'US'], ['name' => 'Shangzhuangcun', 'country_code' => 'CN'], ['name' => 'Brzeg', 'country_code' => 'PL'], ['name' => 'Redcar', 'country_code' => 'GB'], ['name' => 'Kikinda', 'country_code' => 'RS'], ['name' => 'Tomatlan', 'country_code' => 'MX'], ['name' => 'East Meadow', 'country_code' => 'US'], ['name' => 'Paphos', 'country_code' => 'CY'], ['name' => 'Limbiate', 'country_code' => 'IT'], ['name' => 'Ali Sabieh', 'country_code' => 'DJ'], ['name' => 'Mission Bend', 'country_code' => 'US'], ['name' => 'Adjumani', 'country_code' => 'UG'], ['name' => 'Gisborne', 'country_code' => 'NZ'], ['name' => 'Spalding', 'country_code' => 'GB'], ['name' => 'Mediouna', 'country_code' => 'MA'], ['name' => 'Dori', 'country_code' => 'BF'], ['name' => 'Yihezhuang', 'country_code' => 'CN'], ['name' => 'Capitao Poco', 'country_code' => 'BR'], ['name' => 'Esch-sur-Alzette', 'country_code' => 'LU'], ['name' => 'Frattamaggiore', 'country_code' => 'IT'], ['name' => 'Le Plessis-Robinson', 'country_code' => 'FR'], ['name' => 'Egypt Lake-Leto', 'country_code' => 'US'], ['name' => 'Escuinapa', 'country_code' => 'MX'], ['name' => 'Kajaani', 'country_code' => 'FI'], ['name' => 'Salto del Guaira', 'country_code' => 'PY'], ['name' => 'Samrong', 'country_code' => 'TH'], ['name' => 'Segrate', 'country_code' => 'IT'], ['name' => 'Villeneuve-Saint-Georges', 'country_code' => 'FR'], ['name' => 'Richmond West', 'country_code' => 'US'], ['name' => 'Schaffhausen', 'country_code' => 'CH'], ['name' => 'Valley Stream', 'country_code' => 'US'], ['name' => 'Hanover Park', 'country_code' => 'US'], ['name' => 'Tozeur', 'country_code' => 'TN'], ['name' => 'Villemomble', 'country_code' => 'FR'], ['name' => 'Hitchin', 'country_code' => 'GB'], ['name' => 'Nanchital de Lazaro Cardenas del Rio', 'country_code' => 'MX'], ['name' => ' Ataq', 'country_code' => 'YE'], ['name' => 'Strood', 'country_code' => 'GB'], ['name' => 'Soteapan', 'country_code' => 'MX'], ['name' => 'Santa Maria Atzompa', 'country_code' => 'MX'], ['name' => 'South Miami Heights', 'country_code' => 'US'], ['name' => 'Prijepolje', 'country_code' => 'RS'], ['name' => 'Al Qunaytirah', 'country_code' => 'SY'], ['name' => 'Chaiyaphum', 'country_code' => 'TH'], ['name' => 'Salt', 'country_code' => 'ES'], ['name' => 'Riccione Marina', 'country_code' => 'IT'], ['name' => 'Swords', 'country_code' => 'IE'], ['name' => 'Aventura', 'country_code' => 'US'], ['name' => 'Park Ridge', 'country_code' => 'US'], ['name' => 'Thonon-les-Bains', 'country_code' => 'FR'], ['name' => 'Tenosique', 'country_code' => 'MX'], ['name' => 'Cernusco sul Naviglio', 'country_code' => 'IT'], ['name' => 'Putla Villa de Guerrero', 'country_code' => 'MX'], ['name' => 'Saint-Mande', 'country_code' => 'FR'], ['name' => 'Falun', 'country_code' => 'SE'], ['name' => 'Letchworth', 'country_code' => 'GB'], ['name' => 'Santa Isabel', 'country_code' => 'MX'], ['name' => 'Ratchaburi', 'country_code' => 'TH'], ['name' => 'Wigston Magna', 'country_code' => 'GB'], ['name' => 'Bezons', 'country_code' => 'FR'], ['name' => 'Clichy-sous-Bois', 'country_code' => 'FR'], ['name' => 'Pinner', 'country_code' => 'GB'], ['name' => 'Karlskrona', 'country_code' => 'SE'], ['name' => 'Ticul', 'country_code' => 'MX'], ['name' => 'Angri', 'country_code' => 'IT'], ['name' => 'Calpulalpan', 'country_code' => 'MX'], ['name' => 'Ebebiyin', 'country_code' => 'GQ'], ['name' => 'Trowbridge', 'country_code' => 'GB'], ['name' => 'Czeladz', 'country_code' => 'PL'], ['name' => 'Rayleigh', 'country_code' => 'GB'], ['name' => 'Roanne', 'country_code' => 'FR'], ['name' => 'West Hollywood', 'country_code' => 'US'], ['name' => 'Earley', 'country_code' => 'GB'], ['name' => 'Paso de Ovejas', 'country_code' => 'MX'], ['name' => 'Agen', 'country_code' => 'FR'], ['name' => 'Bicester', 'country_code' => 'GB'], ['name' => 'Abasolo', 'country_code' => 'MX'], ['name' => 'Paso del Macho', 'country_code' => 'MX'], ['name' => 'Jordan', 'country_code' => 'PH'], ['name' => 'Goba', 'country_code' => 'ET'], ['name' => 'Goycay', 'country_code' => 'AZ'], ['name' => 'Richfield', 'country_code' => 'US'], ['name' => 'Rutherglen', 'country_code' => 'GB'], ['name' => 'Campo Maior', 'country_code' => 'BR'], ['name' => 'Kearns', 'country_code' => 'US'], ['name' => 'Lincoln Park', 'country_code' => 'US'], ['name' => 'Chur', 'country_code' => 'CH'], ['name' => 'Yehud', 'country_code' => 'IL'], ['name' => 'Ryde', 'country_code' => 'GB'], ['name' => 'Amecameca de Juarez', 'country_code' => 'MX'], ['name' => 'Schiltigheim', 'country_code' => 'FR'], ['name' => 'Lichfield', 'country_code' => 'GB'], ['name' => 'Chatou', 'country_code' => 'FR'], ['name' => 'Ecclesfield', 'country_code' => 'GB'], ['name' => 'Ometepec', 'country_code' => 'MX'], ['name' => 'Lauderdale Lakes', 'country_code' => 'US'], ['name' => 'Belleville', 'country_code' => 'US'], ['name' => 'Pontypridd', 'country_code' => 'GB'], ['name' => 'Krong Kep', 'country_code' => 'KH'], ['name' => 'Viry-Chatillon', 'country_code' => 'FR'], ['name' => 'Kornwestheim', 'country_code' => 'DE'], ['name' => 'Minamishiro', 'country_code' => 'JP'], ['name' => 'Prestwich', 'country_code' => 'GB'], ['name' => 'Kamenice', 'country_code' => 'XK'], ['name' => 'Ermont', 'country_code' => 'FR'], ['name' => 'Viborg', 'country_code' => 'DK'], ['name' => 'San Juan Evangelista', 'country_code' => 'MX'], ['name' => 'Gostivar', 'country_code' => 'MK'], ['name' => 'Chirivella', 'country_code' => 'ES'], ['name' => 'Watertown Town', 'country_code' => 'US'], ['name' => 'Beja', 'country_code' => 'PT'], ['name' => 'Foothill Farms', 'country_code' => 'US'], ['name' => 'Vrsac', 'country_code' => 'RS'], ['name' => 'Paranaiba', 'country_code' => 'BR'], ['name' => 'Maassluis', 'country_code' => 'NL'], ['name' => 'Romainville', 'country_code' => 'FR'], ['name' => 'Elmont', 'country_code' => 'US'], ['name' => 'Brighouse', 'country_code' => 'GB'], ['name' => 'Temple City', 'country_code' => 'US'], ['name' => 'Farnworth', 'country_code' => 'GB'], ['name' => 'Villaricca', 'country_code' => 'IT'], ['name' => 'La Asuncion', 'country_code' => 'VE'], ['name' => 'Cradock', 'country_code' => 'ZA'], ['name' => 'Stroud', 'country_code' => 'GB'], ['name' => 'Darwen', 'country_code' => 'GB'], ['name' => 'Chuhuiv', 'country_code' => 'UA'], ['name' => 'Fresnes', 'country_code' => 'FR'], ['name' => 'Montigny-le-Bretonneux', 'country_code' => 'FR'], ['name' => 'Ixtapan de la Sal', 'country_code' => 'MX'], ['name' => 'Aosta', 'country_code' => 'IT'], ['name' => 'Tancitaro', 'country_code' => 'MX'], ['name' => 'Ganshoren', 'country_code' => 'BE'], ['name' => 'Dover', 'country_code' => 'GB'], ['name' => 'Timbuktu', 'country_code' => 'ML'], ['name' => 'Chillum', 'country_code' => 'US'], ['name' => 'Bexleyheath', 'country_code' => 'GB'], ['name' => 'Les Mureaux', 'country_code' => 'FR'], ['name' => 'Byumba', 'country_code' => 'RW'], ['name' => 'Bell', 'country_code' => 'US'], ['name' => 'Taibao', 'country_code' => 'TW'], ['name' => 'Roi Et', 'country_code' => 'TH'], ['name' => 'Villanueva', 'country_code' => 'MX'], ['name' => 'Talas', 'country_code' => 'KG'], ['name' => 'Champoton', 'country_code' => 'MX'], ['name' => 'Nelson', 'country_code' => 'GB'], ['name' => 'Braganca', 'country_code' => 'PT'], ['name' => 'Phatthalung', 'country_code' => 'TH'], ['name' => 'Neuchatel', 'country_code' => 'CH'], ['name' => 'Huyton', 'country_code' => 'GB'], ['name' => 'Sestao', 'country_code' => 'ES'], ['name' => 'Santa Cruz del Quiche', 'country_code' => 'GT'], ['name' => 'Westmont', 'country_code' => 'US'], ['name' => 'Luebo', 'country_code' => 'CD'], ['name' => 'Bria', 'country_code' => 'CF'], ['name' => 'San Donato Milanese', 'country_code' => 'IT'], ['name' => 'Nea Filadelfeia', 'country_code' => 'GR'], ['name' => 'Manhattan Beach', 'country_code' => 'US'], ['name' => 'Pontoise', 'country_code' => 'FR'], ['name' => 'Vigneux-sur-Seine', 'country_code' => 'FR'], ['name' => 'Artvin', 'country_code' => 'TR'], ['name' => 'Maidan Shahr', 'country_code' => 'AF'], ['name' => 'Giv at Shemu el', 'country_code' => 'IL'], ['name' => 'Bussum', 'country_code' => 'NL'], ['name' => 'Catemaco', 'country_code' => 'MX'], ['name' => 'Villiers-sur-Marne', 'country_code' => 'FR'], ['name' => 'Marijampole', 'country_code' => 'LT'], ['name' => 'San Pedro de Ycuamandiyu', 'country_code' => 'PY'], ['name' => 'Dikhil', 'country_code' => 'DJ'], ['name' => 'Ocotal', 'country_code' => 'NI'], ['name' => 'Trappes', 'country_code' => 'FR'], ['name' => 'Santa Maria Capua Vetere', 'country_code' => 'IT'], ['name' => 'Englewood', 'country_code' => 'US'], ['name' => 'Mechraa Bel Ksiri', 'country_code' => 'MA'], ['name' => 'Kampong Thom', 'country_code' => 'KH'], ['name' => 'San Salvador El Seco', 'country_code' => 'MX'], ['name' => 'Dragash', 'country_code' => 'XK'], ['name' => 'Naryn', 'country_code' => 'KG'], ['name' => 'Beidaying', 'country_code' => 'CN'], ['name' => 'Lahij', 'country_code' => 'YE'], ['name' => 'Buenaventura Lakes', 'country_code' => 'US'], ['name' => 'Oildale', 'country_code' => 'US'], ['name' => 'Pompeu', 'country_code' => 'BR'], ['name' => 'Ciudad Sabinas Hidalgo', 'country_code' => 'MX'], ['name' => 'Fontenay-aux-Roses', 'country_code' => 'FR'], ['name' => 'Kalasin', 'country_code' => 'TH'], ['name' => 'Saint Neots', 'country_code' => 'GB'], ['name' => 'Villa Celina', 'country_code' => 'AR'], ['name' => 'Grigny', 'country_code' => 'FR'], ['name' => 'Jacmel', 'country_code' => 'HT'], ['name' => 'Swakopmund', 'country_code' => 'NA'], ['name' => 'Barra do Bugres', 'country_code' => 'BR'], ['name' => 'Azogues', 'country_code' => 'EC'], ['name' => 'Huatabampo', 'country_code' => 'MX'], ['name' => 'Gentilly', 'country_code' => 'FR'], ['name' => 'Escarcega', 'country_code' => 'MX'], ['name' => 'Norristown', 'country_code' => 'US'], ['name' => 'Montgomery Village', 'country_code' => 'US'], ['name' => 'Swadlincote', 'country_code' => 'GB'], ['name' => 'Wishaw', 'country_code' => 'GB'], ['name' => 'Deal', 'country_code' => 'GB'], ['name' => 'Cananea', 'country_code' => 'MX'], ['name' => 'Homa Bay', 'country_code' => 'KE'], ['name' => 'Aldaya', 'country_code' => 'ES'], ['name' => 'Le Chesnay', 'country_code' => 'FR'], ['name' => 'Bor', 'country_code' => 'RS'], ['name' => 'Busia', 'country_code' => 'KE'], ['name' => 'University City', 'country_code' => 'US'], ['name' => 'Borehamwood', 'country_code' => 'GB'], ['name' => 'Fushe Kosove', 'country_code' => 'XK'], ['name' => 'Midvale', 'country_code' => 'US'], ['name' => 'Lens', 'country_code' => 'FR'], ['name' => 'Uttaradit', 'country_code' => 'TH'], ['name' => 'Golden Glades', 'country_code' => 'US'], ['name' => 'Nykoping', 'country_code' => 'SE'], ['name' => 'Kakata', 'country_code' => 'LR'], ['name' => 'Bresso', 'country_code' => 'IT'], ['name' => 'Ventspils', 'country_code' => 'LV'], ['name' => 'Chester', 'country_code' => 'US'], ['name' => 'Kampong Speu', 'country_code' => 'KH'], ['name' => 'Zhaoyu', 'country_code' => 'CN'], ['name' => 'Fada Ngourma', 'country_code' => 'BF'], ['name' => 'Saint-Cloud', 'country_code' => 'FR'], ['name' => 'Barros Blancos', 'country_code' => 'UY'], ['name' => 'Salgotarjan', 'country_code' => 'HU'], ['name' => 'Foster City', 'country_code' => 'US'], ['name' => 'San Giuseppe Vesuviano', 'country_code' => 'IT'], ['name' => 'Pontefract', 'country_code' => 'GB'], ['name' => 'Beverly Hills', 'country_code' => 'US'], ['name' => 'Ciudad Sahagun', 'country_code' => 'MX'], ['name' => 'Sidi Smai il', 'country_code' => 'MA'], ['name' => 'Willenhall', 'country_code' => 'GB'], ['name' => 'Chumphon', 'country_code' => 'TH'], ['name' => 'Masindi', 'country_code' => 'UG'], ['name' => 'Thiais', 'country_code' => 'FR'], ['name' => 'Glendale Heights', 'country_code' => 'US'], ['name' => 'Bilwi', 'country_code' => 'NI'], ['name' => 'Hendrik-Ido-Ambacht', 'country_code' => 'NL'], ['name' => 'Fair Oaks', 'country_code' => 'US'], ['name' => 'Kacanik', 'country_code' => 'XK'], ['name' => 'Long Beach', 'country_code' => 'US'], ['name' => 'Longton', 'country_code' => 'GB'], ['name' => 'Plympton', 'country_code' => 'GB'], ['name' => 'Sisak', 'country_code' => 'HR'], ['name' => 'Birkirkara', 'country_code' => 'MT'], ['name' => 'Koh Kong', 'country_code' => 'KH'], ['name' => 'Paiporta', 'country_code' => 'ES'], ['name' => 'Kyrenia', 'country_code' => 'CY'], ['name' => 'Goussainville', 'country_code' => 'FR'], ['name' => 'Juticalpa', 'country_code' => 'HN'], ['name' => 'Bromsgrove', 'country_code' => 'GB'], ['name' => 'Mukdahan', 'country_code' => 'TH'], ['name' => 'Adrogue', 'country_code' => 'AR'], ['name' => 'Vandoeuvre-les-Nancy', 'country_code' => 'FR'], ['name' => 'Lievin', 'country_code' => 'FR'], ['name' => 'Bulwell', 'country_code' => 'GB'], ['name' => 'Perigueux', 'country_code' => 'FR'], ['name' => 'Rincon de Romos', 'country_code' => 'MX'], ['name' => 'Kericho', 'country_code' => 'KE'], ['name' => 'Eastchester', 'country_code' => 'US'], ['name' => 'Pilar', 'country_code' => 'PY'], ['name' => 'Dagestanskiye Ogni', 'country_code' => 'RU'], ['name' => 'Kokhma', 'country_code' => 'RU'], ['name' => 'Reddish', 'country_code' => 'GB'], ['name' => 'West Little River', 'country_code' => 'US'], ['name' => 'Fair Lawn', 'country_code' => 'US'], ['name' => 'Sint-Joost-ten-Node', 'country_code' => 'BE'], ['name' => 'Zumpango del Rio', 'country_code' => 'MX'], ['name' => 'Durango', 'country_code' => 'ES'], ['name' => 'Aci Catena', 'country_code' => 'IT'], ['name' => 'Huntington Station', 'country_code' => 'US'], ['name' => 'Sotteville-les-Rouen', 'country_code' => 'FR'], ['name' => 'Chkalov', 'country_code' => 'TJ'], ['name' => 'Un goofaaru', 'country_code' => 'MV'], ['name' => 'Harper', 'country_code' => 'LR'], ['name' => 'Santiago Sacatepequez', 'country_code' => 'GT'], ['name' => 'Cramlington', 'country_code' => 'GB'], ['name' => 'Krimpen aan den IJssel', 'country_code' => 'NL'], ['name' => 'Ris-Orangis', 'country_code' => 'FR'], ['name' => 'Ban Bang Krang', 'country_code' => 'TH'], ['name' => 'San Andres de la Barca', 'country_code' => 'ES'], ['name' => 'North Providence', 'country_code' => 'US'], ['name' => 'Mazeikiai', 'country_code' => 'LT'], ['name' => 'Savigny-le-Temple', 'country_code' => 'FR'], ['name' => 'Soledad de Doblado', 'country_code' => 'MX'], ['name' => 'Kendal', 'country_code' => 'GB'], ['name' => 'Leticia', 'country_code' => 'CO'], ['name' => 'Cote-Saint-Luc', 'country_code' => 'CA'], ['name' => 'Perry Barr', 'country_code' => 'GB'], ['name' => 'Mandera', 'country_code' => 'KE'], ['name' => 'Lawndale', 'country_code' => 'US'], ['name' => 'Yverdon-les-Bains', 'country_code' => 'CH'], ['name' => 'Oullins', 'country_code' => 'FR'], ['name' => 'Bou Arfa', 'country_code' => 'MA'], ['name' => 'Kitui', 'country_code' => 'KE'], ['name' => 'Mount Lebanon', 'country_code' => 'US'], ['name' => 'Spring Valley', 'country_code' => 'US'], ['name' => 'Otumba', 'country_code' => 'MX'], ['name' => 'Bangassou', 'country_code' => 'CF'], ['name' => 'Cambuslang', 'country_code' => 'GB'], ['name' => 'Chachapoyas', 'country_code' => 'PE'], ['name' => 'Darlaston', 'country_code' => 'GB'], ['name' => 'Baranain', 'country_code' => 'ES'], ['name' => 'West Ham', 'country_code' => 'GB'], ['name' => 'Sannois', 'country_code' => 'FR'], ['name' => 'Aix-les-Bains', 'country_code' => 'FR'], ['name' => 'Les Pavillons-sous-Bois', 'country_code' => 'FR'], ['name' => 'College Park', 'country_code' => 'US'], ['name' => 'Arfoud', 'country_code' => 'MA'], ['name' => 'Rumbek', 'country_code' => 'SS'], ['name' => 'Szekszard', 'country_code' => 'HU'], ['name' => 'Rillieux-la-Pape', 'country_code' => 'FR'], ['name' => 'Boende', 'country_code' => 'CD'], ['name' => 'Alamo', 'country_code' => 'MX'], ['name' => 'Lambersart', 'country_code' => 'FR'], ['name' => 'Eastpointe', 'country_code' => 'US'], ['name' => 'Franklin Square', 'country_code' => 'US'], ['name' => 'Yerres', 'country_code' => 'FR'], ['name' => 'Uniondale', 'country_code' => 'US'], ['name' => 'Juneau', 'country_code' => 'US'], ['name' => 'Ulundi', 'country_code' => 'ZA'], ['name' => 'Molde', 'country_code' => 'NO'], ['name' => 'Zug', 'country_code' => 'CH'], ['name' => 'Kaita', 'country_code' => 'JP'], ['name' => 'San Juan', 'country_code' => 'CR'], ['name' => 'Cuitzeo del Porvenir', 'country_code' => 'MX'], ['name' => 'Demnat', 'country_code' => 'MA'], ['name' => 'Navolato', 'country_code' => 'MX'], ['name' => 'Bourg-la-Reine', 'country_code' => 'FR'], ['name' => 'Jeremie', 'country_code' => 'HT'], ['name' => 'Rawson', 'country_code' => 'AR'], ['name' => 'Garfield', 'country_code' => 'US'], ['name' => 'El Salto', 'country_code' => 'MX'], ['name' => 'Gizycko', 'country_code' => 'PL'], ['name' => 'Shumerlya', 'country_code' => 'RU'], ['name' => 'Montfermeil', 'country_code' => 'FR'], ['name' => 'Shariff Aguak', 'country_code' => 'PH'], ['name' => 'Clifton', 'country_code' => 'GB'], ['name' => 'Babati', 'country_code' => 'TZ'], ['name' => 'Wood Green', 'country_code' => 'GB'], ['name' => 'Chon Buri', 'country_code' => 'TH'], ['name' => 'Frome', 'country_code' => 'GB'], ['name' => 'Smolyan', 'country_code' => 'BG'], ['name' => 'Begles', 'country_code' => 'FR'], ['name' => 'Pallisa', 'country_code' => 'UG'], ['name' => 'Dieppe', 'country_code' => 'FR'], ['name' => 'Villiers-le-Bel', 'country_code' => 'FR'], ['name' => 'Ipu', 'country_code' => 'BR'], ['name' => 'Parkville', 'country_code' => 'US'], ['name' => 'Zaqatala', 'country_code' => 'AZ'], ['name' => 'Miami Lakes', 'country_code' => 'US'], ['name' => 'San Fernando', 'country_code' => 'MX'], ['name' => 'Imisli', 'country_code' => 'AZ'], ['name' => 'Newton Abbot', 'country_code' => 'GB'], ['name' => 'Pefki', 'country_code' => 'GR'], ['name' => 'Contla', 'country_code' => 'MX'], ['name' => 'Hertford', 'country_code' => 'GB'], ['name' => 'Brevnov', 'country_code' => 'CZ'], ['name' => 'Villeneuve-la-Garenne', 'country_code' => 'FR'], ['name' => 'Saint-Laurent-du-Var', 'country_code' => 'FR'], ['name' => 'Blackrock', 'country_code' => 'IE'], ['name' => 'Limeil-Brevannes', 'country_code' => 'FR'], ['name' => 'Ban Bang Khu Wat', 'country_code' => 'TH'], ['name' => 'Pando', 'country_code' => 'UY'], ['name' => 'Ridley', 'country_code' => 'US'], ['name' => 'Menton', 'country_code' => 'FR'], ['name' => 'Wete', 'country_code' => 'TZ'], ['name' => 'Mytilini', 'country_code' => 'GR'], ['name' => 'Udomlya', 'country_code' => 'RU'], ['name' => 'Arendal', 'country_code' => 'NO'], ['name' => 'Nebbi', 'country_code' => 'UG'], ['name' => 'Ashington', 'country_code' => 'GB'], ['name' => 'Cuilapa', 'country_code' => 'GT'], ['name' => 'Desnogorsk', 'country_code' => 'RU'], ['name' => 'Martorell', 'country_code' => 'ES'], ['name' => 'Lomme', 'country_code' => 'FR'], ['name' => 'Diffa', 'country_code' => 'NE'], ['name' => 'San Pablo', 'country_code' => 'US'], ['name' => 'Rhyl', 'country_code' => 'GB'], ['name' => 'Tuxpan', 'country_code' => 'MX'], ['name' => 'Ungheni', 'country_code' => 'MD'], ['name' => 'Guyancourt', 'country_code' => 'FR'], ['name' => 'Burlingame', 'country_code' => 'US'], ['name' => 'Tripoli', 'country_code' => 'GR'], ['name' => 'Cakovec', 'country_code' => 'HR'], ['name' => 'Sonzacate', 'country_code' => 'SV'], ['name' => 'Soissons', 'country_code' => 'FR'], ['name' => 'Masnou', 'country_code' => 'ES'], ['name' => 'Arcueil', 'country_code' => 'FR'], ['name' => 'Longbridge', 'country_code' => 'GB'], ['name' => 'Bregenz', 'country_code' => 'AT'], ['name' => 'Rainham', 'country_code' => 'GB'], ['name' => 'Pljevlja', 'country_code' => 'ME'], ['name' => 'Catarroja', 'country_code' => 'ES'], ['name' => 'Eaubonne', 'country_code' => 'FR'], ['name' => 'Lobatse', 'country_code' => 'BW'], ['name' => 'Megrine', 'country_code' => 'TN'], ['name' => 'Cabarroguis', 'country_code' => 'PH'], ['name' => 'Yate', 'country_code' => 'GB'], ['name' => 'Melton Mowbray', 'country_code' => 'GB'], ['name' => 'Krabi', 'country_code' => 'TH'], ['name' => 'Xalisco', 'country_code' => 'MX'], ['name' => 'Carouge', 'country_code' => 'CH'], ['name' => 'Avellaneda', 'country_code' => 'AR'], ['name' => 'Oceanside', 'country_code' => 'US'], ['name' => 'Ain Taoujdat', 'country_code' => 'MA'], ['name' => 'Ninomiya', 'country_code' => 'JP'], ['name' => 'Asosa', 'country_code' => 'ET'], ['name' => 'Tomares', 'country_code' => 'ES'], ['name' => 'Nova Cruz', 'country_code' => 'BR'], ['name' => 'Boscombe', 'country_code' => 'GB'], ['name' => 'Ketrzyn', 'country_code' => 'PL'], ['name' => 'City of Orange', 'country_code' => 'US'], ['name' => 'Qiman al Arus', 'country_code' => 'EG'], ['name' => 'Salyan', 'country_code' => 'AZ'], ['name' => 'Barnstaple', 'country_code' => 'GB'], ['name' => 'Bearsden', 'country_code' => 'GB'], ['name' => 'Heredia', 'country_code' => 'CR'], ['name' => 'Boscoreale', 'country_code' => 'IT'], ['name' => 'Chichester', 'country_code' => 'GB'], ['name' => 'Newton Mearns', 'country_code' => 'GB'], ['name' => 'Jaynagar-Majilpur', 'country_code' => 'IN'], ['name' => 'Geldrop', 'country_code' => 'NL'], ['name' => 'Sterling', 'country_code' => 'US'], ['name' => 'Jamay', 'country_code' => 'MX'], ['name' => 'Long Branch', 'country_code' => 'US'], ['name' => 'Santa Paula', 'country_code' => 'US'], ['name' => 'Banqiao', 'country_code' => 'TW'], ['name' => 'Mount Hagen', 'country_code' => 'PG'], ['name' => 'Chatan', 'country_code' => 'JP'], ['name' => 'San Carlos', 'country_code' => 'US'], ['name' => 'Garbagnate Milanese', 'country_code' => 'IT'], ['name' => 'Vicente Lopez', 'country_code' => 'AR'], ['name' => 'Bilston', 'country_code' => 'GB'], ['name' => 'Mutsamudu', 'country_code' => 'KM'], ['name' => 'Cahul', 'country_code' => 'MD'], ['name' => 'Heemstede', 'country_code' => 'NL'], ['name' => 'Los Reyes de Juarez', 'country_code' => 'MX'], ['name' => 'Didcot', 'country_code' => 'GB'], ['name' => 'Ojinaga', 'country_code' => 'MX'], ['name' => 'Shotley Bridge', 'country_code' => 'GB'], ['name' => 'Stepney', 'country_code' => 'GB'], ['name' => 'Dubendorf', 'country_code' => 'CH'], ['name' => 'Billericay', 'country_code' => 'GB'], ['name' => 'Trujillo', 'country_code' => 'HN'], ['name' => 'Moyale', 'country_code' => 'KE'], ['name' => 'La Union', 'country_code' => 'SV'], ['name' => 'Treinta y Tres', 'country_code' => 'UY'], ['name' => 'Stung Treng', 'country_code' => 'KH'], ['name' => 'Bournville', 'country_code' => 'GB'], ['name' => 'Rahway', 'country_code' => 'US'], ['name' => 'Tahla', 'country_code' => 'MA'], ['name' => 'Camas', 'country_code' => 'ES'], ['name' => 'Armilla', 'country_code' => 'ES'], ['name' => 'Dietikon', 'country_code' => 'CH'], ['name' => 'Otjiwarongo', 'country_code' => 'NA'], ['name' => 'Bay Shore', 'country_code' => 'US'], ['name' => 'Leyton', 'country_code' => 'GB'], ['name' => 'Tralee', 'country_code' => 'IE'], ['name' => 'Newton Aycliffe', 'country_code' => 'GB'], ['name' => 'Westchester', 'country_code' => 'US'], ['name' => 'Kaisariani', 'country_code' => 'GR'], ['name' => 'Walton upon Thames', 'country_code' => 'GB'], ['name' => 'Eastleigh', 'country_code' => 'GB'], ['name' => 'Agdas', 'country_code' => 'AZ'], ['name' => 'Doba', 'country_code' => 'TD'], ['name' => 'Suisun City', 'country_code' => 'US'], ['name' => 'Arapoti', 'country_code' => 'BR'], ['name' => 'Chiavari', 'country_code' => 'IT'], ['name' => 'Cheadle Hulme', 'country_code' => 'GB'], ['name' => 'Cardito', 'country_code' => 'IT'], ['name' => 'West Falls Church', 'country_code' => 'US'], ['name' => 'Nuwara Eliya', 'country_code' => 'LK'], ['name' => 'Frontera', 'country_code' => 'MX'], ['name' => 'Katima Mulilo', 'country_code' => 'NA'], ['name' => 'Golden Gate', 'country_code' => 'US'], ['name' => 'Hindley', 'country_code' => 'GB'], ['name' => 'Mortsel', 'country_code' => 'BE'], ['name' => 'Villeparisis', 'country_code' => 'FR'], ['name' => 'Haverhill', 'country_code' => 'GB'], ['name' => 'Bac Kan', 'country_code' => 'VN'], ['name' => 'Backa Palanka', 'country_code' => 'RS'], ['name' => 'Brunoy', 'country_code' => 'FR'], ['name' => 'Nogales', 'country_code' => 'MX'], ['name' => 'Chalatenango', 'country_code' => 'SV'], ['name' => 'Venustiano Carranza', 'country_code' => 'MX'], ['name' => 'Northfield', 'country_code' => 'GB'], ['name' => 'Burntwood', 'country_code' => 'GB'], ['name' => 'Westhoughton', 'country_code' => 'GB'], ['name' => 'Sevres', 'country_code' => 'FR'], ['name' => 'Oak Park', 'country_code' => 'US'], ['name' => 'Linden', 'country_code' => 'GY'], ['name' => 'Rocha', 'country_code' => 'UY'], ['name' => 'Ixhuatlancillo', 'country_code' => 'MX'], ['name' => 'Estoril', 'country_code' => 'PT'], ['name' => 'Santa Barbara', 'country_code' => 'HN'], ['name' => 'Khorugh', 'country_code' => 'TJ'], ['name' => 'Bussy-Saint-Georges', 'country_code' => 'FR'], ['name' => 'Colonia del Sacramento', 'country_code' => 'UY'], ['name' => 'Hillerod', 'country_code' => 'DK'], ['name' => 'Kamphaeng Phet', 'country_code' => 'TH'], ['name' => 'Tulum', 'country_code' => 'MX'], ['name' => 'Saint-Gratien', 'country_code' => 'FR'], ['name' => 'East Palo Alto', 'country_code' => 'US'], ['name' => 'Cenon', 'country_code' => 'FR'], ['name' => 'Leiderdorp', 'country_code' => 'NL'], ['name' => 'Camaligan', 'country_code' => 'PH'], ['name' => 'Paracuaro', 'country_code' => 'MX'], ['name' => 'Qualiano', 'country_code' => 'IT'], ['name' => 'Saint-Sebastien-sur-Loire', 'country_code' => 'FR'], ['name' => 'Sai Mai', 'country_code' => 'TH'], ['name' => 'Port Chester', 'country_code' => 'US'], ['name' => 'Samut Songkhram', 'country_code' => 'TH'], ['name' => 'Miahuatlan', 'country_code' => 'MX'], ['name' => 'Sucy-en-Brie', 'country_code' => 'FR'], ['name' => 'Leigh-on-Sea', 'country_code' => 'GB'], ['name' => 'Penonome', 'country_code' => 'PA'], ['name' => 'Taverny', 'country_code' => 'FR'], ['name' => 'Qaha', 'country_code' => 'EG'], ['name' => 'Clydebank', 'country_code' => 'GB'], ['name' => 'La Madeleine', 'country_code' => 'FR'], ['name' => 'Hunucma', 'country_code' => 'MX'], ['name' => 'Armentieres', 'country_code' => 'FR'], ['name' => 'Buri Ram', 'country_code' => 'TH'], ['name' => 'Manga', 'country_code' => 'BF'], ['name' => 'Olgiy', 'country_code' => 'MN'], ['name' => 'Vallauris', 'country_code' => 'FR'], ['name' => 'Dollis Hill', 'country_code' => 'GB'], ['name' => 'Wellington', 'country_code' => 'GB'], ['name' => 'Mendefera', 'country_code' => 'ER'], ['name' => 'Consett', 'country_code' => 'GB'], ['name' => 'Champs-Sur-Marne', 'country_code' => 'FR'], ['name' => 'Droylsden', 'country_code' => 'GB'], ['name' => 'Rafael Delgado', 'country_code' => 'MX'], ['name' => 'Nutley', 'country_code' => 'US'], ['name' => 'Blenheim', 'country_code' => 'NZ'], ['name' => 'Giussano', 'country_code' => 'IT'], ['name' => 'Shamokin', 'country_code' => 'US'], ['name' => 'Tapiales', 'country_code' => 'AR'], ['name' => 'Kocani', 'country_code' => 'MK'], ['name' => 'Vichy', 'country_code' => 'FR'], ['name' => 'Rezekne', 'country_code' => 'LV'], ['name' => 'Elancourt', 'country_code' => 'FR'], ['name' => 'Englewood', 'country_code' => 'US'], ['name' => 'Oegstgeest', 'country_code' => 'NL'], ['name' => 'Mitu', 'country_code' => 'CO'], ['name' => 'Balham', 'country_code' => 'GB'], ['name' => 'Le Bouscat', 'country_code' => 'FR'], ['name' => 'Harborne', 'country_code' => 'GB'], ['name' => 'Shenley Brook End', 'country_code' => 'GB'], ['name' => 'Burbank', 'country_code' => 'US'], ['name' => 'Bloxwich', 'country_code' => 'GB'], ['name' => 'Alencon', 'country_code' => 'FR'], ['name' => 'Zawyat ech Cheikh', 'country_code' => 'MA'], ['name' => 'Caxito', 'country_code' => 'AO'], ['name' => 'Upminster', 'country_code' => 'GB'], ['name' => 'Vevey', 'country_code' => 'CH'], ['name' => 'Zaouiet Sousse', 'country_code' => 'TN'], ['name' => 'Tixtla de Guerrero', 'country_code' => 'MX'], ['name' => 'Winchester', 'country_code' => 'US'], ['name' => 'Popondetta', 'country_code' => 'PG'], ['name' => 'Deuil-la-Barre', 'country_code' => 'FR'], ['name' => 'Ouesso', 'country_code' => 'CG'], ['name' => 'Littleover', 'country_code' => 'GB'], ['name' => 'Fleetwood', 'country_code' => 'GB'], ['name' => 'Highgate', 'country_code' => 'GB'], ['name' => 'Market Harborough', 'country_code' => 'GB'], ['name' => 'Missour', 'country_code' => 'MA'], ['name' => 'Aldama', 'country_code' => 'MX'], ['name' => 'Altepexi', 'country_code' => 'MX'], ['name' => 'Mons-en-Baroeul', 'country_code' => 'FR'], ['name' => 'Losino-Petrovskiy', 'country_code' => 'RU'], ['name' => 'Oadby', 'country_code' => 'GB'], ['name' => 'Hamar', 'country_code' => 'NO'], ['name' => 'Le Grand-Quevilly', 'country_code' => 'FR'], ['name' => 'Melrose', 'country_code' => 'US'], ['name' => 'Itambe', 'country_code' => 'BR'], ['name' => 'Ocatlan', 'country_code' => 'MX'], ['name' => 'Joinville-le-Pont', 'country_code' => 'FR'], ['name' => 'Renens', 'country_code' => 'CH'], ['name' => 'Erdington', 'country_code' => 'GB'], ['name' => 'Drexel Hill', 'country_code' => 'US'], ['name' => 'Muggio', 'country_code' => 'IT'], ['name' => 'Ban Bang Phun', 'country_code' => 'TH'], ['name' => 'Bongor', 'country_code' => 'TD'], ['name' => 'Saint-Nicolas', 'country_code' => 'BE'], ['name' => 'Mongo', 'country_code' => 'TD'], ['name' => 'Penarth', 'country_code' => 'GB'], ['name' => 'Acomb', 'country_code' => 'GB'], ['name' => 'Dunleary', 'country_code' => 'IE'], ['name' => 'Koulikoro', 'country_code' => 'ML'], ['name' => 'Koper', 'country_code' => 'SI'], ['name' => 'Alboraya', 'country_code' => 'ES'], ['name' => 'Isla Vista', 'country_code' => 'US'], ['name' => 'Don Bosco', 'country_code' => 'AR'], ['name' => 'Tantoyuca', 'country_code' => 'MX'], ['name' => 'Portishead', 'country_code' => 'GB'], ['name' => 'Kicevo', 'country_code' => 'MK'], ['name' => 'Velenje', 'country_code' => 'SI'], ['name' => 'Biarritz', 'country_code' => 'FR'], ['name' => 'Rehoboth', 'country_code' => 'NA'], ['name' => 'Mililani Town', 'country_code' => 'US'], ['name' => 'Bethune', 'country_code' => 'FR'], ['name' => 'Ciudad Altamirano', 'country_code' => 'MX'], ['name' => 'Caversham', 'country_code' => 'GB'], ['name' => 'Kings Norton', 'country_code' => 'GB'], ['name' => 'Imperial Beach', 'country_code' => 'US'], ['name' => 'Magdalena de Kino', 'country_code' => 'MX'], ['name' => 'Al Ghayzah', 'country_code' => 'YE'], ['name' => 'Seriate', 'country_code' => 'IT'], ['name' => 'Shtime', 'country_code' => 'XK'], ['name' => 'Orly', 'country_code' => 'FR'], ['name' => 'Hackney', 'country_code' => 'GB'], ['name' => 'Bishopbriggs', 'country_code' => 'GB'], ['name' => 'Piastow', 'country_code' => 'PL'], ['name' => 'Bergenfield', 'country_code' => 'US'], ['name' => 'Nova Milanese', 'country_code' => 'IT'], ['name' => 'Thornaby on Tees', 'country_code' => 'GB'], ['name' => 'Ladera Ranch', 'country_code' => 'US'], ['name' => 'Neuilly-Plaisance', 'country_code' => 'FR'], ['name' => 'Stalybridge', 'country_code' => 'GB'], ['name' => 'Cerro Azul', 'country_code' => 'MX'], ['name' => 'Pompei', 'country_code' => 'IT'], ['name' => 'Kingswinford', 'country_code' => 'GB'], ['name' => 'San Juan de Aznalfarache', 'country_code' => 'ES'], ['name' => 'Easton', 'country_code' => 'US'], ['name' => 'Priboj', 'country_code' => 'RS'], ['name' => 'Xoxocotla', 'country_code' => 'MX'], ['name' => 'Maisons-Laffitte', 'country_code' => 'FR'], ['name' => 'Siquijor', 'country_code' => 'PH'], ['name' => 'Indiana', 'country_code' => 'US'], ['name' => 'Farnley', 'country_code' => 'GB'], ['name' => 'Sensuntepeque', 'country_code' => 'SV'], ['name' => 'Le Petit-Quevilly', 'country_code' => 'FR'], ['name' => 'Sliema', 'country_code' => 'MT'], ['name' => 'Cormeilles-en-Parisis', 'country_code' => 'FR'], ['name' => 'Siliana', 'country_code' => 'TN'], ['name' => 'Catio', 'country_code' => 'GW'], ['name' => 'Reisterstown', 'country_code' => 'US'], ['name' => 'Chapala', 'country_code' => 'MX'], ['name' => 'Weingarten', 'country_code' => 'DE'], ['name' => 'Maywood', 'country_code' => 'US'], ['name' => 'Belmont', 'country_code' => 'US'], ['name' => 'Alfreton', 'country_code' => 'GB'], ['name' => 'Montigny-les-Cormeilles', 'country_code' => 'FR'], ['name' => 'Atlatlahucan', 'country_code' => 'MX'], ['name' => 'San Juan de Alicante', 'country_code' => 'ES'], ['name' => 'Elgin', 'country_code' => 'GB'], ['name' => 'Koscian', 'country_code' => 'PL'], ['name' => 'Nola', 'country_code' => 'CF'], ['name' => 'Kiryas Joel', 'country_code' => 'US'], ['name' => 'Lemon Grove', 'country_code' => 'US'], ['name' => 'Lindenhurst', 'country_code' => 'US'], ['name' => 'Carlos A. Carrillo', 'country_code' => 'MX'], ['name' => 'Meoqui', 'country_code' => 'MX'], ['name' => 'Hirriyat Raznah', 'country_code' => 'EG'], ['name' => 'Maracena', 'country_code' => 'ES'], ['name' => 'Felixstowe', 'country_code' => 'GB'], ['name' => 'Cheran', 'country_code' => 'MX'], ['name' => 'Ocampo', 'country_code' => 'MX'], ['name' => 'Lormont', 'country_code' => 'FR'], ['name' => 'Bayanhongor', 'country_code' => 'MN'], ['name' => 'West Whittier-Los Nietos', 'country_code' => 'US'], ['name' => 'Leisure City', 'country_code' => 'US'], ['name' => 'Moyo', 'country_code' => 'UG'], ['name' => 'Camborne', 'country_code' => 'GB'], ['name' => 'Seveso', 'country_code' => 'IT'], ['name' => 'University Park', 'country_code' => 'US'], ['name' => 'Voinjama', 'country_code' => 'LR'], ['name' => 'Cazones de Herrera', 'country_code' => 'MX'], ['name' => 'Nakhon Phanom', 'country_code' => 'TH'], ['name' => 'Atherton', 'country_code' => 'GB'], ['name' => 'Meyrin', 'country_code' => 'CH'], ['name' => 'Utena', 'country_code' => 'LT'], ['name' => 'Stanmore', 'country_code' => 'GB'], ['name' => 'Jonava', 'country_code' => 'LT'], ['name' => 'Suphan Buri', 'country_code' => 'TH'], ['name' => 'Failsworth', 'country_code' => 'GB'], ['name' => 'Dongola', 'country_code' => 'SD'], ['name' => 'Mendi', 'country_code' => 'PG'], ['name' => 'Chaville', 'country_code' => 'FR'], ['name' => 'Ennis', 'country_code' => 'IE'], ['name' => 'Ulaangom', 'country_code' => 'MN'], ['name' => 'Torcy', 'country_code' => 'FR'], ['name' => 'San Juan de Vilasar', 'country_code' => 'ES'], ['name' => 'Meda', 'country_code' => 'IT'], ['name' => 'Whitefield', 'country_code' => 'GB'], ['name' => 'Castilleja de la Cuesta', 'country_code' => 'ES'], ['name' => 'Belper', 'country_code' => 'GB'], ['name' => 'Oxkutzkab', 'country_code' => 'MX'], ['name' => 'Rodez', 'country_code' => 'FR'], ['name' => 'Texistepec', 'country_code' => 'MX'], ['name' => 'Soledad', 'country_code' => 'US'], ['name' => 'Gjirokaster', 'country_code' => 'AL'], ['name' => 'Malinalco', 'country_code' => 'MX'], ['name' => 'Rivas', 'country_code' => 'NI'], ['name' => 'Cliffside Park', 'country_code' => 'US'], ['name' => 'Belmont', 'country_code' => 'US'], ['name' => 'Bang Sao Thong', 'country_code' => 'TH'], ['name' => 'Svay Rieng', 'country_code' => 'KH'], ['name' => 'Bajina Basta', 'country_code' => 'RS'], ['name' => 'Heroica Ciudad de Tlaxiaco', 'country_code' => 'MX'], ['name' => 'Clevedon', 'country_code' => 'GB'], ['name' => 'Sainte-Therese', 'country_code' => 'CA'], ['name' => 'Hovd', 'country_code' => 'MN'], ['name' => 'Castanos', 'country_code' => 'MX'], ['name' => 'Calilabad', 'country_code' => 'AZ'], ['name' => 'Litherland', 'country_code' => 'GB'], ['name' => 'Chandlers Ford', 'country_code' => 'GB'], ['name' => 'Amnat Charoen', 'country_code' => 'TH'], ['name' => 'Fontaine', 'country_code' => 'FR'], ['name' => 'Montgeron', 'country_code' => 'FR'], ['name' => 'Mit Nama', 'country_code' => 'EG'], ['name' => 'Penwortham', 'country_code' => 'GB'], ['name' => 'Szczytno', 'country_code' => 'PL'], ['name' => 'El Tarf', 'country_code' => 'DZ'], ['name' => 'Huntingdon', 'country_code' => 'GB'], ['name' => 'Atoyac de Alvarez', 'country_code' => 'MX'], ['name' => 'Nar yan-Mar', 'country_code' => 'RU'], ['name' => 'Croix', 'country_code' => 'FR'], ['name' => 'Kidsgrove', 'country_code' => 'GB'], ['name' => 'Onex', 'country_code' => 'CH'], ['name' => 'San Juan Zitlaltepec', 'country_code' => 'MX'], ['name' => 'Cloverleaf', 'country_code' => 'US'], ['name' => 'Zwedru', 'country_code' => 'LR'], ['name' => 'Decatur', 'country_code' => 'US'], ['name' => 'Tipasa', 'country_code' => 'DZ'], ['name' => 'Ottobrunn', 'country_code' => 'DE'], ['name' => 'Kafr Shukr', 'country_code' => 'EG'], ['name' => 'Ewa Gentry', 'country_code' => 'US'], ['name' => 'Laurel', 'country_code' => 'US'], ['name' => 'Guiseley', 'country_code' => 'GB'], ['name' => 'Fray Bentos', 'country_code' => 'UY'], ['name' => 'Morsang-sur-Orge', 'country_code' => 'FR'], ['name' => 'Northwood', 'country_code' => 'GB'], ['name' => 'San Lorenzo', 'country_code' => 'US'], ['name' => 'San Giovanni la Punta', 'country_code' => 'IT'], ['name' => 'Longjumeau', 'country_code' => 'FR'], ['name' => 'Visby', 'country_code' => 'SE'], ['name' => 'Swinton', 'country_code' => 'GB'], ['name' => 'El Cerrito', 'country_code' => 'US'], ['name' => 'Montmorency', 'country_code' => 'FR'], ['name' => 'At Tafilah', 'country_code' => 'JO'], ['name' => 'Eysines', 'country_code' => 'FR'], ['name' => 'Penistone', 'country_code' => 'GB'], ['name' => 'Loos', 'country_code' => 'FR'], ['name' => 'Kerkyra', 'country_code' => 'GR'], ['name' => 'Holborn', 'country_code' => 'GB'], ['name' => 'Ossett', 'country_code' => 'GB'], ['name' => 'Dronfield', 'country_code' => 'GB'], ['name' => 'Coral Terrace', 'country_code' => 'US'], ['name' => 'Sidi Lmokhtar', 'country_code' => 'MA'], ['name' => 'Puyo', 'country_code' => 'EC'], ['name' => 'Friern Barnet', 'country_code' => 'GB'], ['name' => 'Kafr Qasim', 'country_code' => 'IL'], ['name' => 'South Pasadena', 'country_code' => 'US'], ['name' => 'Villabate', 'country_code' => 'IT'], ['name' => 'Kenilworth', 'country_code' => 'GB'], ['name' => 'Lambarene', 'country_code' => 'GA'], ['name' => 'Maesteg', 'country_code' => 'GB'], ['name' => 'Sainte-Foy-les-Lyon', 'country_code' => 'FR'], ['name' => 'Ekeren', 'country_code' => 'BE'], ['name' => 'South Bradenton', 'country_code' => 'US'], ['name' => 'Mohale s Hoek', 'country_code' => 'LS'], ['name' => 'Palm Springs', 'country_code' => 'US'], ['name' => 'Vukovar', 'country_code' => 'HR'], ['name' => 'Wewak', 'country_code' => 'PG'], ['name' => 'Tassin-la-Demi-Lune', 'country_code' => 'FR'], ['name' => 'Sheldon', 'country_code' => 'GB'], ['name' => 'Levittown', 'country_code' => 'PR'], ['name' => 'Haci Zeynalabdin', 'country_code' => 'AZ'], ['name' => 'Herouville-Saint-Clair', 'country_code' => 'FR'], ['name' => 'Montigny-les-Metz', 'country_code' => 'FR'], ['name' => 'Santiago Ixcuintla', 'country_code' => 'MX'], ['name' => 'Sceaux', 'country_code' => 'FR'], ['name' => 'Normanton', 'country_code' => 'GB'], ['name' => 'Kaga Bandoro', 'country_code' => 'CF'], ['name' => 'Benetuser', 'country_code' => 'ES'], ['name' => 'Tbeng Meanchey', 'country_code' => 'KH'], ['name' => 'Portalegre', 'country_code' => 'PT'], ['name' => 'University Park', 'country_code' => 'US'], ['name' => 'Bispham', 'country_code' => 'GB'], ['name' => 'Chocaman', 'country_code' => 'MX'], ['name' => 'Terrytown', 'country_code' => 'US'], ['name' => 'Novo Mesto', 'country_code' => 'SI'], ['name' => 'Cusano Milanino', 'country_code' => 'IT'], ['name' => 'Tlacolula de Matamoros', 'country_code' => 'MX'], ['name' => 'Krathum Baen', 'country_code' => 'TH'], ['name' => 'Riverbank', 'country_code' => 'US'], ['name' => 'Stratton Saint Margaret', 'country_code' => 'GB'], ['name' => 'March', 'country_code' => 'GB'], ['name' => 'Maplewood', 'country_code' => 'US'], ['name' => 'Tequixquiac', 'country_code' => 'MX'], ['name' => 'Le Plessis-Trevise', 'country_code' => 'FR'], ['name' => 'Le Mee-sur-Seine', 'country_code' => 'FR'], ['name' => 'Baldwin', 'country_code' => 'US'], ['name' => 'Bontoc', 'country_code' => 'PH'], ['name' => 'Melrose Park', 'country_code' => 'US'], ['name' => 'Suhbaatar', 'country_code' => 'MN'], ['name' => 'Palm Tree', 'country_code' => 'US'], ['name' => 'Reyes Acozac', 'country_code' => 'MX'], ['name' => 'Baalbek', 'country_code' => 'LB'], ['name' => 'Palmers Green', 'country_code' => 'GB'], ['name' => 'Degollado', 'country_code' => 'MX'], ['name' => 'Hornsey', 'country_code' => 'GB'], ['name' => 'Herndon', 'country_code' => 'US'], ['name' => 'Juvisy-sur-Orge', 'country_code' => 'FR'], ['name' => 'Falmouth', 'country_code' => 'GB'], ['name' => 'Royton', 'country_code' => 'GB'], ['name' => 'Kasamatsucho', 'country_code' => 'JP'], ['name' => 'Kanmaki', 'country_code' => 'JP'], ['name' => 'General Emilio Aguinaldo', 'country_code' => 'PH'], ['name' => 'Velizy-Villacoublay', 'country_code' => 'FR'], ['name' => 'Chevilly-Larue', 'country_code' => 'FR'], ['name' => 'Chiconcuac', 'country_code' => 'MX'], ['name' => 'Falagueira', 'country_code' => 'PT'], ['name' => 'Sharunah', 'country_code' => 'EG'], ['name' => 'Rockville Centre', 'country_code' => 'US'], ['name' => 'Linslade', 'country_code' => 'GB'], ['name' => 'La Celle-Saint-Cloud', 'country_code' => 'FR'], ['name' => 'Lop Buri', 'country_code' => 'TH'], ['name' => 'Suitland', 'country_code' => 'US'], ['name' => 'Newquay', 'country_code' => 'GB'], ['name' => 'Gan Yavne', 'country_code' => 'IL'], ['name' => 'Cormano', 'country_code' => 'IT'], ['name' => 'Plumstead', 'country_code' => 'GB'], ['name' => 'Watauga', 'country_code' => 'US'], ['name' => 'Cotija de la Paz', 'country_code' => 'MX'], ['name' => 'Carlow', 'country_code' => 'IE'], ['name' => 'Saint-Pol-sur-Mer', 'country_code' => 'FR'], ['name' => 'Sao Joao da Madeira', 'country_code' => 'PT'], ['name' => 'Ashland', 'country_code' => 'US'], ['name' => 'Fatick', 'country_code' => 'SN'], ['name' => 'Garches', 'country_code' => 'FR'], ['name' => 'Chesham', 'country_code' => 'GB'], ['name' => 'Woodlawn', 'country_code' => 'US'], ['name' => 'Lodi', 'country_code' => 'US'], ['name' => 'Villa Sarmiento', 'country_code' => 'AR'], ['name' => 'San Fernando', 'country_code' => 'US'], ['name' => 'Chanthaburi', 'country_code' => 'TH'], ['name' => 'Xingangli', 'country_code' => 'CN'], ['name' => 'Peekskill', 'country_code' => 'US'], ['name' => 'Mill Creek East', 'country_code' => 'US'], ['name' => 'Dongta', 'country_code' => 'CN'], ['name' => 'Tysons', 'country_code' => 'US'], ['name' => 'Frattaminore', 'country_code' => 'IT'], ['name' => 'Valmiera', 'country_code' => 'LV'], ['name' => 'Newton in Makerfield', 'country_code' => 'GB'], ['name' => 'Bailey s Crossroads', 'country_code' => 'US'], ['name' => 'Vrbas', 'country_code' => 'RS'], ['name' => 'Grumo Nevano', 'country_code' => 'IT'], ['name' => 'Neath', 'country_code' => 'GB'], ['name' => 'Huskvarna', 'country_code' => 'SE'], ['name' => 'Atar', 'country_code' => 'MR'], ['name' => 'Motul', 'country_code' => 'MX'], ['name' => 'Elmwood Park', 'country_code' => 'US'], ['name' => 'Oak Ridge', 'country_code' => 'US'], ['name' => 'Renfrew', 'country_code' => 'GB'], ['name' => 'Dammarie-le-Lys', 'country_code' => 'FR'], ['name' => 'Senago', 'country_code' => 'IT'], ['name' => 'Qalansuwa', 'country_code' => 'IL'], ['name' => 'Horwich', 'country_code' => 'GB'], ['name' => 'Hellemmes-Lille', 'country_code' => 'FR'], ['name' => 'Owando', 'country_code' => 'CG'], ['name' => 'Cottingham', 'country_code' => 'GB'], ['name' => 'Southgate', 'country_code' => 'GB'], ['name' => 'Guaranda', 'country_code' => 'EC'], ['name' => 'Villeneuve-le-Roi', 'country_code' => 'FR'], ['name' => 'Le Bourget', 'country_code' => 'FR'], ['name' => 'Kibaha', 'country_code' => 'TZ'], ['name' => 'Mantes-la-Ville', 'country_code' => 'FR'], ['name' => 'Saint-Maurice', 'country_code' => 'FR'], ['name' => 'Bani Murr', 'country_code' => 'EG'], ['name' => 'Chilly-Mazarin', 'country_code' => 'FR'], ['name' => 'Tewkesbury', 'country_code' => 'GB'], ['name' => 'Satun', 'country_code' => 'TH'], ['name' => 'Saint-Michel-sur-Orge', 'country_code' => 'FR'], ['name' => 'Phetchaburi', 'country_code' => 'TH'], ['name' => 'Valinda', 'country_code' => 'US'], ['name' => 'Novate Milanese', 'country_code' => 'IT'], ['name' => 'Kudrovo', 'country_code' => 'RU'], ['name' => 'North Lynnwood', 'country_code' => 'US'], ['name' => 'Rosemont', 'country_code' => 'US'], ['name' => 'Southbourne', 'country_code' => 'GB'], ['name' => 'Peterlee', 'country_code' => 'GB'], ['name' => 'Kirkstall', 'country_code' => 'GB'], ['name' => 'Penzance', 'country_code' => 'GB'], ['name' => 'Cudahy', 'country_code' => 'US'], ['name' => 'Copiague', 'country_code' => 'US'], ['name' => 'Shoreham-by-Sea', 'country_code' => 'GB'], ['name' => 'Winter Gardens', 'country_code' => 'US'], ['name' => 'Yonabaru', 'country_code' => 'JP'], ['name' => 'Seaham', 'country_code' => 'GB'], ['name' => 'Allschwil', 'country_code' => 'CH'], ['name' => 'Alfafar', 'country_code' => 'ES'], ['name' => 'Nkhata Bay', 'country_code' => 'MW'], ['name' => 'Hialeah Gardens', 'country_code' => 'US'], ['name' => 'Wasquehal', 'country_code' => 'FR'], ['name' => 'Sukhodilsk', 'country_code' => 'UA'], ['name' => 'Coudekerque-Branche', 'country_code' => 'FR'], ['name' => 'Carteret', 'country_code' => 'US'], ['name' => 'Opfikon', 'country_code' => 'CH'], ['name' => 'Tena', 'country_code' => 'EC'], ['name' => 'West Puente Valley', 'country_code' => 'US'], ['name' => 'Peto', 'country_code' => 'MX'], ['name' => 'Biddulph', 'country_code' => 'GB'], ['name' => 'Killingworth', 'country_code' => 'GB'], ['name' => 'Loreto', 'country_code' => 'MX'], ['name' => 'Naas', 'country_code' => 'IE'], ['name' => 'Sacavem', 'country_code' => 'PT'], ['name' => 'Caterham', 'country_code' => 'GB'], ['name' => 'Nyon', 'country_code' => 'CH'], ['name' => 'Acheres', 'country_code' => 'FR'], ['name' => 'Ciudad Miguel Aleman', 'country_code' => 'MX'], ['name' => 'Bellshill', 'country_code' => 'GB'], ['name' => 'Mosta', 'country_code' => 'MT'], ['name' => 'Worcester Park', 'country_code' => 'GB'], ['name' => 'Maywood', 'country_code' => 'US'], ['name' => 'Davyhulme', 'country_code' => 'GB'], ['name' => 'Fleury-les-Aubrais', 'country_code' => 'FR'], ['name' => 'Grobenzell', 'country_code' => 'DE'], ['name' => 'Hidalgotitlan', 'country_code' => 'MX'], ['name' => 'Sunbat', 'country_code' => 'EG'], ['name' => 'Ronchin', 'country_code' => 'FR'], ['name' => 'Monsey', 'country_code' => 'US'], ['name' => 'Ogre', 'country_code' => 'LV'], ['name' => 'Kilkenny', 'country_code' => 'IE'], ['name' => 'Alloa', 'country_code' => 'GB'], ['name' => 'Aarau', 'country_code' => 'CH'], ['name' => 'West Rancho Dominguez', 'country_code' => 'US'], ['name' => 'Blue Island', 'country_code' => 'US'], ['name' => 'Lamu', 'country_code' => 'KE'], ['name' => 'Bilasuvar', 'country_code' => 'AZ'], ['name' => 'Kayanza', 'country_code' => 'BI'], ['name' => 'Monserrato', 'country_code' => 'IT'], ['name' => 'Zaragoza', 'country_code' => 'MX'], ['name' => 'Soisy-sous-Montmorency', 'country_code' => 'FR'], ['name' => 'Trentola', 'country_code' => 'IT'], ['name' => 'Sibiti', 'country_code' => 'CG'], ['name' => 'Willowbrook', 'country_code' => 'US'], ['name' => 'Llandudno', 'country_code' => 'GB'], ['name' => 'Saint-Cyr-l Ecole', 'country_code' => 'FR'], ['name' => 'Zimatlan de Alvarez', 'country_code' => 'MX'], ['name' => 'Savanna-la-Mar', 'country_code' => 'JM'], ['name' => 'Madingou', 'country_code' => 'CG'], ['name' => 'Bathgate', 'country_code' => 'GB'], ['name' => 'Mzimba', 'country_code' => 'MW'], ['name' => 'Sibut', 'country_code' => 'CF'], ['name' => 'Nogent-sur-Oise', 'country_code' => 'FR'], ['name' => 'Rothwell', 'country_code' => 'GB'], ['name' => 'Goodmayes', 'country_code' => 'GB'], ['name' => 'Kedainiai', 'country_code' => 'LT'], ['name' => 'Ives Estates', 'country_code' => 'US'], ['name' => 'Uliastay', 'country_code' => 'MN'], ['name' => 'Burnham-on-Sea', 'country_code' => 'GB'], ['name' => 'Ahfir', 'country_code' => 'MA'], ['name' => 'Jekabpils', 'country_code' => 'LV'], ['name' => 'Modling', 'country_code' => 'AT'], ['name' => 'Ischia', 'country_code' => 'IT'], ['name' => 'Quedgeley', 'country_code' => 'GB'], ['name' => 'Kayunga', 'country_code' => 'UG'], ['name' => 'Dukinfield', 'country_code' => 'GB'], ['name' => 'Mulanje', 'country_code' => 'MW'], ['name' => 'Landover', 'country_code' => 'US'], ['name' => 'Mecayapan', 'country_code' => 'MX'], ['name' => 'Prestatyn', 'country_code' => 'GB'], ['name' => 'Bafata', 'country_code' => 'GW'], ['name' => 'Dingle', 'country_code' => 'GB'], ['name' => 'Phichit', 'country_code' => 'TH'], ['name' => 'Saint Paul s Bay', 'country_code' => 'MT'], ['name' => 'Montereau-faut-Yonne', 'country_code' => 'FR'], ['name' => 'Mouila', 'country_code' => 'GA'], ['name' => 'The Crossings', 'country_code' => 'US'], ['name' => 'Tepatlaxco', 'country_code' => 'MX'], ['name' => 'Saint-Fons', 'country_code' => 'FR'], ['name' => 'Loei', 'country_code' => 'TH'], ['name' => 'Millbrae', 'country_code' => 'US'], ['name' => 'East Barnet', 'country_code' => 'GB'], ['name' => 'Oulad Fraj', 'country_code' => 'MA'], ['name' => 'Molesey', 'country_code' => 'GB'], ['name' => 'Mbaiki', 'country_code' => 'CF'], ['name' => 'Soroca', 'country_code' => 'MD'], ['name' => 'Arese', 'country_code' => 'IT'], ['name' => 'Fgura', 'country_code' => 'MT'], ['name' => 'Nsanje', 'country_code' => 'MW'], ['name' => 'Cercola', 'country_code' => 'IT'], ['name' => 'Lingolsheim', 'country_code' => 'FR'], ['name' => 'Connahs Quay', 'country_code' => 'GB'], ['name' => 'Truro', 'country_code' => 'GB'], ['name' => 'Sao Filipe', 'country_code' => 'CV'], ['name' => 'Fengdeng', 'country_code' => 'CN'], ['name' => 'Phetchabun', 'country_code' => 'TH'], ['name' => 'Sant Antonio Abate', 'country_code' => 'IT'], ['name' => 'Liversedge', 'country_code' => 'GB'], ['name' => 'Bella Union', 'country_code' => 'UY'], ['name' => 'Cran-Gevrier', 'country_code' => 'FR'], ['name' => 'Caacupe', 'country_code' => 'PY'], ['name' => 'Antrim', 'country_code' => 'GB'], ['name' => 'Faches-Thumesnil', 'country_code' => 'FR'], ['name' => 'Fortin de las Flores', 'country_code' => 'MX'], ['name' => 'West Carson', 'country_code' => 'US'], ['name' => 'Mocoa', 'country_code' => 'CO'], ['name' => 'Telsiai', 'country_code' => 'LT'], ['name' => 'Assebroek', 'country_code' => 'BE'], ['name' => 'Linlithgow', 'country_code' => 'GB'], ['name' => 'Keynsham', 'country_code' => 'GB'], ['name' => 'Lealman', 'country_code' => 'US'], ['name' => 'Kegalle', 'country_code' => 'LK'], ['name' => 'Eragny', 'country_code' => 'FR'], ['name' => 'Ghat', 'country_code' => 'LY'], ['name' => 'Hayesville', 'country_code' => 'US'], ['name' => 'Bry-sur-Marne', 'country_code' => 'FR'], ['name' => 'Moreton', 'country_code' => 'GB'], ['name' => 'Hillside', 'country_code' => 'US'], ['name' => 'Bedlington', 'country_code' => 'GB'], ['name' => 'Reinach', 'country_code' => 'CH'], ['name' => 'Al Karak', 'country_code' => 'JO'], ['name' => 'Jasmine Estates', 'country_code' => 'US'], ['name' => 'Saint-Lambert', 'country_code' => 'CA'], ['name' => 'Woodhouse', 'country_code' => 'GB'], ['name' => 'Aldo Bonzi', 'country_code' => 'AR'], ['name' => 'Westbury', 'country_code' => 'GB'], ['name' => 'Hadleigh', 'country_code' => 'GB'], ['name' => 'Kitagata', 'country_code' => 'JP'], ['name' => 'Moulins', 'country_code' => 'FR'], ['name' => 'Goroka', 'country_code' => 'PG'], ['name' => 'Lennox', 'country_code' => 'US'], ['name' => 'Kew Green', 'country_code' => 'GB'], ['name' => 'Roselle', 'country_code' => 'US'], ['name' => 'Sunny Isles Beach', 'country_code' => 'US'], ['name' => 'Massapequa', 'country_code' => 'US'], ['name' => 'Chamalieres', 'country_code' => 'FR'], ['name' => 'Calne', 'country_code' => 'GB'], ['name' => 'Carmelo', 'country_code' => 'UY'], ['name' => 'Acatlan de Osorio', 'country_code' => 'MX'], ['name' => 'Mont-Saint-Aignan', 'country_code' => 'FR'], ['name' => 'Calella', 'country_code' => 'ES'], ['name' => 'North Bay Shore', 'country_code' => 'US'], ['name' => 'Nantwich', 'country_code' => 'GB'], ['name' => 'Kapolei', 'country_code' => 'US'], ['name' => 'Alajuelita', 'country_code' => 'CR'], ['name' => 'Nong Bua Lamphu', 'country_code' => 'TH'], ['name' => 'Ashtarak', 'country_code' => 'AM'], ['name' => 'Abbots Langley', 'country_code' => 'GB'], ['name' => 'Obiliq', 'country_code' => 'XK'], ['name' => 'Dover', 'country_code' => 'US'], ['name' => 'Hamtramck', 'country_code' => 'US'], ['name' => 'Chennevieres-sur-Marne', 'country_code' => 'FR'], ['name' => 'Hampton', 'country_code' => 'GB'], ['name' => 'Le Pecq', 'country_code' => 'FR'], ['name' => 'Taurage', 'country_code' => 'LT'], ['name' => 'Haciqabul', 'country_code' => 'AZ'], ['name' => 'Ayutla de los Libres', 'country_code' => 'MX'], ['name' => 'Schlieren', 'country_code' => 'CH'], ['name' => 'McNair', 'country_code' => 'US'], ['name' => 'Johnstone', 'country_code' => 'GB'], ['name' => 'Bozoum', 'country_code' => 'CF'], ['name' => 'Mchinji', 'country_code' => 'MW'], ['name' => 'Pully', 'country_code' => 'CH'], ['name' => 'Patcham', 'country_code' => 'GB'], ['name' => 'Dawlish', 'country_code' => 'GB'], ['name' => 'Artashat', 'country_code' => 'AM'], ['name' => 'Virovitica', 'country_code' => 'HR'], ['name' => 'Tatahuicapan', 'country_code' => 'MX'], ['name' => 'San Francisco', 'country_code' => 'SV'], ['name' => 'Mickleover', 'country_code' => 'GB'], ['name' => 'Redhill', 'country_code' => 'GB'], ['name' => 'Vaureal', 'country_code' => 'FR'], ['name' => 'Maralal', 'country_code' => 'KE'], ['name' => 'Mountlake Terrace', 'country_code' => 'US'], ['name' => 'Hebburn', 'country_code' => 'GB'], ['name' => 'Bonneuil-sur-Marne', 'country_code' => 'FR'], ['name' => 'Caiaponia', 'country_code' => 'BR'], ['name' => 'North Plainfield', 'country_code' => 'US'], ['name' => 'Le Raincy', 'country_code' => 'FR'], ['name' => 'Ukmerge', 'country_code' => 'LT'], ['name' => 'Santa Lucia', 'country_code' => 'UY'], ['name' => 'Obock', 'country_code' => 'DJ'], ['name' => 'Orhei', 'country_code' => 'MD'], ['name' => 'Bovisio Masciago', 'country_code' => 'IT'], ['name' => 'Adliswil', 'country_code' => 'CH'], ['name' => 'La Esperanza', 'country_code' => 'HN'], ['name' => 'Luena', 'country_code' => 'AO'], ['name' => 'Viroflay', 'country_code' => 'FR'], ['name' => 'Boom', 'country_code' => 'BE'], ['name' => 'Sant Just Desvern', 'country_code' => 'ES'], ['name' => 'Bischheim', 'country_code' => 'FR'], ['name' => 'Thalwil', 'country_code' => 'CH'], ['name' => 'Horsforth', 'country_code' => 'GB'], ['name' => 'Sweetwater', 'country_code' => 'US'], ['name' => 'El Astillero', 'country_code' => 'ES'], ['name' => 'Hednesford', 'country_code' => 'GB'], ['name' => 'Guayama', 'country_code' => 'PR'], ['name' => 'Pajapan', 'country_code' => 'MX'], ['name' => 'Malgrat de Mar', 'country_code' => 'ES'], ['name' => 'Wolfratshausen', 'country_code' => 'DE'], ['name' => 'Impfondo', 'country_code' => 'CG'], ['name' => 'Quba', 'country_code' => 'AZ'], ['name' => 'Birstall', 'country_code' => 'GB'], ['name' => 'Moston', 'country_code' => 'GB'], ['name' => 'Staines-upon-Thames', 'country_code' => 'GB'], ['name' => 'Gavarr', 'country_code' => 'AM'], ['name' => 'Dolores', 'country_code' => 'UY'], ['name' => 'Tadaoka-higashi', 'country_code' => 'JP'], ['name' => 'Tecpan de Galeana', 'country_code' => 'MX'], ['name' => 'Ecully', 'country_code' => 'FR'], ['name' => 'Chemax', 'country_code' => 'MX'], ['name' => 'El Rosario', 'country_code' => 'MX'], ['name' => 'Wibsey', 'country_code' => 'GB'], ['name' => 'Canelones', 'country_code' => 'UY'], ['name' => 'North Bellmore', 'country_code' => 'US'], ['name' => 'Palisades Park', 'country_code' => 'US'], ['name' => 'Aci Castello', 'country_code' => 'IT'], ['name' => 'Ismayilli', 'country_code' => 'AZ'], ['name' => 'Ati', 'country_code' => 'TD'], ['name' => 'El Dorado', 'country_code' => 'MX'], ['name' => 'Nan', 'country_code' => 'TH'], ['name' => 'Cowley', 'country_code' => 'GB'], ['name' => 'Cuprija', 'country_code' => 'RS'], ['name' => 'Palau', 'country_code' => 'MX'], ['name' => 'Porthcawl', 'country_code' => 'GB'], ['name' => 'New Brighton', 'country_code' => 'GB'], ['name' => 'Vimodrone', 'country_code' => 'IT'], ['name' => 'Bingley', 'country_code' => 'GB'], ['name' => 'Yasothon', 'country_code' => 'TH'], ['name' => 'South El Monte', 'country_code' => 'US'], ['name' => 'Belgrave', 'country_code' => 'GB'], ['name' => 'Ijevan', 'country_code' => 'AM'], ['name' => 'Baguley', 'country_code' => 'GB'], ['name' => 'Warminster', 'country_code' => 'GB'], ['name' => 'Beinasco', 'country_code' => 'IT'], ['name' => 'Ostermundigen', 'country_code' => 'CH'], ['name' => 'Zaghouan', 'country_code' => 'TN'], ['name' => 'West Derby', 'country_code' => 'GB'], ['name' => 'Haslingden', 'country_code' => 'GB'], ['name' => 'Les Clayes-sous-Bois', 'country_code' => 'FR'], ['name' => 'Bubanza', 'country_code' => 'BI'], ['name' => 'Columbia Heights', 'country_code' => 'US'], ['name' => 'Sunbury', 'country_code' => 'GB'], ['name' => 'Stoke Gifford', 'country_code' => 'GB'], ['name' => 'Nailsea', 'country_code' => 'GB'], ['name' => 'Cleckheaton', 'country_code' => 'GB'], ['name' => 'Somoto', 'country_code' => 'NI'], ['name' => 'Senta', 'country_code' => 'RS'], ['name' => 'Shirley', 'country_code' => 'GB'], ['name' => 'Leagrave', 'country_code' => 'GB'], ['name' => 'Lomita', 'country_code' => 'US'], ['name' => 'Cosham', 'country_code' => 'GB'], ['name' => 'Enfield Lock', 'country_code' => 'GB'], ['name' => 'Bayshore Gardens', 'country_code' => 'US'], ['name' => 'Agsu', 'country_code' => 'AZ'], ['name' => 'Agstafa', 'country_code' => 'AZ'], ['name' => 'Bani Hasan ash Shuruq', 'country_code' => 'EG'], ['name' => 'Harwich', 'country_code' => 'GB'], ['name' => 'Saffron Walden', 'country_code' => 'GB'], ['name' => 'Basford', 'country_code' => 'GB'], ['name' => 'Maurepas', 'country_code' => 'FR'], ['name' => 'Comrat', 'country_code' => 'MD'], ['name' => 'Guastatoya', 'country_code' => 'GT'], ['name' => 'Kirkland', 'country_code' => 'CA'], ['name' => 'Qormi', 'country_code' => 'MT'], ['name' => 'Arvayheer', 'country_code' => 'MN'], ['name' => 'Tyldesley', 'country_code' => 'GB'], ['name' => 'Sligo', 'country_code' => 'IE'], ['name' => 'Harrison', 'country_code' => 'US'], ['name' => 'Cattolica', 'country_code' => 'IT'], ['name' => 'Hilsea', 'country_code' => 'GB'], ['name' => 'West Chester', 'country_code' => 'US'], ['name' => 'Hakha', 'country_code' => 'MM'], ['name' => 'Mubende', 'country_code' => 'UG'], ['name' => 'Ulcinj', 'country_code' => 'ME'], ['name' => 'Tidjikja', 'country_code' => 'MR'], ['name' => 'South San Jose Hills', 'country_code' => 'US'], ['name' => 'Elmwood Park', 'country_code' => 'US'], ['name' => 'Kralingse Veer', 'country_code' => 'NL'], ['name' => 'Floirac', 'country_code' => 'FR'], ['name' => 'Stone', 'country_code' => 'GB'], ['name' => 'Morges', 'country_code' => 'CH'], ['name' => 'The Mumbles', 'country_code' => 'GB'], ['name' => 'Westmount', 'country_code' => 'CA'], ['name' => 'Kotsyubyns ke', 'country_code' => 'UA'], ['name' => 'Fazakerley', 'country_code' => 'GB'], ['name' => 'Maldon', 'country_code' => 'GB'], ['name' => 'Saynshand', 'country_code' => 'MN'], ['name' => 'Wombwell', 'country_code' => 'GB'], ['name' => 'Eldama Ravine', 'country_code' => 'KE'], ['name' => 'West Hempstead', 'country_code' => 'US'], ['name' => 'Tilbury', 'country_code' => 'GB'], ['name' => 'Ciudad de Huitzuco', 'country_code' => 'MX'], ['name' => 'La Cruz', 'country_code' => 'MX'], ['name' => 'Tlaxcala', 'country_code' => 'MX'], ['name' => 'Larkhall', 'country_code' => 'GB'], ['name' => 'Wondelgem', 'country_code' => 'BE'], ['name' => 'Tecuala', 'country_code' => 'MX'], ['name' => 'Inirida', 'country_code' => 'CO'], ['name' => 'Biyahmu', 'country_code' => 'EG'], ['name' => 'Ribeira Grande', 'country_code' => 'CV'], ['name' => 'Norwood', 'country_code' => 'US'], ['name' => 'Ciudad Guadalupe Victoria', 'country_code' => 'MX'], ['name' => 'Kavieng', 'country_code' => 'PG'], ['name' => 'Franconia', 'country_code' => 'US'], ['name' => 'Clayton', 'country_code' => 'GB'], ['name' => 'Albany', 'country_code' => 'US'], ['name' => 'La Crescenta-Montrose', 'country_code' => 'US'], ['name' => 'Telavi', 'country_code' => 'GE'], ['name' => 'Faranah', 'country_code' => 'GN'], ['name' => 'Phra Pradaeng', 'country_code' => 'TH'], ['name' => 'Milton', 'country_code' => 'GB'], ['name' => 'Santa Catarina Juquila', 'country_code' => 'MX'], ['name' => 'Kidbrooke', 'country_code' => 'GB'], ['name' => 'Shipley', 'country_code' => 'GB'], ['name' => 'Lezhe', 'country_code' => 'AL'], ['name' => 'Lons-le-Saunier', 'country_code' => 'FR'], ['name' => 'Santiago Tulantepec', 'country_code' => 'MX'], ['name' => 'Central Falls', 'country_code' => 'US'], ['name' => 'Whickham', 'country_code' => 'GB'], ['name' => 'Rodolfo Sanchez Taboada', 'country_code' => 'MX'], ['name' => 'Kapsabet', 'country_code' => 'KE'], ['name' => 'Deysbrook', 'country_code' => 'GB'], ['name' => 'Langley Park', 'country_code' => 'US'], ['name' => 'Mont-Royal', 'country_code' => 'CA'], ['name' => 'Schofield Barracks', 'country_code' => 'US'], ['name' => 'Ciudad Hidalgo', 'country_code' => 'MX'], ['name' => 'Cardenas', 'country_code' => 'MX'], ['name' => 'Barton upon Irwell', 'country_code' => 'GB'], ['name' => 'Solothurn', 'country_code' => 'CH'], ['name' => 'Lynbrook', 'country_code' => 'US'], ['name' => 'Lagawe', 'country_code' => 'PH'], ['name' => 'Lai', 'country_code' => 'TD'], ['name' => 'Bonnyrigg', 'country_code' => 'GB'], ['name' => 'Budva', 'country_code' => 'ME'], ['name' => 'Son La', 'country_code' => 'VN'], ['name' => 'Arnouville-les-Gonesse', 'country_code' => 'FR'], ['name' => 'Tchibanga', 'country_code' => 'GA'], ['name' => 'Ban Rawai', 'country_code' => 'TH'], ['name' => 'Al Madamud', 'country_code' => 'EG'], ['name' => 'Canovellas', 'country_code' => 'ES'], ['name' => 'Macas', 'country_code' => 'EC'], ['name' => 'Partick', 'country_code' => 'GB'], ['name' => 'Netherton', 'country_code' => 'GB'], ['name' => 'Hermosa Beach', 'country_code' => 'US'], ['name' => 'Tillaberi', 'country_code' => 'NE'], ['name' => 'Seacroft', 'country_code' => 'GB'], ['name' => 'Tepoztlan', 'country_code' => 'MX'], ['name' => 'Brusciano', 'country_code' => 'IT'], ['name' => 'Attapu', 'country_code' => 'LA'], ['name' => 'Noisiel', 'country_code' => 'FR'], ['name' => 'Morristown', 'country_code' => 'US'], ['name' => 'Baildon', 'country_code' => 'GB'], ['name' => 'Sherrelwood', 'country_code' => 'US'], ['name' => 'Mineola', 'country_code' => 'US'], ['name' => 'Sant Arpino', 'country_code' => 'IT'], ['name' => 'Harrow Weald', 'country_code' => 'GB'], ['name' => 'Evergreen Park', 'country_code' => 'US'], ['name' => 'Addlestone', 'country_code' => 'GB'], ['name' => 'Saint-Jean-de-la-Ruelle', 'country_code' => 'FR'], ['name' => 'Pemberton', 'country_code' => 'GB'], ['name' => 'Baabda', 'country_code' => 'LB'], ['name' => 'Bububu', 'country_code' => 'TZ'], ['name' => 'West Wickham', 'country_code' => 'GB'], ['name' => 'Binningen', 'country_code' => 'CH'], ['name' => 'Apaxco de Ocampo', 'country_code' => 'MX'], ['name' => 'Le Vesinet', 'country_code' => 'FR'], ['name' => 'Mao', 'country_code' => 'TD'], ['name' => 'Saltash', 'country_code' => 'GB'], ['name' => 'Montmagny', 'country_code' => 'FR'], ['name' => 'Grajales', 'country_code' => 'MX'], ['name' => 'Dzuunmod', 'country_code' => 'MN'], ['name' => 'Wellington', 'country_code' => 'GB'], ['name' => 'Bellaire', 'country_code' => 'US'], ['name' => 'Keetmanshoop', 'country_code' => 'NA'], ['name' => 'Paraguari', 'country_code' => 'PY'], ['name' => 'Hendaye', 'country_code' => 'FR'], ['name' => 'Hazel Grove', 'country_code' => 'GB'], ['name' => 'Northenden', 'country_code' => 'GB'], ['name' => 'Hinche', 'country_code' => 'HT'], ['name' => 'Hun', 'country_code' => 'LY'], ['name' => 'Kimbe', 'country_code' => 'PG'], ['name' => 'Saint-Leu-la-Foret', 'country_code' => 'FR'], ['name' => 'Dong Ha', 'country_code' => 'VN'], ['name' => 'Pureparo de Echaiz', 'country_code' => 'MX'], ['name' => 'Visaginas', 'country_code' => 'LT'], ['name' => 'Marly-le-Roi', 'country_code' => 'FR'], ['name' => 'Albal', 'country_code' => 'ES'], ['name' => 'Mansa Konko', 'country_code' => 'GM'], ['name' => 'Bou Djeniba', 'country_code' => 'MA'], ['name' => 'Harnosand', 'country_code' => 'SE'], ['name' => 'Tlaltetela', 'country_code' => 'MX'], ['name' => 'Prestwick', 'country_code' => 'GB'], ['name' => 'Point Pleasant', 'country_code' => 'US'], ['name' => 'Masamagrell', 'country_code' => 'ES'], ['name' => 'Pakwach', 'country_code' => 'UG'], ['name' => 'Hawthorne', 'country_code' => 'US'], ['name' => 'La Crucecita', 'country_code' => 'MX'], ['name' => 'Rwamagana', 'country_code' => 'RW'], ['name' => 'Hostomel', 'country_code' => 'UA'], ['name' => 'Buckley', 'country_code' => 'GB'], ['name' => 'Rock Ferry', 'country_code' => 'GB'], ['name' => 'Ahmadli', 'country_code' => 'AZ'], ['name' => 'Banstead', 'country_code' => 'GB'], ['name' => 'Juchique de Ferrer', 'country_code' => 'MX'], ['name' => 'Siyazan', 'country_code' => 'AZ'], ['name' => 'Hythe', 'country_code' => 'GB'], ['name' => 'Bellwood', 'country_code' => 'US'], ['name' => 'Vicente Guerrero', 'country_code' => 'MX'], ['name' => 'North Valley Stream', 'country_code' => 'US'], ['name' => 'Ptuj', 'country_code' => 'SI'], ['name' => 'Leposaviq', 'country_code' => 'XK'], ['name' => 'Goulmima', 'country_code' => 'MA'], ['name' => 'Sabirabad', 'country_code' => 'AZ'], ['name' => 'Clitheroe', 'country_code' => 'GB'], ['name' => 'Seabrook', 'country_code' => 'US'], ['name' => 'Bromborough', 'country_code' => 'GB'], ['name' => 'Avenel', 'country_code' => 'US'], ['name' => 'Sudley', 'country_code' => 'US'], ['name' => 'Jouy-le-Moutier', 'country_code' => 'FR'], ['name' => 'Tarrafal', 'country_code' => 'CV'], ['name' => 'Tsetserleg', 'country_code' => 'MN'], ['name' => 'Casandrino', 'country_code' => 'IT'], ['name' => 'Winthrop', 'country_code' => 'US'], ['name' => 'Cerritos', 'country_code' => 'MX'], ['name' => 'Carrieres-sous-Poissy', 'country_code' => 'FR'], ['name' => 'North Massapequa', 'country_code' => 'US'], ['name' => 'Lognes', 'country_code' => 'FR'], ['name' => 'Straseni', 'country_code' => 'MD'], ['name' => 'Mesa Geitonia', 'country_code' => 'CY'], ['name' => 'Tinguindin', 'country_code' => 'MX'], ['name' => 'Oteapan', 'country_code' => 'MX'], ['name' => 'Beausoleil', 'country_code' => 'FR'], ['name' => 'Pedreiras', 'country_code' => 'BR'], ['name' => 'Huixcolotla', 'country_code' => 'MX'], ['name' => 'Izamal', 'country_code' => 'MX'], ['name' => 'Ermua', 'country_code' => 'ES'], ['name' => 'Bryn Mawr-Skyway', 'country_code' => 'US'], ['name' => 'Melksham', 'country_code' => 'GB'], ['name' => 'Yiewsley', 'country_code' => 'GB'], ['name' => 'Coquimatlan', 'country_code' => 'MX'], ['name' => 'North Amityville', 'country_code' => 'US'], ['name' => 'Carugate', 'country_code' => 'IT'], ['name' => 'Bidston', 'country_code' => 'GB'], ['name' => 'Forfar', 'country_code' => 'GB'], ['name' => 'Zabbar', 'country_code' => 'MT'], ['name' => 'Brookfield', 'country_code' => 'US'], ['name' => 'Rutherford', 'country_code' => 'US'], ['name' => 'Bartica', 'country_code' => 'GY'], ['name' => 'Bebington', 'country_code' => 'GB'], ['name' => 'Wallisellen', 'country_code' => 'CH'], ['name' => 'Merrifield', 'country_code' => 'US'], ['name' => 'Arenys de Mar', 'country_code' => 'ES'], ['name' => 'Madera', 'country_code' => 'MX'], ['name' => 'Idylwood', 'country_code' => 'US'], ['name' => 'Richmond', 'country_code' => 'NZ'], ['name' => 'Kedougou', 'country_code' => 'SN'], ['name' => 'Hyattsville', 'country_code' => 'US'], ['name' => 'Pendlebury', 'country_code' => 'GB'], ['name' => 'Filadelfia', 'country_code' => 'PY'], ['name' => 'Dedza', 'country_code' => 'MW'], ['name' => 'Gornalwood', 'country_code' => 'GB'], ['name' => 'Llantrisant', 'country_code' => 'GB'], ['name' => 'Iselin', 'country_code' => 'US'], ['name' => 'Sing Buri', 'country_code' => 'TH'], ['name' => 'Salaspils', 'country_code' => 'LV'], ['name' => 'Hessle', 'country_code' => 'GB'], ['name' => 'Royston', 'country_code' => 'GB'], ['name' => 'La Llagosta', 'country_code' => 'ES'], ['name' => 'Prachin Buri', 'country_code' => 'TH'], ['name' => 'Montargis', 'country_code' => 'FR'], ['name' => 'Amblecote', 'country_code' => 'GB'], ['name' => 'Saint Budeaux', 'country_code' => 'GB'], ['name' => 'Sainte-Marthe-sur-le-Lac', 'country_code' => 'CA'], ['name' => 'Vynnyky', 'country_code' => 'UA'], ['name' => 'Tunapuna', 'country_code' => 'TT'], ['name' => 'Prilly', 'country_code' => 'CH'], ['name' => 'Selby', 'country_code' => 'GB'], ['name' => 'Viljandi', 'country_code' => 'EE'], ['name' => 'Orange Walk', 'country_code' => 'BZ'], ['name' => 'Torit', 'country_code' => 'SS'], ['name' => 'Bois-d Arcy', 'country_code' => 'FR'], ['name' => 'Saatli', 'country_code' => 'AZ'], ['name' => 'Luce', 'country_code' => 'FR'], ['name' => 'Stapleford', 'country_code' => 'GB'], ['name' => 'Mountain House', 'country_code' => 'US'], ['name' => 'Akhaltsikhe', 'country_code' => 'GE'], ['name' => 'Sa Kaeo', 'country_code' => 'TH'], ['name' => 'Churriana de la Vega', 'country_code' => 'ES'], ['name' => 'Gines', 'country_code' => 'ES'], ['name' => 'Bourne', 'country_code' => 'GB'], ['name' => 'Burke Centre', 'country_code' => 'US'], ['name' => 'Eppelheim', 'country_code' => 'DE'], ['name' => 'Sidlice', 'country_code' => 'PL'], ['name' => 'Thonex', 'country_code' => 'CH'], ['name' => 'West Drayton', 'country_code' => 'GB'], ['name' => 'Perivale', 'country_code' => 'GB'], ['name' => 'Khasab', 'country_code' => 'OM'], ['name' => 'Sidi Zouine', 'country_code' => 'MA'], ['name' => 'Guerrero Negro', 'country_code' => 'MX'], ['name' => 'Kidlington', 'country_code' => 'GB'], ['name' => 'Cizur Mayor', 'country_code' => 'ES'], ['name' => 'Santa Rosalia', 'country_code' => 'MX'], ['name' => 'Valparaiso', 'country_code' => 'MX'], ['name' => 'Rosyth', 'country_code' => 'GB'], ['name' => 'Ban Houayxay', 'country_code' => 'LA'], ['name' => 'Kukes', 'country_code' => 'AL'], ['name' => 'Takoma Park', 'country_code' => 'US'], ['name' => 'Dover', 'country_code' => 'US'], ['name' => 'Puerto Ayora', 'country_code' => 'EC'], ['name' => 'Brierley Hill', 'country_code' => 'GB'], ['name' => 'Swinton', 'country_code' => 'GB'], ['name' => 'Little Hulton', 'country_code' => 'GB'], ['name' => 'Marlow', 'country_code' => 'GB'], ['name' => 'Enghien-les-Bains', 'country_code' => 'FR'], ['name' => 'Cedar Mill', 'country_code' => 'US'], ['name' => 'Esquimalt', 'country_code' => 'CA'], ['name' => 'Greenfield', 'country_code' => 'US'], ['name' => 'Valenton', 'country_code' => 'FR'], ['name' => 'Tak', 'country_code' => 'TH'], ['name' => 'Eilendorf', 'country_code' => 'DE'], ['name' => 'Lys-les-Lannoy', 'country_code' => 'FR'], ['name' => 'Fuzuli', 'country_code' => 'AZ'], ['name' => 'Phayao', 'country_code' => 'TH'], ['name' => 'Haubourdin', 'country_code' => 'FR'], ['name' => 'Caerfyrddin', 'country_code' => 'GB'], ['name' => 'Deux-Montagnes', 'country_code' => 'CA'], ['name' => 'Mehtar Lam', 'country_code' => 'AF'], ['name' => 'Villa Union', 'country_code' => 'MX'], ['name' => 'Pinewood', 'country_code' => 'US'], ['name' => 'Chitipa', 'country_code' => 'MW'], ['name' => 'Huitzilan', 'country_code' => 'MX'], ['name' => 'Canet de Mar', 'country_code' => 'ES'], ['name' => 'Kingstowne', 'country_code' => 'US'], ['name' => 'Dumont', 'country_code' => 'US'], ['name' => 'Gobabis', 'country_code' => 'NA'], ['name' => 'Country Walk', 'country_code' => 'US'], ['name' => 'Longwy', 'country_code' => 'FR'], ['name' => 'Manassas Park', 'country_code' => 'US'], ['name' => 'Rossington', 'country_code' => 'GB'], ['name' => 'Woodmere', 'country_code' => 'US'], ['name' => 'Stanley', 'country_code' => 'GB'], ['name' => 'Lowton', 'country_code' => 'GB'], ['name' => 'South Houston', 'country_code' => 'US'], ['name' => 'Ringwood', 'country_code' => 'GB'], ['name' => 'Sudbury', 'country_code' => 'GB'], ['name' => 'Ilkley', 'country_code' => 'GB'], ['name' => 'Guachochi', 'country_code' => 'MX'], ['name' => 'Kamuli', 'country_code' => 'UG'], ['name' => 'Juan Aldama', 'country_code' => 'MX'], ['name' => 'Ovenden', 'country_code' => 'GB'], ['name' => 'Childwall', 'country_code' => 'GB'], ['name' => 'Ezequiel Montes', 'country_code' => 'MX'], ['name' => 'Saint-Brice-sous-Foret', 'country_code' => 'FR'], ['name' => 'Verwood', 'country_code' => 'GB'], ['name' => 'Balancan', 'country_code' => 'MX'], ['name' => 'Rijnsburg', 'country_code' => 'NL'], ['name' => 'Iheddadene', 'country_code' => 'MA'], ['name' => 'Whitby', 'country_code' => 'GB'], ['name' => 'Hetton le Hole', 'country_code' => 'GB'], ['name' => 'Miahuatlan', 'country_code' => 'MX'], ['name' => 'Marsabit', 'country_code' => 'KE'], ['name' => 'Egg Buckland', 'country_code' => 'GB'], ['name' => 'Illizi', 'country_code' => 'DZ'], ['name' => 'Avon', 'country_code' => 'FR'], ['name' => 'Trstenik', 'country_code' => 'RS'], ['name' => 'Hawick', 'country_code' => 'GB'], ['name' => 'Wanstead', 'country_code' => 'GB'], ['name' => 'Newport Pagnell', 'country_code' => 'GB'], ['name' => 'Rive-de-Gier', 'country_code' => 'FR'], ['name' => 'Udelnaya', 'country_code' => 'RU'], ['name' => 'Tilehurst', 'country_code' => 'GB'], ['name' => 'Massapequa Park', 'country_code' => 'US'], ['name' => 'Wahiawa', 'country_code' => 'US'], ['name' => 'Ma rib', 'country_code' => 'YE'], ['name' => 'Lansdale', 'country_code' => 'US'], ['name' => 'Makokou', 'country_code' => 'GA'], ['name' => 'Wattignies', 'country_code' => 'FR'], ['name' => 'Saint-Andre', 'country_code' => 'FR'], ['name' => 'Hybla Valley', 'country_code' => 'US'], ['name' => 'Shenley Church End', 'country_code' => 'GB'], ['name' => 'Neubiberg', 'country_code' => 'DE'], ['name' => 'Montesson', 'country_code' => 'FR'], ['name' => 'Calkini', 'country_code' => 'MX'], ['name' => 'Brownsville', 'country_code' => 'US'], ['name' => 'Rozenburg', 'country_code' => 'NL'], ['name' => 'Chaddesden', 'country_code' => 'GB'], ['name' => 'San Ignacio', 'country_code' => 'BZ'], ['name' => 'Marupe', 'country_code' => 'LV'], ['name' => 'East Cleveland', 'country_code' => 'US'], ['name' => 'Arbon', 'country_code' => 'CH'], ['name' => 'Anzin', 'country_code' => 'FR'], ['name' => 'Glassmanor', 'country_code' => 'US'], ['name' => 'Cachoeira Alta', 'country_code' => 'BR'], ['name' => 'Smethwick', 'country_code' => 'GB'], ['name' => 'Roosevelt', 'country_code' => 'US'], ['name' => 'Mosgiel', 'country_code' => 'NZ'], ['name' => 'Coseley', 'country_code' => 'GB'], ['name' => 'Brackley', 'country_code' => 'GB'], ['name' => 'Tempoal de Sanchez', 'country_code' => 'MX'], ['name' => 'Villasanta', 'country_code' => 'IT'], ['name' => 'Live Oak', 'country_code' => 'US'], ['name' => 'Armthorpe', 'country_code' => 'GB'], ['name' => 'Birqash', 'country_code' => 'EG'], ['name' => 'Astara', 'country_code' => 'AZ'], ['name' => 'Phrae', 'country_code' => 'TH'], ['name' => 'Milngavie', 'country_code' => 'GB'], ['name' => 'Zvecan', 'country_code' => 'XK'], ['name' => 'Plunge', 'country_code' => 'LT'], ['name' => 'Puerto Carreno', 'country_code' => 'CO'], ['name' => 'Bodmin', 'country_code' => 'GB'], ['name' => 'Ntungamo', 'country_code' => 'UG'], ['name' => 'Clayton', 'country_code' => 'US'], ['name' => 'L Ancienne-Lorette', 'country_code' => 'CA'], ['name' => 'Redruth', 'country_code' => 'GB'], ['name' => 'Walsall Wood', 'country_code' => 'GB'], ['name' => 'San Nicolas de los Ranchos', 'country_code' => 'MX'], ['name' => 'Tukums', 'country_code' => 'LV'], ['name' => 'Mollerusa', 'country_code' => 'ES'], ['name' => 'Ramonville-Saint-Agne', 'country_code' => 'FR'], ['name' => 'Hollinwood', 'country_code' => 'GB'], ['name' => 'Whakatane', 'country_code' => 'NZ'], ['name' => 'Struga', 'country_code' => 'MK'], ['name' => 'Streetly', 'country_code' => 'GB'], ['name' => 'Fraserburgh', 'country_code' => 'GB'], ['name' => 'Glenmont', 'country_code' => 'US'], ['name' => 'Vicente Guerrero', 'country_code' => 'MX'], ['name' => 'Bull Run', 'country_code' => 'US'], ['name' => 'Elesbao Veloso', 'country_code' => 'BR'], ['name' => 'Pathum Thani', 'country_code' => 'TH'], ['name' => 'Conisbrough', 'country_code' => 'GB'], ['name' => 'Thorpe Saint Andrew', 'country_code' => 'GB'], ['name' => 'Kretinga', 'country_code' => 'LT'], ['name' => 'Bostonia', 'country_code' => 'US'], ['name' => 'Artesia', 'country_code' => 'US'], ['name' => 'Yauco', 'country_code' => 'PR'], ['name' => 'Tabernes Blanques', 'country_code' => 'ES'], ['name' => 'Blunsdon Saint Andrew', 'country_code' => 'GB'], ['name' => 'Herceg Novi', 'country_code' => 'ME'], ['name' => 'Evington', 'country_code' => 'GB'], ['name' => 'South Orange Village', 'country_code' => 'US'], ['name' => 'Chojnow', 'country_code' => 'PL'], ['name' => 'Broughty Ferry', 'country_code' => 'GB'], ['name' => 'Milford Haven', 'country_code' => 'GB'], ['name' => 'Bredbury', 'country_code' => 'GB'], ['name' => 'New Milford', 'country_code' => 'US'], ['name' => 'Ogijares', 'country_code' => 'ES'], ['name' => 'Ojus', 'country_code' => 'US'], ['name' => 'East Riverdale', 'country_code' => 'US'], ['name' => 'Castellanza', 'country_code' => 'IT'], ['name' => 'Mongat', 'country_code' => 'ES'], ['name' => 'Hall in Tirol', 'country_code' => 'AT'], ['name' => 'Four Corners', 'country_code' => 'US'], ['name' => 'Hillcrest Heights', 'country_code' => 'US'], ['name' => 'Rosu', 'country_code' => 'RO'], ['name' => 'Little Lever', 'country_code' => 'GB'], ['name' => 'Rakvere', 'country_code' => 'EE'], ['name' => 'Adelphi', 'country_code' => 'US'], ['name' => 'Moussoro', 'country_code' => 'TD'], ['name' => 'Hazel Park', 'country_code' => 'US'], ['name' => 'Ranong', 'country_code' => 'TH'], ['name' => 'Mouvaux', 'country_code' => 'FR'], ['name' => 'Stanford', 'country_code' => 'US'], ['name' => 'Baranzate', 'country_code' => 'IT'], ['name' => 'Nakhon Nayok', 'country_code' => 'TH'], ['name' => 'Thatto Heath', 'country_code' => 'GB'], ['name' => 'Mahikeng', 'country_code' => 'ZA'], ['name' => 'Solaro', 'country_code' => 'IT'], ['name' => 'Oulad Hamdane', 'country_code' => 'MA'], ['name' => 'Radovis', 'country_code' => 'MK'], ['name' => 'Naama', 'country_code' => 'DZ'], ['name' => 'East San Gabriel', 'country_code' => 'US'], ['name' => 'Morangis', 'country_code' => 'FR'], ['name' => 'Sedgley', 'country_code' => 'GB'], ['name' => 'Santa Cruz Amilpas', 'country_code' => 'MX'], ['name' => 'Minehead', 'country_code' => 'GB'], ['name' => 'Xaignabouli', 'country_code' => 'LA'], ['name' => 'Koulamoutou', 'country_code' => 'GA'], ['name' => 'Vincent', 'country_code' => 'US'], ['name' => 'Varedo', 'country_code' => 'IT'], ['name' => 'Villa Hayes', 'country_code' => 'PY'], ['name' => 'San Miguel Xoxtla', 'country_code' => 'MX'], ['name' => 'Wollaston', 'country_code' => 'GB'], ['name' => 'Backa Topola', 'country_code' => 'RS'], ['name' => 'Broadwater', 'country_code' => 'GB'], ['name' => 'Aldama', 'country_code' => 'MX'], ['name' => 'Monte di Procida', 'country_code' => 'IT'], ['name' => 'Mexicaltzingo', 'country_code' => 'MX'], ['name' => 'Kinkala', 'country_code' => 'CG'], ['name' => 'Buckingham', 'country_code' => 'GB'], ['name' => 'Castle Bromwich', 'country_code' => 'GB'], ['name' => 'Aylestone', 'country_code' => 'GB'], ['name' => 'Cherryland', 'country_code' => 'US'], ['name' => 'Chard', 'country_code' => 'GB'], ['name' => 'Fleury-Merogis', 'country_code' => 'FR'], ['name' => 'Spitalfields', 'country_code' => 'GB'], ['name' => 'Bryn', 'country_code' => 'GB'], ['name' => 'Causeni', 'country_code' => 'MD'], ['name' => 'Sutton on Hull', 'country_code' => 'GB'], ['name' => 'Persan', 'country_code' => 'FR'], ['name' => 'Fontenay-le-Fleury', 'country_code' => 'FR'], ['name' => 'Midsomer Norton', 'country_code' => 'GB'], ['name' => 'Auray', 'country_code' => 'FR'], ['name' => 'Silute', 'country_code' => 'LT'], ['name' => 'Angel R. Cabada', 'country_code' => 'MX'], ['name' => 'Southwick', 'country_code' => 'GB'], ['name' => 'Bijelo Polje', 'country_code' => 'ME'], ['name' => 'Anadyr', 'country_code' => 'RU'], ['name' => 'Longbenton', 'country_code' => 'GB'], ['name' => 'Walnut Park', 'country_code' => 'US'], ['name' => 'Pelsall', 'country_code' => 'GB'], ['name' => 'Maliana', 'country_code' => 'TL'], ['name' => 'Ascension', 'country_code' => 'MX'], ['name' => 'Floral Park', 'country_code' => 'US'], ['name' => 'White Center', 'country_code' => 'US'], ['name' => 'Sukhothai', 'country_code' => 'TH'], ['name' => 'Parkway', 'country_code' => 'US'], ['name' => 'Altay', 'country_code' => 'MN'], ['name' => 'Asperg', 'country_code' => 'DE'], ['name' => 'Thornbury', 'country_code' => 'GB'], ['name' => 'East Rancho Dominguez', 'country_code' => 'US'], ['name' => 'South River', 'country_code' => 'US'], ['name' => 'Peshkopi', 'country_code' => 'AL'], ['name' => 'Gevgelija', 'country_code' => 'MK'], ['name' => 'Eggertsville', 'country_code' => 'US'], ['name' => 'Allestree', 'country_code' => 'GB'], ['name' => 'Epinay-sous-Senart', 'country_code' => 'FR'], ['name' => 'Lye', 'country_code' => 'GB'], ['name' => 'Brownhills', 'country_code' => 'GB'], ['name' => 'North Arlington', 'country_code' => 'US'], ['name' => 'Stranraer', 'country_code' => 'GB'], ['name' => 'McFarland', 'country_code' => 'US'], ['name' => 'Palmetto Estates', 'country_code' => 'US'], ['name' => 'Uthai Thani', 'country_code' => 'TH'], ['name' => 'Fenton', 'country_code' => 'GB'], ['name' => 'Ainaro', 'country_code' => 'TL'], ['name' => 'Parlier', 'country_code' => 'US'], ['name' => 'Vaires-sur-Marne', 'country_code' => 'FR'], ['name' => 'Edinet', 'country_code' => 'MD'], ['name' => 'Sedavi', 'country_code' => 'ES'], ['name' => 'West University Place', 'country_code' => 'US'], ['name' => 'Palanga', 'country_code' => 'LT'], ['name' => 'Knutsford', 'country_code' => 'GB'], ['name' => 'Chepstow', 'country_code' => 'GB'], ['name' => 'Kiboga', 'country_code' => 'UG'], ['name' => 'Seiada', 'country_code' => 'TN'], ['name' => 'Chilwell', 'country_code' => 'GB'], ['name' => 'Corsham', 'country_code' => 'GB'], ['name' => 'Voisins-le-Bretonneux', 'country_code' => 'FR'], ['name' => 'Arpajon', 'country_code' => 'FR'], ['name' => 'Sonoita', 'country_code' => 'MX'], ['name' => 'Kurdamir', 'country_code' => 'AZ'], ['name' => 'La Palma', 'country_code' => 'US'], ['name' => 'Avocado Heights', 'country_code' => 'US'], ['name' => 'La Tour-de-Peilz', 'country_code' => 'CH'], ['name' => 'Pacific Grove', 'country_code' => 'US'], ['name' => 'Asbury Park', 'country_code' => 'US'], ['name' => 'Kamnik', 'country_code' => 'SI'], ['name' => 'Goygol', 'country_code' => 'AZ'], ['name' => 'Billere', 'country_code' => 'FR'], ['name' => 'Hamworthy', 'country_code' => 'GB'], ['name' => 'Saint-Max', 'country_code' => 'FR'], ['name' => 'Bellmore', 'country_code' => 'US'], ['name' => 'Berkley', 'country_code' => 'US'], ['name' => 'Anenecuilco', 'country_code' => 'MX'], ['name' => 'Westbury', 'country_code' => 'US'], ['name' => 'La Grange', 'country_code' => 'US'], ['name' => 'Santa Maria Jalapa del Marques', 'country_code' => 'MX'], ['name' => 'Devizes', 'country_code' => 'GB'], ['name' => 'Radviliskis', 'country_code' => 'LT'], ['name' => 'Wilkinsburg', 'country_code' => 'US'], ['name' => 'El Fuerte', 'country_code' => 'MX'], ['name' => 'Fords', 'country_code' => 'US'], ['name' => 'Zubin Potok', 'country_code' => 'XK'], ['name' => 'Isla Mujeres', 'country_code' => 'MX'], ['name' => 'South Farmingdale', 'country_code' => 'US'], ['name' => 'La Magdalena Chichicaspa', 'country_code' => 'MX'], ['name' => 'Calvizzano', 'country_code' => 'IT'], ['name' => 'Campbelltown', 'country_code' => 'AU'], ['name' => 'Liestal', 'country_code' => 'CH'], ['name' => 'Chene-Bougeries', 'country_code' => 'CH'], ['name' => 'Wordsley', 'country_code' => 'GB'], ['name' => 'Tarxien', 'country_code' => 'MT'], ['name' => 'Snaresbrook', 'country_code' => 'GB'], ['name' => 'Santa Maria Huazolotitlan', 'country_code' => 'MX'], ['name' => 'Paro', 'country_code' => 'BT'], ['name' => 'Broughton Astley', 'country_code' => 'GB'], ['name' => 'Montevrain', 'country_code' => 'FR'], ['name' => 'Ecublens', 'country_code' => 'CH'], ['name' => 'Phongsali', 'country_code' => 'LA'], ['name' => 'Lambeth', 'country_code' => 'GB'], ['name' => 'Cuencame de Ceniceros', 'country_code' => 'MX'], ['name' => 'Quthing', 'country_code' => 'LS'], ['name' => 'West Park', 'country_code' => 'US'], ['name' => 'Kidal', 'country_code' => 'ML'], ['name' => 'Wallingford', 'country_code' => 'GB'], ['name' => 'Timperley', 'country_code' => 'GB'], ['name' => 'Parkstone', 'country_code' => 'GB'], ['name' => 'San Isidro Buen Suceso', 'country_code' => 'MX'], ['name' => 'North New Hyde Park', 'country_code' => 'US'], ['name' => 'Sandridge', 'country_code' => 'GB'], ['name' => 'Gwanda', 'country_code' => 'ZW'], ['name' => 'Olton', 'country_code' => 'GB'], ['name' => 'Seaford', 'country_code' => 'US'], ['name' => 'Masalli', 'country_code' => 'AZ'], ['name' => 'Kenmore', 'country_code' => 'US'], ['name' => 'Fayroz Koh', 'country_code' => 'AF'], ['name' => 'Leopold', 'country_code' => 'AU'], ['name' => 'Baucau', 'country_code' => 'TL'], ['name' => 'Saucillo', 'country_code' => 'MX'], ['name' => 'Ocean Pointe', 'country_code' => 'US'], ['name' => 'Canegrate', 'country_code' => 'IT'], ['name' => 'Woolton', 'country_code' => 'GB'], ['name' => 'Le Grand-Saconnex', 'country_code' => 'CH'], ['name' => 'Newport', 'country_code' => 'US'], ['name' => 'Cesis', 'country_code' => 'LV'], ['name' => 'Killamarsh', 'country_code' => 'GB'], ['name' => 'Prescot', 'country_code' => 'GB'], ['name' => 'Ozurgeti', 'country_code' => 'GE'], ['name' => 'Jesenice', 'country_code' => 'SI'], ['name' => 'Huntington', 'country_code' => 'GB'], ['name' => 'Dzitbalche', 'country_code' => 'MX'], ['name' => 'Huetor Vega', 'country_code' => 'ES'], ['name' => 'New Cassel', 'country_code' => 'US'], ['name' => 'Caldicot', 'country_code' => 'GB'], ['name' => 'Tadjourah', 'country_code' => 'DJ'], ['name' => 'Abergavenny', 'country_code' => 'GB'], ['name' => 'Eisenstadt', 'country_code' => 'AT'], ['name' => 'Libertad', 'country_code' => 'UY'], ['name' => 'El Menzel', 'country_code' => 'MA'], ['name' => 'Chiautla de Tapia', 'country_code' => 'MX'], ['name' => 'San Pedro Jicayan', 'country_code' => 'MX'], ['name' => 'Rorschach', 'country_code' => 'CH'], ['name' => 'Lykovrysi', 'country_code' => 'GR'], ['name' => 'Lemon Hill', 'country_code' => 'US'], ['name' => 'Kemp Mill', 'country_code' => 'US'], ['name' => 'Saint-Andre-les-Vergers', 'country_code' => 'FR'], ['name' => 'Ondorhaan', 'country_code' => 'MN'], ['name' => 'Sironko', 'country_code' => 'UG'], ['name' => 'Debar', 'country_code' => 'MK'], ['name' => 'Hwlffordd', 'country_code' => 'GB'], ['name' => 'Pierre', 'country_code' => 'US'], ['name' => 'Abertillery', 'country_code' => 'GB'], ['name' => 'Biassono', 'country_code' => 'IT'], ['name' => 'Hoyland Nether', 'country_code' => 'GB'], ['name' => 'Bargoed', 'country_code' => 'GB'], ['name' => 'Falls Church', 'country_code' => 'US'], ['name' => 'Weehawken', 'country_code' => 'US'], ['name' => 'Luganville', 'country_code' => 'VU'], ['name' => 'Kriva Palanka', 'country_code' => 'MK'], ['name' => 'Berriozar', 'country_code' => 'ES'], ['name' => 'Forecariah', 'country_code' => 'GN'], ['name' => 'Jaltenango', 'country_code' => 'MX'], ['name' => 'Pincourt', 'country_code' => 'CA'], ['name' => 'Tierra Colorada', 'country_code' => 'MX'], ['name' => 'Stiring-Wendel', 'country_code' => 'FR'], ['name' => 'Malvinas Argentinas', 'country_code' => 'AR'], ['name' => 'Basse Santa Su', 'country_code' => 'GM'], ['name' => 'Ar Rommani', 'country_code' => 'MA'], ['name' => 'Baruun-Urt', 'country_code' => 'MN'], ['name' => 'Haddon', 'country_code' => 'US'], ['name' => 'Villa Union', 'country_code' => 'MX'], ['name' => 'Carnoustie', 'country_code' => 'GB'], ['name' => 'Port Antonio', 'country_code' => 'JM'], ['name' => 'Ewa Beach', 'country_code' => 'US'], ['name' => 'Rayon', 'country_code' => 'MX'], ['name' => 'Gabu', 'country_code' => 'GW'], ['name' => 'Schwyz', 'country_code' => 'CH'], ['name' => 'Ashby de la Zouch', 'country_code' => 'GB'], ['name' => 'Tonyrefail', 'country_code' => 'GB'], ['name' => 'Halawa', 'country_code' => 'US'], ['name' => 'Sigulda', 'country_code' => 'LV'], ['name' => 'Wath upon Dearne', 'country_code' => 'GB'], ['name' => 'Hoenheim', 'country_code' => 'FR'], ['name' => 'Alsager', 'country_code' => 'GB'], ['name' => 'Birsfelden', 'country_code' => 'CH'], ['name' => 'Marsaskala', 'country_code' => 'MT'], ['name' => 'North Fair Oaks', 'country_code' => 'US'], ['name' => 'Bacalar', 'country_code' => 'MX'], ['name' => 'Muna', 'country_code' => 'MX'], ['name' => 'Hambantota', 'country_code' => 'LK'], ['name' => 'Cayey', 'country_code' => 'PR'], ['name' => 'Haydock', 'country_code' => 'GB'], ['name' => 'Neftcala', 'country_code' => 'AZ'], ['name' => 'Laaouama', 'country_code' => 'MA'], ['name' => 'Cudworth', 'country_code' => 'GB'], ['name' => 'Zefyri', 'country_code' => 'GR'], ['name' => 'Qusar', 'country_code' => 'AZ'], ['name' => 'Villars-sur-Glane', 'country_code' => 'CH'], ['name' => 'San Pedro Ixcatlan', 'country_code' => 'MX'], ['name' => 'Brislington', 'country_code' => 'GB'], ['name' => 'Oulad Ayyad', 'country_code' => 'MA'], ['name' => 'Shoeburyness', 'country_code' => 'GB'], ['name' => 'Coalcoman de Vazquez Pallares', 'country_code' => 'MX'], ['name' => 'Nuevo Progreso', 'country_code' => 'MX'], ['name' => 'Stone Ridge', 'country_code' => 'US'], ['name' => 'Cowley', 'country_code' => 'GB'], ['name' => 'Fairview', 'country_code' => 'US'], ['name' => 'Porto Esperidiao', 'country_code' => 'BR'], ['name' => 'Halstead', 'country_code' => 'GB'], ['name' => 'Hawaiian Gardens', 'country_code' => 'US'], ['name' => 'Norridge', 'country_code' => 'US'], ['name' => 'Wealdstone', 'country_code' => 'GB'], ['name' => 'Gillingham', 'country_code' => 'GB'], ['name' => 'Oakham', 'country_code' => 'GB'], ['name' => 'Hatch End', 'country_code' => 'GB'], ['name' => 'Lemington', 'country_code' => 'GB'], ['name' => 'Street', 'country_code' => 'GB'], ['name' => 'Coacoatzintla', 'country_code' => 'MX'], ['name' => 'Cowes', 'country_code' => 'GB'], ['name' => 'Willowick', 'country_code' => 'US'], ['name' => 'Kronshagen', 'country_code' => 'DE'], ['name' => 'Sjenica', 'country_code' => 'RS'], ['name' => 'Ville-d Avray', 'country_code' => 'FR'], ['name' => 'Raynes Park', 'country_code' => 'GB'], ['name' => 'Burslem', 'country_code' => 'GB'], ['name' => 'Waimalu', 'country_code' => 'US'], ['name' => 'Chinsali', 'country_code' => 'ZM'], ['name' => 'Ryhope', 'country_code' => 'GB'], ['name' => 'Chichihualco', 'country_code' => 'MX'], ['name' => 'Bishops Cleeve', 'country_code' => 'GB'], ['name' => 'Helston', 'country_code' => 'GB'], ['name' => 'Ponte San Pietro', 'country_code' => 'IT'], ['name' => 'Cetinje', 'country_code' => 'ME'], ['name' => 'Talant', 'country_code' => 'FR'], ['name' => 'Kisoro', 'country_code' => 'UG'], ['name' => 'San Gregorio di Catania', 'country_code' => 'IT'], ['name' => 'Franklin Park', 'country_code' => 'US'], ['name' => 'Olympia Heights', 'country_code' => 'US'], ['name' => 'Nacaome', 'country_code' => 'HN'], ['name' => 'Kuressaare', 'country_code' => 'EE'], ['name' => 'Altamirano', 'country_code' => 'MX'], ['name' => 'Royston', 'country_code' => 'GB'], ['name' => 'Lerma', 'country_code' => 'MX'], ['name' => 'Chicago Ridge', 'country_code' => 'US'], ['name' => 'Kippax', 'country_code' => 'GB'], ['name' => 'Bishopstoke', 'country_code' => 'GB'], ['name' => 'Canatlan', 'country_code' => 'MX'], ['name' => 'Collingswood', 'country_code' => 'US'], ['name' => 'Negele', 'country_code' => 'ET'], ['name' => 'Risca', 'country_code' => 'GB'], ['name' => 'Glascote', 'country_code' => 'GB'], ['name' => 'Cheam', 'country_code' => 'GB'], ['name' => 'Plav', 'country_code' => 'ME'], ['name' => 'Saint Ann s Bay', 'country_code' => 'JM'], ['name' => 'Sveti Nikole', 'country_code' => 'MK'], ['name' => 'Whitefish Bay', 'country_code' => 'US'], ['name' => 'Deville-les-Rouen', 'country_code' => 'FR'], ['name' => 'Bexley', 'country_code' => 'US'], ['name' => 'San Patricio', 'country_code' => 'MX'], ['name' => 'Harper Woods', 'country_code' => 'US'], ['name' => 'Bar', 'country_code' => 'ME'], ['name' => 'Las Veredas', 'country_code' => 'MX'], ['name' => 'Gonzalez', 'country_code' => 'MX'], ['name' => 'Naifaru', 'country_code' => 'MV'], ['name' => 'Princeton Meadows', 'country_code' => 'US'], ['name' => 'Highland Park', 'country_code' => 'US'], ['name' => 'Tovuz', 'country_code' => 'AZ'], ['name' => 'Forest Park', 'country_code' => 'US'], ['name' => 'Ang Thong', 'country_code' => 'TH'], ['name' => 'Henley on Thames', 'country_code' => 'GB'], ['name' => 'Shterpce', 'country_code' => 'XK'], ['name' => 'Epinay-sur-Orge', 'country_code' => 'FR'], ['name' => 'Aberaman', 'country_code' => 'GB'], ['name' => 'Mit Damsis', 'country_code' => 'EG'], ['name' => 'Torpoint', 'country_code' => 'GB'], ['name' => 'Hirnyk', 'country_code' => 'UA'], ['name' => 'Roselle Park', 'country_code' => 'US'], ['name' => 'San Luis de La Loma', 'country_code' => 'MX'], ['name' => 'Imsida', 'country_code' => 'MT'], ['name' => 'Akil', 'country_code' => 'MX'], ['name' => 'Craponne', 'country_code' => 'FR'], ['name' => 'Tavistock', 'country_code' => 'GB'], ['name' => 'Dugny', 'country_code' => 'FR'], ['name' => 'Cupar', 'country_code' => 'GB'], ['name' => 'Marton', 'country_code' => 'GB'], ['name' => 'Capodrise', 'country_code' => 'IT'], ['name' => 'Beaumont', 'country_code' => 'FR'], ['name' => 'San Carlos', 'country_code' => 'NI'], ['name' => 'Stanwell', 'country_code' => 'GB'], ['name' => 'Nazaret', 'country_code' => 'ES'], ['name' => 'Grover Beach', 'country_code' => 'US'], ['name' => 'Ormesson-sur-Marne', 'country_code' => 'FR'], ['name' => 'Brierfield', 'country_code' => 'GB'], ['name' => 'Chanteloup-les-Vignes', 'country_code' => 'FR'], ['name' => 'Chatteris', 'country_code' => 'GB'], ['name' => 'Ifield', 'country_code' => 'GB'], ['name' => 'Buckhurst Hill', 'country_code' => 'GB'], ['name' => 'Newport', 'country_code' => 'GB'], ['name' => 'Santa Ana', 'country_code' => 'CR'], ['name' => 'Nuevo Ideal', 'country_code' => 'MX'], ['name' => 'Maromme', 'country_code' => 'FR'], ['name' => 'Faya', 'country_code' => 'TD'], ['name' => 'Eaton Socon', 'country_code' => 'GB'], ['name' => 'Domzale', 'country_code' => 'SI'], ['name' => 'Negotino', 'country_code' => 'MK'], ['name' => 'Gzira', 'country_code' => 'MT'], ['name' => 'Horsell', 'country_code' => 'GB'], ['name' => 'Whitchurch', 'country_code' => 'GB'], ['name' => 'Platon Sanchez', 'country_code' => 'MX'], ['name' => 'Edgewater', 'country_code' => 'US'], ['name' => 'Corinda', 'country_code' => 'AU'], ['name' => 'Kumi', 'country_code' => 'UG'], ['name' => 'Huntington', 'country_code' => 'US'], ['name' => 'Stocksbridge', 'country_code' => 'GB'], ['name' => 'Swieqi', 'country_code' => 'MT'], ['name' => 'Meliana', 'country_code' => 'ES'], ['name' => 'Kilsyth', 'country_code' => 'GB'], ['name' => 'Drochia', 'country_code' => 'MD'], ['name' => 'Tlacotalpan', 'country_code' => 'MX'], ['name' => 'Montigny-en-Gohelle', 'country_code' => 'FR'], ['name' => 'Delemont', 'country_code' => 'CH'], ['name' => 'Mannedorf', 'country_code' => 'CH'], ['name' => 'Nieuw Nickerie', 'country_code' => 'SR'], ['name' => 'Mwanza', 'country_code' => 'MW'], ['name' => 'San Juanito', 'country_code' => 'MX'], ['name' => 'Barnoldswick', 'country_code' => 'GB'], ['name' => 'Mariental', 'country_code' => 'NA'], ['name' => 'Tixkokob', 'country_code' => 'MX'], ['name' => 'Santa Ana', 'country_code' => 'MX'], ['name' => 'Magugpo Poblacion', 'country_code' => 'PH'], ['name' => 'Acanceh', 'country_code' => 'MX'], ['name' => 'La Grange Park', 'country_code' => 'US'], ['name' => 'Shorewood', 'country_code' => 'US'], ['name' => 'Jarville-la-Malgrange', 'country_code' => 'FR'], ['name' => 'Flixton', 'country_code' => 'GB'], ['name' => 'Bocas del Toro', 'country_code' => 'PA'], ['name' => 'Tetela del Volcan', 'country_code' => 'MX'], ['name' => 'Steinbach am Taunus', 'country_code' => 'DE'], ['name' => 'Handsworth', 'country_code' => 'GB'], ['name' => 'Nova Gorica', 'country_code' => 'SI'], ['name' => 'Coatesville', 'country_code' => 'US'], ['name' => 'Zejtun', 'country_code' => 'MT'], ['name' => 'Kibuye', 'country_code' => 'RW'], ['name' => 'Pajacuaran', 'country_code' => 'MX'], ['name' => 'Hellesdon', 'country_code' => 'GB'], ['name' => 'Shepton Mallet', 'country_code' => 'GB'], ['name' => 'La Huacana', 'country_code' => 'MX'], ['name' => 'Crosne', 'country_code' => 'FR'], ['name' => 'Gaillard', 'country_code' => 'FR'], ['name' => 'Inverurie', 'country_code' => 'GB'], ['name' => 'Steinkjer', 'country_code' => 'NO'], ['name' => 'Sugarland Run', 'country_code' => 'US'], ['name' => 'Psychiko', 'country_code' => 'GR'], ['name' => 'New Carrollton', 'country_code' => 'US'], ['name' => 'San Ignacio Cohuirimpo', 'country_code' => 'MX'], ['name' => 'Procida', 'country_code' => 'IT'], ['name' => 'Caudebec-les-Elbeuf', 'country_code' => 'FR'], ['name' => 'Valga', 'country_code' => 'EE'], ['name' => 'Ialoveni', 'country_code' => 'MD'], ['name' => 'Ridgefield Park', 'country_code' => 'US'], ['name' => 'Obo', 'country_code' => 'CF'], ['name' => 'Daru', 'country_code' => 'PG'], ['name' => 'Lamphun', 'country_code' => 'TH'], ['name' => 'Cuatro Cienegas de Carranza', 'country_code' => 'MX'], ['name' => 'Ziniare', 'country_code' => 'BF'], ['name' => 'Key Biscayne', 'country_code' => 'US'], ['name' => 'Federal Heights', 'country_code' => 'US'], ['name' => 'Cornelius', 'country_code' => 'US'], ['name' => 'Kingston', 'country_code' => 'US'], ['name' => 'Ardmore', 'country_code' => 'US'], ['name' => 'Tacotalpa', 'country_code' => 'MX'], ['name' => 'University Heights', 'country_code' => 'US'], ['name' => 'Pierre-Benite', 'country_code' => 'FR'], ['name' => 'Candelaria', 'country_code' => 'MX'], ['name' => 'Chai Nat', 'country_code' => 'TH'], ['name' => 'Rokiskis', 'country_code' => 'LT'], ['name' => 'Wilton Manors', 'country_code' => 'US'], ['name' => 'Valadares', 'country_code' => 'PT'], ['name' => 'Lagamar', 'country_code' => 'BR'], ['name' => 'At Tur', 'country_code' => 'EG'], ['name' => 'Blackwood', 'country_code' => 'GB'], ['name' => 'Oroquieta', 'country_code' => 'PH'], ['name' => 'Santa Venera', 'country_code' => 'MT'], ['name' => 'Exhall', 'country_code' => 'GB'], ['name' => 'Manati', 'country_code' => 'PR'], ['name' => 'Tartar', 'country_code' => 'AZ'], ['name' => 'Clarkston', 'country_code' => 'US'], ['name' => 'Caernarfon', 'country_code' => 'GB'], ['name' => 'Shildon', 'country_code' => 'GB'], ['name' => 'Tlahualilo de Zaragoza', 'country_code' => 'MX'], ['name' => 'Tinqueux', 'country_code' => 'FR'], ['name' => 'Hincesti', 'country_code' => 'MD'], ['name' => 'Nairn', 'country_code' => 'GB'], ['name' => 'Attard', 'country_code' => 'MT'], ['name' => 'Ermoupoli', 'country_code' => 'GR'], ['name' => 'Lantana', 'country_code' => 'US'], ['name' => 'Ahuacatlan', 'country_code' => 'MX'], ['name' => 'Roby', 'country_code' => 'GB'], ['name' => 'Ntcheu', 'country_code' => 'MW'], ['name' => 'Singerei', 'country_code' => 'MD'], ['name' => 'Nueva Palmira', 'country_code' => 'UY'], ['name' => 'L Ile-Saint-Denis', 'country_code' => 'FR'], ['name' => 'Broadstone', 'country_code' => 'GB'], ['name' => 'Avranches', 'country_code' => 'FR'], ['name' => 'San Marzano sul Sarno', 'country_code' => 'IT'], ['name' => 'Murska Sobota', 'country_code' => 'SI'], ['name' => 'Pelham', 'country_code' => 'US'], ['name' => 'Cherry Creek', 'country_code' => 'US'], ['name' => 'Bradford-on-Avon', 'country_code' => 'GB'], ['name' => 'Worsley', 'country_code' => 'GB'], ['name' => 'Rio Grande', 'country_code' => 'PR'], ['name' => 'Chapeltown', 'country_code' => 'GB'], ['name' => 'Marquette-les-Lille', 'country_code' => 'FR'], ['name' => 'San Sebastiano al Vesuvio', 'country_code' => 'IT'], ['name' => 'Ciudad Tula', 'country_code' => 'MX'], ['name' => 'Bulgan', 'country_code' => 'MN'], ['name' => 'Fosses', 'country_code' => 'FR'], ['name' => 'Mariehamn', 'country_code' => 'FI'], ['name' => 'Taraclia', 'country_code' => 'MD'], ['name' => 'Warfield', 'country_code' => 'GB'], ['name' => 'Zamora', 'country_code' => 'EC'], ['name' => 'Chavannes-pres-Renens', 'country_code' => 'CH'], ['name' => 'Croissy-sur-Seine', 'country_code' => 'FR'], ['name' => 'Utley', 'country_code' => 'GB'], ['name' => 'Voru', 'country_code' => 'EE'], ['name' => 'Minnehaha', 'country_code' => 'US'], ['name' => 'Beylaqan', 'country_code' => 'AZ'], ['name' => 'Cesa', 'country_code' => 'IT'], ['name' => 'Patchogue', 'country_code' => 'US'], ['name' => 'Oak Hills', 'country_code' => 'US'], ['name' => 'Allington', 'country_code' => 'GB'], ['name' => 'Igny', 'country_code' => 'FR'], ['name' => 'Cuapiaxtla de Madero', 'country_code' => 'MX'], ['name' => 'Heybridge', 'country_code' => 'GB'], ['name' => 'Qufadah', 'country_code' => 'EG'], ['name' => 'Tlalixtac de Cabrera', 'country_code' => 'MX'], ['name' => 'Neuville-les-Dieppe', 'country_code' => 'FR'], ['name' => 'Qalat', 'country_code' => 'AF'], ['name' => 'Batken', 'country_code' => 'KG'], ['name' => 'Ayapango', 'country_code' => 'MX'], ['name' => 'Sallaumines', 'country_code' => 'FR'], ['name' => 'North Merrick', 'country_code' => 'US'], ['name' => 'Eybens', 'country_code' => 'FR'], ['name' => 'Home Gardens', 'country_code' => 'US'], ['name' => 'Falesti', 'country_code' => 'MD'], ['name' => 'Salisbury', 'country_code' => 'US'], ['name' => 'Xicotencatl', 'country_code' => 'MX'], ['name' => 'Assomada', 'country_code' => 'CV'], ['name' => 'Druskininkai', 'country_code' => 'LT'], ['name' => 'Tottington', 'country_code' => 'GB'], ['name' => 'Izola', 'country_code' => 'SI'], ['name' => 'Floresti', 'country_code' => 'MD'], ['name' => 'Emeryville', 'country_code' => 'US'], ['name' => 'Cimislia', 'country_code' => 'MD'], ['name' => 'Choix', 'country_code' => 'MX'], ['name' => 'Dinnington', 'country_code' => 'GB'], ['name' => 'Tzucacab', 'country_code' => 'MX'], ['name' => 'Anahuac', 'country_code' => 'MX'], ['name' => 'Portico di Caserta', 'country_code' => 'IT'], ['name' => 'Barwell', 'country_code' => 'GB'], ['name' => 'Khunays', 'country_code' => 'TN'], ['name' => 'San Gregorio Atzompa', 'country_code' => 'MX'], ['name' => 'Tekit', 'country_code' => 'MX'], ['name' => 'Mpigi', 'country_code' => 'UG'], ['name' => 'Greenhill', 'country_code' => 'GB'], ['name' => 'Robertsport', 'country_code' => 'LR'], ['name' => 'Dundo', 'country_code' => 'AO'], ['name' => 'Massagno', 'country_code' => 'CH'], ['name' => 'Hasbrouck Heights', 'country_code' => 'US'], ['name' => 'Larbert', 'country_code' => 'GB'], ['name' => 'Bougival', 'country_code' => 'FR'], ['name' => 'Clayton le Moors', 'country_code' => 'GB'], ['name' => 'Dowlais', 'country_code' => 'GB'], ['name' => 'Red Bank', 'country_code' => 'US'], ['name' => 'Ferney-Voltaire', 'country_code' => 'FR'], ['name' => 'Saint Peters', 'country_code' => 'GB'], ['name' => 'Amatlan de los Reyes', 'country_code' => 'MX'], ['name' => 'Rabat', 'country_code' => 'MT'], ['name' => 'Lydney', 'country_code' => 'GB'], ['name' => 'South Miami', 'country_code' => 'US'], ['name' => 'Llantwit Major', 'country_code' => 'GB'], ['name' => 'Widnau', 'country_code' => 'CH'], ['name' => 'Rosario', 'country_code' => 'UY'], ['name' => 'Gedling', 'country_code' => 'GB'], ['name' => 'Da Nang', 'country_code' => 'VN'], ['name' => 'San Jose el Viejo', 'country_code' => 'MX'], ['name' => 'Bures-sur-Yvette', 'country_code' => 'FR'], ['name' => 'Zurrieq', 'country_code' => 'MT'], ['name' => 'Clawson', 'country_code' => 'US'], ['name' => 'Berane', 'country_code' => 'ME'], ['name' => 'Launceston', 'country_code' => 'GB'], ['name' => 'Newman', 'country_code' => 'US'], ['name' => 'Naranja', 'country_code' => 'US'], ['name' => 'Birtley', 'country_code' => 'GB'], ['name' => 'Tiptree', 'country_code' => 'GB'], ['name' => 'Ndele', 'country_code' => 'CF'], ['name' => 'Woodbridge', 'country_code' => 'GB'], ['name' => 'View Park-Windsor Hills', 'country_code' => 'US'], ['name' => 'Fort Liberte', 'country_code' => 'HT'], ['name' => 'Skofja Loka', 'country_code' => 'SI'], ['name' => 'Boxley', 'country_code' => 'GB'], ['name' => 'North Wantagh', 'country_code' => 'US'], ['name' => 'Bol', 'country_code' => 'TD'], ['name' => 'Epalinges', 'country_code' => 'CH'], ['name' => 'Kilchberg', 'country_code' => 'CH'], ['name' => 'Coahuitlan', 'country_code' => 'MX'], ['name' => 'Sidney', 'country_code' => 'CA'], ['name' => 'Bothell East', 'country_code' => 'US'], ['name' => 'Bihorel', 'country_code' => 'FR'], ['name' => 'Elektrenai', 'country_code' => 'LT'], ['name' => 'Le Plessis-Bouchard', 'country_code' => 'FR'], ['name' => 'Higuera de Zaragoza', 'country_code' => 'MX'], ['name' => 'Thornhill', 'country_code' => 'GB'], ['name' => 'Alotau', 'country_code' => 'PG'], ['name' => 'Brandon', 'country_code' => 'GB'], ['name' => 'Rafael Lucio', 'country_code' => 'MX'], ['name' => 'Mountain Ash', 'country_code' => 'GB'], ['name' => 'Shanhur', 'country_code' => 'EG'], ['name' => 'Casapulla', 'country_code' => 'IT'], ['name' => 'Alum Rock', 'country_code' => 'US'], ['name' => 'Beauchamp', 'country_code' => 'FR'], ['name' => 'Delcevo', 'country_code' => 'MK'], ['name' => 'Le Portel', 'country_code' => 'FR'], ['name' => 'Saron', 'country_code' => 'ZA'], ['name' => 'La Junta', 'country_code' => 'MX'], ['name' => 'Westwood Lakes', 'country_code' => 'US'], ['name' => 'Cuauhtemoc', 'country_code' => 'MX'], ['name' => 'Yeadon', 'country_code' => 'US'], ['name' => 'Wallington', 'country_code' => 'US'], ['name' => 'Sanniquellie', 'country_code' => 'LR'], ['name' => 'Cam', 'country_code' => 'GB'], ['name' => 'Vaucresson', 'country_code' => 'FR'], ['name' => 'Waipio', 'country_code' => 'US'], ['name' => 'Qax', 'country_code' => 'AZ'], ['name' => 'Groslay', 'country_code' => 'FR'], ['name' => 'Maili', 'country_code' => 'US'], ['name' => 'Sandiacre', 'country_code' => 'GB'], ['name' => 'River Edge', 'country_code' => 'US'], ['name' => 'Yuscaran', 'country_code' => 'HN'], ['name' => 'Halacho', 'country_code' => 'MX'], ['name' => 'Signal Hill', 'country_code' => 'US'], ['name' => 'Hadibu', 'country_code' => 'YE'], ['name' => 'Weissenthurm', 'country_code' => 'DE'], ['name' => 'Leven', 'country_code' => 'GB'], ['name' => 'Concordia', 'country_code' => 'MX'], ['name' => 'Bonhill', 'country_code' => 'GB'], ['name' => 'Nidau', 'country_code' => 'CH'], ['name' => 'Leavesden Green', 'country_code' => 'GB'], ['name' => 'Kirkwall', 'country_code' => 'GB'], ['name' => 'Sant Agnello', 'country_code' => 'IT'], ['name' => 'Glastonbury', 'country_code' => 'GB'], ['name' => 'Mahadipur', 'country_code' => 'IN'], ['name' => 'Dunbar', 'country_code' => 'GB'], ['name' => 'Narborough', 'country_code' => 'GB'], ['name' => 'Bolton upon Dearne', 'country_code' => 'GB'], ['name' => 'Zacapoaxtla', 'country_code' => 'MX'], ['name' => 'Torre Boldone', 'country_code' => 'IT'], ['name' => 'Ambilly', 'country_code' => 'FR'], ['name' => 'Cullercoats', 'country_code' => 'GB'], ['name' => 'Yarm', 'country_code' => 'GB'], ['name' => 'Evian-les-Bains', 'country_code' => 'FR'], ['name' => 'Vanimo', 'country_code' => 'PG'], ['name' => 'Heer', 'country_code' => 'NL'], ['name' => 'Stopsley', 'country_code' => 'GB'], ['name' => 'Rye', 'country_code' => 'GB'], ['name' => 'Perenchies', 'country_code' => 'FR'], ['name' => 'Reinosa', 'country_code' => 'ES'], ['name' => 'Billy-Montigny', 'country_code' => 'FR'], ['name' => 'Lekeitio', 'country_code' => 'ES'], ['name' => 'Magas', 'country_code' => 'RU'], ['name' => 'Westgate on Sea', 'country_code' => 'GB'], ['name' => 'Piedmont', 'country_code' => 'US'], ['name' => 'Great Burstead', 'country_code' => 'GB'], ['name' => 'Rossmoor', 'country_code' => 'US'], ['name' => 'Guttenberg', 'country_code' => 'US'], ['name' => 'Dobroesti', 'country_code' => 'RO'], ['name' => 'Summit', 'country_code' => 'US'], ['name' => 'Rezina', 'country_code' => 'MD'], ['name' => 'Loikaw', 'country_code' => 'MM'], ['name' => 'Newbold', 'country_code' => 'GB'], ['name' => 'Ablon-sur-Seine', 'country_code' => 'FR'], ['name' => 'Orange Cove', 'country_code' => 'US'], ['name' => 'San Juan Ixcaquixtla', 'country_code' => 'MX'], ['name' => 'Montmelo', 'country_code' => 'ES'], ['name' => 'Sundon', 'country_code' => 'GB'], ['name' => 'Tataltepec de Valdes', 'country_code' => 'MX'], ['name' => 'Woodchurch', 'country_code' => 'GB'], ['name' => 'Coamo', 'country_code' => 'PR'], ['name' => 'Biltine', 'country_code' => 'TD'], ['name' => 'Tepeojuma', 'country_code' => 'MX'], ['name' => 'Suffern', 'country_code' => 'US'], ['name' => 'Anenii Noi', 'country_code' => 'MD'], ['name' => 'Gournay-sur-Marne', 'country_code' => 'FR'], ['name' => 'Rothwell', 'country_code' => 'GB'], ['name' => 'Karuzi', 'country_code' => 'BI'], ['name' => 'Bedwas', 'country_code' => 'GB'], ['name' => 'Stonehouse', 'country_code' => 'GB'], ['name' => 'Bramley', 'country_code' => 'GB'], ['name' => 'Cocorit', 'country_code' => 'MX'], ['name' => 'Cross Gates', 'country_code' => 'GB'], ['name' => 'Calarasi', 'country_code' => 'MD'], ['name' => 'Meythet', 'country_code' => 'FR'], ['name' => 'Vinica', 'country_code' => 'MK'], ['name' => 'Aucamville', 'country_code' => 'FR'], ['name' => 'Ain Lehjer', 'country_code' => 'MA'], ['name' => 'Pyle', 'country_code' => 'GB'], ['name' => 'Probistip', 'country_code' => 'MK'], ['name' => 'Ahumada', 'country_code' => 'MX'], ['name' => 'La Riviera', 'country_code' => 'US'], ['name' => 'Stainforth', 'country_code' => 'GB'], ['name' => 'Beni Bou Yafroun', 'country_code' => 'MA'], ['name' => 'Bucksburn', 'country_code' => 'GB'], ['name' => 'West Auckland', 'country_code' => 'GB'], ['name' => 'Marlborough', 'country_code' => 'GB'], ['name' => 'Birzebbuga', 'country_code' => 'MT'], ['name' => 'Little Ferry', 'country_code' => 'US'], ['name' => 'Gowerton', 'country_code' => 'GB'], ['name' => 'Daskasan', 'country_code' => 'AZ'], ['name' => 'Shifnal', 'country_code' => 'GB'], ['name' => 'Gracanice', 'country_code' => 'XK'], ['name' => 'Bela Crkva', 'country_code' => 'RS'], ['name' => 'Darby', 'country_code' => 'US'], ['name' => 'Oban', 'country_code' => 'GB'], ['name' => 'Kavaratti', 'country_code' => 'IN'], ['name' => 'Northbrook', 'country_code' => 'US'], ['name' => 'El Higo', 'country_code' => 'MX'], ['name' => 'Johvi', 'country_code' => 'EE'], ['name' => 'Latchford', 'country_code' => 'GB'], ['name' => 'Lansdowne', 'country_code' => 'US'], ['name' => 'Harworth', 'country_code' => 'GB'], ['name' => 'North Lindenhurst', 'country_code' => 'US'], ['name' => 'Guadalupe Yancuictlalpan', 'country_code' => 'MX'], ['name' => 'Al Mahwit', 'country_code' => 'YE'], ['name' => 'Sainte-Adresse', 'country_code' => 'FR'], ['name' => 'Ada', 'country_code' => 'RS'], ['name' => 'Greenville', 'country_code' => 'LR'], ['name' => 'Kantunilkin', 'country_code' => 'MX'], ['name' => 'Molochnoye', 'country_code' => 'RU'], ['name' => 'Monifieth', 'country_code' => 'GB'], ['name' => 'Ayotoxco de Guerrero', 'country_code' => 'MX'], ['name' => 'Kirundo', 'country_code' => 'BI'], ['name' => 'Lincoln Village', 'country_code' => 'US'], ['name' => 'Haapsalu', 'country_code' => 'EE'], ['name' => 'Gorleston-on-Sea', 'country_code' => 'GB'], ['name' => 'Penryn', 'country_code' => 'GB'], ['name' => 'Mellieha', 'country_code' => 'MT'], ['name' => 'Trat', 'country_code' => 'TH'], ['name' => 'Richmond Heights', 'country_code' => 'US'], ['name' => 'Sarnen', 'country_code' => 'CH'], ['name' => 'Rocafort', 'country_code' => 'ES'], ['name' => 'Ondarroa', 'country_code' => 'ES'], ['name' => 'Phangnga', 'country_code' => 'TH'], ['name' => 'Jacinto City', 'country_code' => 'US'], ['name' => 'Boussy-Saint-Antoine', 'country_code' => 'FR'], ['name' => 'Church', 'country_code' => 'GB'], ['name' => 'Anstey', 'country_code' => 'GB'], ['name' => 'Siparia', 'country_code' => 'TT'], ['name' => 'Ordubad', 'country_code' => 'AZ'], ['name' => 'Lascano', 'country_code' => 'UY'], ['name' => 'Wickersley', 'country_code' => 'GB'], ['name' => 'Olaine', 'country_code' => 'LV'], ['name' => 'Oulad Ben Sebbah', 'country_code' => 'MA'], ['name' => 'Cromer', 'country_code' => 'GB'], ['name' => 'East Whittier', 'country_code' => 'US'], ['name' => 'Butha-Buthe', 'country_code' => 'LS'], ['name' => 'Mariglianella', 'country_code' => 'IT'], ['name' => 'Naftalan', 'country_code' => 'AZ'], ['name' => 'Altdorf', 'country_code' => 'CH'], ['name' => 'Wistaston', 'country_code' => 'GB'], ['name' => 'Carbon-Blanc', 'country_code' => 'FR'], ['name' => 'Boulder Hill', 'country_code' => 'US'], ['name' => 'La Verriere', 'country_code' => 'FR'], ['name' => 'Cramond', 'country_code' => 'GB'], ['name' => 'Roatan', 'country_code' => 'HN'], ['name' => 'Lake Stickney', 'country_code' => 'US'], ['name' => 'Great Neck', 'country_code' => 'US'], ['name' => 'Almacera', 'country_code' => 'ES'], ['name' => 'West Haverstraw', 'country_code' => 'US'], ['name' => 'Bound Brook', 'country_code' => 'US'], ['name' => 'Birao', 'country_code' => 'CF'], ['name' => 'Kirkham', 'country_code' => 'GB'], ['name' => 'La Ville-du-Bois', 'country_code' => 'FR'], ['name' => 'Birzai', 'country_code' => 'LT'], ['name' => 'Puebla de Farnals', 'country_code' => 'ES'], ['name' => 'Buctzotz', 'country_code' => 'MX'], ['name' => 'Radlett', 'country_code' => 'GB'], ['name' => 'Citrus', 'country_code' => 'US'], ['name' => 'Nisporeni', 'country_code' => 'MD'], ['name' => 'Kuldiga', 'country_code' => 'LV'], ['name' => 'Fontaines-sur-Saone', 'country_code' => 'FR'], ['name' => 'Vrnjacka Banja', 'country_code' => 'RS'], ['name' => 'Recale', 'country_code' => 'IT'], ['name' => 'Godmanchester', 'country_code' => 'GB'], ['name' => 'Clowne', 'country_code' => 'GB'], ['name' => 'Mojkovac', 'country_code' => 'ME'], ['name' => 'Villemoisson-sur-Orge', 'country_code' => 'FR'], ['name' => 'Hamrun', 'country_code' => 'MT'], ['name' => 'Muyinga', 'country_code' => 'BI'], ['name' => 'Warrenpoint', 'country_code' => 'GB'], ['name' => 'Coppull', 'country_code' => 'GB'], ['name' => 'Crieff', 'country_code' => 'GB'], ['name' => 'San Francisco del Mar', 'country_code' => 'MX'], ['name' => 'Tarin Kot', 'country_code' => 'AF'], ['name' => 'Laghdir', 'country_code' => 'MA'], ['name' => 'Charter Oak', 'country_code' => 'US'], ['name' => 'Bahia Kino', 'country_code' => 'MX'], ['name' => 'Hucknall under Huthwaite', 'country_code' => 'GB'], ['name' => 'Altar', 'country_code' => 'MX'], ['name' => 'Capitola', 'country_code' => 'US'], ['name' => 'Castillos', 'country_code' => 'UY'], ['name' => 'Kanjiza', 'country_code' => 'RS'], ['name' => 'Del Aire', 'country_code' => 'US'], ['name' => 'Tamazulapam Villa del Progreso', 'country_code' => 'MX'], ['name' => 'Rovellasca', 'country_code' => 'IT'], ['name' => 'Country Club', 'country_code' => 'US'], ['name' => 'Frampton Cotterell', 'country_code' => 'GB'], ['name' => 'La Mulatiere', 'country_code' => 'FR'], ['name' => 'Timberlane', 'country_code' => 'US'], ['name' => 'Montlhery', 'country_code' => 'FR'], ['name' => 'Whetstone', 'country_code' => 'GB'], ['name' => 'Thrapston', 'country_code' => 'GB'], ['name' => 'Watervliet', 'country_code' => 'US'], ['name' => 'Inwood', 'country_code' => 'US'], ['name' => 'White City', 'country_code' => 'US'], ['name' => 'Bauska', 'country_code' => 'LV'], ['name' => 'Celestun', 'country_code' => 'MX'], ['name' => 'Huiloapan', 'country_code' => 'MX'], ['name' => 'Marina del Rey', 'country_code' => 'US'], ['name' => 'Hopelchen', 'country_code' => 'MX'], ['name' => 'Stonegate', 'country_code' => 'US'], ['name' => 'Duntocher', 'country_code' => 'GB'], ['name' => 'West Perrine', 'country_code' => 'US'], ['name' => 'Aintree', 'country_code' => 'GB'], ['name' => 'Talange', 'country_code' => 'FR'], ['name' => 'East Rockaway', 'country_code' => 'US'], ['name' => 'New Hyde Park', 'country_code' => 'US'], ['name' => 'Nueva Ocotepeque', 'country_code' => 'HN'], ['name' => 'Brookdale', 'country_code' => 'US'], ['name' => 'Westgate', 'country_code' => 'US'], ['name' => 'Cimitile', 'country_code' => 'IT'], ['name' => 'Huningue', 'country_code' => 'FR'], ['name' => 'Partington', 'country_code' => 'GB'], ['name' => 'Jurbarkas', 'country_code' => 'LT'], ['name' => 'Novoberde', 'country_code' => 'XK'], ['name' => 'Pajaros', 'country_code' => 'PR'], ['name' => 'Makamba', 'country_code' => 'BI'], ['name' => 'West Athens', 'country_code' => 'US'], ['name' => 'Saldus', 'country_code' => 'LV'], ['name' => 'Oudorp', 'country_code' => 'NL'], ['name' => 'Highbridge', 'country_code' => 'GB'], ['name' => 'Pembroke', 'country_code' => 'GB'], ['name' => 'Senglea', 'country_code' => 'MT'], ['name' => 'Tshabong', 'country_code' => 'BW'], ['name' => 'Thames Ditton', 'country_code' => 'GB'], ['name' => 'Brechin', 'country_code' => 'GB'], ['name' => 'Djambala', 'country_code' => 'CG'], ['name' => 'Oberengstringen', 'country_code' => 'CH'], ['name' => 'Pieta', 'country_code' => 'MT'], ['name' => 'Postojna', 'country_code' => 'SI'], ['name' => 'Aiea', 'country_code' => 'US'], ['name' => 'Keansburg', 'country_code' => 'US'], ['name' => 'Llantwit Fardre', 'country_code' => 'GB'], ['name' => 'Maywood', 'country_code' => 'US'], ['name' => 'Barrowford', 'country_code' => 'GB'], ['name' => 'Pedra Badejo', 'country_code' => 'CV'], ['name' => 'Littleborough', 'country_code' => 'GB'], ['name' => 'Sherburn in Elmet', 'country_code' => 'GB'], ['name' => 'Kundiawa', 'country_code' => 'PG'], ['name' => 'Dinas Powys', 'country_code' => 'GB'], ['name' => 'Ikeja', 'country_code' => 'NG'], ['name' => 'Barlassina', 'country_code' => 'IT'], ['name' => 'Withernsea', 'country_code' => 'GB'], ['name' => 'Wadsley', 'country_code' => 'GB'], ['name' => 'Wardle', 'country_code' => 'GB'], ['name' => 'Dancu', 'country_code' => 'RO'], ['name' => 'Teaoraereke', 'country_code' => 'KI'], ['name' => 'Bois-des-Filion', 'country_code' => 'CA'], ['name' => 'Vilkaviskis', 'country_code' => 'LT'], ['name' => 'Sathonay-Camp', 'country_code' => 'FR'], ['name' => 'Ojo Caliente', 'country_code' => 'MX'], ['name' => 'Govan', 'country_code' => 'GB'], ['name' => 'Rozaje', 'country_code' => 'ME'], ['name' => 'Roda del Ter', 'country_code' => 'ES'], ['name' => 'Carnate', 'country_code' => 'IT'], ['name' => 'Hani i Elezit', 'country_code' => 'XK'], ['name' => 'Bladensburg', 'country_code' => 'US'], ['name' => 'Thyolo', 'country_code' => 'MW'], ['name' => 'Vrhnika', 'country_code' => 'SI'], ['name' => 'Temascal', 'country_code' => 'MX'], ['name' => 'Kirriemuir', 'country_code' => 'GB'], ['name' => 'Porth', 'country_code' => 'GB'], ['name' => 'Tettenhall', 'country_code' => 'GB'], ['name' => 'Le Port-Marly', 'country_code' => 'FR'], ['name' => 'Harlescott', 'country_code' => 'GB'], ['name' => 'Riscani', 'country_code' => 'MD'], ['name' => 'Long Ditton', 'country_code' => 'GB'], ['name' => 'Sawston', 'country_code' => 'GB'], ['name' => 'Twyford', 'country_code' => 'GB'], ['name' => 'Wood-Ridge', 'country_code' => 'US'], ['name' => 'Isola delle Femmine', 'country_code' => 'IT'], ['name' => 'Ashbourne', 'country_code' => 'GB'], ['name' => 'Las Tablas', 'country_code' => 'PA'], ['name' => 'Brentwood', 'country_code' => 'US'], ['name' => 'Cockenzie', 'country_code' => 'GB'], ['name' => 'Kasane', 'country_code' => 'BW'], ['name' => 'Katakwi', 'country_code' => 'UG'], ['name' => 'Locharbriggs', 'country_code' => 'GB'], ['name' => 'Neulussheim', 'country_code' => 'DE'], ['name' => 'Alcester', 'country_code' => 'GB'], ['name' => 'Kasakh', 'country_code' => 'AM'], ['name' => 'Evinayong', 'country_code' => 'GQ'], ['name' => 'Zabalj', 'country_code' => 'RS'], ['name' => 'Woodlyn', 'country_code' => 'US'], ['name' => 'South Amboy', 'country_code' => 'US'], ['name' => 'Sabana Grande', 'country_code' => 'PR'], ['name' => 'Dursley', 'country_code' => 'GB'], ['name' => 'Stepps', 'country_code' => 'GB'], ['name' => 'Lunca Cetatuii', 'country_code' => 'RO'], ['name' => 'Lerwick', 'country_code' => 'GB'], ['name' => 'Gorle', 'country_code' => 'IT'], ['name' => 'Sauce', 'country_code' => 'UY'], ['name' => 'Grosuplje', 'country_code' => 'SI'], ['name' => 'Stans', 'country_code' => 'CH'], ['name' => 'Saltburn-by-the-Sea', 'country_code' => 'GB'], ['name' => 'Billinge', 'country_code' => 'GB'], ['name' => 'San Pedro Amuzgos', 'country_code' => 'MX'], ['name' => 'Dangriga', 'country_code' => 'BZ'], ['name' => 'Bennebroek', 'country_code' => 'NL'], ['name' => 'Beuvrages', 'country_code' => 'FR'], ['name' => 'Guingamp', 'country_code' => 'FR'], ['name' => 'Broughton', 'country_code' => 'GB'], ['name' => 'Ewo', 'country_code' => 'CG'], ['name' => 'Filey', 'country_code' => 'GB'], ['name' => 'Manatuto', 'country_code' => 'TL'], ['name' => 'Odzaci', 'country_code' => 'RS'], ['name' => 'Leisure World', 'country_code' => 'US'], ['name' => 'Cove', 'country_code' => 'GB'], ['name' => 'North Kensington', 'country_code' => 'US'], ['name' => 'Leonia', 'country_code' => 'US'], ['name' => 'Gizo', 'country_code' => 'SB'], ['name' => 'Stansted Mountfitchet', 'country_code' => 'GB'], ['name' => 'Farmingdale', 'country_code' => 'US'], ['name' => 'Grenay', 'country_code' => 'FR'], ['name' => 'Plainedge', 'country_code' => 'US'], ['name' => 'Stony Brook University', 'country_code' => 'US'], ['name' => 'Bottmingen', 'country_code' => 'CH'], ['name' => 'Lexden', 'country_code' => 'GB'], ['name' => 'Sremski Karlovci', 'country_code' => 'RS'], ['name' => 'Folsom', 'country_code' => 'US'], ['name' => 'Temozon', 'country_code' => 'MX'], ['name' => 'Gleno', 'country_code' => 'TL'], ['name' => 'Sauchie', 'country_code' => 'GB'], ['name' => 'Budleigh Salterton', 'country_code' => 'GB'], ['name' => 'Long Ashton', 'country_code' => 'GB'], ['name' => 'Mokhotlong', 'country_code' => 'LS'], ['name' => 'Talsi', 'country_code' => 'LV'], ['name' => 'Cheddar', 'country_code' => 'GB'], ['name' => 'Pontardawe', 'country_code' => 'GB'], ['name' => 'Dayr al Jarnus', 'country_code' => 'EG'], ['name' => 'Corozal', 'country_code' => 'BZ'], ['name' => 'Dore', 'country_code' => 'GB'], ['name' => 'North Petherton', 'country_code' => 'GB'], ['name' => 'Egham', 'country_code' => 'GB'], ['name' => 'Collingdale', 'country_code' => 'US'], ['name' => 'Siggiewi', 'country_code' => 'MT'], ['name' => 'Pontardulais', 'country_code' => 'GB'], ['name' => 'Joniskis', 'country_code' => 'LT'], ['name' => 'Eichwalde', 'country_code' => 'DE'], ['name' => 'Frimley', 'country_code' => 'GB'], ['name' => 'Leona Vicario', 'country_code' => 'MX'], ['name' => 'West Miami', 'country_code' => 'US'], ['name' => 'New Square', 'country_code' => 'US'], ['name' => 'Dobele', 'country_code' => 'LV'], ['name' => 'Basco', 'country_code' => 'PH'], ['name' => 'Sidi Bou Said', 'country_code' => 'TN'], ['name' => 'Glodeni', 'country_code' => 'MD'], ['name' => 'Karnaukhivka', 'country_code' => 'UA'], ['name' => 'Seven Corners', 'country_code' => 'US'], ['name' => 'Kocevje', 'country_code' => 'SI'], ['name' => 'Becal', 'country_code' => 'MX'], ['name' => 'Great Wakering', 'country_code' => 'GB'], ['name' => 'Greenbriar', 'country_code' => 'US'], ['name' => 'Paide', 'country_code' => 'EE'], ['name' => 'Coral Hills', 'country_code' => 'US'], ['name' => 'Santo Domingo Este', 'country_code' => 'DO'], ['name' => 'Griffithstown', 'country_code' => 'GB'], ['name' => 'Aleg', 'country_code' => 'MR'], ['name' => 'Lerik', 'country_code' => 'AZ'], ['name' => 'Littlemore', 'country_code' => 'GB'], ['name' => 'Swissvale', 'country_code' => 'US'], ['name' => 'Audubon', 'country_code' => 'US'], ['name' => 'Heage', 'country_code' => 'GB'], ['name' => 'Joeuf', 'country_code' => 'FR'], ['name' => 'Handforth', 'country_code' => 'GB'], ['name' => 'Galleywood', 'country_code' => 'GB'], ['name' => 'Albiate', 'country_code' => 'IT'], ['name' => 'Harleston', 'country_code' => 'GB'], ['name' => 'Rolle', 'country_code' => 'CH'], ['name' => 'Xochitlan Todos Santos', 'country_code' => 'MX'], ['name' => 'San Antonino Castillo Velasco', 'country_code' => 'MX'], ['name' => 'Basarabeasca', 'country_code' => 'MD'], ['name' => 'Zardab', 'country_code' => 'AZ'], ['name' => 'Tadcaster', 'country_code' => 'GB'], ['name' => 'Anyksciai', 'country_code' => 'LT'], ['name' => 'Great Meols', 'country_code' => 'GB'], ['name' => 'Varena', 'country_code' => 'LT'], ['name' => 'Malverne', 'country_code' => 'US'], ['name' => 'Prienai', 'country_code' => 'LT'], ['name' => 'Krsko', 'country_code' => 'SI'], ['name' => 'Amble', 'country_code' => 'GB'], ['name' => 'Wotton-under-Edge', 'country_code' => 'GB'], ['name' => 'Alme', 'country_code' => 'IT'], ['name' => 'August', 'country_code' => 'US'], ['name' => 'IJsselmonde', 'country_code' => 'NL'], ['name' => 'Paulton', 'country_code' => 'GB'], ['name' => 'Stotfold', 'country_code' => 'GB'], ['name' => 'Palavas-les-Flots', 'country_code' => 'FR'], ['name' => 'Balloch', 'country_code' => 'GB'], ['name' => 'Esbly', 'country_code' => 'FR'], ['name' => 'Brokopondo', 'country_code' => 'SR'], ['name' => 'Midway City', 'country_code' => 'US'], ['name' => 'Hoylake', 'country_code' => 'GB'], ['name' => 'Bogota', 'country_code' => 'US'], ['name' => 'Garden City Park', 'country_code' => 'US'], ['name' => 'Grandview Heights', 'country_code' => 'US'], ['name' => 'Harwood Heights', 'country_code' => 'US'], ['name' => 'Puerto San Carlos', 'country_code' => 'MX'], ['name' => 'Soro', 'country_code' => 'DK'], ['name' => 'Haledon', 'country_code' => 'US'], ['name' => 'Dormont', 'country_code' => 'US'], ['name' => 'Arlesey', 'country_code' => 'GB'], ['name' => 'Alondra Park', 'country_code' => 'US'], ['name' => 'Wincanton', 'country_code' => 'GB'], ['name' => 'Tayoltita', 'country_code' => 'MX'], ['name' => 'Tetbury', 'country_code' => 'GB'], ['name' => 'Balakan', 'country_code' => 'AZ'], ['name' => 'Four Corners', 'country_code' => 'US'], ['name' => 'Slovenska Bistrica', 'country_code' => 'SI'], ['name' => 'Teabo', 'country_code' => 'MX'], ['name' => 'Ormesby', 'country_code' => 'GB'], ['name' => 'Hengoed', 'country_code' => 'GB'], ['name' => 'Pont-de-Cheruy', 'country_code' => 'FR'], ['name' => 'Cheviot', 'country_code' => 'US'], ['name' => 'Brynmawr', 'country_code' => 'GB'], ['name' => 'Greymouth', 'country_code' => 'NZ'], ['name' => 'Broadview Park', 'country_code' => 'US'], ['name' => 'Magor', 'country_code' => 'GB'], ['name' => 'Beocin', 'country_code' => 'RS'], ['name' => 'South San Gabriel', 'country_code' => 'US'], ['name' => 'Qobustan', 'country_code' => 'AZ'], ['name' => 'Soroti', 'country_code' => 'UG'], ['name' => 'Piste', 'country_code' => 'MX'], ['name' => 'Preverenges', 'country_code' => 'CH'], ['name' => 'Mount Rainier', 'country_code' => 'US'], ['name' => 'Maplewood', 'country_code' => 'US'], ['name' => 'Algodones', 'country_code' => 'MX'], ['name' => 'Port Maria', 'country_code' => 'JM'], ['name' => 'Guadalupe y Calvo', 'country_code' => 'MX'], ['name' => 'Nangan', 'country_code' => 'TW'], ['name' => 'Malmesbury', 'country_code' => 'GB'], ['name' => 'North Bay Village', 'country_code' => 'US'], ['name' => 'Conshohocken', 'country_code' => 'US'], ['name' => 'Newent', 'country_code' => 'GB'], ['name' => 'Bellevue', 'country_code' => 'US'], ['name' => 'Cospicua', 'country_code' => 'MT'], ['name' => 'Calderitas', 'country_code' => 'MX'], ['name' => 'Gerlafingen', 'country_code' => 'CH'], ['name' => 'Panindicuaro', 'country_code' => 'MX'], ['name' => 'Mtskheta', 'country_code' => 'GE'], ['name' => 'Sokobanja', 'country_code' => 'RS'], ['name' => 'Polmont', 'country_code' => 'GB'], ['name' => 'Paloma Creek South', 'country_code' => 'US'], ['name' => 'Eygelshoven', 'country_code' => 'NL'], ['name' => 'Panaba', 'country_code' => 'MX'], ['name' => 'Elderslie', 'country_code' => 'GB'], ['name' => 'Caldwell', 'country_code' => 'US'], ['name' => 'Litija', 'country_code' => 'SI'], ['name' => 'Temple Hills', 'country_code' => 'US'], ['name' => 'San Juan Bautista', 'country_code' => 'PY'], ['name' => 'Falmouth', 'country_code' => 'JM'], ['name' => 'Riverside', 'country_code' => 'US'], ['name' => 'Mahmud-e Raqi', 'country_code' => 'AF'], ['name' => 'Drogenbos', 'country_code' => 'BE'], ['name' => 'Koboko', 'country_code' => 'UG'], ['name' => 'Glenside', 'country_code' => 'US'], ['name' => 'Bentiu', 'country_code' => 'SS'], ['name' => 'Cajar', 'country_code' => 'ES'], ['name' => 'Wilson', 'country_code' => 'US'], ['name' => 'Palo Alto', 'country_code' => 'MX'], ['name' => 'Rio Bravo', 'country_code' => 'US'], ['name' => 'Soledad Etla', 'country_code' => 'MX'], ['name' => 'Luba', 'country_code' => 'GQ'], ['name' => 'Sheriff Hill', 'country_code' => 'GB'], ['name' => 'Guadalupe', 'country_code' => 'US'], ['name' => 'Pinchbeck', 'country_code' => 'GB'], ['name' => 'Chickerell', 'country_code' => 'GB'], ['name' => 'Boyes Hot Springs', 'country_code' => 'US'], ['name' => 'Champagne-au-Mont-d Or', 'country_code' => 'FR'], ['name' => 'Aracinovo', 'country_code' => 'MK'], ['name' => 'Yardimli', 'country_code' => 'AZ'], ['name' => 'Greifensee', 'country_code' => 'CH'], ['name' => 'Fanwood', 'country_code' => 'US'], ['name' => 'Hoogkerk', 'country_code' => 'NL'], ['name' => 'Holtville', 'country_code' => 'US'], ['name' => 'Yeghegnadzor', 'country_code' => 'AM'], ['name' => 'Radstock', 'country_code' => 'GB'], ['name' => 'East Franklin', 'country_code' => 'US'], ['name' => 'Baldwin Harbor', 'country_code' => 'US'], ['name' => 'Arafat', 'country_code' => 'MR'], ['name' => 'Angostura', 'country_code' => 'MX'], ['name' => 'Brezice', 'country_code' => 'SI'], ['name' => 'Juncos', 'country_code' => 'PR'], ['name' => 'Calumet Park', 'country_code' => 'US'], ['name' => 'Luquillo', 'country_code' => 'PR'], ['name' => 'Glen Ridge', 'country_code' => 'US'], ['name' => 'Waterbeach', 'country_code' => 'GB'], ['name' => 'Sen Monorom', 'country_code' => 'KH'], ['name' => 'Brotton', 'country_code' => 'GB'], ['name' => 'Nombre de Dios', 'country_code' => 'MX'], ['name' => 'Balzan', 'country_code' => 'MT'], ['name' => 'Kelme', 'country_code' => 'LT'], ['name' => 'Gurabo', 'country_code' => 'PR'], ['name' => 'Leova', 'country_code' => 'MD'], ['name' => 'Hatboro', 'country_code' => 'US'], ['name' => 'Ludza', 'country_code' => 'LV'], ['name' => 'Tala', 'country_code' => 'UY'], ['name' => 'Esperanza', 'country_code' => 'MX'], ['name' => 'Ravne na Koroskem', 'country_code' => 'SI'], ['name' => 'Goranboy', 'country_code' => 'AZ'], ['name' => 'Waikele', 'country_code' => 'US'], ['name' => 'Hillcrest', 'country_code' => 'US'], ['name' => 'Park City', 'country_code' => 'US'], ['name' => 'Oguz', 'country_code' => 'AZ'], ['name' => 'Ta Xbiex', 'country_code' => 'MT'], ['name' => 'Brayton', 'country_code' => 'GB'], ['name' => 'Briceni', 'country_code' => 'MD'], ['name' => 'Mongomo', 'country_code' => 'GQ'], ['name' => 'Ruyigi', 'country_code' => 'BI'], ['name' => 'Montpelier', 'country_code' => 'US'], ['name' => 'Monaghan', 'country_code' => 'IE'], ['name' => 'Ikskile', 'country_code' => 'LV'], ['name' => 'Sky Lake', 'country_code' => 'US'], ['name' => 'Frontera Corozal', 'country_code' => 'MX'], ['name' => 'Cwmbach', 'country_code' => 'GB'], ['name' => 'Sabana Seca', 'country_code' => 'PR'], ['name' => 'Kraslava', 'country_code' => 'LV'], ['name' => 'Slovenj Gradec', 'country_code' => 'SI'], ['name' => 'Mobaye', 'country_code' => 'CF'], ['name' => 'X-Can', 'country_code' => 'MX'], ['name' => 'Williston Park', 'country_code' => 'US'], ['name' => 'Marsa', 'country_code' => 'MT'], ['name' => 'Telenesti', 'country_code' => 'MD'], ['name' => 'Hola', 'country_code' => 'KE'], ['name' => 'Adazi', 'country_code' => 'LV'], ['name' => 'Naujoji Akmene', 'country_code' => 'LT'], ['name' => 'Chicxulub Puerto', 'country_code' => 'MX'], ['name' => 'Dunellen', 'country_code' => 'US'], ['name' => 'Stompwijk', 'country_code' => 'NL'], ['name' => 'Lapovo', 'country_code' => 'RS'], ['name' => 'Glenolden', 'country_code' => 'US'], ['name' => 'Nyack', 'country_code' => 'US'], ['name' => 'Hampstead', 'country_code' => 'CA'], ['name' => 'Aizkraukle', 'country_code' => 'LV'], ['name' => 'Donduseni', 'country_code' => 'MD'], ['name' => 'San Lorenzo', 'country_code' => 'PR'], ['name' => 'Nakasongola', 'country_code' => 'UG'], ['name' => 'Ajdovscina', 'country_code' => 'SI'], ['name' => 'Souderton', 'country_code' => 'US'], ['name' => 'Yabucoa', 'country_code' => 'PR'], ['name' => 'Ridley Park', 'country_code' => 'US'], ['name' => 'Livani', 'country_code' => 'LV'], ['name' => 'San Isidro', 'country_code' => 'PR'], ['name' => 'Great Neck Plaza', 'country_code' => 'US'], ['name' => 'Berovo', 'country_code' => 'MK'], ['name' => 'Trindade', 'country_code' => 'ST'], ['name' => 'Orland Hills', 'country_code' => 'US'], ['name' => 'Gulbene', 'country_code' => 'LV'], ['name' => 'Kratovo', 'country_code' => 'MK'], ['name' => 'Stratford', 'country_code' => 'NZ'], ['name' => 'Limbazi', 'country_code' => 'LV'], ['name' => 'Luqa', 'country_code' => 'MT'], ['name' => 'Mahibadhoo', 'country_code' => 'MV'], ['name' => 'Twin Rivers', 'country_code' => 'US'], ['name' => 'Las Piedras', 'country_code' => 'PR'], ['name' => 'Backi Petrovac', 'country_code' => 'RS'], ['name' => 'Madona', 'country_code' => 'LV'], ['name' => 'Hewlett', 'country_code' => 'US'], ['name' => 'Criuleni', 'country_code' => 'MD'], ['name' => 'Eydhafushi', 'country_code' => 'MV'], ['name' => 'South Valley Stream', 'country_code' => 'US'], ['name' => 'Diekirch', 'country_code' => 'LU'], ['name' => 'Sopiste', 'country_code' => 'MK'], ['name' => 'Salcininkai', 'country_code' => 'LT'], ['name' => 'Clifton Heights', 'country_code' => 'US'], ['name' => 'Lauderdale-by-the-Sea', 'country_code' => 'US'], ['name' => 'Notre Dame', 'country_code' => 'US'], ['name' => 'Opuwo', 'country_code' => 'NA'], ['name' => 'Cedarhurst', 'country_code' => 'US'], ['name' => 'Folcroft', 'country_code' => 'US'], ['name' => 'Guadalupe', 'country_code' => 'US'], ['name' => 'Manorhaven', 'country_code' => 'US'], ['name' => 'Puerto Real', 'country_code' => 'PR'], ['name' => 'Ewa Villages', 'country_code' => 'US'], ['name' => 'South Monrovia Island', 'country_code' => 'US'], ['name' => 'Contra Costa Centre', 'country_code' => 'US'], ['name' => 'Bogovinje', 'country_code' => 'MK'], ['name' => 'Tuckahoe', 'country_code' => 'US'], ['name' => 'Aluksne', 'country_code' => 'LV'], ['name' => 'Mae Hong Son', 'country_code' => 'TH'], ['name' => 'Puerto Baquerizo Moreno', 'country_code' => 'EC'], ['name' => 'Castroville', 'country_code' => 'US'], ['name' => 'West View', 'country_code' => 'US'], ['name' => 'Naples Manor', 'country_code' => 'US'], ['name' => 'Bogatic', 'country_code' => 'RS'], ['name' => 'Prospect Park', 'country_code' => 'US'], ['name' => 'Ambler', 'country_code' => 'US'], ['name' => 'Forest Glen', 'country_code' => 'US'], ['name' => 'Bronxville', 'country_code' => 'US'], ['name' => 'Kingston Estates', 'country_code' => 'US'], ['name' => 'Pasvalys', 'country_code' => 'LT'], ['name' => 'Sal Rei', 'country_code' => 'CV'], ['name' => 'Jogeva', 'country_code' => 'EE'], ['name' => 'Cabrayil', 'country_code' => 'AZ'], ['name' => 'Ghanzi', 'country_code' => 'BW'], ['name' => 'Polva', 'country_code' => 'EE'], ['name' => 'Vittoriosa', 'country_code' => 'MT'], ['name' => 'Ciudad Guzman', 'country_code' => 'MX'], ['name' => 'Cameron Park', 'country_code' => 'US'], ['name' => 'Saranap', 'country_code' => 'US'], ['name' => 'Schaan', 'country_code' => 'LI'], ['name' => 'Espargos', 'country_code' => 'CV'], ['name' => 'Kennett Square', 'country_code' => 'US'], ['name' => 'Junik', 'country_code' => 'XK'], ['name' => 'Preili', 'country_code' => 'LV'], ['name' => 'Siteki', 'country_code' => 'SZ'], ['name' => 'Viqueque', 'country_code' => 'TL'], ['name' => 'Lucea', 'country_code' => 'JM'], ['name' => 'Rapla', 'country_code' => 'EE'], ['name' => 'West Loch Estate', 'country_code' => 'US'], ['name' => 'Lakeview', 'country_code' => 'US'], ['name' => 'Binghamton University', 'country_code' => 'US'], ['name' => 'Glarus', 'country_code' => 'CH'], ['name' => 'Rutana', 'country_code' => 'BI'], ['name' => 'Fruitridge Pocket', 'country_code' => 'US'], ['name' => 'Bac', 'country_code' => 'RS'], ['name' => 'Larchmont', 'country_code' => 'US'], ['name' => 'Bogdanci', 'country_code' => 'MK'], ['name' => 'Arroyo', 'country_code' => 'PR'], ['name' => 'Pleasure Point', 'country_code' => 'US'], ['name' => 'Zarasai', 'country_code' => 'LT'], ['name' => 'Sezana', 'country_code' => 'SI'], ['name' => 'Zagorje', 'country_code' => 'SI'], ['name' => 'District Heights', 'country_code' => 'US'], ['name' => 'Naval Academy', 'country_code' => 'US'], ['name' => 'Muramvya', 'country_code' => 'BI'], ['name' => 'Lielvarde', 'country_code' => 'LV'], ['name' => 'Studenicani', 'country_code' => 'MK'], ['name' => 'Savannah', 'country_code' => 'US'], ['name' => 'Ghaxaq', 'country_code' => 'MT'], ['name' => 'Penn Wynne', 'country_code' => 'US'], ['name' => 'Echternach', 'country_code' => 'LU'], ['name' => 'Kupiskis', 'country_code' => 'LT'], ['name' => 'Crnomelj', 'country_code' => 'SI'], ['name' => 'Appenzell', 'country_code' => 'CH'], ['name' => 'Idrija', 'country_code' => 'SI'], ['name' => 'Norwood', 'country_code' => 'US'], ['name' => 'Jamesburg', 'country_code' => 'US'], ['name' => 'Ranillug', 'country_code' => 'XK'], ['name' => 'Mayflower Village', 'country_code' => 'US'], ['name' => 'Elsmere', 'country_code' => 'US'], ['name' => 'Lija', 'country_code' => 'MT'], ['name' => 'Prevalje', 'country_code' => 'SI'], ['name' => 'McKees Rocks', 'country_code' => 'US'], ['name' => 'Balvi', 'country_code' => 'LV'], ['name' => 'Charlemagne', 'country_code' => 'CA'], ['name' => 'Prospect Park', 'country_code' => 'US'], ['name' => 'Outapi', 'country_code' => 'NA'], ['name' => 'Cidra', 'country_code' => 'PR'], ['name' => 'Lorengau', 'country_code' => 'PG'], ['name' => 'Hrastnik', 'country_code' => 'SI'], ['name' => 'Plymouth', 'country_code' => 'US'], ['name' => 'Bay Harbor Islands', 'country_code' => 'US'], ['name' => 'Tevragh Zeina', 'country_code' => 'MR'], ['name' => 'White City', 'country_code' => 'US'], ['name' => 'Iecava', 'country_code' => 'LV'], ['name' => 'Mamushe', 'country_code' => 'XK'], ['name' => 'Fulin', 'country_code' => 'CN'], ['name' => 'Mount Carmel', 'country_code' => 'US'], ['name' => 'Bellevue', 'country_code' => 'US'], ['name' => 'South Tucson', 'country_code' => 'US'], ['name' => 'Lewisburg', 'country_code' => 'US'], ['name' => 'Gospic', 'country_code' => 'HR'], ['name' => 'Sisimiut', 'country_code' => 'GL'], ['name' => 'Cacheu', 'country_code' => 'GW'], ['name' => 'Sharon Hill', 'country_code' => 'US'], ['name' => 'Media', 'country_code' => 'US'], ['name' => 'New Brighton', 'country_code' => 'US'], ['name' => 'Kerema', 'country_code' => 'PG'], ['name' => 'Surfside', 'country_code' => 'US'], ['name' => 'Rochelle Park', 'country_code' => 'US'], ['name' => 'Partesh', 'country_code' => 'XK'], ['name' => 'Salavan', 'country_code' => 'LA'], ['name' => 'Deer Park', 'country_code' => 'US'], ['name' => 'Kazlu Ruda', 'country_code' => 'LT'], ['name' => 'Qubadli', 'country_code' => 'AZ'], ['name' => 'Krusevo', 'country_code' => 'MK'], ['name' => 'Belmar', 'country_code' => 'US'], ['name' => 'Caazapa', 'country_code' => 'PY'], ['name' => 'Shaw Heights', 'country_code' => 'US'], ['name' => 'Palm Springs North', 'country_code' => 'US'], ['name' => 'Moletai', 'country_code' => 'LT'], ['name' => 'Thaba-Tseka', 'country_code' => 'LS'], ['name' => 'Waipio Acres', 'country_code' => 'US'], ['name' => 'Qal ah-ye Now', 'country_code' => 'AF'], ['name' => 'South Highpoint', 'country_code' => 'US'], ['name' => 'Xaghra', 'country_code' => 'MT'], ['name' => 'Friendship Heights Village', 'country_code' => 'US'], ['name' => 'Kaser', 'country_code' => 'US'], ['name' => 'Anasco', 'country_code' => 'PR'], ['name' => 'L Epiphanie', 'country_code' => 'CA'], ['name' => 'Kalangala', 'country_code' => 'UG'], ['name' => 'Edgewater', 'country_code' => 'US'], ['name' => 'Pale', 'country_code' => 'GQ'], ['name' => 'Kensington', 'country_code' => 'US'], ['name' => 'Shillington', 'country_code' => 'US'], ['name' => 'Ros Comain', 'country_code' => 'IE'], ['name' => 'Albina', 'country_code' => 'SR'], ['name' => 'Wangdue Phodrang', 'country_code' => 'BT'], ['name' => 'Santa Isabel', 'country_code' => 'PR'], ['name' => 'Pembroke', 'country_code' => 'MT'], ['name' => 'Albertson', 'country_code' => 'US'], ['name' => 'Highwood', 'country_code' => 'US'], ['name' => 'Kekava', 'country_code' => 'LV'], ['name' => 'Cutler', 'country_code' => 'US'], ['name' => 'Naguabo', 'country_code' => 'PR'], ['name' => 'Slovenske Konjice', 'country_code' => 'SI'], ['name' => 'Twin Lakes', 'country_code' => 'US'], ['name' => 'Kanifing', 'country_code' => 'GM'], ['name' => 'Broadmoor', 'country_code' => 'US'], ['name' => 'Liquica', 'country_code' => 'TL'], ['name' => 'Smiltene', 'country_code' => 'LV'], ['name' => 'Bret Harte', 'country_code' => 'US'], ['name' => 'Penuelas', 'country_code' => 'PR'], ['name' => 'Glendale', 'country_code' => 'US'], ['name' => 'Turtle Creek', 'country_code' => 'US'], ['name' => 'Nadur', 'country_code' => 'MT'], ['name' => 'Carle Place', 'country_code' => 'US'], ['name' => 'Gadabay', 'country_code' => 'AZ'], ['name' => 'Kenneth City', 'country_code' => 'US'], ['name' => 'Tara Hills', 'country_code' => 'US'], ['name' => 'Skuodas', 'country_code' => 'LT'], ['name' => 'South Pasadena', 'country_code' => 'US'], ['name' => 'Ilulissat', 'country_code' => 'GL'], ['name' => 'Montreal-Ouest', 'country_code' => 'CA'], ['name' => 'Vrapciste', 'country_code' => 'MK'], ['name' => 'Salinas', 'country_code' => 'PR'], ['name' => 'Zalec', 'country_code' => 'SI'], ['name' => 'Mechanicville', 'country_code' => 'US'], ['name' => 'Punta Gorda', 'country_code' => 'BZ'], ['name' => 'Punakha', 'country_code' => 'BT'], ['name' => 'Sakiai', 'country_code' => 'LT'], ['name' => 'Samtse', 'country_code' => 'BT'], ['name' => 'Aibak', 'country_code' => 'AF'], ['name' => 'Bled', 'country_code' => 'SI'], ['name' => 'Mauren', 'country_code' => 'LI'], ['name' => 'Iklin', 'country_code' => 'MT'], ['name' => 'Sentjur', 'country_code' => 'SI'], ['name' => 'Floriana', 'country_code' => 'MT'], ['name' => 'Kiambu', 'country_code' => 'KE'], ['name' => 'Nieuw Amsterdam', 'country_code' => 'SR'], ['name' => 'Carnikava', 'country_code' => 'LV'], ['name' => 'Bolama', 'country_code' => 'GW'], ['name' => 'Eschen', 'country_code' => 'LI'], ['name' => 'Irig', 'country_code' => 'RS'], ['name' => 'Puerto Lempira', 'country_code' => 'HN'], ['name' => 'Klaksvik', 'country_code' => 'FO'], ['name' => 'Kuala Belait', 'country_code' => 'BN'], ['name' => 'Bururi', 'country_code' => 'BI'], ['name' => 'Ta Khmau', 'country_code' => 'KH'], ['name' => 'Coka', 'country_code' => 'RS'], ['name' => 'Kalkara', 'country_code' => 'MT'], ['name' => 'Hung Yen', 'country_code' => 'VN'], ['name' => 'Silale', 'country_code' => 'LT'], ['name' => 'Pakruojis', 'country_code' => 'LT'], ['name' => 'Bradford', 'country_code' => 'GB'], ['name' => 'Imqabba', 'country_code' => 'MT'], ['name' => 'Bueng Kan', 'country_code' => 'TH'], ['name' => 'Sevnica', 'country_code' => 'SI'], ['name' => 'San Gwann', 'country_code' => 'MT'], ['name' => 'Valka', 'country_code' => 'LV'], ['name' => 'Remich', 'country_code' => 'LU'], ['name' => 'Rumphi', 'country_code' => 'MW'], ['name' => 'Dravograd', 'country_code' => 'SI'], ['name' => 'Valandovo', 'country_code' => 'MK'], ['name' => 'Susa', 'country_code' => 'AZ'], ['name' => 'Trakai', 'country_code' => 'LT'], ['name' => 'Radlje ob Dravi', 'country_code' => 'SI'], ['name' => 'Sempeter pri Gorici', 'country_code' => 'SI'], ['name' => 'Black River', 'country_code' => 'JM'], ['name' => 'Tecax', 'country_code' => 'MX'], ['name' => 'Ilirska Bistrica', 'country_code' => 'SI'], ['name' => 'Ozolnieki', 'country_code' => 'LV'], ['name' => 'Gudja', 'country_code' => 'MT'], ['name' => 'Cerknica', 'country_code' => 'SI'], ['name' => 'Marsaxlokk', 'country_code' => 'MT'], ['name' => 'Lasko', 'country_code' => 'SI'], ['name' => 'Ruse', 'country_code' => 'SI'], ['name' => 'Zelino', 'country_code' => 'MK'], ['name' => 'Dingli', 'country_code' => 'MT'], ['name' => 'Calheta de Sao Miguel', 'country_code' => 'CV'], ['name' => 'Bensonville', 'country_code' => 'LR'], ['name' => 'Kirkop', 'country_code' => 'MT'], ['name' => 'Grevenmacher', 'country_code' => 'LU'], ['name' => 'Tearce', 'country_code' => 'MK'], ['name' => 'Gharghur', 'country_code' => 'MT'], ['name' => 'Ziri', 'country_code' => 'SI'], ['name' => 'Gornja Radgona', 'country_code' => 'SI'], ['name' => 'San Giljan', 'country_code' => 'MT'], ['name' => 'Svencionys', 'country_code' => 'LT'], ['name' => 'Aizpute', 'country_code' => 'LV'], ['name' => 'Wabag', 'country_code' => 'PG'], ['name' => 'Xewkija', 'country_code' => 'MT'], ['name' => 'Trebnje', 'country_code' => 'SI'], ['name' => 'Agdam', 'country_code' => 'AZ'], ['name' => 'Kardla', 'country_code' => 'EE'], ['name' => 'Bugiri', 'country_code' => 'UG'], ['name' => 'Kaberamaido', 'country_code' => 'UG'], ['name' => 'Piran', 'country_code' => 'SI'], ['name' => 'Kalvarija', 'country_code' => 'LT'], ['name' => 'Makedonski Brod', 'country_code' => 'MK'], ['name' => 'Janjanbureh', 'country_code' => 'GM'], ['name' => 'Cankuzo', 'country_code' => 'BI'], ['name' => 'Pinki', 'country_code' => 'LV'], ['name' => 'Moroto', 'country_code' => 'UG'], ['name' => 'Gambela', 'country_code' => 'ET'], ['name' => 'Baldone', 'country_code' => 'LV'], ['name' => 'Massenya', 'country_code' => 'TD'], ['name' => 'Imgarr', 'country_code' => 'MT'], ['name' => 'Lazdijai', 'country_code' => 'LT'], ['name' => 'Ankaran', 'country_code' => 'SI'], ['name' => 'Grobina', 'country_code' => 'LV'], ['name' => 'Thinadhoo', 'country_code' => 'MV'], ['name' => 'Imtarfa', 'country_code' => 'MT'], ['name' => 'Funadhoo', 'country_code' => 'MV'], ['name' => 'Cantemir', 'country_code' => 'MD'], ['name' => 'Xghajra', 'country_code' => 'MT'], ['name' => 'Alibunar', 'country_code' => 'RS'], ['name' => 'Demir Kapija', 'country_code' => 'MK'], ['name' => 'Kandava', 'country_code' => 'LV'], ['name' => 'Aasiaat', 'country_code' => 'GL'], ['name' => 'Qrendi', 'country_code' => 'MT'], ['name' => 'Lenart v Slovenskih Goricah', 'country_code' => 'SI'], ['name' => 'Ulbroka', 'country_code' => 'LV'], ['name' => 'Mezica', 'country_code' => 'SI'], ['name' => 'Groningen', 'country_code' => 'SR'], ['name' => 'Pehcevo', 'country_code' => 'MK'], ['name' => 'Metlika', 'country_code' => 'SI'], ['name' => 'Qaqortoq', 'country_code' => 'GL'], ['name' => 'Saulkrasti', 'country_code' => 'LV'], ['name' => 'Louang Namtha', 'country_code' => 'LA'], ['name' => 'Ghajnsielem', 'country_code' => 'MT'], ['name' => 'Kaabong', 'country_code' => 'UG'], ['name' => 'Kulhudhuffushi', 'country_code' => 'MV'], ['name' => 'Rietavas', 'country_code' => 'LT'], ['name' => 'Mullingar', 'country_code' => 'IE'], ['name' => 'Porto Ingles', 'country_code' => 'CV'], ['name' => 'Cambridge', 'country_code' => 'GB'], ['name' => 'Borovnica', 'country_code' => 'SI'], ['name' => 'Safi', 'country_code' => 'MT'], ['name' => 'Lethem', 'country_code' => 'GY'], ['name' => 'Dhihdhoo', 'country_code' => 'MV'], ['name' => 'Balaka', 'country_code' => 'MW'], ['name' => 'Mabaruma', 'country_code' => 'GY'], ['name' => 'Mandalgovi', 'country_code' => 'MN'], ['name' => 'Lendava', 'country_code' => 'SI'], ['name' => 'Vojnik', 'country_code' => 'SI'], ['name' => 'Brvenica', 'country_code' => 'MK'], ['name' => 'Kudahuvadhoo', 'country_code' => 'MV'], ['name' => 'Plavinas', 'country_code' => 'LV'], ['name' => 'Kapchorwa', 'country_code' => 'UG'], ['name' => 'Sao Domingos', 'country_code' => 'CV'], ['name' => 'Arima', 'country_code' => 'TT'], ['name' => 'Novo Selo', 'country_code' => 'MK'], ['name' => 'Rasdhoo', 'country_code' => 'MV'], ['name' => 'Kerewan', 'country_code' => 'GM'], ['name' => 'Broceni', 'country_code' => 'LV'], ['name' => 'Petrovec', 'country_code' => 'MK'], ['name' => 'Kolonia', 'country_code' => 'FM'], ['name' => 'Vilani', 'country_code' => 'LV'], ['name' => 'Vevcani', 'country_code' => 'MK'], ['name' => 'Al Wakrah', 'country_code' => 'QA'], ['name' => 'Tallaght', 'country_code' => 'IE'], ['name' => 'Lipkovo', 'country_code' => 'MK'], ['name' => 'Barclayville', 'country_code' => 'LR'], ['name' => 'Rujiena', 'country_code' => 'LV'], ['name' => 'Triesenberg', 'country_code' => 'LI'], ['name' => 'Sannat', 'country_code' => 'MT'], ['name' => 'Qala', 'country_code' => 'MT'], ['name' => 'Kllokot', 'country_code' => 'XK'], ['name' => 'Cestos City', 'country_code' => 'LR'], ['name' => 'Tofol', 'country_code' => 'FM'], ['name' => 'Bundibugyo', 'country_code' => 'UG'], ['name' => 'Demir Hisar', 'country_code' => 'MK'], ['name' => 'Ruggell', 'country_code' => 'LI'], ['name' => 'Salacgriva', 'country_code' => 'LV'], ['name' => 'Plasnica', 'country_code' => 'MK'], ['name' => 'Koknese', 'country_code' => 'LV'], ['name' => 'Rosoman', 'country_code' => 'MK'], ['name' => 'Garoowe', 'country_code' => 'SO'], ['name' => 'Mogila', 'country_code' => 'MK'], ['name' => 'Fuerte Olimpo', 'country_code' => 'PY'], ['name' => 'Beltinci', 'country_code' => 'SI'], ['name' => 'Skriveri', 'country_code' => 'LV'], ['name' => 'Krivogastani', 'country_code' => 'MK'], ['name' => 'Banlung', 'country_code' => 'KH'], ['name' => 'Phu Ly', 'country_code' => 'VN'], ['name' => 'Nida', 'country_code' => 'LT'], ['name' => 'Wicklow', 'country_code' => 'IE'], ['name' => 'Zrnovci', 'country_code' => 'MK'], ['name' => 'Birstonas', 'country_code' => 'LT'], ['name' => 'Naklo', 'country_code' => 'SI'], ['name' => 'Kercem', 'country_code' => 'MT'], ['name' => 'Lacin', 'country_code' => 'AZ'], ['name' => 'Thulusdhoo', 'country_code' => 'MV'], ['name' => 'Clonmel', 'country_code' => 'IE'], ['name' => 'Wexford', 'country_code' => 'IE'], ['name' => 'Auce', 'country_code' => 'LV'], ['name' => 'Vasilevo', 'country_code' => 'MK'], ['name' => 'Gradsko', 'country_code' => 'MK'], ['name' => 'Marka', 'country_code' => 'SO'], ['name' => 'Priekuli', 'country_code' => 'LV'], ['name' => 'Viligili', 'country_code' => 'MV'], ['name' => 'Cidade Velha', 'country_code' => 'CV'], ['name' => 'Ilukste', 'country_code' => 'LV'], ['name' => 'Roja', 'country_code' => 'LV'], ['name' => 'Chiradzulu', 'country_code' => 'MW'], ['name' => 'Victoria', 'country_code' => 'MT'], ['name' => 'Bariadi', 'country_code' => 'TZ'], ['name' => 'Kegums', 'country_code' => 'LV'], ['name' => 'Onverwacht', 'country_code' => 'SR'], ['name' => 'Same', 'country_code' => 'TL'], ['name' => 'Hoima', 'country_code' => 'UG'], ['name' => 'Geita', 'country_code' => 'TZ'], ['name' => 'Garkalne', 'country_code' => 'LV'], ['name' => 'Vipava', 'country_code' => 'SI'], ['name' => 'Vecumnieki', 'country_code' => 'LV'], ['name' => 'Incukalns', 'country_code' => 'LV'], ['name' => 'Ambrolauri', 'country_code' => 'GE'], ['name' => 'Radece', 'country_code' => 'SI'], ['name' => 'Kabarnet', 'country_code' => 'KE'], ['name' => 'Jagodina', 'country_code' => 'RS'], ['name' => 'Mukono', 'country_code' => 'UG'], ['name' => 'Ormoz', 'country_code' => 'SI'], ['name' => 'Vuzenica', 'country_code' => 'SI'], ['name' => 'Munxar', 'country_code' => 'MT'], ['name' => 'Migori', 'country_code' => 'KE'], ['name' => 'Zabljak', 'country_code' => 'ME'], ['name' => 'Gamprin', 'country_code' => 'LI'], ['name' => 'Karsava', 'country_code' => 'LV'], ['name' => 'Kerugoya', 'country_code' => 'KE'], ['name' => 'Yumbe', 'country_code' => 'UG'], ['name' => 'Fontana', 'country_code' => 'MT'], ['name' => 'Skrunda', 'country_code' => 'LV'], ['name' => 'Dagda', 'country_code' => 'LV'], ['name' => 'Paola', 'country_code' => 'MT'], ['name' => 'Sihanoukville', 'country_code' => 'KH'], ['name' => 'Buchanan', 'country_code' => 'LR'], ['name' => 'Gharb', 'country_code' => 'MT'], ['name' => 'Odranci', 'country_code' => 'SI'], ['name' => 'Priekule', 'country_code' => 'LV'], ['name' => 'La Palma', 'country_code' => 'PA'], ['name' => 'Hithadhoo', 'country_code' => 'MV'], ['name' => 'Bosilovo', 'country_code' => 'MK'], ['name' => 'Malpils', 'country_code' => 'LV'], ['name' => 'Vinh Yen', 'country_code' => 'VN'], ['name' => 'Dar Naim', 'country_code' => 'MR'], ['name' => 'Jaunjelgava', 'country_code' => 'LV'], ['name' => 'Iten', 'country_code' => 'KE'], ['name' => 'Veymandoo', 'country_code' => 'MV'], ['name' => 'Sentjernej', 'country_code' => 'SI'], ['name' => 'Phalombe', 'country_code' => 'MW'], ['name' => 'Varaklani', 'country_code' => 'LV'], ['name' => 'Nyamira', 'country_code' => 'KE'], ['name' => 'Ergli', 'country_code' => 'LV'], ['name' => 'Machinga', 'country_code' => 'MW'], ['name' => 'Totness', 'country_code' => 'SR'], ['name' => 'Longford', 'country_code' => 'IE'], ['name' => 'Ropazi', 'country_code' => 'LV'], ['name' => 'Auki', 'country_code' => 'SB'], ['name' => 'Trim', 'country_code' => 'IE'], ['name' => 'Felidhoo', 'country_code' => 'MV'], ['name' => 'Aioun', 'country_code' => 'MR'], ['name' => 'Xuddur', 'country_code' => 'SO'], ['name' => 'Kasaali', 'country_code' => 'UG'], ['name' => 'Sabac', 'country_code' => 'RS'], ['name' => 'Bovec', 'country_code' => 'SI'], ['name' => 'Nilandhoo', 'country_code' => 'MV'], ['name' => 'Kirakira', 'country_code' => 'SB'], ['name' => 'Vainode', 'country_code' => 'LV'], ['name' => 'Carrick on Shannon', 'country_code' => 'IE'], ['name' => 'Viesite', 'country_code' => 'LV'], ['name' => 'Staro Nagoricane', 'country_code' => 'MK'], ['name' => 'Lubana', 'country_code' => 'LV'], ['name' => 'Foammulah', 'country_code' => 'MV'], ['name' => 'Bu aale', 'country_code' => 'SO'], ['name' => 'Tullamore', 'country_code' => 'IE'], ['name' => 'Fomboni', 'country_code' => 'KM'], ['name' => 'Rankovce', 'country_code' => 'MK'], ['name' => 'Kurunegala', 'country_code' => 'LK'], ['name' => 'Xocali', 'country_code' => 'AZ'], ['name' => 'Oshakati', 'country_code' => 'NA'], ['name' => 'Murang a', 'country_code' => 'KE'], ['name' => 'Novaci', 'country_code' => 'MK'], ['name' => 'Dundaga', 'country_code' => 'LV'], ['name' => 'Schellenberg', 'country_code' => 'LI'], ['name' => 'Bududa', 'country_code' => 'UG'], ['name' => 'Zebbug', 'country_code' => 'MT'], ['name' => 'Santo Antonio', 'country_code' => 'ST'], ['name' => 'Konce', 'country_code' => 'MK'], ['name' => 'Mersrags', 'country_code' => 'LV'], ['name' => 'Sotik Post', 'country_code' => 'KE'], ['name' => 'Oblesevo', 'country_code' => 'MK'], ['name' => 'Jegunovce', 'country_code' => 'MK'], ['name' => 'Vreed-en-Hoop', 'country_code' => 'GY'], ['name' => 'Zilupe', 'country_code' => 'LV'], ['name' => 'Escaldes-Engordany', 'country_code' => 'AD'], ['name' => 'Gornji Milanovac', 'country_code' => 'RS'], ['name' => 'Tam Ky', 'country_code' => 'VN'], ['name' => 'Cesvaine', 'country_code' => 'LV'], ['name' => 'Radovljica', 'country_code' => 'SI'], ['name' => 'Rauna', 'country_code' => 'LV'], ['name' => 'Vilaka', 'country_code' => 'LV'], ['name' => 'Weno', 'country_code' => 'FM'], ['name' => 'Taro', 'country_code' => 'SB'], ['name' => 'Oranjestad', 'country_code' => 'NL'], ['name' => 'Belcista', 'country_code' => 'MK'], ['name' => 'Naxxar', 'country_code' => 'MT'], ['name' => 'Trbovlje', 'country_code' => 'SI'], ['name' => 'Ragana', 'country_code' => 'LV'], ['name' => 'Muli', 'country_code' => 'MV'], ['name' => 'Ar Rayyan', 'country_code' => 'QA'], ['name' => 'Wakiso', 'country_code' => 'UG'], ['name' => 'Mazsalaca', 'country_code' => 'LV'], ['name' => 'Ivancna Gorica', 'country_code' => 'SI'], ['name' => 'Rogaska Slatina', 'country_code' => 'SI'], ['name' => 'Lyantonde', 'country_code' => 'UG'], ['name' => 'Aloja', 'country_code' => 'LV'], ['name' => 'Ain Temouchent', 'country_code' => 'DZ'], ['name' => 'Serravalle', 'country_code' => 'SM'], ['name' => 'Kobarid', 'country_code' => 'SI'], ['name' => ' Amran', 'country_code' => 'YE'], ['name' => 'Halba', 'country_code' => 'LB'], ['name' => 'Andrijevica', 'country_code' => 'ME'], ['name' => 'Nenagh', 'country_code' => 'IE'], ['name' => 'Ligatne', 'country_code' => 'LV'], ['name' => 'Akniste', 'country_code' => 'LV'], ['name' => 'Nereta', 'country_code' => 'LV'], ['name' => 'Chikwawa', 'country_code' => 'MW'], ['name' => 'Strenci', 'country_code' => 'LV'], ['name' => 'Kasungu', 'country_code' => 'MW'], ['name' => 'Labuan', 'country_code' => 'MY'], ['name' => 'Lata', 'country_code' => 'SB'], ['name' => 'Nica', 'country_code' => 'LV'], ['name' => 'Pozega', 'country_code' => 'RS'], ['name' => 'Lozovo', 'country_code' => 'MK'], ['name' => 'Koceni', 'country_code' => 'LV'], ['name' => 'Picos', 'country_code' => 'CV'], ['name' => 'San Lawrenz', 'country_code' => 'MT'], ['name' => 'An Cabhan', 'country_code' => 'IE'], ['name' => 'Dolneni', 'country_code' => 'MK'], ['name' => 'Fonadhoo', 'country_code' => 'MV'], ['name' => 'Zirovnica', 'country_code' => 'SI'], ['name' => 'Manadhoo', 'country_code' => 'MV'], ['name' => 'Ponta do Sol', 'country_code' => 'CV'], ['name' => 'Krupanj', 'country_code' => 'RS'], ['name' => 'Lebane', 'country_code' => 'RS'], ['name' => 'Store', 'country_code' => 'SI'], ['name' => 'Jaunpiebalga', 'country_code' => 'LV'], ['name' => 'Siaya', 'country_code' => 'KE'], ['name' => 'Rostusa', 'country_code' => 'MK'], ['name' => 'Cerklje na Gorenjskem', 'country_code' => 'SI'], ['name' => 'Isale', 'country_code' => 'BI'], ['name' => 'Sostanj', 'country_code' => 'SI'], ['name' => 'Dien Bien Phu', 'country_code' => 'VN'], ['name' => 'P yongsong', 'country_code' => 'KP'], ['name' => 'Pavilosta', 'country_code' => 'LV'], ['name' => 'Centar Zupa', 'country_code' => 'MK'], ['name' => 'Aglona', 'country_code' => 'LV'], ['name' => 'Scarborough', 'country_code' => 'TT'], ['name' => 'Diego Martin', 'country_code' => 'TT'], ['name' => 'Vladicin Han', 'country_code' => 'RS'], ['name' => 'Ape', 'country_code' => 'LV'], ['name' => 'Jaunpils', 'country_code' => 'LV'], ['name' => 'Knjazevac', 'country_code' => 'RS'], ['name' => 'Ljubovija', 'country_code' => 'RS'], ['name' => 'Smederevska Palanka', 'country_code' => 'RS'], ['name' => 'Zelenikovo', 'country_code' => 'MK'], ['name' => 'Cucer-Sandevo', 'country_code' => 'MK'], ['name' => 'Imdina', 'country_code' => 'MT'], ['name' => 'Mahonda', 'country_code' => 'TZ'], ['name' => 'Eenhana', 'country_code' => 'NA'], ['name' => 'Mali Zvornik', 'country_code' => 'RS'], ['name' => 'Point Fortin', 'country_code' => 'TT'], ['name' => 'Kostanjevica na Krki', 'country_code' => 'SI'], ['name' => 'Port Laoise', 'country_code' => 'IE'], ['name' => 'Surdulica', 'country_code' => 'RS'], ['name' => 'Pozarevac', 'country_code' => 'RS'], ['name' => 'Sirvintos', 'country_code' => 'LT'], ['name' => 'Mayuge', 'country_code' => 'UG'], ['name' => 'Varazdin', 'country_code' => 'HR'], ['name' => 'Zajecar', 'country_code' => 'RS'], ['name' => 'Lakatoro', 'country_code' => 'VU'], ['name' => 'Dowa', 'country_code' => 'MW'], ['name' => 'Hvalba', 'country_code' => 'FO'], ['name' => 'Castlebar', 'country_code' => 'IE'], ['name' => 'Ain Defla', 'country_code' => 'DZ'], ['name' => 'Riebini', 'country_code' => 'LV'], ['name' => 'Madaba', 'country_code' => 'JO'], ['name' => 'Selibaby', 'country_code' => 'MR'], ['name' => 'Asaba', 'country_code' => 'NG'], ['name' => 'Prebold', 'country_code' => 'SI'], ['name' => 'Tulagi', 'country_code' => 'SB'], ['name' => 'Pilsrundale', 'country_code' => 'LV'], ['name' => 'Miklavz na Dravskem Polju', 'country_code' => 'SI'], ['name' => 'Aranguez', 'country_code' => 'TT'], ['name' => 'Alsunga', 'country_code' => 'LV'], ['name' => 'Karbinci', 'country_code' => 'MK'], ['name' => 'Bangar', 'country_code' => 'BN'], ['name' => 'Mozirje', 'country_code' => 'SI'], ['name' => 'Rumonge', 'country_code' => 'BI'], ['name' => 'Paracin', 'country_code' => 'RS'], ['name' => 'Naukseni', 'country_code' => 'LV'], ['name' => 'Bulambuli', 'country_code' => 'UG'], ['name' => 'Borgo Maggiore', 'country_code' => 'SM'], ['name' => 'Maracha', 'country_code' => 'UG'], ['name' => 'Luwero', 'country_code' => 'UG'], ['name' => 'Kapenguria', 'country_code' => 'KE'], ['name' => 'Smarde', 'country_code' => 'LV'], ['name' => 'Polzela', 'country_code' => 'SI'], ['name' => 'The Bottom', 'country_code' => 'NL'], ['name' => 'Yenagoa', 'country_code' => 'NG'], ['name' => 'Namayingo', 'country_code' => 'UG'], ['name' => 'Lucani', 'country_code' => 'RS'], ['name' => 'Suong', 'country_code' => 'KH'], ['name' => 'Ghasri', 'country_code' => 'MT'], ['name' => 'Gllogovc', 'country_code' => 'XK'], ['name' => 'Smederevo', 'country_code' => 'RS'], ['name' => 'Dong Xoai', 'country_code' => 'VN'], ['name' => 'Mila', 'country_code' => 'DZ'], ['name' => 'Al Buraymi', 'country_code' => 'OM'], ['name' => 'Da Lat', 'country_code' => 'VN'], ['name' => 'Luuka Town', 'country_code' => 'UG'], ['name' => 'Kabugao', 'country_code' => 'PH'], ['name' => 'Planken', 'country_code' => 'LI'], ['name' => 'Spodnje Hoce', 'country_code' => 'SI'], ['name' => 'Selnica ob Dravi', 'country_code' => 'SI'], ['name' => 'Aleksinac', 'country_code' => 'RS'], ['name' => 'Despotovac', 'country_code' => 'RS'], ['name' => 'Jincheng', 'country_code' => 'TW'], ['name' => 'Smartno', 'country_code' => 'SI'], ['name' => 'Cibitoke', 'country_code' => 'BI'], ['name' => 'Medvode', 'country_code' => 'SI'], ['name' => 'Kibuku', 'country_code' => 'UG'], ['name' => 'Bupoto', 'country_code' => 'UG'], ['name' => 'Lai Chau', 'country_code' => 'VN'], ['name' => 'Neno', 'country_code' => 'MW'], ['name' => 'Moravce', 'country_code' => 'SI'], ['name' => 'Apac', 'country_code' => 'UG'], ['name' => 'Rucava', 'country_code' => 'LV'], ['name' => 'Kladovo', 'country_code' => 'RS'], ['name' => 'Skopun', 'country_code' => 'FO'], ['name' => 'Kanal', 'country_code' => 'SI'], ['name' => 'Rugaji', 'country_code' => 'LV'], ['name' => 'Sankt Polten', 'country_code' => 'AT'], ['name' => 'Gornji Petrovci', 'country_code' => 'SI'], ['name' => 'Nazarje', 'country_code' => 'SI'], ['name' => 'Menges', 'country_code' => 'SI'], ['name' => 'Zrece', 'country_code' => 'SI'], ['name' => 'Preddvor', 'country_code' => 'SI'], ['name' => 'Rubirizi', 'country_code' => 'UG'], ['name' => 'Vwawa', 'country_code' => 'TZ'], ['name' => 'Pirot', 'country_code' => 'RS'], ['name' => 'Domagnano', 'country_code' => 'SM'], ['name' => 'Vecpiebalga', 'country_code' => 'LV'], ['name' => 'Busesa', 'country_code' => 'UG'], ['name' => 'Poljcane', 'country_code' => 'SI'], ['name' => 'Vlasotince', 'country_code' => 'RS'], ['name' => 'Koani', 'country_code' => 'TZ'], ['name' => 'Dhuusamarreeb', 'country_code' => 'SO'], ['name' => 'Smarje', 'country_code' => 'SI'], ['name' => 'Murmuiza', 'country_code' => 'LV'], ['name' => 'Komenda', 'country_code' => 'SI'], ['name' => 'Baltinava', 'country_code' => 'LV'], ['name' => 'Fada', 'country_code' => 'TD'], ['name' => 'Skofljica', 'country_code' => 'SI'], ['name' => 'Crna Trava', 'country_code' => 'RS'], ['name' => 'Brezovica', 'country_code' => 'SI'], ['name' => 'Buala', 'country_code' => 'SB'], ['name' => 'Buikwe', 'country_code' => 'UG'], ['name' => 'Kagadi', 'country_code' => 'UG'], ['name' => 'Burtnieki', 'country_code' => 'LV'], ['name' => 'Muta', 'country_code' => 'SI'], ['name' => 'Radenci', 'country_code' => 'SI'], ['name' => 'Hvannasund', 'country_code' => 'FO'], ['name' => 'Log', 'country_code' => 'SI'], ['name' => 'Colonia', 'country_code' => 'FM'], ['name' => 'Tisina', 'country_code' => 'SI'], ['name' => 'Spodnji Duplek', 'country_code' => 'SI'], ['name' => 'Bushenyi', 'country_code' => 'UG'], ['name' => 'Liegi', 'country_code' => 'LV'], ['name' => 'Acquaviva', 'country_code' => 'SM'], ['name' => 'Kon Tum', 'country_code' => 'VN'], ['name' => 'Ash Shihaniyah', 'country_code' => 'QA'], ['name' => 'Kaliro', 'country_code' => 'UG'], ['name' => 'Ljutomer', 'country_code' => 'SI'], ['name' => 'Prokuplje', 'country_code' => 'RS'], ['name' => 'Batocina', 'country_code' => 'RS'], ['name' => 'Afega', 'country_code' => 'WS'], ['name' => 'Umm Salal Ali', 'country_code' => 'QA'], ['name' => 'Aileu', 'country_code' => 'TL'], ['name' => 'Oplotnica', 'country_code' => 'SI'], ['name' => 'Fiorentino', 'country_code' => 'SM'], ['name' => 'Butebo', 'country_code' => 'UG'], ['name' => 'Akjoujt', 'country_code' => 'MR'], ['name' => 'Namutumba', 'country_code' => 'UG'], ['name' => 'Debe', 'country_code' => 'TT'], ['name' => 'Stalbe', 'country_code' => 'LV'], ['name' => 'Star Dojran', 'country_code' => 'MK'], ['name' => 'Miragoane', 'country_code' => 'HT'], ['name' => 'Lukovica', 'country_code' => 'SI'], ['name' => 'Dogbo', 'country_code' => 'BJ'], ['name' => 'Smartno', 'country_code' => 'SI'], ['name' => 'Abakaliki', 'country_code' => 'NG'], ['name' => 'Manafwa', 'country_code' => 'UG'], ['name' => 'Dimitrovgrad', 'country_code' => 'RS'], ['name' => 'Tervete', 'country_code' => 'LV'], ['name' => 'Sencur', 'country_code' => 'SI'], ['name' => 'Ibanda', 'country_code' => 'UG'], ['name' => 'Mirna', 'country_code' => 'SI'], ['name' => 'Race', 'country_code' => 'SI'], ['name' => 'Wote', 'country_code' => 'KE'], ['name' => 'Mwatate', 'country_code' => 'KE'], ['name' => 'Vitanje', 'country_code' => 'SI'], ['name' => 'Doljevac', 'country_code' => 'RS'], ['name' => 'Rukungiri', 'country_code' => 'UG'], ['name' => 'Lifford', 'country_code' => 'IE'], ['name' => 'Isangel', 'country_code' => 'VU'], ['name' => 'Koprivnica', 'country_code' => 'HR'], ['name' => 'Toftir', 'country_code' => 'FO'], ['name' => 'Gombe', 'country_code' => 'UG'], ['name' => 'Montegiardino', 'country_code' => 'SM'], ['name' => 'Kyenjojo', 'country_code' => 'UG'], ['name' => 'Porkeri', 'country_code' => 'FO'], ['name' => ' Ajlun', 'country_code' => 'JO'], ['name' => 'Velika Plana', 'country_code' => 'RS'], ['name' => 'Az Za ayin', 'country_code' => 'QA'], ['name' => 'Al Jabin', 'country_code' => 'YE'], ['name' => 'Mitoma', 'country_code' => 'UG'], ['name' => 'Kalungu', 'country_code' => 'UG'], ['name' => 'Svilajnac', 'country_code' => 'RS'], ['name' => 'Ad Dali ', 'country_code' => 'YE'], ['name' => 'Santa Cruz', 'country_code' => 'PH'], ['name' => 'Santa Lucija', 'country_code' => 'MT'], ['name' => 'Majsperk', 'country_code' => 'SI'], ['name' => 'Bukomansimbi', 'country_code' => 'UG'], ['name' => 'Svrljig', 'country_code' => 'RS'], ['name' => 'Horjul', 'country_code' => 'SI'], ['name' => 'Luce', 'country_code' => 'SI'], ['name' => 'Spodnja Hajdina', 'country_code' => 'SI'], ['name' => 'Nelspruit', 'country_code' => 'ZA'], ['name' => 'Sid', 'country_code' => 'RS'], ['name' => 'Negotin', 'country_code' => 'RS'], ['name' => 'Kajiado', 'country_code' => 'KE'], ['name' => 'Vodice', 'country_code' => 'SI'], ['name' => 'Rubanda', 'country_code' => 'UG'], ['name' => 'Waitangi', 'country_code' => 'NZ'], ['name' => 'Dapaong', 'country_code' => 'TG'], ['name' => 'Pivka', 'country_code' => 'SI'], ['name' => 'Braslovce', 'country_code' => 'SI'], ['name' => 'Butaleja', 'country_code' => 'UG'], ['name' => 'Sakete', 'country_code' => 'BJ'], ['name' => 'Tivat', 'country_code' => 'ME'], ['name' => 'Lovrenc na Pohorju', 'country_code' => 'SI'], ['name' => 'Crna na Koroskem', 'country_code' => 'SI'], ['name' => 'Pesnica', 'country_code' => 'SI'], ['name' => 'Serere', 'country_code' => 'UG'], ['name' => 'Amuria', 'country_code' => 'UG'], ['name' => 'Kenge', 'country_code' => 'CD'], ['name' => 'Nsiika', 'country_code' => 'UG'], ['name' => 'Bojnik', 'country_code' => 'RS'], ['name' => 'Kibiito', 'country_code' => 'UG'], ['name' => 'Kibingo', 'country_code' => 'UG'], ['name' => 'Capellen', 'country_code' => 'LU'], ['name' => 'Bukedea', 'country_code' => 'UG'], ['name' => 'Dobrna', 'country_code' => 'SI'], ['name' => 'Samraong', 'country_code' => 'KH'], ['name' => 'Ntara', 'country_code' => 'UG'], ['name' => 'Wiltz', 'country_code' => 'LU'], ['name' => 'Binyin', 'country_code' => 'UG'], ['name' => 'Sentilj', 'country_code' => 'SI'], ['name' => 'Kaedi', 'country_code' => 'MR'], ['name' => 'Sari', 'country_code' => 'IR'], ['name' => 'Vransko', 'country_code' => 'SI'], ['name' => 'Sentrupert', 'country_code' => 'SI'], ['name' => 'Mparo', 'country_code' => 'UG'], ['name' => 'Bistrica ob Sotli', 'country_code' => 'SI'], ['name' => 'Kinoni', 'country_code' => 'UG'], ['name' => 'Ol Kalou', 'country_code' => 'KE'], ['name' => 'Logatec', 'country_code' => 'SI'], ['name' => 'Kole', 'country_code' => 'UG'], ['name' => 'Trzic', 'country_code' => 'SI'], ['name' => 'Zebbug', 'country_code' => 'MT'], ['name' => 'Bohinjska Bistrica', 'country_code' => 'SI'], ['name' => 'Zombo', 'country_code' => 'UG'], ['name' => 'Narok', 'country_code' => 'KE'], ['name' => 'Rakai', 'country_code' => 'UG'], ['name' => 'Encamp', 'country_code' => 'AD'], ['name' => 'Lwengo', 'country_code' => 'UG'], ['name' => 'Trzin', 'country_code' => 'SI'], ['name' => 'Recica', 'country_code' => 'SI'], ['name' => 'Heydarabad', 'country_code' => 'AZ'], ['name' => 'Gorisnica', 'country_code' => 'SI'], ['name' => 'Bukwo', 'country_code' => 'UG'], ['name' => 'Omuthiya', 'country_code' => 'NA'], ['name' => 'Volcja Draga', 'country_code' => 'SI'], ['name' => 'Kasanda', 'country_code' => 'UG'], ['name' => 'Loja', 'country_code' => 'LV'], ['name' => 'Dokolo', 'country_code' => 'UG'], ['name' => 'Dornava', 'country_code' => 'SI'], ['name' => 'Leulumoega', 'country_code' => 'WS'], ['name' => 'Koronadal', 'country_code' => 'PH'], ['name' => 'Topola', 'country_code' => 'RS'], ['name' => 'Balzers', 'country_code' => 'LI'], ['name' => 'Kamwenge', 'country_code' => 'UG'], ['name' => 'Zelezniki', 'country_code' => 'SI'], ['name' => 'Ngora', 'country_code' => 'UG'], ['name' => 'Kara', 'country_code' => 'TG'], ['name' => 'Dol', 'country_code' => 'SI'], ['name' => 'Ig', 'country_code' => 'SI'], ['name' => 'Techiman', 'country_code' => 'GH'], ['name' => 'Guadalupe', 'country_code' => 'ST'], ['name' => 'Alebtong', 'country_code' => 'UG'], ['name' => 'Brcko', 'country_code' => 'BA'], ['name' => 'Gorenja Vas', 'country_code' => 'SI'], ['name' => 'Pante Macassar', 'country_code' => 'TL'], ['name' => 'Cerkno', 'country_code' => 'SI'], ['name' => 'Suai', 'country_code' => 'TL'], ['name' => 'Lospalos', 'country_code' => 'TL'], ['name' => 'Stari Trg', 'country_code' => 'SI'], ['name' => 'Chiesanuova', 'country_code' => 'SM'], ['name' => 'Sveti Jurij', 'country_code' => 'SI'], ['name' => 'Pombas', 'country_code' => 'CV'], ['name' => 'Videm', 'country_code' => 'SI'], ['name' => 'Kanungu', 'country_code' => 'UG'], ['name' => 'Ljubno', 'country_code' => 'SI'], ['name' => 'Straza', 'country_code' => 'SI'], ['name' => 'Kanoni', 'country_code' => 'UG'], ['name' => 'Kokopo', 'country_code' => 'PG'], ['name' => 'Sejong', 'country_code' => 'KR'], ['name' => 'Ramotswa', 'country_code' => 'BW'], ['name' => 'Mulifanua', 'country_code' => 'WS'], ['name' => 'Smarjeske Toplice', 'country_code' => 'SI'], ['name' => 'Al Aziziyah', 'country_code' => 'LY'], ['name' => 'Kidricevo', 'country_code' => 'SI'], ['name' => 'Semic', 'country_code' => 'SI'], ['name' => 'Oyam', 'country_code' => 'UG'], ['name' => 'Pozega', 'country_code' => 'HR'], ['name' => 'Ilinden', 'country_code' => 'MK'], ['name' => 'Starse', 'country_code' => 'SI'], ['name' => 'Dobrovo', 'country_code' => 'SI'], ['name' => 'Turnisce', 'country_code' => 'SI'], ['name' => 'Yamaguchi', 'country_code' => 'JP'], ['name' => 'Gia Nghia', 'country_code' => 'VN'], ['name' => 'Blace', 'country_code' => 'RS'], ['name' => 'La Massana', 'country_code' => 'AD'], ['name' => 'Tabor', 'country_code' => 'SI'], ['name' => 'Saltangara', 'country_code' => 'FO'], ['name' => 'Krizevci', 'country_code' => 'SI'], ['name' => 'Tutong', 'country_code' => 'BN'], ['name' => 'Sembabule', 'country_code' => 'UG'], ['name' => 'Vianden', 'country_code' => 'LU'], ['name' => 'Tsirang', 'country_code' => 'BT'], ['name' => 'Kakumiro', 'country_code' => 'UG'], ['name' => 'Pailin', 'country_code' => 'KH'], ['name' => 'Sveta Trojica v Slovenskih Goricah', 'country_code' => 'SI'], ['name' => 'Nkurenkuru', 'country_code' => 'NA'], ['name' => 'Sveta Ana', 'country_code' => 'SI'], ['name' => 'Tolmin', 'country_code' => 'SI'], ['name' => 'Rabak', 'country_code' => 'SD'], ['name' => 'Princes Town', 'country_code' => 'TT'], ['name' => 'Tarrafal', 'country_code' => 'CV'], ['name' => 'Triesen', 'country_code' => 'LI'], ['name' => 'Benedikt', 'country_code' => 'SI'], ['name' => 'Cibla', 'country_code' => 'LV'], ['name' => 'Sant Julia de Loria', 'country_code' => 'AD'], ['name' => 'Faetano', 'country_code' => 'SM'], ['name' => 'Buyende', 'country_code' => 'UG'], ['name' => 'Joao Teves', 'country_code' => 'CV'], ['name' => 'Santana', 'country_code' => 'ST'], ['name' => 'Kalaki', 'country_code' => 'UG'], ['name' => 'Vecvarkava', 'country_code' => 'LV'], ['name' => 'Kwale', 'country_code' => 'KE'], ['name' => 'Isingiro', 'country_code' => 'UG'], ['name' => 'Apatin', 'country_code' => 'RS'], ['name' => 'Kyegegwa', 'country_code' => 'UG'], ['name' => 'Sefwi Wiawso', 'country_code' => 'GH'], ['name' => 'Mersch', 'country_code' => 'LU'], ['name' => 'Ucar', 'country_code' => 'AZ'], ['name' => 'Dolenjske Toplice', 'country_code' => 'SI'], ['name' => 'Hongseong', 'country_code' => 'KR'], ['name' => 'Strendur', 'country_code' => 'FO'], ['name' => 'Tuzi', 'country_code' => 'ME'], ['name' => 'Verzej', 'country_code' => 'SI'], ['name' => 'Zgornja Kungota', 'country_code' => 'SI'], ['name' => 'Muan', 'country_code' => 'KR'], ['name' => 'Crensovci', 'country_code' => 'SI'], ['name' => 'Mirna Pec', 'country_code' => 'SI'], ['name' => 'Saratamata', 'country_code' => 'VU'], ['name' => 'Kanchanaburi', 'country_code' => 'TH'], ['name' => 'Rumuruti', 'country_code' => 'KE'], ['name' => 'Arilje', 'country_code' => 'RS'], ['name' => 'Kovin', 'country_code' => 'RS'], ['name' => 'Butalangu', 'country_code' => 'UG'], ['name' => 'Boljevac', 'country_code' => 'RS'], ['name' => 'San Jose de las Lajas', 'country_code' => 'CU'], ['name' => 'Markovci', 'country_code' => 'SI'], ['name' => 'Zuzemberk', 'country_code' => 'SI'], ['name' => 'Phon-Hong', 'country_code' => 'LA'], ['name' => 'Kosjeric', 'country_code' => 'RS'], ['name' => 'Tvoroyri', 'country_code' => 'FO'], ['name' => 'Dobrova', 'country_code' => 'SI'], ['name' => 'Amolatar', 'country_code' => 'UG'], ['name' => 'Lelydorp', 'country_code' => 'SR'], ['name' => 'Velike Lasce', 'country_code' => 'SI'], ['name' => 'Puconci', 'country_code' => 'SI'], ['name' => 'Morant Bay', 'country_code' => 'JM'], ['name' => 'Skocjan', 'country_code' => 'SI'], ['name' => 'Drabesi', 'country_code' => 'LV'], ['name' => 'Cicevac', 'country_code' => 'RS'], ['name' => 'Mokronog', 'country_code' => 'SI'], ['name' => 'Bakjagol', 'country_code' => 'KR'], ['name' => 'Plandiste', 'country_code' => 'RS'], ['name' => 'Kozina', 'country_code' => 'SI'], ['name' => 'Velika Polana', 'country_code' => 'SI'], ['name' => 'Cankova', 'country_code' => 'SI'], ['name' => 'Sredisce ob Dravi', 'country_code' => 'SI'], ['name' => 'Lamwo', 'country_code' => 'UG'], ['name' => 'Bangolo', 'country_code' => 'CI'], ['name' => 'Rogasovci', 'country_code' => 'SI'], ['name' => 'Qazax', 'country_code' => 'AZ'], ['name' => 'Varvarin', 'country_code' => 'RS'], ['name' => 'Razanj', 'country_code' => 'RS'], ['name' => 'San Jose', 'country_code' => 'PH'], ['name' => 'Ilam', 'country_code' => 'IR'], ['name' => 'Mongar', 'country_code' => 'BT'], ['name' => 'Godawari', 'country_code' => 'NP'], ['name' => 'Mionica', 'country_code' => 'RS'], ['name' => 'Kurumul', 'country_code' => 'PG'], ['name' => 'Arandelovac', 'country_code' => 'RS'], ['name' => 'Kula', 'country_code' => 'RS'], ['name' => 'Nova Vas', 'country_code' => 'SI'], ['name' => 'Apace', 'country_code' => 'SI'], ['name' => 'Cerkvenjak', 'country_code' => 'SI'], ['name' => 'Haa', 'country_code' => 'BT'], ['name' => 'Krapina', 'country_code' => 'HR'], ['name' => 'Palenga', 'country_code' => 'UG'], ['name' => 'Singa', 'country_code' => 'SD'], ['name' => 'Novi Becej', 'country_code' => 'RS'], ['name' => 'Becej', 'country_code' => 'RS'], ['name' => 'Kuzma', 'country_code' => 'SI'], ['name' => 'Sarur', 'country_code' => 'AZ'], ['name' => 'Jursinci', 'country_code' => 'SI'], ['name' => 'Port Loko', 'country_code' => 'SL'], ['name' => 'Gornji Grad', 'country_code' => 'SI'], ['name' => 'Zitorada', 'country_code' => 'RS'], ['name' => 'Videm pri Ptuju', 'country_code' => 'SI'], ['name' => 'Kotido', 'country_code' => 'UG'], ['name' => 'Titel', 'country_code' => 'RS'], ['name' => 'Pul-e Alam', 'country_code' => 'AF'], ['name' => 'Cirkulane', 'country_code' => 'SI'], ['name' => 'Ribnica', 'country_code' => 'SI'], ['name' => 'Miren', 'country_code' => 'SI'], ['name' => 'Sharan', 'country_code' => 'AF'], ['name' => 'Boorama', 'country_code' => 'SO'], ['name' => 'Tari', 'country_code' => 'PG'], ['name' => 'Zavrc', 'country_code' => 'SI'], ['name' => 'Cocieri', 'country_code' => 'MD'], ['name' => 'Pader', 'country_code' => 'UG'], ['name' => 'Merosina', 'country_code' => 'RS'], ['name' => 'Fuglafjordhur', 'country_code' => 'FO'], ['name' => 'Famjin', 'country_code' => 'FO'], ['name' => 'Lufilufi', 'country_code' => 'WS'], ['name' => 'Podlehnik', 'country_code' => 'SI'], ['name' => 'Kotor', 'country_code' => 'ME'], ['name' => 'Stara Pazova', 'country_code' => 'RS'], ['name' => 'Clervaux', 'country_code' => 'LU'], ['name' => 'Redange-sur-Attert', 'country_code' => 'LU'], ['name' => 'Goaso', 'country_code' => 'GH'], ['name' => 'Dambai', 'country_code' => 'GH'], ['name' => 'Igreja', 'country_code' => 'CV'], ['name' => 'Kaffrine', 'country_code' => 'SN'], ['name' => 'Ribnica', 'country_code' => 'SI'], ['name' => 'Zgornje Gorje', 'country_code' => 'SI'], ['name' => 'Tomaz pri Ormozu', 'country_code' => 'SI'], ['name' => 'Sangre Grande', 'country_code' => 'TT'], ['name' => 'Gaoua', 'country_code' => 'BF'], ['name' => 'Nhlangano', 'country_code' => 'SZ'], ['name' => 'Ordino', 'country_code' => 'AD'], ['name' => 'Bosilegrad', 'country_code' => 'RS'], ['name' => 'Knic', 'country_code' => 'RS'], ['name' => 'Canillo', 'country_code' => 'AD'], ['name' => 'Agago', 'country_code' => 'UG'], ['name' => 'Fort Wellington', 'country_code' => 'GY'], ['name' => 'Vitomarci', 'country_code' => 'SI'], ['name' => 'Nova Sintra', 'country_code' => 'CV'], ['name' => 'Suhar', 'country_code' => 'OM'], ['name' => 'Komen', 'country_code' => 'SI'], ['name' => 'Secanj', 'country_code' => 'RS'], ['name' => 'Nalerigu', 'country_code' => 'GH'], ['name' => 'Divaca', 'country_code' => 'SI'], ['name' => 'Destrnik', 'country_code' => 'SI'], ['name' => 'Ocnita', 'country_code' => 'MD'], ['name' => 'Kozje', 'country_code' => 'SI'], ['name' => 'Nili', 'country_code' => 'AF'], ['name' => 'Bulisa', 'country_code' => 'UG'], ['name' => 'Phonsavan', 'country_code' => 'LA'], ['name' => 'Amudat', 'country_code' => 'UG'], ['name' => 'Jurovski Dol', 'country_code' => 'SI'], ['name' => 'Pagegiai', 'country_code' => 'LT'], ['name' => 'Kovacica', 'country_code' => 'RS'], ['name' => 'Nabilatuk', 'country_code' => 'UG'], ['name' => 'Kralendijk', 'country_code' => 'NL'], ['name' => 'Pakxan', 'country_code' => 'LA'], ['name' => 'Dobje', 'country_code' => 'SI'], ['name' => 'Soldanesti', 'country_code' => 'MD'], ['name' => 'Samdrup Jongkhar', 'country_code' => 'BT'], ['name' => 'Moravske-Toplice', 'country_code' => 'SI'], ['name' => 'Podvelka', 'country_code' => 'SI'], ['name' => 'Trnovska Vas', 'country_code' => 'SI'], ['name' => 'Sarpang', 'country_code' => 'BT'], ['name' => 'Makole', 'country_code' => 'SI'], ['name' => 'Grad', 'country_code' => 'SI'], ['name' => 'Trashigang', 'country_code' => 'BT'], ['name' => 'Qabala', 'country_code' => 'AZ'], ['name' => 'Neves', 'country_code' => 'ST'], ['name' => 'Medveda', 'country_code' => 'RS'], ['name' => 'Napak', 'country_code' => 'UG'], ['name' => 'Vagur', 'country_code' => 'FO'], ['name' => 'Pemagatshel', 'country_code' => 'BT'], ['name' => 'Cova Figueira', 'country_code' => 'CV'], ['name' => 'Zitiste', 'country_code' => 'RS'], ['name' => 'Sofifi', 'country_code' => 'ID'], ['name' => 'Razkrizje', 'country_code' => 'SI'], ['name' => 'Rustavi', 'country_code' => 'GE'], ['name' => 'Cajetina', 'country_code' => 'RS'], ['name' => 'Rogatec', 'country_code' => 'SI'], ['name' => 'Qacha s Nek', 'country_code' => 'LS'], ['name' => 'Sremska Mitrovica', 'country_code' => 'RS'], ['name' => 'Stefan Voda', 'country_code' => 'MD'], ['name' => 'Safotulafai', 'country_code' => 'WS'], ['name' => 'Ivanjica', 'country_code' => 'RS'], ['name' => 'Kuacjok', 'country_code' => 'SS'], ['name' => 'Sedhiou', 'country_code' => 'SN'], ['name' => 'Tubmanburg', 'country_code' => 'LR'], ['name' => 'Indija', 'country_code' => 'RS'], ['name' => 'Zabari', 'country_code' => 'RS'], ['name' => 'Ed Daein', 'country_code' => 'SD'], ['name' => 'Tabuk', 'country_code' => 'PH'], ['name' => 'Osilnica', 'country_code' => 'SI'], ['name' => 'Petrovac na Mlavi', 'country_code' => 'RS'], ['name' => 'Pazin', 'country_code' => 'HR'], ['name' => 'Savalou', 'country_code' => 'BJ'], ['name' => 'Mali Idos', 'country_code' => 'RS'], ['name' => 'Ub', 'country_code' => 'RS'], ['name' => 'Raca', 'country_code' => 'RS'], ['name' => 'Srbobran', 'country_code' => 'RS'], ['name' => 'Ljig', 'country_code' => 'RS'], ['name' => 'Kiryandongo', 'country_code' => 'UG'], ['name' => 'Rekovac', 'country_code' => 'RS'], ['name' => 'Mamuju', 'country_code' => 'ID'], ['name' => 'Hargeysa', 'country_code' => 'SO'], ['name' => 'Kiruhura', 'country_code' => 'UG'], ['name' => 'Leava', 'country_code' => 'WF'], ['name' => 'Novi Knezevac', 'country_code' => 'RS'], ['name' => 'Djibloho', 'country_code' => 'GQ'], ['name' => 'Tsimasham', 'country_code' => 'BT'], ['name' => 'Lajkovac', 'country_code' => 'RS'], ['name' => 'Madinat ash Shamal', 'country_code' => 'QA'], ['name' => 'Bazarak', 'country_code' => 'AF'], ['name' => 'Aleksandrovac', 'country_code' => 'RS'], ['name' => 'Petnjica', 'country_code' => 'ME'], ['name' => 'Sodrazica', 'country_code' => 'SI'], ['name' => 'Samux', 'country_code' => 'AZ'], ['name' => 'Dobrovnik', 'country_code' => 'SI'], ['name' => 'Pala', 'country_code' => 'TD'], ['name' => 'Matam', 'country_code' => 'SN'], ['name' => 'Abim', 'country_code' => 'UG'], ['name' => 'Dalandzadgad', 'country_code' => 'MN'], ['name' => 'Rio Claro', 'country_code' => 'TT'], ['name' => 'Malo Crnice', 'country_code' => 'RS'], ['name' => 'Kursumlija', 'country_code' => 'RS'], ['name' => 'Ntoroko', 'country_code' => 'UG'], ['name' => 'Davaci', 'country_code' => 'AZ'], ['name' => 'Raska', 'country_code' => 'RS'], ['name' => 'Mislinja', 'country_code' => 'SI'], ['name' => 'Golubac', 'country_code' => 'RS'], ['name' => 'Nordhragota', 'country_code' => 'FO'], ['name' => 'Pecinci', 'country_code' => 'RS'], ['name' => 'Qivraq', 'country_code' => 'AZ'], ['name' => 'Nova Crnja', 'country_code' => 'RS'], ['name' => 'Podcetrtek', 'country_code' => 'SI'], ['name' => 'Samamea', 'country_code' => 'WS'], ['name' => 'Xai', 'country_code' => 'LA'], ['name' => 'Ar Rustaq', 'country_code' => 'OM'], ['name' => 'Majdanpek', 'country_code' => 'RS'], ['name' => 'Danilovgrad', 'country_code' => 'ME'], ['name' => 'Buka', 'country_code' => 'PG'], ['name' => 'Makedonska Kamenica', 'country_code' => 'MK'], ['name' => 'Satupa itea', 'country_code' => 'WS'], ['name' => 'Otuke', 'country_code' => 'UG'], ['name' => 'Ruma', 'country_code' => 'RS'], ['name' => 'Asau', 'country_code' => 'WS'], ['name' => 'Hrib-Loski Potok', 'country_code' => 'SI'], ['name' => 'Niksic', 'country_code' => 'ME'], ['name' => 'Sur', 'country_code' => 'OM'], ['name' => 'Safotu', 'country_code' => 'WS'], ['name' => 'Kalbacar', 'country_code' => 'AZ'], ['name' => 'Kobilje', 'country_code' => 'SI'], ['name' => 'Vladimirci', 'country_code' => 'RS'], ['name' => 'Vailoa', 'country_code' => 'WS'], ['name' => 'Kranjska Gora', 'country_code' => 'SI'], ['name' => 'Amuru', 'country_code' => 'UG'], ['name' => 'Buabidi', 'country_code' => 'PA'], ['name' => 'Gusinje', 'country_code' => 'ME'], ['name' => 'Ribeira Brava', 'country_code' => 'CV'], ['name' => 'Ibra ', 'country_code' => 'OM'], ['name' => 'Zetale', 'country_code' => 'SI'], ['name' => 'Tutin', 'country_code' => 'RS'], ['name' => 'Resen', 'country_code' => 'MK'], ['name' => 'Babusnica', 'country_code' => 'RS'], ['name' => 'Xocavand', 'country_code' => 'AZ'], ['name' => 'Sorvagur', 'country_code' => 'FO'], ['name' => 'Kaisiadorys', 'country_code' => 'LT'], ['name' => 'Brus', 'country_code' => 'RS'], ['name' => 'Sahbuz', 'country_code' => 'AZ'], ['name' => 'Eidhi', 'country_code' => 'FO'], ['name' => 'Massakory', 'country_code' => 'TD'], ['name' => 'Salovci', 'country_code' => 'SI'], ['name' => 'Osecina', 'country_code' => 'RS'], ['name' => 'Buba', 'country_code' => 'GW'], ['name' => 'Al Hazm', 'country_code' => 'YE'], ['name' => 'Nakapiripirit', 'country_code' => 'UG'], ['name' => 'Barentu', 'country_code' => 'ER'], ['name' => 'Veliko Gradiste', 'country_code' => 'RS'], ['name' => 'Pili', 'country_code' => 'PH'], ['name' => 'Burco', 'country_code' => 'SO'], ['name' => 'Kucevo', 'country_code' => 'RS'], ['name' => 'Koceljeva', 'country_code' => 'RS'], ['name' => 'Oyrarbakki', 'country_code' => 'FO'], ['name' => 'Arta', 'country_code' => 'DJ'], ['name' => 'Temerin', 'country_code' => 'RS'], ['name' => 'Vestmanna', 'country_code' => 'FO'], ['name' => 'Raseiniai', 'country_code' => 'LT'], ['name' => 'Gadzin Han', 'country_code' => 'RS'], ['name' => 'Gaigirgordub', 'country_code' => 'PA'], ['name' => 'Opovo', 'country_code' => 'RS'], ['name' => 'Kyankwanzi', 'country_code' => 'UG'], ['name' => 'Sao Joao dos Angolares', 'country_code' => 'ST'], ['name' => 'Ntchisi', 'country_code' => 'MW'], ['name' => 'Xekong', 'country_code' => 'LA'], ['name' => 'Trashi Yangtse', 'country_code' => 'BT'], ['name' => 'Sumba', 'country_code' => 'FO'], ['name' => 'Kvivik', 'country_code' => 'FO'], ['name' => 'Solcava', 'country_code' => 'SI'], ['name' => 'Kone', 'country_code' => 'NC'], ['name' => 'Zalingei', 'country_code' => 'SD'], ['name' => 'Sandavagur', 'country_code' => 'FO'], ['name' => 'Hodos', 'country_code' => 'SI'], ['name' => 'Hov', 'country_code' => 'FO'], ['name' => 'Sala', 'country_code' => 'LV'], ['name' => 'Nwoya', 'country_code' => 'UG'], ['name' => 'Saleaula', 'country_code' => 'WS'], ['name' => 'Zagubica', 'country_code' => 'RS'], ['name' => 'Trgoviste', 'country_code' => 'RS'], ['name' => 'Sola', 'country_code' => 'VU'], ['name' => 'Semera', 'country_code' => 'ET'], ['name' => 'Ignalina', 'country_code' => 'LT'], ['name' => 'Vidhareidhi', 'country_code' => 'FO'], ['name' => 'Anew', 'country_code' => 'TM'], ['name' => 'Masunga', 'country_code' => 'BW'], ['name' => 'Kostel', 'country_code' => 'SI'], ['name' => 'Xizi', 'country_code' => 'AZ'], ['name' => 'Trongsa', 'country_code' => 'BT'], ['name' => 'Sandur', 'country_code' => 'FO'], ['name' => 'El Fula', 'country_code' => 'SD'], ['name' => 'Zhemgang', 'country_code' => 'BT'], ['name' => 'Porto Novo', 'country_code' => 'CV'], ['name' => 'Damongo', 'country_code' => 'GH'], ['name' => 'Tanjung Selor', 'country_code' => 'ID'], ['name' => 'Tigoa', 'country_code' => 'SB'], ['name' => 'Lupane', 'country_code' => 'ZW'], ['name' => 'Parun', 'country_code' => 'AF'], ['name' => 'Kolasin', 'country_code' => 'ME'], ['name' => 'Fish Town', 'country_code' => 'LR'], ['name' => 'Bopolu', 'country_code' => 'LR'], ['name' => 'Anouvong', 'country_code' => 'LA'], ['name' => 'Loango', 'country_code' => 'CG'], ['name' => 'Laascaanood', 'country_code' => 'SO'], ['name' => 'Husavik', 'country_code' => 'FO'], ['name' => 'Georgetown', 'country_code' => 'SH'], ['name' => 'Amdjarass', 'country_code' => 'TD'], ['name' => 'Lhuentse', 'country_code' => 'BT'], ['name' => 'Jakar', 'country_code' => 'BT'], ['name' => 'Nova Varos', 'country_code' => 'RS'], ['name' => 'Ceerigaabo', 'country_code' => 'SO'], ['name' => 'Skalavik', 'country_code' => 'FO'], ['name' => 'Kunoy', 'country_code' => 'FO'], ['name' => 'Daga', 'country_code' => 'BT'], ['name' => 'Bela Palanka', 'country_code' => 'RS'], ['name' => 'Kirkja', 'country_code' => 'FO'], ['name' => 'Sowa Town', 'country_code' => 'BW'], ['name' => 'Zgornje Jezersko', 'country_code' => 'SI'], ['name' => 'Savnik', 'country_code' => 'ME'], ['name' => 'Skuvoy', 'country_code' => 'FO'], ['name' => 'Pluzine', 'country_code' => 'ME'], ['name' => 'Choyr', 'country_code' => 'MN'], ['name' => 'Edinburgh of the Seven Seas', 'country_code' => 'SH'], ['name' => 'Awbari', 'country_code' => 'LY'], ['name' => 'Gasa', 'country_code' => 'BT'], ['name' => 'Idri', 'country_code' => 'LY'], ['name' => 'Jwaneng', 'country_code' => 'BW'], ['name' => 'Mahdia', 'country_code' => 'GY'], ['name' => 'Hayma ', 'country_code' => 'OM'], ['name' => 'Union Choco', 'country_code' => 'PA'], ['name' => 'Bardai', 'country_code' => 'TD'], ['name' => 'Al Kufrah', 'country_code' => 'LY'], ['name' => 'We', 'country_code' => 'NC'], ['name' => 'Presevo', 'country_code' => 'RS'], ['name' => 'Bujanovac', 'country_code' => 'RS'], ['name' => 'Kitamilo', 'country_code' => 'UG'], ['name' => 'Xiongzhou', 'country_code' => 'CN'], ['name' => 'Udine', 'country_code' => 'IT'], ['name' => 'Kalisz', 'country_code' => 'PL'], ['name' => 'Legnica', 'country_code' => 'PL'], ['name' => 'Kani', 'country_code' => 'JP'], ['name' => 'Debre Zeyit', 'country_code' => 'ET'], ['name' => 'Xiegang', 'country_code' => 'CN'], ['name' => 'Tiaong', 'country_code' => 'PH'], ['name' => 'Chikusei', 'country_code' => 'JP'], ['name' => 'Tayabas', 'country_code' => 'PH'], ['name' => 'Andria', 'country_code' => 'IT'], ['name' => 'Roquetas de Mar', 'country_code' => 'ES'], ['name' => 'Arlit', 'country_code' => 'NE'], ['name' => 'Fengning', 'country_code' => 'CN'], ['name' => 'Deventer', 'country_code' => 'NL'], ['name' => 'Urgut Shahri', 'country_code' => 'UZ'], ['name' => 'Boca Raton', 'country_code' => 'US'], ['name' => 'Bendigo', 'country_code' => 'AU'], ['name' => 'Arezzo', 'country_code' => 'IT'], ['name' => 'Sindangan', 'country_code' => 'PH'], ['name' => 'Lafayette', 'country_code' => 'US'], ['name' => 'Leme', 'country_code' => 'BR'], ['name' => 'Zelenodol sk', 'country_code' => 'RU'], ['name' => 'Hasilpur', 'country_code' => 'PK'], ['name' => 'Wloclawek', 'country_code' => 'PL'], ['name' => 'Sakata', 'country_code' => 'JP'], ['name' => 'Lee s Summit', 'country_code' => 'US'], ['name' => 'Tobolsk', 'country_code' => 'RU'], ['name' => 'Rio Rancho', 'country_code' => 'US'], ['name' => 'South Fulton', 'country_code' => 'US'], ['name' => 'Chia', 'country_code' => 'CO'], ['name' => 'Beaverton', 'country_code' => 'US'], ['name' => 'Sarapul', 'country_code' => 'RU'], ['name' => 'Taxco de Alarcon', 'country_code' => 'MX'], ['name' => 'Tacurong', 'country_code' => 'PH'], ['name' => 'Es Senia', 'country_code' => 'DZ'], ['name' => 'Kontagora', 'country_code' => 'NG'], ['name' => 'Lugo', 'country_code' => 'ES'], ['name' => 'Khambhat', 'country_code' => 'IN'], ['name' => 'Lawrence', 'country_code' => 'US'], ['name' => 'Zarate', 'country_code' => 'AR'], ['name' => 'Reyhanli', 'country_code' => 'TR'], ['name' => 'Sabaneta', 'country_code' => 'DO'], ['name' => 'Saku', 'country_code' => 'JP'], ['name' => 'Worcester', 'country_code' => 'ZA'], ['name' => 'Votkinsk', 'country_code' => 'RU'], ['name' => 'Paulinia', 'country_code' => 'BR'], ['name' => 'Iseyin', 'country_code' => 'NG'], ['name' => 'Colon', 'country_code' => 'SV'], ['name' => 'Oldham', 'country_code' => 'GB'], ['name' => 'Attock Khurd', 'country_code' => 'PK'], ['name' => 'Witten', 'country_code' => 'DE'], ['name' => 'Hammamet', 'country_code' => 'TN'], ['name' => 'Serov', 'country_code' => 'RU'], ['name' => 'Las Rozas de Madrid', 'country_code' => 'ES'], ['name' => 'Middletown', 'country_code' => 'US'], ['name' => 'Bafra', 'country_code' => 'TR'], ['name' => 'Brantford', 'country_code' => 'CA'], ['name' => 'Hanau', 'country_code' => 'DE'], ['name' => 'El Seibo', 'country_code' => 'DO'], ['name' => 'Lysychansk', 'country_code' => 'UA'], ['name' => 'Jamundi', 'country_code' => 'CO'], ['name' => 'Cesena', 'country_code' => 'IT'], ['name' => 'Itacoatiara', 'country_code' => 'BR'], ['name' => 'Calasiao', 'country_code' => 'PH'], ['name' => 'Ukhta', 'country_code' => 'RU'], ['name' => 'Tomohon', 'country_code' => 'ID'], ['name' => 'Buin', 'country_code' => 'CL'], ['name' => 'Barra do Pirai', 'country_code' => 'BR'], ['name' => 'Sutton Coldfield', 'country_code' => 'GB'], ['name' => 'Iida', 'country_code' => 'JP'], ['name' => 'Kazerun', 'country_code' => 'IR'], ['name' => 'San Tan Valley', 'country_code' => 'US'], ['name' => 'San Marcos', 'country_code' => 'US'], ['name' => 'Wujiaqu', 'country_code' => 'CN'], ['name' => 'Aurangabad', 'country_code' => 'IN'], ['name' => 'Sandy', 'country_code' => 'US'], ['name' => 'Vanderbijlpark', 'country_code' => 'ZA'], ['name' => 'Leninsk-Kuznetskiy', 'country_code' => 'RU'], ['name' => 'Longquan', 'country_code' => 'CN'], ['name' => 'Kelo', 'country_code' => 'TD'], ['name' => 'Mezhdurechensk', 'country_code' => 'RU'], ['name' => 'Caceres', 'country_code' => 'ES'], ['name' => 'Federal Way', 'country_code' => 'US'], ['name' => 'Dovzhansk', 'country_code' => 'UA'], ['name' => 'Guihulngan', 'country_code' => 'PH'], ['name' => 'Kamisu', 'country_code' => 'JP'], ['name' => 'Longkeng', 'country_code' => 'CN'], ['name' => 'Muzaffarabad', 'country_code' => 'PK'], ['name' => 'Carmen', 'country_code' => 'PH'], ['name' => 'Greece', 'country_code' => 'US'], ['name' => 'Mandeville', 'country_code' => 'US'], ['name' => 'Mons', 'country_code' => 'BE'], ['name' => 'Jinbi', 'country_code' => 'CN'], ['name' => 'Lecce', 'country_code' => 'IT'], ['name' => 'Lingtang', 'country_code' => 'CN'], ['name' => 'Xiluodu', 'country_code' => 'CN'], ['name' => 'Hesperia', 'country_code' => 'US'], ['name' => 'Emmiganur', 'country_code' => 'IN'], ['name' => 'Brockton', 'country_code' => 'US'], ['name' => 'Pesaro', 'country_code' => 'IT'], ['name' => 'Aliaga', 'country_code' => 'TR'], ['name' => 'Campo Mourao', 'country_code' => 'BR'], ['name' => 'Boli', 'country_code' => 'CN'], ['name' => 'Lorca', 'country_code' => 'ES'], ['name' => 'Yi Xian', 'country_code' => 'CN'], ['name' => 'Guaiba', 'country_code' => 'BR'], ['name' => 'Lopez', 'country_code' => 'PH'], ['name' => 'Bogo', 'country_code' => 'CM'], ['name' => 'Sarov', 'country_code' => 'RU'], ['name' => 'M lang', 'country_code' => 'PH'], ['name' => 'Kulob', 'country_code' => 'TJ'], ['name' => 'Rubio', 'country_code' => 'VE'], ['name' => 'Riverview', 'country_code' => 'US'], ['name' => 'Sultan Kudarat', 'country_code' => 'PH'], ['name' => 'Fishers', 'country_code' => 'US'], ['name' => 'Mianwali', 'country_code' => 'PK'], ['name' => 'San Rafael', 'country_code' => 'PH'], ['name' => 'Jinshan', 'country_code' => 'CN'], ['name' => 'Solikamsk', 'country_code' => 'RU'], ['name' => 'Nahiyat al Karmah', 'country_code' => 'IQ'], ['name' => 'Bowling Green', 'country_code' => 'US'], ['name' => 'La Spezia', 'country_code' => 'IT'], ['name' => 'Barletta', 'country_code' => 'IT'], ['name' => 'Valongo', 'country_code' => 'PT'], ['name' => 'Avignon', 'country_code' => 'FR'], ['name' => 'Biu', 'country_code' => 'NG'], ['name' => 'Monkayo', 'country_code' => 'PH'], ['name' => 'San Jose del Cabo', 'country_code' => 'MX'], ['name' => 'Para de Minas', 'country_code' => 'BR'], ['name' => 'Jaworzno', 'country_code' => 'PL'], ['name' => 'San Cugat del Valles', 'country_code' => 'ES'], ['name' => 'Bislig', 'country_code' => 'PH'], ['name' => 'Kanuma', 'country_code' => 'JP'], ['name' => 'Gera', 'country_code' => 'DE'], ['name' => 'Roswell', 'country_code' => 'US'], ['name' => 'Menifee', 'country_code' => 'US'], ['name' => 'Grudziadz', 'country_code' => 'PL'], ['name' => 'Plantation', 'country_code' => 'US'], ['name' => 'Dover', 'country_code' => 'US'], ['name' => 'Escalante', 'country_code' => 'PH'], ['name' => 'Gatchina', 'country_code' => 'RU'], ['name' => 'Michurinsk', 'country_code' => 'RU'], ['name' => 'Bayan Hot', 'country_code' => 'CN'], ['name' => 'Alessandria', 'country_code' => 'IT'], ['name' => 'Santa Cruz Xoxocotlan', 'country_code' => 'MX'], ['name' => 'Glazov', 'country_code' => 'RU'], ['name' => 'Portsmouth', 'country_code' => 'US'], ['name' => 'Chino', 'country_code' => 'US'], ['name' => 'Marmaris', 'country_code' => 'TR'], ['name' => 'Cape Breton', 'country_code' => 'CA'], ['name' => 'Kwekwe', 'country_code' => 'ZW'], ['name' => 'Azumino', 'country_code' => 'JP'], ['name' => 'Wangjia', 'country_code' => 'CN'], ['name' => 'Edmond', 'country_code' => 'US'], ['name' => 'Hanford', 'country_code' => 'US'], ['name' => 'Lemery', 'country_code' => 'PH'], ['name' => 'Dearborn', 'country_code' => 'US'], ['name' => 'Menderes', 'country_code' => 'TR'], ['name' => 'Paracatu', 'country_code' => 'BR'], ['name' => 'Higashi-Matsuyama', 'country_code' => 'JP'], ['name' => 'Yunnanyi', 'country_code' => 'CN'], ['name' => 'Voskresensk', 'country_code' => 'RU'], ['name' => 'Epinal', 'country_code' => 'FR'], ['name' => 'Mikhaylovsk', 'country_code' => 'RU'], ['name' => 'Livonia', 'country_code' => 'US'], ['name' => 'Hadera', 'country_code' => 'IL'], ['name' => 'Paniqui', 'country_code' => 'PH'], ['name' => 'Trelew', 'country_code' => 'AR'], ['name' => 'Iserlohn', 'country_code' => 'DE'], ['name' => 'Linquan', 'country_code' => 'CN'], ['name' => 'Bafang', 'country_code' => 'CM'], ['name' => 'Caldas Novas', 'country_code' => 'BR'], ['name' => 'Teziutlan', 'country_code' => 'MX'], ['name' => 'Vineland', 'country_code' => 'US'], ['name' => 'Florence', 'country_code' => 'US'], ['name' => 'Portsmouth', 'country_code' => 'US'], ['name' => 'Slidell', 'country_code' => 'US'], ['name' => 'Lawton', 'country_code' => 'US'], ['name' => 'Wukari', 'country_code' => 'NG'], ['name' => 'Bauan', 'country_code' => 'PH'], ['name' => 'Samalut', 'country_code' => 'EG'], ['name' => 'Rafaela', 'country_code' => 'AR'], ['name' => 'Velikiye Luki', 'country_code' => 'RU'], ['name' => 'Hanamaki Onsen', 'country_code' => 'JP'], ['name' => 'Missoula', 'country_code' => 'US'], ['name' => 'Hastings', 'country_code' => 'GB'], ['name' => 'Kilosa', 'country_code' => 'TZ'], ['name' => 'Laiyuan', 'country_code' => 'CN'], ['name' => 'Sorriso', 'country_code' => 'BR'], ['name' => 'Auburn', 'country_code' => 'US'], ['name' => 'San Sebastian de los Reyes', 'country_code' => 'ES'], ['name' => 'Foumban', 'country_code' => 'CM'], ['name' => 'Rayachoti', 'country_code' => 'IN'], ['name' => 'Sampit', 'country_code' => 'ID'], ['name' => 'Lethbridge', 'country_code' => 'CA'], ['name' => 'Caratinga', 'country_code' => 'BR'], ['name' => 'Rapid City', 'country_code' => 'US'], ['name' => 'Yumbo', 'country_code' => 'CO'], ['name' => 'Grahamstown', 'country_code' => 'ZA'], ['name' => 'Kitakami', 'country_code' => 'JP'], ['name' => 'Acajutla', 'country_code' => 'SV'], ['name' => 'Terre Haute', 'country_code' => 'US'], ['name' => 'Saint-Jean-sur-Richelieu', 'country_code' => 'CA'], ['name' => 'Vaciamadrid', 'country_code' => 'ES'], ['name' => 'Toms River', 'country_code' => 'US'], ['name' => 'Mosquera', 'country_code' => 'CO'], ['name' => 'Suffolk', 'country_code' => 'US'], ['name' => 'Clarington', 'country_code' => 'CA'], ['name' => 'Kendu Bay', 'country_code' => 'KE'], ['name' => 'Blacksburg', 'country_code' => 'US'], ['name' => 'Modi in Makkabbim Re ut', 'country_code' => 'IL'], ['name' => 'Duren', 'country_code' => 'DE'], ['name' => 'Pickering', 'country_code' => 'CA'], ['name' => 'Flensburg', 'country_code' => 'DE'], ['name' => 'Mount Pleasant', 'country_code' => 'US'], ['name' => 'Mogi Mirim', 'country_code' => 'BR'], ['name' => 'Weiyuan', 'country_code' => 'CN'], ['name' => 'Balayan', 'country_code' => 'PH'], ['name' => 'Yao', 'country_code' => 'TD'], ['name' => 'Penaflor', 'country_code' => 'CL'], ['name' => 'Votuporanga', 'country_code' => 'BR'], ['name' => 'Cacapava', 'country_code' => 'BR'], ['name' => 'Carson', 'country_code' => 'US'], ['name' => 'Tubingen', 'country_code' => 'DE'], ['name' => 'Greenburgh', 'country_code' => 'US'], ['name' => 'Sao Felix do Xingu', 'country_code' => 'BR'], ['name' => 'Jalalpur Jattan', 'country_code' => 'PK'], ['name' => 'Caceres', 'country_code' => 'BR'], ['name' => 'Santa Cruz', 'country_code' => 'PH'], ['name' => 'Timoteo', 'country_code' => 'BR'], ['name' => 'Maladzyechna', 'country_code' => 'BY'], ['name' => 'Conroe', 'country_code' => 'US'], ['name' => 'Alafaya', 'country_code' => 'US'], ['name' => 'Chauk', 'country_code' => 'MM'], ['name' => 'Imizucho', 'country_code' => 'JP'], ['name' => 'Itajuba', 'country_code' => 'BR'], ['name' => 'Livermore', 'country_code' => 'US'], ['name' => 'Playas de Rosarito', 'country_code' => 'MX'], ['name' => 'Saquarema', 'country_code' => 'BR'], ['name' => 'Mestre', 'country_code' => 'IT'], ['name' => 'Ad Dakhla', 'country_code' => 'MA'], ['name' => 'Planaltina', 'country_code' => 'BR'], ['name' => 'Chililabombwe', 'country_code' => 'ZM'], ['name' => 'Palimbang', 'country_code' => 'PH'], ['name' => 'Pisa', 'country_code' => 'IT'], ['name' => 'Fundacion', 'country_code' => 'CO'], ['name' => 'Kavali', 'country_code' => 'IN'], ['name' => 'Pistoia', 'country_code' => 'IT'], ['name' => 'Sao Joao del Rei', 'country_code' => 'BR'], ['name' => 'Nanaimo', 'country_code' => 'CA'], ['name' => 'Ma arrat an Nu man', 'country_code' => 'SY'], ['name' => 'Mancheral', 'country_code' => 'IN'], ['name' => 'Chalchuapa', 'country_code' => 'SV'], ['name' => 'Southport', 'country_code' => 'GB'], ['name' => 'Kansk', 'country_code' => 'RU'], ['name' => 'Kiselevsk', 'country_code' => 'RU'], ['name' => 'Zwickau', 'country_code' => 'DE'], ['name' => 'Hezuo', 'country_code' => 'CN'], ['name' => 'Pili', 'country_code' => 'PH'], ['name' => 'Alaminos', 'country_code' => 'PH'], ['name' => 'New Braunfels', 'country_code' => 'US'], ['name' => 'Ocana', 'country_code' => 'CO'], ['name' => 'Mihara', 'country_code' => 'JP'], ['name' => 'Oton', 'country_code' => 'PH'], ['name' => 'Luau', 'country_code' => 'AO'], ['name' => 'Kadiri', 'country_code' => 'IN'], ['name' => 'Norrkoping', 'country_code' => 'SE'], ['name' => 'Giessen', 'country_code' => 'DE'], ['name' => 'Hosaina', 'country_code' => 'ET'], ['name' => 'Lucca', 'country_code' => 'IT'], ['name' => 'Hilversum', 'country_code' => 'NL'], ['name' => 'Santa Ines', 'country_code' => 'BR'], ['name' => 'Leping', 'country_code' => 'CN'], ['name' => 'Serdar', 'country_code' => 'TM'], ['name' => 'Cantaura', 'country_code' => 'VE'], ['name' => 'Kamensk-Shakhtinskiy', 'country_code' => 'RU'], ['name' => 'Fall River', 'country_code' => 'US'], ['name' => 'Grimsby', 'country_code' => 'GB'], ['name' => 'Chosica', 'country_code' => 'PE'], ['name' => 'Prijedor', 'country_code' => 'BA'], ['name' => 'Kabacan', 'country_code' => 'PH'], ['name' => 'Dunkerque', 'country_code' => 'FR'], ['name' => 'Parang', 'country_code' => 'PH'], ['name' => 'El Puerto de Santa Maria', 'country_code' => 'ES'], ['name' => 'Gitarama', 'country_code' => 'RW'], ['name' => 'Albany', 'country_code' => 'US'], ['name' => 'Sao Joao da Boa Vista', 'country_code' => 'BR'], ['name' => 'Shwebo', 'country_code' => 'MM'], ['name' => 'Candeias', 'country_code' => 'BR'], ['name' => 'Qiantangcun', 'country_code' => 'CN'], ['name' => 'Salaman', 'country_code' => 'PH'], ['name' => 'Halifax', 'country_code' => 'GB'], ['name' => 'Paranavai', 'country_code' => 'BR'], ['name' => 'Polangui', 'country_code' => 'PH'], ['name' => 'Bhakkar', 'country_code' => 'PK'], ['name' => 'Norwalk', 'country_code' => 'US'], ['name' => 'Dongchuan', 'country_code' => 'CN'], ['name' => 'Heerlen', 'country_code' => 'NL'], ['name' => 'Montelibano', 'country_code' => 'CO'], ['name' => 'San Luis', 'country_code' => 'CU'], ['name' => 'O Fallon', 'country_code' => 'US'], ['name' => 'Ootacamund', 'country_code' => 'IN'], ['name' => 'Victorias', 'country_code' => 'PH'], ['name' => 'La Grita', 'country_code' => 'VE'], ['name' => 'Sakiet ez Zit', 'country_code' => 'TN'], ['name' => 'Launceston', 'country_code' => 'AU'], ['name' => 'Newton', 'country_code' => 'US'], ['name' => 'Zhob', 'country_code' => 'PK'], ['name' => 'Pingyuanjie', 'country_code' => 'CN'], ['name' => 'Qal at Bishah', 'country_code' => 'SA'], ['name' => 'Tacana', 'country_code' => 'GT'], ['name' => 'Maiquetia', 'country_code' => 'VE'], ['name' => 'Ratingen', 'country_code' => 'DE'], ['name' => 'Gerona', 'country_code' => 'PH'], ['name' => 'Changting', 'country_code' => 'CN'], ['name' => 'Leshou', 'country_code' => 'CN'], ['name' => 'Sinjar', 'country_code' => 'IQ'], ['name' => 'Sudbury', 'country_code' => 'CA'], ['name' => 'Sao Goncalo do Amarante', 'country_code' => 'BR'], ['name' => 'Jatai', 'country_code' => 'BR'], ['name' => 'Wislane', 'country_code' => 'MA'], ['name' => 'Buzuluk', 'country_code' => 'RU'], ['name' => 'Cacoal', 'country_code' => 'BR'], ['name' => 'Muncie', 'country_code' => 'US'], ['name' => 'Jaguey Grande', 'country_code' => 'CU'], ['name' => 'Heshangtian', 'country_code' => 'CN'], ['name' => 'Santa Cruz do Capibaribe', 'country_code' => 'BR'], ['name' => 'Lunen', 'country_code' => 'DE'], ['name' => 'Dipalpur', 'country_code' => 'PK'], ['name' => 'Compostela', 'country_code' => 'PH'], ['name' => 'Ceylanpinar', 'country_code' => 'TR'], ['name' => 'Pergamino', 'country_code' => 'AR'], ['name' => 'Anakapalle', 'country_code' => 'IN'], ['name' => 'Fukuroi', 'country_code' => 'JP'], ['name' => 'Gurupi', 'country_code' => 'BR'], ['name' => 'Consolacion del Sur', 'country_code' => 'CU'], ['name' => 'Koidu-Bulma', 'country_code' => 'SL'], ['name' => 'Balamban', 'country_code' => 'PH'], ['name' => 'Hamilton', 'country_code' => 'US'], ['name' => 'Paredes', 'country_code' => 'PT'], ['name' => 'Brindisi', 'country_code' => 'IT'], ['name' => 'Town n Country', 'country_code' => 'US'], ['name' => 'Mobara', 'country_code' => 'JP'], ['name' => 'Tiflet', 'country_code' => 'MA'], ['name' => 'Decatur', 'country_code' => 'US'], ['name' => 'Nova Lima', 'country_code' => 'BR'], ['name' => 'Heyunkeng', 'country_code' => 'CN'], ['name' => 'Wulan', 'country_code' => 'CN'], ['name' => 'Sao Cristovao', 'country_code' => 'BR'], ['name' => 'Menglang', 'country_code' => 'CN'], ['name' => 'Ad Diwem', 'country_code' => 'SD'], ['name' => 'Jackson', 'country_code' => 'US'], ['name' => 'Fort Myers', 'country_code' => 'US'], ['name' => 'Qaracuxur', 'country_code' => 'AZ'], ['name' => 'Chiguayante', 'country_code' => 'CL'], ['name' => 'Campana', 'country_code' => 'AR'], ['name' => 'Dingcheng', 'country_code' => 'CN'], ['name' => 'Tuncheng', 'country_code' => 'CN'], ['name' => 'Gubkin', 'country_code' => 'RU'], ['name' => 'Goodyear', 'country_code' => 'US'], ['name' => 'Yaofeng', 'country_code' => 'CN'], ['name' => 'Aalst', 'country_code' => 'BE'], ['name' => 'Kattagan', 'country_code' => 'UZ'], ['name' => 'Paraiso', 'country_code' => 'MX'], ['name' => 'Gotenba', 'country_code' => 'JP'], ['name' => 'Novotroitsk', 'country_code' => 'RU'], ['name' => 'Ducheng', 'country_code' => 'CN'], ['name' => 'Kharian', 'country_code' => 'PK'], ['name' => 'Keffi', 'country_code' => 'NG'], ['name' => 'Pariaman', 'country_code' => 'ID'], ['name' => 'Dalton', 'country_code' => 'US'], ['name' => 'Santa Rosa Jauregui', 'country_code' => 'MX'], ['name' => 'Ubatuba', 'country_code' => 'BR'], ['name' => 'San Antonio', 'country_code' => 'CL'], ['name' => 'Clarkstown', 'country_code' => 'US'], ['name' => 'Treviso', 'country_code' => 'IT'], ['name' => 'Guasavito', 'country_code' => 'MX'], ['name' => 'Pinamalayan', 'country_code' => 'PH'], ['name' => 'Cheektowaga', 'country_code' => 'US'], ['name' => 'Shaoshanzhan', 'country_code' => 'CN'], ['name' => 'Aroroy', 'country_code' => 'PH'], ['name' => 'Olavarria', 'country_code' => 'AR'], ['name' => 'Konstanz', 'country_code' => 'DE'], ['name' => 'Bryan', 'country_code' => 'US'], ['name' => 'Longchuan', 'country_code' => 'CN'], ['name' => 'Zhezqazghan', 'country_code' => 'KZ'], ['name' => 'Khowrasgan', 'country_code' => 'IR'], ['name' => 'Bugulma', 'country_code' => 'RU'], ['name' => 'Shchekino', 'country_code' => 'RU'], ['name' => 'Hinigaran', 'country_code' => 'PH'], ['name' => 'Potiskum', 'country_code' => 'NG'], ['name' => 'Waukegan', 'country_code' => 'US'], ['name' => 'Pongotan', 'country_code' => 'PH'], ['name' => 'Longhua', 'country_code' => 'CN'], ['name' => 'Anderson', 'country_code' => 'US'], ['name' => 'Kitakoriyamacho', 'country_code' => 'JP'], ['name' => 'Mijas', 'country_code' => 'ES'], ['name' => 'Ushiku', 'country_code' => 'JP'], ['name' => 'North Vancouver', 'country_code' => 'CA'], ['name' => 'Redwood City', 'country_code' => 'US'], ['name' => 'Chiquinquira', 'country_code' => 'CO'], ['name' => 'Guanambi', 'country_code' => 'BR'], ['name' => 'Torrevieja', 'country_code' => 'ES'], ['name' => 'Yeysk', 'country_code' => 'RU'], ['name' => 'Sekimachi', 'country_code' => 'JP'], ['name' => 'Hoover', 'country_code' => 'US'], ['name' => 'Cachoeira do Sul', 'country_code' => 'BR'], ['name' => 'Brossard', 'country_code' => 'CA'], ['name' => 'Chita', 'country_code' => 'JP'], ['name' => 'Villingen-Schwenningen', 'country_code' => 'DE'], ['name' => 'Sokcho', 'country_code' => 'KR'], ['name' => 'Sao Bento do Sul', 'country_code' => 'BR'], ['name' => 'Redencao', 'country_code' => 'BR'], ['name' => 'Chiclana de la Frontera', 'country_code' => 'ES'], ['name' => 'Kineshma', 'country_code' => 'RU'], ['name' => 'Lake Forest', 'country_code' => 'US'], ['name' => 'Camboriu', 'country_code' => 'BR'], ['name' => 'Daanbantayan', 'country_code' => 'PH'], ['name' => 'Napa', 'country_code' => 'US'], ['name' => 'Derry', 'country_code' => 'GB'], ['name' => 'Torrente', 'country_code' => 'ES'], ['name' => 'Sumenep', 'country_code' => 'ID'], ['name' => 'Luancheng', 'country_code' => 'CN'], ['name' => 'Jelenia Gora', 'country_code' => 'PL'], ['name' => 'Walvisbaai', 'country_code' => 'NA'], ['name' => 'Moriyama', 'country_code' => 'JP'], ['name' => 'Junin', 'country_code' => 'AR'], ['name' => 'Stockton-on-Tees', 'country_code' => 'GB'], ['name' => 'Korgas', 'country_code' => 'CN'], ['name' => 'Repentigny', 'country_code' => 'CA'], ['name' => 'Largo', 'country_code' => 'US'], ['name' => 'Bloomington', 'country_code' => 'US'], ['name' => 'Unai', 'country_code' => 'BR'], ['name' => 'Araripina', 'country_code' => 'BR'], ['name' => 'Marl', 'country_code' => 'DE'], ['name' => 'Gravata', 'country_code' => 'BR'], ['name' => 'Jacobina', 'country_code' => 'BR'], ['name' => 'Aruja', 'country_code' => 'BR'], ['name' => 'Guider', 'country_code' => 'CM'], ['name' => 'Nabua', 'country_code' => 'PH'], ['name' => 'Surallah', 'country_code' => 'PH'], ['name' => 'Yokotemachi', 'country_code' => 'JP'], ['name' => 'Sabanalarga', 'country_code' => 'CO'], ['name' => 'Johns Creek', 'country_code' => 'US'], ['name' => 'Tire', 'country_code' => 'TR'], ['name' => 'Newport Beach', 'country_code' => 'US'], ['name' => 'Dmitrov', 'country_code' => 'RU'], ['name' => 'Serra Talhada', 'country_code' => 'BR'], ['name' => 'Navegantes', 'country_code' => 'BR'], ['name' => 'Banga', 'country_code' => 'PH'], ['name' => 'Mission', 'country_code' => 'US'], ['name' => 'Chigorodo', 'country_code' => 'CO'], ['name' => 'El Milia', 'country_code' => 'DZ'], ['name' => 'Cerete', 'country_code' => 'CO'], ['name' => 'El Ejido', 'country_code' => 'ES'], ['name' => 'Worms', 'country_code' => 'DE'], ['name' => 'Makilala', 'country_code' => 'PH'], ['name' => 'Troy', 'country_code' => 'US'], ['name' => 'Madera', 'country_code' => 'US'], ['name' => 'Joplin', 'country_code' => 'US'], ['name' => 'San Fabian', 'country_code' => 'PH'], ['name' => 'Zheleznogorsk', 'country_code' => 'RU'], ['name' => 'Pontevedra', 'country_code' => 'ES'], ['name' => 'Cianorte', 'country_code' => 'BR'], ['name' => 'Ijui', 'country_code' => 'BR'], ['name' => 'Chino Hills', 'country_code' => 'US'], ['name' => 'Camiling', 'country_code' => 'PH'], ['name' => 'Pinheiro', 'country_code' => 'BR'], ['name' => 'Sirsilla', 'country_code' => 'IN'], ['name' => 'Arona', 'country_code' => 'ES'], ['name' => 'Chilliwack', 'country_code' => 'CA'], ['name' => 'Binmaley', 'country_code' => 'PH'], ['name' => 'Yurga', 'country_code' => 'RU'], ['name' => 'Calabanga', 'country_code' => 'PH'], ['name' => 'Redditch', 'country_code' => 'GB'], ['name' => 'Mian Channun', 'country_code' => 'PK'], ['name' => 'Santa Barbara', 'country_code' => 'PH'], ['name' => 'Wutiancun', 'country_code' => 'CN'], ['name' => 'Santana do Livramento', 'country_code' => 'BR'], ['name' => 'Tual', 'country_code' => 'ID'], ['name' => 'Sao Sebastiao', 'country_code' => 'BR'], ['name' => 'Sablayan', 'country_code' => 'PH'], ['name' => 'Moju', 'country_code' => 'BR'], ['name' => 'Seropedica', 'country_code' => 'BR'], ['name' => 'Wuyi', 'country_code' => 'CN'], ['name' => 'Marsala', 'country_code' => 'IT'], ['name' => 'Bhalwal', 'country_code' => 'PK'], ['name' => 'Chaykovskiy', 'country_code' => 'RU'], ['name' => 'Franklin', 'country_code' => 'US'], ['name' => 'Coari', 'country_code' => 'BR'], ['name' => 'Velbert', 'country_code' => 'DE'], ['name' => 'Melbourne', 'country_code' => 'US'], ['name' => 'Pozzuoli', 'country_code' => 'IT'], ['name' => 'Al Hayy', 'country_code' => 'IQ'], ['name' => 'Port Huron', 'country_code' => 'US'], ['name' => 'Velez-Malaga', 'country_code' => 'ES'], ['name' => 'Xiedian', 'country_code' => 'CN'], ['name' => 'Nakatsu', 'country_code' => 'JP'], ['name' => 'Baggao', 'country_code' => 'PH'], ['name' => 'Solana', 'country_code' => 'PH'], ['name' => 'Colonie', 'country_code' => 'US'], ['name' => 'Shirvan', 'country_code' => 'IR'], ['name' => 'Springfield', 'country_code' => 'US'], ['name' => 'Kongjiazhuang', 'country_code' => 'CN'], ['name' => 'Bhaktapur', 'country_code' => 'NP'], ['name' => 'Guinobatan', 'country_code' => 'PH'], ['name' => 'Fredrikstad', 'country_code' => 'NO'], ['name' => 'Cruzeiro do Sul', 'country_code' => 'BR'], ['name' => 'Dapitan', 'country_code' => 'PH'], ['name' => 'Omihachiman', 'country_code' => 'JP'], ['name' => 'Muroran', 'country_code' => 'JP'], ['name' => 'Calaca', 'country_code' => 'PH'], ['name' => 'Kaneyama', 'country_code' => 'JP'], ['name' => 'Bolinao', 'country_code' => 'PH'], ['name' => 'Patrocinio', 'country_code' => 'BR'], ['name' => 'Minden', 'country_code' => 'DE'], ['name' => 'Ita', 'country_code' => 'PY'], ['name' => 'Zephyrhills', 'country_code' => 'US'], ['name' => 'Tres Rios', 'country_code' => 'BR'], ['name' => 'Bekobod', 'country_code' => 'UZ'], ['name' => 'Maple Ridge', 'country_code' => 'CA'], ['name' => 'La Louviere', 'country_code' => 'BE'], ['name' => 'Grosseto', 'country_code' => 'IT'], ['name' => 'St. Augustine', 'country_code' => 'US'], ['name' => 'Peterborough', 'country_code' => 'CA'], ['name' => 'Funza', 'country_code' => 'CO'], ['name' => 'Hengkou', 'country_code' => 'CN'], ['name' => 'Pilar', 'country_code' => 'AR'], ['name' => 'Varese', 'country_code' => 'IT'], ['name' => 'Caldas', 'country_code' => 'CO'], ['name' => 'Science City of Munoz', 'country_code' => 'PH'], ['name' => 'Macaiba', 'country_code' => 'BR'], ['name' => 'Ust -Ilimsk', 'country_code' => 'RU'], ['name' => 'Flagstaff', 'country_code' => 'US'], ['name' => 'Presidencia Roque Saenz Pena', 'country_code' => 'AR'], ['name' => 'Azov', 'country_code' => 'RU'], ['name' => 'Lujan', 'country_code' => 'AR'], ['name' => 'Agboville', 'country_code' => 'CI'], ['name' => 'Campo Limpo', 'country_code' => 'BR'], ['name' => 'Quixeramobim', 'country_code' => 'BR'], ['name' => 'Watampone', 'country_code' => 'ID'], ['name' => 'Pleasanton', 'country_code' => 'US'], ['name' => 'Xindian', 'country_code' => 'CN'], ['name' => 'Calauan', 'country_code' => 'PH'], ['name' => 'Shuibian', 'country_code' => 'CN'], ['name' => 'Anapa', 'country_code' => 'RU'], ['name' => 'Kimitsu', 'country_code' => 'JP'], ['name' => 'Matao', 'country_code' => 'BR'], ['name' => 'Murcia', 'country_code' => 'PH'], ['name' => 'Dessau-Rosslau', 'country_code' => 'DE'], ['name' => 'General Roca', 'country_code' => 'AR'], ['name' => 'Atascocita', 'country_code' => 'US'], ['name' => 'Bani Mazar', 'country_code' => 'EG'], ['name' => 'Kentau', 'country_code' => 'KZ'], ['name' => 'Maco', 'country_code' => 'PH'], ['name' => 'Westland', 'country_code' => 'US'], ['name' => 'Auburn', 'country_code' => 'US'], ['name' => 'Cranston', 'country_code' => 'US'], ['name' => 'Gobernador Galvez', 'country_code' => 'AR'], ['name' => 'Kamareddipet', 'country_code' => 'IN'], ['name' => 'Athi River', 'country_code' => 'KE'], ['name' => 'Novouralsk', 'country_code' => 'RU'], ['name' => 'Shiji', 'country_code' => 'CN'], ['name' => 'Yanggao', 'country_code' => 'CN'], ['name' => 'Indanan', 'country_code' => 'PH'], ['name' => 'Folsom', 'country_code' => 'US'], ['name' => 'Springdale', 'country_code' => 'US'], ['name' => 'Taroudannt', 'country_code' => 'MA'], ['name' => 'Sefrou', 'country_code' => 'MA'], ['name' => 'Warwick', 'country_code' => 'US'], ['name' => 'Passi', 'country_code' => 'PH'], ['name' => 'Los Patios', 'country_code' => 'CO'], ['name' => 'Tanjay', 'country_code' => 'PH'], ['name' => 'Polatsk', 'country_code' => 'BY'], ['name' => 'Calatrava', 'country_code' => 'PH'], ['name' => 'Meybod', 'country_code' => 'IR'], ['name' => 'Tepeji del Rio de Ocampo', 'country_code' => 'MX'], ['name' => 'Akiruno', 'country_code' => 'JP'], ['name' => 'Kilifi', 'country_code' => 'KE'], ['name' => 'Quixada', 'country_code' => 'BR'], ['name' => 'Farmington Hills', 'country_code' => 'US'], ['name' => 'Neumunster', 'country_code' => 'DE'], ['name' => 'Alfenas', 'country_code' => 'BR'], ['name' => 'Mackay', 'country_code' => 'AU'], ['name' => 'Norderstedt', 'country_code' => 'DE'], ['name' => 'Necochea', 'country_code' => 'AR'], ['name' => 'Paloncha', 'country_code' => 'IN'], ['name' => 'Talipao', 'country_code' => 'PH'], ['name' => 'Newark', 'country_code' => 'US'], ['name' => 'Williamsburg', 'country_code' => 'US'], ['name' => 'Brooklyn Park', 'country_code' => 'US'], ['name' => 'Uvinza', 'country_code' => 'TZ'], ['name' => 'Kottagudem', 'country_code' => 'IN'], ['name' => 'Mbalmayo', 'country_code' => 'CM'], ['name' => 'Namsan', 'country_code' => 'KP'], ['name' => 'Zarzis', 'country_code' => 'TN'], ['name' => 'Chapadinha', 'country_code' => 'BR'], ['name' => 'Andahuaylas', 'country_code' => 'PE'], ['name' => 'Hattiesburg', 'country_code' => 'US'], ['name' => 'Alexandria', 'country_code' => 'US'], ['name' => 'Tres Coracoes', 'country_code' => 'BR'], ['name' => 'Manresa', 'country_code' => 'ES'], ['name' => 'Jamshoro', 'country_code' => 'PK'], ['name' => 'Meiganga', 'country_code' => 'CM'], ['name' => 'Tall Afar', 'country_code' => 'IQ'], ['name' => 'Balad', 'country_code' => 'IQ'], ['name' => 'Vila do Conde', 'country_code' => 'PT'], ['name' => 'Bantayan', 'country_code' => 'PH'], ['name' => 'San Carlos del Zulia', 'country_code' => 'VE'], ['name' => 'Natori-shi', 'country_code' => 'JP'], ['name' => 'Koktokay', 'country_code' => 'CN'], ['name' => 'Capenda Camulemba', 'country_code' => 'AO'], ['name' => 'Fiumicino', 'country_code' => 'IT'], ['name' => 'Patzcuaro', 'country_code' => 'MX'], ['name' => 'Florence', 'country_code' => 'US'], ['name' => 'Chester', 'country_code' => 'GB'], ['name' => 'Mabai', 'country_code' => 'CN'], ['name' => 'Ben Gardane', 'country_code' => 'TN'], ['name' => 'Jinhe', 'country_code' => 'CN'], ['name' => 'Baracoa', 'country_code' => 'CU'], ['name' => 'Telemaco Borba', 'country_code' => 'BR'], ['name' => 'Valdosta', 'country_code' => 'US'], ['name' => 'Plymouth', 'country_code' => 'US'], ['name' => 'Yalta', 'country_code' => 'UA'], ['name' => 'Cotui', 'country_code' => 'DO'], ['name' => 'Jiangna', 'country_code' => 'CN'], ['name' => 'Cabiao', 'country_code' => 'PH'], ['name' => 'Manhuacu', 'country_code' => 'BR'], ['name' => 'Torres Vedras', 'country_code' => 'PT'], ['name' => 'Gyoda', 'country_code' => 'JP'], ['name' => 'Buckeye', 'country_code' => 'US'], ['name' => 'Georgetown', 'country_code' => 'US'], ['name' => 'Hanno', 'country_code' => 'JP'], ['name' => 'Nagua', 'country_code' => 'DO'], ['name' => 'Pingyi', 'country_code' => 'CN'], ['name' => 'Yenakiieve', 'country_code' => 'UA'], ['name' => 'Matalam', 'country_code' => 'PH'], ['name' => 'Iwamizawa', 'country_code' => 'JP'], ['name' => 'Kadoma', 'country_code' => 'ZW'], ['name' => 'Tanuku', 'country_code' => 'IN'], ['name' => 'Cedar Park', 'country_code' => 'US'], ['name' => 'Klin', 'country_code' => 'RU'], ['name' => 'Ozersk', 'country_code' => 'RU'], ['name' => 'Villa Maria', 'country_code' => 'AR'], ['name' => 'The Villages', 'country_code' => 'US'], ['name' => 'Kokomo', 'country_code' => 'US'], ['name' => 'Perris', 'country_code' => 'US'], ['name' => 'Echague', 'country_code' => 'PH'], ['name' => 'Huaral', 'country_code' => 'PE'], ['name' => 'St. Joseph', 'country_code' => 'US'], ['name' => 'Agua Prieta', 'country_code' => 'MX'], ['name' => 'Pato Branco', 'country_code' => 'BR'], ['name' => 'Mooka', 'country_code' => 'JP'], ['name' => 'Flower Mound', 'country_code' => 'US'], ['name' => 'Pharr', 'country_code' => 'US'], ['name' => 'Sahuayo de Morelos', 'country_code' => 'MX'], ['name' => 'Francisco Beltrao', 'country_code' => 'BR'], ['name' => 'Maizuru', 'country_code' => 'JP'], ['name' => 'Alton', 'country_code' => 'US'], ['name' => 'Mabinay', 'country_code' => 'PH'], ['name' => 'Bamberg', 'country_code' => 'DE'], ['name' => 'Hengbei', 'country_code' => 'CN'], ['name' => 'Loveland', 'country_code' => 'US'], ['name' => 'Bogo', 'country_code' => 'PH'], ['name' => 'Subulussalam', 'country_code' => 'ID'], ['name' => 'Delmenhorst', 'country_code' => 'DE'], ['name' => 'Essaouira', 'country_code' => 'MA'], ['name' => 'El Carmen de Bolivar', 'country_code' => 'CO'], ['name' => 'Tierralta', 'country_code' => 'CO'], ['name' => 'Rockhampton', 'country_code' => 'AU'], ['name' => 'Aligudarz', 'country_code' => 'IR'], ['name' => 'Dondo', 'country_code' => 'MZ'], ['name' => 'Boynton Beach', 'country_code' => 'US'], ['name' => 'La Dorada', 'country_code' => 'CO'], ['name' => 'Tela', 'country_code' => 'HN'], ['name' => 'Picos', 'country_code' => 'BR'], ['name' => 'Anderson', 'country_code' => 'US'], ['name' => 'Vyborg', 'country_code' => 'RU'], ['name' => 'Manbij', 'country_code' => 'SY'], ['name' => 'Dias d Avila', 'country_code' => 'BR'], ['name' => 'Valdemoro', 'country_code' => 'ES'], ['name' => 'Usol ye-Sibirskoye', 'country_code' => 'RU'], ['name' => 'San Jose', 'country_code' => 'PH'], ['name' => 'Jonesboro', 'country_code' => 'US'], ['name' => 'Pattoki', 'country_code' => 'PK'], ['name' => 'San Antonio', 'country_code' => 'PH'], ['name' => 'Kropotkin', 'country_code' => 'RU'], ['name' => 'Temoaya', 'country_code' => 'MX'], ['name' => 'Maitland', 'country_code' => 'AU'], ['name' => 'Arjona', 'country_code' => 'CO'], ['name' => 'Chengbin', 'country_code' => 'CN'], ['name' => 'Parma', 'country_code' => 'US'], ['name' => 'Bor', 'country_code' => 'RU'], ['name' => 'Bodhan', 'country_code' => 'IN'], ['name' => 'Chinautla', 'country_code' => 'GT'], ['name' => 'Layton', 'country_code' => 'US'], ['name' => 'Balqash', 'country_code' => 'KZ'], ['name' => 'Villa Victoria', 'country_code' => 'MX'], ['name' => 'Elizabethtown', 'country_code' => 'US'], ['name' => 'Beziers', 'country_code' => 'FR'], ['name' => 'Texarkana', 'country_code' => 'US'], ['name' => 'Linkou', 'country_code' => 'CN'], ['name' => 'Siaton', 'country_code' => 'PH'], ['name' => 'Aquiraz', 'country_code' => 'BR'], ['name' => 'Villa Canales', 'country_code' => 'GT'], ['name' => 'Roosendaal', 'country_code' => 'NL'], ['name' => 'Numan', 'country_code' => 'NG'], ['name' => 'Ciudad de Huajuapam de Leon', 'country_code' => 'MX'], ['name' => 'Viersen', 'country_code' => 'DE'], ['name' => 'Bebedouro', 'country_code' => 'BR'], ['name' => 'Guildford', 'country_code' => 'GB'], ['name' => 'Sint-Niklaas', 'country_code' => 'BE'], ['name' => 'Karur', 'country_code' => 'IN'], ['name' => 'Armant', 'country_code' => 'EG'], ['name' => 'Alegrete', 'country_code' => 'BR'], ['name' => 'Bakhmut', 'country_code' => 'UA'], ['name' => 'Bulacan', 'country_code' => 'PH'], ['name' => 'Marburg', 'country_code' => 'DE'], ['name' => 'Buhi', 'country_code' => 'PH'], ['name' => 'Soke', 'country_code' => 'TR'], ['name' => 'Kankakee', 'country_code' => 'US'], ['name' => 'Funing', 'country_code' => 'CN'], ['name' => 'Poblacion', 'country_code' => 'PH'], ['name' => 'Ende', 'country_code' => 'ID'], ['name' => 'Porterville', 'country_code' => 'US'], ['name' => 'Harunabad', 'country_code' => 'PK'], ['name' => 'Gelendzhik', 'country_code' => 'RU'], ['name' => 'Caninde', 'country_code' => 'BR'], ['name' => 'Chernogorsk', 'country_code' => 'RU'], ['name' => 'Balkh', 'country_code' => 'AF'], ['name' => 'Baytown', 'country_code' => 'US'], ['name' => 'Upland', 'country_code' => 'US'], ['name' => 'Siedlce', 'country_code' => 'PL'], ['name' => 'Nikko', 'country_code' => 'JP'], ['name' => 'Gandia', 'country_code' => 'ES'], ['name' => 'Malapatan', 'country_code' => 'PH'], ['name' => 'Dongguan', 'country_code' => 'CN'], ['name' => 'Ryugasaki', 'country_code' => 'JP'], ['name' => 'Al Musayyib', 'country_code' => 'IQ'], ['name' => 'Pyapon', 'country_code' => 'MM'], ['name' => 'Caserta', 'country_code' => 'IT'], ['name' => 'Mafra', 'country_code' => 'PT'], ['name' => 'Camarillo', 'country_code' => 'US'], ['name' => 'Sarqan', 'country_code' => 'KZ'], ['name' => 'Dschang', 'country_code' => 'CM'], ['name' => 'Kahror Pakka', 'country_code' => 'PK'], ['name' => 'Ait Ali', 'country_code' => 'MA'], ['name' => 'Tuban', 'country_code' => 'ID'], ['name' => 'Balashov', 'country_code' => 'RU'], ['name' => 'Wilhelmshaven', 'country_code' => 'DE'], ['name' => 'Shostka', 'country_code' => 'UA'], ['name' => 'Asti', 'country_code' => 'IT'], ['name' => 'Jablah', 'country_code' => 'SY'], ['name' => 'E erguna', 'country_code' => 'CN'], ['name' => 'Rheine', 'country_code' => 'DE'], ['name' => 'Turbaco', 'country_code' => 'CO'], ['name' => 'Fouchana', 'country_code' => 'TN'], ['name' => 'Fancheng', 'country_code' => 'CN'], ['name' => 'South Jordan', 'country_code' => 'US'], ['name' => 'Palma Soriano', 'country_code' => 'CU'], ['name' => 'Macabebe', 'country_code' => 'PH'], ['name' => 'Stakhanov', 'country_code' => 'UA'], ['name' => 'Bais', 'country_code' => 'PH'], ['name' => 'Battle Creek', 'country_code' => 'US'], ['name' => 'Ibiuna', 'country_code' => 'BR'], ['name' => 'Jose Abad Santos', 'country_code' => 'PH'], ['name' => 'Venado Tuerto', 'country_code' => 'AR'], ['name' => 'Sangolqui', 'country_code' => 'EC'], ['name' => 'Anzhero-Sudzhensk', 'country_code' => 'RU'], ['name' => 'Kapalong', 'country_code' => 'PH'], ['name' => 'Santo Angelo', 'country_code' => 'BR'], ['name' => 'Houmt Souk', 'country_code' => 'TN'], ['name' => 'Livingston', 'country_code' => 'GT'], ['name' => 'Myslowice', 'country_code' => 'PL'], ['name' => 'Daisen', 'country_code' => 'JP'], ['name' => 'Berdychiv', 'country_code' => 'UA'], ['name' => 'Itapetinga', 'country_code' => 'BR'], ['name' => 'Lins', 'country_code' => 'BR'], ['name' => 'San Marcos', 'country_code' => 'US'], ['name' => 'Espinal', 'country_code' => 'CO'], ['name' => 'Lod', 'country_code' => 'IL'], ['name' => 'Troisdorf', 'country_code' => 'DE'], ['name' => 'Fukuchiyama', 'country_code' => 'JP'], ['name' => 'Bauang', 'country_code' => 'PH'], ['name' => 'Piotrkow Trybunalski', 'country_code' => 'PL'], ['name' => 'Tailai', 'country_code' => 'CN'], ['name' => 'San Ramon', 'country_code' => 'US'], ['name' => 'Toba Tek Singh', 'country_code' => 'PK'], ['name' => 'Jabuticabal', 'country_code' => 'BR'], ['name' => 'Santa Catalina', 'country_code' => 'PH'], ['name' => 'Rio Largo', 'country_code' => 'BR'], ['name' => 'Ovalle', 'country_code' => 'CL'], ['name' => 'Kengtung', 'country_code' => 'MM'], ['name' => 'Xinglong', 'country_code' => 'CN'], ['name' => 'Lake Jackson', 'country_code' => 'US'], ['name' => 'Pototan', 'country_code' => 'PH'], ['name' => 'Bethlehem', 'country_code' => 'US'], ['name' => 'Alcala de Guadaira', 'country_code' => 'ES'], ['name' => 'Shadrinsk', 'country_code' => 'RU'], ['name' => 'Bayreuth', 'country_code' => 'DE'], ['name' => 'Zhongcheng', 'country_code' => 'CN'], ['name' => 'Puqiancun', 'country_code' => 'CN'], ['name' => 'Wyoming', 'country_code' => 'US'], ['name' => 'Dubna', 'country_code' => 'RU'], ['name' => 'Nakatsugawa', 'country_code' => 'JP'], ['name' => 'Batarasa', 'country_code' => 'PH'], ['name' => 'Oshkosh', 'country_code' => 'US'], ['name' => 'Sapiranga', 'country_code' => 'BR'], ['name' => 'Bonab', 'country_code' => 'IR'], ['name' => 'Hammond', 'country_code' => 'US'], ['name' => 'Libon', 'country_code' => 'PH'], ['name' => 'Tiznit', 'country_code' => 'MA'], ['name' => 'Waldorf', 'country_code' => 'US'], ['name' => 'Pagbilao', 'country_code' => 'PH'], ['name' => 'Missouri City', 'country_code' => 'US'], ['name' => 'Luneburg', 'country_code' => 'DE'], ['name' => 'Pasco', 'country_code' => 'US'], ['name' => 'Mangalagiri', 'country_code' => 'IN'], ['name' => 'Kawartha Lakes', 'country_code' => 'CA'], ['name' => 'Bombo', 'country_code' => 'UG'], ['name' => 'Wheeling', 'country_code' => 'US'], ['name' => 'Brick', 'country_code' => 'US'], ['name' => 'Acacias', 'country_code' => 'CO'], ['name' => 'Kendall', 'country_code' => 'US'], ['name' => 'Itahari', 'country_code' => 'NP'], ['name' => 'Concordia', 'country_code' => 'BR'], ['name' => 'Robles', 'country_code' => 'PH'], ['name' => 'Valle Alto', 'country_code' => 'MX'], ['name' => 'Standerton', 'country_code' => 'ZA'], ['name' => 'Taytay', 'country_code' => 'PH'], ['name' => 'Tatebayashi', 'country_code' => 'JP'], ['name' => 'Idah', 'country_code' => 'NG'], ['name' => 'Dorsten', 'country_code' => 'DE'], ['name' => 'Carmen', 'country_code' => 'PH'], ['name' => 'Gela', 'country_code' => 'IT'], ['name' => 'Di An', 'country_code' => 'VN'], ['name' => 'Rancho Cordova', 'country_code' => 'US'], ['name' => 'Arcoverde', 'country_code' => 'BR'], ['name' => 'Gode', 'country_code' => 'ET'], ['name' => 'Palma', 'country_code' => 'MZ'], ['name' => 'Tongye', 'country_code' => 'CN'], ['name' => 'Lamitan', 'country_code' => 'PH'], ['name' => 'Conway', 'country_code' => 'US'], ['name' => 'Wiwili', 'country_code' => 'NI'], ['name' => 'Gary', 'country_code' => 'US'], ['name' => 'Bunbury', 'country_code' => 'AU'], ['name' => 'Pilar', 'country_code' => 'PH'], ['name' => 'Castrop-Rauxel', 'country_code' => 'DE'], ['name' => 'Altoona', 'country_code' => 'US'], ['name' => 'Samundri', 'country_code' => 'PK'], ['name' => 'Lodi', 'country_code' => 'US'], ['name' => 'Arlington Heights', 'country_code' => 'US'], ['name' => 'Darhan', 'country_code' => 'MN'], ['name' => 'Nizhyn', 'country_code' => 'UA'], ['name' => 'San Francisco', 'country_code' => 'PH'], ['name' => 'Piracununga', 'country_code' => 'BR'], ['name' => 'Burnley', 'country_code' => 'GB'], ['name' => 'Copacabana', 'country_code' => 'CO'], ['name' => 'San Juan Opico', 'country_code' => 'SV'], ['name' => 'Grand-Bassam', 'country_code' => 'CI'], ['name' => 'Bolingbrook', 'country_code' => 'US'], ['name' => 'Rochester Hills', 'country_code' => 'US'], ['name' => 'Barili', 'country_code' => 'PH'], ['name' => 'Novoaltaysk', 'country_code' => 'RU'], ['name' => 'Winchester', 'country_code' => 'US'], ['name' => 'Framingham', 'country_code' => 'US'], ['name' => 'Detmold', 'country_code' => 'DE'], ['name' => 'Palmeira dos Indios', 'country_code' => 'BR'], ['name' => 'Tatsunocho-tominaga', 'country_code' => 'JP'], ['name' => 'Gumaca', 'country_code' => 'PH'], ['name' => 'Cinar', 'country_code' => 'TR'], ['name' => 'Mineral nyye Vody', 'country_code' => 'RU'], ['name' => 'Kara-Balta', 'country_code' => 'KG'], ['name' => 'Hilton Head Island', 'country_code' => 'US'], ['name' => 'Sundsvall', 'country_code' => 'SE'], ['name' => 'Union City', 'country_code' => 'US'], ['name' => 'Ouro Preto', 'country_code' => 'BR'], ['name' => 'Yelabuga', 'country_code' => 'RU'], ['name' => 'San Ramon de la Nueva Oran', 'country_code' => 'AR'], ['name' => 'Troitsk', 'country_code' => 'RU'], ['name' => 'Konin', 'country_code' => 'PL'], ['name' => 'Owensboro', 'country_code' => 'US'], ['name' => 'Jackson', 'country_code' => 'US'], ['name' => 'San Martin', 'country_code' => 'SV'], ['name' => 'Kairana', 'country_code' => 'IN'], ['name' => 'Jaen', 'country_code' => 'PH'], ['name' => 'Majadahonda', 'country_code' => 'ES'], ['name' => 'Riberalta', 'country_code' => 'BO'], ['name' => 'Oriximina', 'country_code' => 'BR'], ['name' => 'Arnsberg', 'country_code' => 'DE'], ['name' => 'Prince George', 'country_code' => 'CA'], ['name' => 'Kostiantynivka', 'country_code' => 'UA'], ['name' => 'Ceara-Mirim', 'country_code' => 'BR'], ['name' => 'Ixmiquilpan', 'country_code' => 'MX'], ['name' => 'Ubay', 'country_code' => 'PH'], ['name' => 'Pavia', 'country_code' => 'IT'], ['name' => 'Yurihonjo', 'country_code' => 'JP'], ['name' => 'Yegoryevsk', 'country_code' => 'RU'], ['name' => 'Kasama', 'country_code' => 'JP'], ['name' => 'Lambunao', 'country_code' => 'PH'], ['name' => 'Bawku', 'country_code' => 'GH'], ['name' => 'Ragusa', 'country_code' => 'IT'], ['name' => 'Chaigoubu', 'country_code' => 'CN'], ['name' => 'Tagoloan', 'country_code' => 'PH'], ['name' => 'Siuna', 'country_code' => 'NI'], ['name' => 'Takestan', 'country_code' => 'IR'], ['name' => 'Linares', 'country_code' => 'CL'], ['name' => 'Shrewsbury', 'country_code' => 'GB'], ['name' => 'Cleveland', 'country_code' => 'US'], ['name' => 'Wausau', 'country_code' => 'US'], ['name' => 'Quillota', 'country_code' => 'CL'], ['name' => 'Ostrowiec Swietokrzyski', 'country_code' => 'PL'], ['name' => 'El Hamma', 'country_code' => 'TN'], ['name' => 'Umingan', 'country_code' => 'PH'], ['name' => 'Molina de Segura', 'country_code' => 'ES'], ['name' => 'Anniston', 'country_code' => 'US'], ['name' => 'Lanxi', 'country_code' => 'CN'], ['name' => 'Brakpan', 'country_code' => 'ZA'], ['name' => 'Zhuolu', 'country_code' => 'CN'], ['name' => 'Mangatarem', 'country_code' => 'PH'], ['name' => 'Kirovo-Chepetsk', 'country_code' => 'RU'], ['name' => 'Apple Valley', 'country_code' => 'US'], ['name' => 'Ludenscheid', 'country_code' => 'DE'], ['name' => 'Vinhedo', 'country_code' => 'BR'], ['name' => 'Landshut', 'country_code' => 'DE'], ['name' => 'San Juan Chamelco', 'country_code' => 'GT'], ['name' => 'Shibukawa', 'country_code' => 'JP'], ['name' => 'Sault Ste. Marie', 'country_code' => 'CA'], ['name' => 'Calauag', 'country_code' => 'PH'], ['name' => 'Nepalganj', 'country_code' => 'NP'], ['name' => 'Mansfield', 'country_code' => 'US'], ['name' => 'Narra', 'country_code' => 'PH'], ['name' => 'Tatvan', 'country_code' => 'TR'], ['name' => 'Cuamba', 'country_code' => 'MZ'], ['name' => 'Farroupilha', 'country_code' => 'BR'], ['name' => 'Tokar', 'country_code' => 'SD'], ['name' => 'Shakargarh', 'country_code' => 'PK'], ['name' => 'Tan-Tan', 'country_code' => 'MA'], ['name' => 'Wenping', 'country_code' => 'CN'], ['name' => 'Chapayevsk', 'country_code' => 'RU'], ['name' => 'Santa Rosa de Cabal', 'country_code' => 'CO'], ['name' => 'Moa', 'country_code' => 'CU'], ['name' => 'Otawara', 'country_code' => 'JP'], ['name' => 'Cremona', 'country_code' => 'IT'], ['name' => 'Itapira', 'country_code' => 'BR'], ['name' => 'Baghlan', 'country_code' => 'AF'], ['name' => 'Kalamata', 'country_code' => 'GR'], ['name' => 'Sambrial', 'country_code' => 'PK'], ['name' => 'Vsevolozhsk', 'country_code' => 'RU'], ['name' => 'Montepuez', 'country_code' => 'MZ'], ['name' => 'San Vicente del Caguan', 'country_code' => 'CO'], ['name' => 'Keshan', 'country_code' => 'CN'], ['name' => 'Belovo', 'country_code' => 'RU'], ['name' => 'Schaumburg', 'country_code' => 'US'], ['name' => 'Xiangjiaba', 'country_code' => 'CN'], ['name' => 'Pocatello', 'country_code' => 'US'], ['name' => 'Pacatuba', 'country_code' => 'BR'], ['name' => 'Crateus', 'country_code' => 'BR'], ['name' => 'Woodbury', 'country_code' => 'US'], ['name' => 'Ede', 'country_code' => 'NL'], ['name' => 'Aracati', 'country_code' => 'BR'], ['name' => 'Argao', 'country_code' => 'PH'], ['name' => 'Sotik', 'country_code' => 'KE'], ['name' => 'Southfield', 'country_code' => 'US'], ['name' => 'Yafran', 'country_code' => 'LY'], ['name' => 'Ellicott City', 'country_code' => 'US'], ['name' => 'Paterna', 'country_code' => 'ES'], ['name' => 'Dale City', 'country_code' => 'US'], ['name' => 'Maple Grove', 'country_code' => 'US'], ['name' => 'Penafiel', 'country_code' => 'PT'], ['name' => 'Pittsburg', 'country_code' => 'US'], ['name' => 'Concepcion del Uruguay', 'country_code' => 'AR'], ['name' => 'Belo Jardim', 'country_code' => 'BR'], ['name' => 'Morgantown', 'country_code' => 'US'], ['name' => 'Brandenburg', 'country_code' => 'DE'], ['name' => 'Mansfield', 'country_code' => 'US'], ['name' => 'Hammond', 'country_code' => 'US'], ['name' => 'Dothan', 'country_code' => 'US'], ['name' => 'Harrisonburg', 'country_code' => 'US'], ['name' => 'Wenatchee', 'country_code' => 'US'], ['name' => 'Goya', 'country_code' => 'AR'], ['name' => 'Waukesha', 'country_code' => 'US'], ['name' => 'Rio do Sul', 'country_code' => 'BR'], ['name' => 'Benidorm', 'country_code' => 'ES'], ['name' => 'Tagaytay', 'country_code' => 'PH'], ['name' => 'Bongabong', 'country_code' => 'PH'], ['name' => 'Ishioka', 'country_code' => 'JP'], ['name' => 'Casa Nova', 'country_code' => 'BR'], ['name' => 'Colon', 'country_code' => 'CU'], ['name' => 'Tibati', 'country_code' => 'CM'], ['name' => 'Alicia', 'country_code' => 'PH'], ['name' => 'Coffs Harbour', 'country_code' => 'AU'], ['name' => 'Santa Isabel do Para', 'country_code' => 'BR'], ['name' => 'Redmond', 'country_code' => 'US'], ['name' => 'Kawm Umbu', 'country_code' => 'EG'], ['name' => 'Bouafle', 'country_code' => 'CI'], ['name' => 'Talakag', 'country_code' => 'PH'], ['name' => 'Florida', 'country_code' => 'CU'], ['name' => 'Izmail', 'country_code' => 'UA'], ['name' => 'Bocholt', 'country_code' => 'DE'], ['name' => 'Carpi', 'country_code' => 'IT'], ['name' => 'Aschaffenburg', 'country_code' => 'DE'], ['name' => 'Lisburn', 'country_code' => 'GB'], ['name' => 'Quartu Sant Elena', 'country_code' => 'IT'], ['name' => 'Sarnia', 'country_code' => 'CA'], ['name' => 'Keighley', 'country_code' => 'GB'], ['name' => 'Wood Buffalo', 'country_code' => 'CA'], ['name' => 'Merignac', 'country_code' => 'FR'], ['name' => 'Sumter', 'country_code' => 'US'], ['name' => 'Redlands', 'country_code' => 'US'], ['name' => 'Bapatla', 'country_code' => 'IN'], ['name' => 'Saint-Nazaire', 'country_code' => 'FR'], ['name' => 'Daphne', 'country_code' => 'US'], ['name' => 'Markapur', 'country_code' => 'IN'], ['name' => 'Mount Vernon', 'country_code' => 'US'], ['name' => 'Villa Tunari', 'country_code' => 'BO'], ['name' => 'Shujaabad', 'country_code' => 'PK'], ['name' => 'Catanauan', 'country_code' => 'PH'], ['name' => 'Malaut', 'country_code' => 'IN'], ['name' => 'Verkhnyaya Pyshma', 'country_code' => 'RU'], ['name' => 'Placetas', 'country_code' => 'CU'], ['name' => 'Gibara', 'country_code' => 'CU'], ['name' => 'Yinying', 'country_code' => 'CN'], ['name' => 'Cabudare', 'country_code' => 'VE'], ['name' => 'Entebbe', 'country_code' => 'UG'], ['name' => 'Baiquan', 'country_code' => 'CN'], ['name' => 'Weston', 'country_code' => 'US'], ['name' => 'Bundaberg', 'country_code' => 'AU'], ['name' => 'Corozal', 'country_code' => 'CO'], ['name' => 'Indaial', 'country_code' => 'BR'], ['name' => 'St. Charles', 'country_code' => 'US'], ['name' => 'Djemmal', 'country_code' => 'TN'], ['name' => 'Pan an', 'country_code' => 'CN'], ['name' => 'Gaspar', 'country_code' => 'BR'], ['name' => 'Cherry Hill', 'country_code' => 'US'], ['name' => 'Ritto', 'country_code' => 'JP'], ['name' => 'Badvel', 'country_code' => 'IN'], ['name' => 'Hujra Shah Muqim', 'country_code' => 'PK'], ['name' => 'Chateauguay', 'country_code' => 'CA'], ['name' => 'Novomoskovsk', 'country_code' => 'UA'], ['name' => 'Kladno', 'country_code' => 'CZ'], ['name' => 'Zenica', 'country_code' => 'BA'], ['name' => 'Janesville', 'country_code' => 'US'], ['name' => 'Kabirwala', 'country_code' => 'PK'], ['name' => 'Manaoag', 'country_code' => 'PH'], ['name' => 'Loule', 'country_code' => 'PT'], ['name' => 'Sherman', 'country_code' => 'US'], ['name' => 'Altamura', 'country_code' => 'IT'], ['name' => 'North Richland Hills', 'country_code' => 'US'], ['name' => 'Chekhov', 'country_code' => 'RU'], ['name' => 'Campo Bom', 'country_code' => 'BR'], ['name' => 'Reconquista', 'country_code' => 'AR'], ['name' => 'Bur Fu ad', 'country_code' => 'EG'], ['name' => 'Sao Sebastiao do Paraiso', 'country_code' => 'BR'], ['name' => 'Kovel', 'country_code' => 'UA'], ['name' => 'Broomfield', 'country_code' => 'US'], ['name' => 'Guzhou', 'country_code' => 'CN'], ['name' => 'Zhanggu', 'country_code' => 'CN'], ['name' => 'Rongcheng', 'country_code' => 'CN'], ['name' => 'Tupi', 'country_code' => 'PH'], ['name' => 'Imola', 'country_code' => 'IT'], ['name' => 'Smila', 'country_code' => 'UA'], ['name' => 'Sipalay', 'country_code' => 'PH'], ['name' => 'El Paso de Robles', 'country_code' => 'US'], ['name' => 'Bristol', 'country_code' => 'US'], ['name' => 'Rosetta', 'country_code' => 'EG'], ['name' => 'Casas Adobes', 'country_code' => 'US'], ['name' => 'Walnut Creek', 'country_code' => 'US'], ['name' => 'Hato Mayor', 'country_code' => 'DO'], ['name' => 'Villa del Rosario', 'country_code' => 'CO'], ['name' => 'Sosua', 'country_code' => 'DO'], ['name' => 'Colmar', 'country_code' => 'FR'], ['name' => 'Phu Quoc', 'country_code' => 'VN'], ['name' => 'Baras', 'country_code' => 'PH'], ['name' => 'Qo ng irot Shahri', 'country_code' => 'UZ'], ['name' => 'Az Zubaydiyah', 'country_code' => 'IQ'], ['name' => 'Oshnaviyeh', 'country_code' => 'IR'], ['name' => 'Jorhat', 'country_code' => 'IN'], ['name' => 'Pozorrubio', 'country_code' => 'PH'], ['name' => 'Saldanha', 'country_code' => 'ZA'], ['name' => 'Fanzhuang', 'country_code' => 'CN'], ['name' => 'Shangchuankou', 'country_code' => 'CN'], ['name' => 'Celle', 'country_code' => 'DE'], ['name' => 'Kempten', 'country_code' => 'DE'], ['name' => 'Isna', 'country_code' => 'EG'], ['name' => 'Qingquan', 'country_code' => 'CN'], ['name' => 'Jarabacoa', 'country_code' => 'DO'], ['name' => 'Hasselt', 'country_code' => 'BE'], ['name' => 'Poinciana', 'country_code' => 'US'], ['name' => 'Garzon', 'country_code' => 'CO'], ['name' => 'Santa Rosa', 'country_code' => 'PH'], ['name' => 'Russas', 'country_code' => 'BR'], ['name' => 'Glen Burnie', 'country_code' => 'US'], ['name' => 'Bula', 'country_code' => 'PH'], ['name' => 'San Juan de los Lagos', 'country_code' => 'MX'], ['name' => 'Solok', 'country_code' => 'ID'], ['name' => 'Uwajima', 'country_code' => 'JP'], ['name' => 'Massa', 'country_code' => 'IT'], ['name' => 'Mansehra', 'country_code' => 'PK'], ['name' => 'Suwalki', 'country_code' => 'PL'], ['name' => 'Bamban', 'country_code' => 'PH'], ['name' => 'Villanueva y Geltru', 'country_code' => 'ES'], ['name' => 'Lehi', 'country_code' => 'US'], ['name' => 'Yitiaoshan', 'country_code' => 'CN'], ['name' => 'Estancia', 'country_code' => 'BR'], ['name' => 'Dumangas', 'country_code' => 'PH'], ['name' => 'Paragominas', 'country_code' => 'BR'], ['name' => 'Sanlucar de Barrameda', 'country_code' => 'ES'], ['name' => 'Gniezno', 'country_code' => 'PL'], ['name' => 'Saint-Jerome', 'country_code' => 'CA'], ['name' => 'Bom Jesus da Lapa', 'country_code' => 'BR'], ['name' => 'Homestead', 'country_code' => 'US'], ['name' => 'West Bend', 'country_code' => 'US'], ['name' => 'Escada', 'country_code' => 'BR'], ['name' => 'Bacacay', 'country_code' => 'PH'], ['name' => 'Delray Beach', 'country_code' => 'US'], ['name' => 'Ongjang', 'country_code' => 'KP'], ['name' => 'Sheboygan', 'country_code' => 'US'], ['name' => 'Chisec', 'country_code' => 'GT'], ['name' => 'Aqsu', 'country_code' => 'KZ'], ['name' => 'Planeta Rica', 'country_code' => 'CO'], ['name' => 'Nova Kakhovka', 'country_code' => 'UA'], ['name' => 'Korba', 'country_code' => 'TN'], ['name' => 'Bafia', 'country_code' => 'CM'], ['name' => 'Ko Samui', 'country_code' => 'TH'], ['name' => 'Lake Elsinore', 'country_code' => 'US'], ['name' => 'Infanta', 'country_code' => 'PH'], ['name' => 'Liuhe', 'country_code' => 'CN'], ['name' => 'Fulda', 'country_code' => 'DE'], ['name' => 'Kamsar', 'country_code' => 'GN'], ['name' => 'Huishi', 'country_code' => 'CN'], ['name' => 'Daytona Beach', 'country_code' => 'US'], ['name' => 'Necocli', 'country_code' => 'CO'], ['name' => 'Yanghe', 'country_code' => 'CN'], ['name' => 'Minusinsk', 'country_code' => 'RU'], ['name' => 'Mocuba', 'country_code' => 'MZ'], ['name' => 'Ararangua', 'country_code' => 'BR'], ['name' => 'Cosenza', 'country_code' => 'IT'], ['name' => 'Purisima de Bustos', 'country_code' => 'MX'], ['name' => 'Los Lunas', 'country_code' => 'US'], ['name' => 'Mocuba', 'country_code' => 'MZ'], ['name' => 'Sosnovyy Bor', 'country_code' => 'RU'], ['name' => 'Dinslaken', 'country_code' => 'DE'], ['name' => 'Chulucanas', 'country_code' => 'PE'], ['name' => 'Aalen', 'country_code' => 'DE'], ['name' => 'Say un', 'country_code' => 'YE'], ['name' => 'Sousa', 'country_code' => 'BR'], ['name' => 'Al Ahmadi', 'country_code' => 'KW'], ['name' => 'Glogow', 'country_code' => 'PL'], ['name' => 'Wum', 'country_code' => 'CM'], ['name' => 'Lima', 'country_code' => 'US'], ['name' => 'Mococa', 'country_code' => 'BR'], ['name' => 'Decatur', 'country_code' => 'US'], ['name' => 'Rocklin', 'country_code' => 'US'], ['name' => 'Carles', 'country_code' => 'PH'], ['name' => 'Kati', 'country_code' => 'ML'], ['name' => 'Limay', 'country_code' => 'PH'], ['name' => 'Rogers', 'country_code' => 'US'], ['name' => 'Zapotlanejo', 'country_code' => 'MX'], ['name' => 'Doboj', 'country_code' => 'BA'], ['name' => 'Hihya', 'country_code' => 'EG'], ['name' => 'Drummondville', 'country_code' => 'CA'], ['name' => 'Stafford', 'country_code' => 'GB'], ['name' => 'Lippstadt', 'country_code' => 'DE'], ['name' => 'Castle Rock', 'country_code' => 'US'], ['name' => 'Otukpo', 'country_code' => 'NG'], ['name' => 'Matruh', 'country_code' => 'EG'], ['name' => 'Ash Shihr', 'country_code' => 'YE'], ['name' => 'Chengjiao Chengguanzhen', 'country_code' => 'CN'], ['name' => 'Tuymazy', 'country_code' => 'RU'], ['name' => 'Turkmenbasy', 'country_code' => 'TM'], ['name' => 'Lodja', 'country_code' => 'CD'], ['name' => 'Fernandopolis', 'country_code' => 'BR'], ['name' => 'Lala Musa', 'country_code' => 'PK'], ['name' => 'Oas', 'country_code' => 'PH'], ['name' => 'Lala', 'country_code' => 'PH'], ['name' => 'Conceicao do Coite', 'country_code' => 'BR'], ['name' => 'Xinhua', 'country_code' => 'CN'], ['name' => 'Hanover', 'country_code' => 'US'], ['name' => 'Bossier City', 'country_code' => 'US'], ['name' => 'Dubuque', 'country_code' => 'US'], ['name' => 'Przemysl', 'country_code' => 'PL'], ['name' => 'Rockville', 'country_code' => 'US'], ['name' => 'Victoria', 'country_code' => 'US'], ['name' => 'Siasi', 'country_code' => 'PH'], ['name' => 'Saratoga Springs', 'country_code' => 'US'], ['name' => 'Wanzhuang', 'country_code' => 'CN'], ['name' => 'Erd', 'country_code' => 'HU'], ['name' => 'Miagao', 'country_code' => 'PH'], ['name' => 'Kstovo', 'country_code' => 'RU'], ['name' => 'Viterbo', 'country_code' => 'IT'], ['name' => 'Orani', 'country_code' => 'PH'], ['name' => 'Dalaguete', 'country_code' => 'PH'], ['name' => 'Trapani', 'country_code' => 'IT'], ['name' => 'Tepotzotlan', 'country_code' => 'MX'], ['name' => 'Tzaneen', 'country_code' => 'ZA'], ['name' => 'Ames', 'country_code' => 'US'], ['name' => 'Zanhuang', 'country_code' => 'CN'], ['name' => 'West Des Moines', 'country_code' => 'US'], ['name' => 'Comonfort', 'country_code' => 'MX'], ['name' => 'Tumauini', 'country_code' => 'PH'], ['name' => 'Ban Suan', 'country_code' => 'TH'], ['name' => 'Tinambac', 'country_code' => 'PH'], ['name' => 'Islahiye', 'country_code' => 'TR'], ['name' => 'Embu-Guacu', 'country_code' => 'BR'], ['name' => 'Bugallon', 'country_code' => 'PH'], ['name' => 'Sagunto', 'country_code' => 'ES'], ['name' => 'Yuquan', 'country_code' => 'CN'], ['name' => 'Yorba Linda', 'country_code' => 'US'], ['name' => 'Kashima', 'country_code' => 'JP'], ['name' => 'Santa Catarina Otzolotepec', 'country_code' => 'MX'], ['name' => 'Bergen op Zoom', 'country_code' => 'NL'], ['name' => 'Binalbagan', 'country_code' => 'PH'], ['name' => 'Manaure', 'country_code' => 'CO'], ['name' => 'Casper', 'country_code' => 'US'], ['name' => 'Saint John', 'country_code' => 'CA'], ['name' => 'Lushar', 'country_code' => 'CN'], ['name' => 'Hashima', 'country_code' => 'JP'], ['name' => 'Soio', 'country_code' => 'AO'], ['name' => 'Balingasag', 'country_code' => 'PH'], ['name' => 'Palatine', 'country_code' => 'US'], ['name' => 'Corvallis', 'country_code' => 'US'], ['name' => 'Herford', 'country_code' => 'DE'], ['name' => 'Talibon', 'country_code' => 'PH'], ['name' => 'Camalig', 'country_code' => 'PH'], ['name' => 'Oktyabrskiy', 'country_code' => 'RU'], ['name' => 'Ankeny', 'country_code' => 'US'], ['name' => 'Koratla', 'country_code' => 'IN'], ['name' => 'Sa ada', 'country_code' => 'MA'], ['name' => 'Weiyuan', 'country_code' => 'CN'], ['name' => 'San Pedro Sacatepequez', 'country_code' => 'GT'], ['name' => 'Rowlett', 'country_code' => 'US'], ['name' => 'Kissidougou', 'country_code' => 'GN'], ['name' => 'Guangping', 'country_code' => 'CN'], ['name' => 'Lakeville', 'country_code' => 'US'], ['name' => 'Yachimata', 'country_code' => 'JP'], ['name' => 'Caico', 'country_code' => 'BR'], ['name' => 'Tejen', 'country_code' => 'TM'], ['name' => 'Pelileo', 'country_code' => 'EC'], ['name' => 'Cawayan', 'country_code' => 'PH'], ['name' => 'Don Carlos', 'country_code' => 'PH'], ['name' => 'Cosmopolis', 'country_code' => 'BR'], ['name' => 'San Fernando', 'country_code' => 'PH'], ['name' => 'Moita', 'country_code' => 'PT'], ['name' => 'Alpharetta', 'country_code' => 'US'], ['name' => 'Rio Negro', 'country_code' => 'BR'], ['name' => 'Bagumbayan', 'country_code' => 'PH'], ['name' => 'Aflao', 'country_code' => 'GH'], ['name' => 'Longview', 'country_code' => 'US'], ['name' => 'Vidnoye', 'country_code' => 'RU'], ['name' => 'Guines', 'country_code' => 'CU'], ['name' => 'Pigcawayan', 'country_code' => 'PH'], ['name' => 'DeKalb', 'country_code' => 'US'], ['name' => 'Pabianice', 'country_code' => 'PL'], ['name' => 'Petaluma', 'country_code' => 'US'], ['name' => 'Pulivendla', 'country_code' => 'IN'], ['name' => 'Kerpen', 'country_code' => 'DE'], ['name' => 'Hit', 'country_code' => 'IQ'], ['name' => 'San Pascual', 'country_code' => 'PH'], ['name' => 'Las Heras', 'country_code' => 'AR'], ['name' => 'Belogorsk', 'country_code' => 'RU'], ['name' => 'Saiki', 'country_code' => 'JP'], ['name' => 'Huinan', 'country_code' => 'CN'], ['name' => 'Russelsheim', 'country_code' => 'DE'], ['name' => 'Pinamungahan', 'country_code' => 'PH'], ['name' => 'Ishim', 'country_code' => 'RU'], ['name' => 'Caledon', 'country_code' => 'CA'], ['name' => 'Gukovo', 'country_code' => 'RU'], ['name' => 'Indang', 'country_code' => 'PH'], ['name' => 'P yongsan', 'country_code' => 'KP'], ['name' => 'Urla', 'country_code' => 'TR'], ['name' => 'Brookes Point', 'country_code' => 'PH'], ['name' => 'Kalush', 'country_code' => 'UA'], ['name' => 'Stupino', 'country_code' => 'RU'], ['name' => 'Huquan', 'country_code' => 'CN'], ['name' => 'Laguna Niguel', 'country_code' => 'US'], ['name' => 'Eagan', 'country_code' => 'US'], ['name' => 'Ferrol', 'country_code' => 'ES'], ['name' => 'Slavyansk-na-Kubani', 'country_code' => 'RU'], ['name' => 'Ilo', 'country_code' => 'PE'], ['name' => 'Kenner', 'country_code' => 'US'], ['name' => 'Itaberaba', 'country_code' => 'BR'], ['name' => 'Esperanza', 'country_code' => 'PH'], ['name' => 'Hermosa', 'country_code' => 'PH'], ['name' => 'Kungur', 'country_code' => 'RU'], ['name' => 'Lencois Paulista', 'country_code' => 'BR'], ['name' => 'Sodo', 'country_code' => 'ET'], ['name' => 'Obera', 'country_code' => 'AR'], ['name' => 'Uniao dos Palmares', 'country_code' => 'BR'], ['name' => 'Sindelfingen', 'country_code' => 'DE'], ['name' => 'Bay City', 'country_code' => 'US'], ['name' => 'Most', 'country_code' => 'CZ'], ['name' => 'Seraing', 'country_code' => 'BE'], ['name' => 'Venancio Aires', 'country_code' => 'BR'], ['name' => 'San Francisco El Alto', 'country_code' => 'GT'], ['name' => 'Xibang', 'country_code' => 'CN'], ['name' => 'Lahat', 'country_code' => 'ID'], ['name' => 'Armur', 'country_code' => 'IN'], ['name' => 'Menzel Temime', 'country_code' => 'TN'], ['name' => 'North Little Rock', 'country_code' => 'US'], ['name' => 'Sammamish', 'country_code' => 'US'], ['name' => 'Martil', 'country_code' => 'MA'], ['name' => 'Santo Tome', 'country_code' => 'AR'], ['name' => 'Aparri', 'country_code' => 'PH'], ['name' => 'Montenegro', 'country_code' => 'BR'], ['name' => 'Weimar', 'country_code' => 'DE'], ['name' => 'Lupon', 'country_code' => 'PH'], ['name' => 'Shawnee', 'country_code' => 'US'], ['name' => 'Jupiter', 'country_code' => 'US'], ['name' => 'Old Bridge', 'country_code' => 'US'], ['name' => 'Ina', 'country_code' => 'JP'], ['name' => 'Tupa', 'country_code' => 'BR'], ['name' => 'Doral', 'country_code' => 'US'], ['name' => 'Pililla', 'country_code' => 'PH'], ['name' => 'San Leonardo', 'country_code' => 'PH'], ['name' => 'Zarechnyy', 'country_code' => 'RU'], ['name' => 'Carbondale', 'country_code' => 'US'], ['name' => 'Daule', 'country_code' => 'EC'], ['name' => 'Juventino Rosas', 'country_code' => 'MX'], ['name' => 'Blaine', 'country_code' => 'US'], ['name' => 'Bordj Menaiel', 'country_code' => 'DZ'], ['name' => 'St. Albert', 'country_code' => 'CA'], ['name' => 'Pavlovskiy Posad', 'country_code' => 'RU'], ['name' => 'Weirton', 'country_code' => 'US'], ['name' => 'Plauen', 'country_code' => 'DE'], ['name' => 'Franklin', 'country_code' => 'US'], ['name' => 'Castillejos', 'country_code' => 'PH'], ['name' => 'Tulare', 'country_code' => 'US'], ['name' => 'Leszno', 'country_code' => 'PL'], ['name' => 'Bourges', 'country_code' => 'FR'], ['name' => 'Ico', 'country_code' => 'BR'], ['name' => 'Beloretsk', 'country_code' => 'RU'], ['name' => 'Jaisalmer', 'country_code' => 'IN'], ['name' => 'Valence', 'country_code' => 'FR'], ['name' => 'Boras', 'country_code' => 'SE'], ['name' => 'Pessac', 'country_code' => 'FR'], ['name' => 'Ishimbay', 'country_code' => 'RU'], ['name' => 'Roxas', 'country_code' => 'PH'], ['name' => 'Korosten', 'country_code' => 'UA'], ['name' => 'Wellington', 'country_code' => 'US'], ['name' => 'Pflugerville', 'country_code' => 'US'], ['name' => 'Birnin Konni', 'country_code' => 'NE'], ['name' => 'Palo Alto', 'country_code' => 'US'], ['name' => 'Cuyapo', 'country_code' => 'PH'], ['name' => 'Middletown', 'country_code' => 'US'], ['name' => 'Neuwied', 'country_code' => 'DE'], ['name' => 'Zeist', 'country_code' => 'NL'], ['name' => 'Torquay', 'country_code' => 'GB'], ['name' => 'Bhairahawa', 'country_code' => 'NP'], ['name' => 'Halabjah', 'country_code' => 'IQ'], ['name' => 'Chunian', 'country_code' => 'PK'], ['name' => 'Mecheria', 'country_code' => 'DZ'], ['name' => 'Marinilla', 'country_code' => 'CO'], ['name' => 'Great Falls', 'country_code' => 'US'], ['name' => 'Esquipulas', 'country_code' => 'GT'], ['name' => 'Sipocot', 'country_code' => 'PH'], ['name' => 'Dormagen', 'country_code' => 'DE'], ['name' => 'Caripito', 'country_code' => 'VE'], ['name' => 'Michigan City', 'country_code' => 'US'], ['name' => 'Pokrovsk', 'country_code' => 'UA'], ['name' => 'Santa Catarina Pinula', 'country_code' => 'GT'], ['name' => 'San Mateo', 'country_code' => 'PH'], ['name' => 'Svyetlahorsk', 'country_code' => 'BY'], ['name' => 'Rosenheim', 'country_code' => 'DE'], ['name' => 'Bucak', 'country_code' => 'TR'], ['name' => 'Hornchurch', 'country_code' => 'GB'], ['name' => 'Donskoy', 'country_code' => 'RU'], ['name' => 'Tadepalle', 'country_code' => 'IN'], ['name' => 'La Carlota', 'country_code' => 'PH'], ['name' => 'Agoo', 'country_code' => 'PH'], ['name' => 'Eden Prairie', 'country_code' => 'US'], ['name' => 'Port Orange', 'country_code' => 'US'], ['name' => 'Neubrandenburg', 'country_code' => 'DE'], ['name' => 'Dublin', 'country_code' => 'US'], ['name' => 'Gadwal', 'country_code' => 'IN'], ['name' => 'Rafha', 'country_code' => 'SA'], ['name' => 'Grand Forks', 'country_code' => 'US'], ['name' => 'Santo Domingo Tehuantepec', 'country_code' => 'MX'], ['name' => 'Binga', 'country_code' => 'CD'], ['name' => 'Alamada', 'country_code' => 'PH'], ['name' => 'Noblesville', 'country_code' => 'US'], ['name' => 'Chokwe', 'country_code' => 'MZ'], ['name' => 'Jatani', 'country_code' => 'IN'], ['name' => 'Cruz das Almas', 'country_code' => 'BR'], ['name' => 'Rahat', 'country_code' => 'IL'], ['name' => 'Rizal', 'country_code' => 'PH'], ['name' => 'Apaseo el Alto', 'country_code' => 'MX'], ['name' => 'Qinggang', 'country_code' => 'CN'], ['name' => 'La Paz', 'country_code' => 'PH'], ['name' => 'San Felipe', 'country_code' => 'CL'], ['name' => 'Vittoria', 'country_code' => 'IT'], ['name' => 'San Clemente', 'country_code' => 'US'], ['name' => 'Santiago Tianguistenco', 'country_code' => 'MX'], ['name' => 'Brentwood', 'country_code' => 'US'], ['name' => 'Carmichael', 'country_code' => 'US'], ['name' => 'Lingshou', 'country_code' => 'CN'], ['name' => 'Bongabon', 'country_code' => 'PH'], ['name' => 'Ouricuri', 'country_code' => 'BR'], ['name' => 'Irun', 'country_code' => 'ES'], ['name' => 'Pomezia', 'country_code' => 'IT'], ['name' => 'Sittingbourne', 'country_code' => 'GB'], ['name' => 'Cienaga de Oro', 'country_code' => 'CO'], ['name' => 'Ghardimaou', 'country_code' => 'TN'], ['name' => 'Crotone', 'country_code' => 'IT'], ['name' => 'Sandefjord', 'country_code' => 'NO'], ['name' => 'Victoria', 'country_code' => 'PH'], ['name' => 'Bamei', 'country_code' => 'CN'], ['name' => 'Janiuay', 'country_code' => 'PH'], ['name' => 'Zvornik', 'country_code' => 'BA'], ['name' => 'Aliaga', 'country_code' => 'PH'], ['name' => 'Grevenbroich', 'country_code' => 'DE'], ['name' => 'Asbest', 'country_code' => 'RU'], ['name' => 'Povoa de Varzim', 'country_code' => 'PT'], ['name' => 'Penedo', 'country_code' => 'BR'], ['name' => 'Bandar-e Genaveh', 'country_code' => 'IR'], ['name' => 'Eastvale', 'country_code' => 'US'], ['name' => 'Tuburan', 'country_code' => 'PH'], ['name' => 'Nawa', 'country_code' => 'SY'], ['name' => 'Kangbao', 'country_code' => 'CN'], ['name' => 'Benevides', 'country_code' => 'BR'], ['name' => 'At Tall', 'country_code' => 'SY'], ['name' => 'Chapel Hill', 'country_code' => 'US'], ['name' => 'Tome-Acu', 'country_code' => 'BR'], ['name' => 'Rosales', 'country_code' => 'PH'], ['name' => 'Rocky Mount', 'country_code' => 'US'], ['name' => 'Lugano', 'country_code' => 'CH'], ['name' => 'Haverhill', 'country_code' => 'US'], ['name' => 'Asahi', 'country_code' => 'JP'], ['name' => 'Mauban', 'country_code' => 'PH'], ['name' => 'Mahdasht', 'country_code' => 'IR'], ['name' => 'San Jose de Bocay', 'country_code' => 'NI'], ['name' => 'Gaya', 'country_code' => 'NE'], ['name' => 'Vigevano', 'country_code' => 'IT'], ['name' => 'Klintsy', 'country_code' => 'RU'], ['name' => 'Nagcarlan', 'country_code' => 'PH'], ['name' => 'Woking', 'country_code' => 'GB'], ['name' => 'Zarand', 'country_code' => 'IR'], ['name' => 'Kurihara', 'country_code' => 'JP'], ['name' => 'Beloit', 'country_code' => 'US'], ['name' => 'Hilongos', 'country_code' => 'PH'], ['name' => 'Quimper', 'country_code' => 'FR'], ['name' => 'Nankana Sahib', 'country_code' => 'PK'], ['name' => 'Velika Gorica', 'country_code' => 'HR'], ['name' => 'Gloucester', 'country_code' => 'US'], ['name' => 'Guiglo', 'country_code' => 'CI'], ['name' => 'Atimonan', 'country_code' => 'PH'], ['name' => 'Chincha Alta', 'country_code' => 'PE'], ['name' => 'Palmares', 'country_code' => 'BR'], ['name' => 'Goa', 'country_code' => 'PH'], ['name' => 'Bay', 'country_code' => 'PH'], ['name' => 'San Juan de Sabinas', 'country_code' => 'MX'], ['name' => 'Wenxicun', 'country_code' => 'CN'], ['name' => 'Budennovsk', 'country_code' => 'RU'], ['name' => 'Glens Falls', 'country_code' => 'US'], ['name' => 'Graaff-Reinet', 'country_code' => 'ZA'], ['name' => 'Ain Sefra', 'country_code' => 'DZ'], ['name' => 'Saravia', 'country_code' => 'PH'], ['name' => 'Tigbauan', 'country_code' => 'PH'], ['name' => 'Herten', 'country_code' => 'DE'], ['name' => 'Granby', 'country_code' => 'CA'], ['name' => 'Carrara', 'country_code' => 'IT'], ['name' => 'Shiroi', 'country_code' => 'JP'], ['name' => 'Tangub', 'country_code' => 'PH'], ['name' => 'Nago', 'country_code' => 'JP'], ['name' => 'Roeselare', 'country_code' => 'BE'], ['name' => 'Chelm', 'country_code' => 'PL'], ['name' => 'Santo Antonio do Descoberto', 'country_code' => 'BR'], ['name' => 'Lutayan', 'country_code' => 'PH'], ['name' => 'Medicine Hat', 'country_code' => 'CA'], ['name' => 'Fairbanks', 'country_code' => 'US'], ['name' => 'Volsk', 'country_code' => 'RU'], ['name' => 'Springfield', 'country_code' => 'US'], ['name' => 'Bethesda', 'country_code' => 'US'], ['name' => 'Rhondda', 'country_code' => 'GB'], ['name' => 'Novaya Balakhna', 'country_code' => 'RU'], ['name' => 'Grande Prairie', 'country_code' => 'CA'], ['name' => 'Villasis', 'country_code' => 'PH'], ['name' => 'Oudtshoorn', 'country_code' => 'ZA'], ['name' => 'Johnstown', 'country_code' => 'US'], ['name' => 'Bannu', 'country_code' => 'PK'], ['name' => 'Kapatagan', 'country_code' => 'PH'], ['name' => 'Lomza', 'country_code' => 'PL'], ['name' => 'Puerto Asis', 'country_code' => 'CO'], ['name' => 'Igarape-Miri', 'country_code' => 'BR'], ['name' => 'West Hartford', 'country_code' => 'US'], ['name' => 'Caldiran', 'country_code' => 'TR'], ['name' => 'Balboa Heights', 'country_code' => 'PA'], ['name' => 'Kasongo', 'country_code' => 'CD'], ['name' => 'Dundalk', 'country_code' => 'US'], ['name' => 'Castro Valley', 'country_code' => 'US'], ['name' => 'Coon Rapids', 'country_code' => 'US'], ['name' => 'Elmira', 'country_code' => 'US'], ['name' => 'Palmela', 'country_code' => 'PT'], ['name' => 'Portel', 'country_code' => 'BR'], ['name' => 'Yurimaguas', 'country_code' => 'PE'], ['name' => 'Deva', 'country_code' => 'RO'], ['name' => 'Mankato', 'country_code' => 'US'], ['name' => 'Nkawkaw', 'country_code' => 'GH'], ['name' => 'Albany', 'country_code' => 'US'], ['name' => 'Mut', 'country_code' => 'TR'], ['name' => 'Cruz Alta', 'country_code' => 'BR'], ['name' => 'Rossosh', 'country_code' => 'RU'], ['name' => 'Palin', 'country_code' => 'GT'], ['name' => 'Camaqua', 'country_code' => 'BR'], ['name' => 'Kolomyia', 'country_code' => 'UA'], ['name' => 'Cajica', 'country_code' => 'CO'], ['name' => 'Margate', 'country_code' => 'GB'], ['name' => 'Revda', 'country_code' => 'RU'], ['name' => 'Borisoglebsk', 'country_code' => 'RU'], ['name' => 'Kotlas', 'country_code' => 'RU'], ['name' => 'Encinitas', 'country_code' => 'US'], ['name' => 'Montelimar', 'country_code' => 'FR'], ['name' => 'Runcorn', 'country_code' => 'GB'], ['name' => 'Zelenogorsk', 'country_code' => 'RU'], ['name' => 'Leander', 'country_code' => 'US'], ['name' => 'Shangtangcun', 'country_code' => 'CN'], ['name' => 'Mobarakeh', 'country_code' => 'IR'], ['name' => 'Greenwich', 'country_code' => 'US'], ['name' => 'Leninogorsk', 'country_code' => 'RU'], ['name' => 'Wels', 'country_code' => 'AT'], ['name' => 'Parkersburg', 'country_code' => 'US'], ['name' => 'Kayes', 'country_code' => 'CG'], ['name' => 'Tendo', 'country_code' => 'JP'], ['name' => 'Villa Carlos Paz', 'country_code' => 'AR'], ['name' => 'Waltham', 'country_code' => 'US'], ['name' => 'Isabela', 'country_code' => 'PH'], ['name' => 'Menzel Bourguiba', 'country_code' => 'TN'], ['name' => 'Patikul', 'country_code' => 'PH'], ['name' => 'Caltanissetta', 'country_code' => 'IT'], ['name' => 'Tanjungpandan', 'country_code' => 'ID'], ['name' => 'Tefe', 'country_code' => 'BR'], ['name' => 'Riosucio', 'country_code' => 'CO'], ['name' => 'Tarnowskie Gory', 'country_code' => 'PL'], ['name' => 'Parang', 'country_code' => 'PH'], ['name' => 'Morecambe', 'country_code' => 'GB'], ['name' => 'Boryspil', 'country_code' => 'UA'], ['name' => 'Port Charlotte', 'country_code' => 'US'], ['name' => 'Tuapse', 'country_code' => 'RU'], ['name' => 'Xinzhai', 'country_code' => 'CN'], ['name' => 'Palm Harbor', 'country_code' => 'US'], ['name' => 'Ocoyoacac', 'country_code' => 'MX'], ['name' => 'Dajabon', 'country_code' => 'DO'], ['name' => 'San Luis Obispo', 'country_code' => 'US'], ['name' => 'Figueira da Foz', 'country_code' => 'PT'], ['name' => 'Senahu', 'country_code' => 'GT'], ['name' => 'Nahuala', 'country_code' => 'GT'], ['name' => 'Meihua', 'country_code' => 'CN'], ['name' => 'Benevento', 'country_code' => 'IT'], ['name' => 'Bergheim', 'country_code' => 'DE'], ['name' => 'Sebring', 'country_code' => 'US'], ['name' => 'Chistopol', 'country_code' => 'RU'], ['name' => 'Panzos', 'country_code' => 'GT'], ['name' => 'Itoman', 'country_code' => 'JP'], ['name' => 'Puerto Penasco', 'country_code' => 'MX'], ['name' => 'Council Bluffs', 'country_code' => 'US'], ['name' => 'Sao Gabriel', 'country_code' => 'BR'], ['name' => 'Penapolis', 'country_code' => 'BR'], ['name' => 'Itapecuru Mirim', 'country_code' => 'BR'], ['name' => 'Ipira', 'country_code' => 'BR'], ['name' => 'Roxas', 'country_code' => 'PH'], ['name' => 'Naro-Fominsk', 'country_code' => 'RU'], ['name' => 'Hamilton', 'country_code' => 'US'], ['name' => 'Asker', 'country_code' => 'NO'], ['name' => 'Viareggio', 'country_code' => 'IT'], ['name' => 'Ferkessedougou', 'country_code' => 'CI'], ['name' => 'Moore', 'country_code' => 'US'], ['name' => 'Zaraza', 'country_code' => 'VE'], ['name' => 'San Francisco', 'country_code' => 'AR'], ['name' => 'Casa Grande', 'country_code' => 'US'], ['name' => 'Lantapan', 'country_code' => 'PH'], ['name' => 'Monessen', 'country_code' => 'US'], ['name' => 'San Antonio del Tachira', 'country_code' => 'VE'], ['name' => 'Mielec', 'country_code' => 'PL'], ['name' => 'Polevskoy', 'country_code' => 'RU'], ['name' => 'Plato', 'country_code' => 'CO'], ['name' => 'Satbayev', 'country_code' => 'KZ'], ['name' => 'Piripiri', 'country_code' => 'BR'], ['name' => 'Sarandi', 'country_code' => 'AR'], ['name' => 'Derik', 'country_code' => 'TR'], ['name' => 'Heroica Caborca', 'country_code' => 'MX'], ['name' => 'Opol', 'country_code' => 'PH'], ['name' => 'Ar Rastan', 'country_code' => 'SY'], ['name' => 'Aisai', 'country_code' => 'JP'], ['name' => 'Santo Amaro', 'country_code' => 'BR'], ['name' => 'Tuao', 'country_code' => 'PH'], ['name' => 'Carepa', 'country_code' => 'CO'], ['name' => 'Lysva', 'country_code' => 'RU'], ['name' => 'Viseu', 'country_code' => 'BR'], ['name' => 'Trikala', 'country_code' => 'GR'], ['name' => 'Coroata', 'country_code' => 'BR'], ['name' => 'Buenavista', 'country_code' => 'PH'], ['name' => 'Fairfield', 'country_code' => 'US'], ['name' => 'Friedrichshafen', 'country_code' => 'DE'], ['name' => 'Xinmin', 'country_code' => 'CN'], ['name' => 'Schwabisch Gmund', 'country_code' => 'DE'], ['name' => 'Rubizhne', 'country_code' => 'UA'], ['name' => 'St. Thomas', 'country_code' => 'CA'], ['name' => 'Aurora', 'country_code' => 'PH'], ['name' => 'Sibay', 'country_code' => 'RU'], ['name' => 'Sawahlunto', 'country_code' => 'ID'], ['name' => 'Laoang', 'country_code' => 'PH'], ['name' => 'Airdrie', 'country_code' => 'CA'], ['name' => 'Wanparti', 'country_code' => 'IN'], ['name' => 'Guapimirim', 'country_code' => 'BR'], ['name' => 'Iztapa', 'country_code' => 'GT'], ['name' => 'Uzunkopru', 'country_code' => 'TR'], ['name' => 'Cajazeiras', 'country_code' => 'BR'], ['name' => 'Rome', 'country_code' => 'US'], ['name' => 'Garbsen', 'country_code' => 'DE'], ['name' => 'Fano', 'country_code' => 'IT'], ['name' => 'Millcreek', 'country_code' => 'US'], ['name' => 'Sanford', 'country_code' => 'US'], ['name' => 'Slutsk', 'country_code' => 'BY'], ['name' => 'Zamora', 'country_code' => 'ES'], ['name' => 'Carazinho', 'country_code' => 'BR'], ['name' => 'Vacaria', 'country_code' => 'BR'], ['name' => 'Hurth', 'country_code' => 'DE'], ['name' => 'Mayaguez', 'country_code' => 'PR'], ['name' => 'Burnsville', 'country_code' => 'US'], ['name' => 'Acarau', 'country_code' => 'BR'], ['name' => 'Montauban', 'country_code' => 'FR'], ['name' => 'Kiamba', 'country_code' => 'PH'], ['name' => 'Candon', 'country_code' => 'PH'], ['name' => 'Morristown', 'country_code' => 'US'], ['name' => 'Halton Hills', 'country_code' => 'CA'], ['name' => 'Reston', 'country_code' => 'US'], ['name' => 'Barra do Garcas', 'country_code' => 'BR'], ['name' => 'Idiofa', 'country_code' => 'CD'], ['name' => 'Sonbong', 'country_code' => 'KP'], ['name' => 'Skhirate', 'country_code' => 'MA'], ['name' => 'Quezon', 'country_code' => 'PH'], ['name' => 'Lakewood', 'country_code' => 'US'], ['name' => 'Nahariyya', 'country_code' => 'IL'], ['name' => 'Acerra', 'country_code' => 'IT'], ['name' => 'Bezerros', 'country_code' => 'BR'], ['name' => 'Yongyang', 'country_code' => 'CN'], ['name' => 'Hamden', 'country_code' => 'US'], ['name' => 'Spring', 'country_code' => 'US'], ['name' => 'Stralsund', 'country_code' => 'DE'], ['name' => 'Gadsden', 'country_code' => 'US'], ['name' => 'Chalkida', 'country_code' => 'GR'], ['name' => 'Taylor', 'country_code' => 'US'], ['name' => 'Novi', 'country_code' => 'US'], ['name' => 'Marietta', 'country_code' => 'US'], ['name' => 'Villamaria', 'country_code' => 'CO'], ['name' => 'Montemorelos', 'country_code' => 'MX'], ['name' => 'Wesel', 'country_code' => 'DE'], ['name' => 'Tartagal', 'country_code' => 'AR'], ['name' => 'Bansalan', 'country_code' => 'PH'], ['name' => 'Shihe', 'country_code' => 'CN'], ['name' => 'Hot Springs', 'country_code' => 'US'], ['name' => 'Koga', 'country_code' => 'JP'], ['name' => 'Dongcun', 'country_code' => 'CN'], ['name' => 'Belchatow', 'country_code' => 'PL'], ['name' => 'Druzhkivka', 'country_code' => 'UA'], ['name' => 'Soasio', 'country_code' => 'ID'], ['name' => 'Santa Barbara', 'country_code' => 'PH'], ['name' => 'Batatais', 'country_code' => 'BR'], ['name' => 'Autlan de Navarro', 'country_code' => 'MX'], ['name' => 'Calinog', 'country_code' => 'PH'], ['name' => 'Savona', 'country_code' => 'IT'], ['name' => 'Sibalom', 'country_code' => 'PH'], ['name' => 'Woodland', 'country_code' => 'US'], ['name' => 'Kavala', 'country_code' => 'GR'], ['name' => 'Matera', 'country_code' => 'IT'], ['name' => 'Greifswald', 'country_code' => 'DE'], ['name' => 'Kumertau', 'country_code' => 'RU'], ['name' => 'Rzhev', 'country_code' => 'RU'], ['name' => 'Molfetta', 'country_code' => 'IT'], ['name' => 'Ponnuru', 'country_code' => 'IN'], ['name' => 'Yongbei', 'country_code' => 'CN'], ['name' => 'Belladere', 'country_code' => 'HT'], ['name' => 'San Vicente del Raspeig', 'country_code' => 'ES'], ['name' => 'Mossel Bay', 'country_code' => 'ZA'], ['name' => 'Bensalem', 'country_code' => 'US'], ['name' => 'Olbia', 'country_code' => 'IT'], ['name' => 'Xo jayli Shahri', 'country_code' => 'UZ'], ['name' => 'Offenburg', 'country_code' => 'DE'], ['name' => 'Sayanogorsk', 'country_code' => 'RU'], ['name' => 'Bor', 'country_code' => 'TR'], ['name' => 'Lakhdaria', 'country_code' => 'DZ'], ['name' => 'Langenfeld', 'country_code' => 'DE'], ['name' => 'Commerce City', 'country_code' => 'US'], ['name' => 'Obando', 'country_code' => 'PH'], ['name' => 'Belebey', 'country_code' => 'RU'], ['name' => 'Manhica', 'country_code' => 'MZ'], ['name' => 'Cristalina', 'country_code' => 'BR'], ['name' => 'Labinsk', 'country_code' => 'RU'], ['name' => 'Shimotsuke', 'country_code' => 'JP'], ['name' => 'Lianzhuang', 'country_code' => 'CN'], ['name' => 'South Hill', 'country_code' => 'US'], ['name' => 'Urus-Martan', 'country_code' => 'RU'], ['name' => 'Tecpan Guatemala', 'country_code' => 'GT'], ['name' => 'Suifenhe', 'country_code' => 'CN'], ['name' => 'Kapchagay', 'country_code' => 'KZ'], ['name' => 'Vinukonda', 'country_code' => 'IN'], ['name' => 'San Marcos', 'country_code' => 'CO'], ['name' => 'Angat', 'country_code' => 'PH'], ['name' => 'Frutal', 'country_code' => 'BR'], ['name' => 'Lagoa Santa', 'country_code' => 'BR'], ['name' => 'Plymouth', 'country_code' => 'US'], ['name' => 'Kribi', 'country_code' => 'CM'], ['name' => 'Chajari', 'country_code' => 'AR'], ['name' => 'Maues', 'country_code' => 'BR'], ['name' => 'Gubat', 'country_code' => 'PH'], ['name' => 'Limoeiro do Norte', 'country_code' => 'BR'], ['name' => 'Girardota', 'country_code' => 'CO'], ['name' => 'Itogon', 'country_code' => 'PH'], ['name' => 'Bristol', 'country_code' => 'US'], ['name' => 'Solano', 'country_code' => 'PH'], ['name' => 'Porirua', 'country_code' => 'NZ'], ['name' => 'Jose Panganiban', 'country_code' => 'PH'], ['name' => 'Columbus', 'country_code' => 'US'], ['name' => 'Asenovgrad', 'country_code' => 'BG'], ['name' => 'Hardenberg', 'country_code' => 'NL'], ['name' => 'Shuya', 'country_code' => 'RU'], ['name' => 'Jacunda', 'country_code' => 'BR'], ['name' => 'Huajiang', 'country_code' => 'CN'], ['name' => 'Comitancillo', 'country_code' => 'GT'], ['name' => 'Sibulan', 'country_code' => 'PH'], ['name' => 'Uriangato', 'country_code' => 'MX'], ['name' => 'Alcoy', 'country_code' => 'ES'], ['name' => 'Huehuetoca', 'country_code' => 'MX'], ['name' => 'Bangor', 'country_code' => 'US'], ['name' => 'Lesosibirsk', 'country_code' => 'RU'], ['name' => 'Zhoujiajing', 'country_code' => 'CN'], ['name' => 'Joso', 'country_code' => 'JP'], ['name' => 'Sao Miguel do Guama', 'country_code' => 'BR'], ['name' => 'Tezpur', 'country_code' => 'IN'], ['name' => 'Morong', 'country_code' => 'PH'], ['name' => 'Abuyog', 'country_code' => 'PH'], ['name' => 'Saint-Hyacinthe', 'country_code' => 'CA'], ['name' => 'Narasapur', 'country_code' => 'IN'], ['name' => 'Maasin', 'country_code' => 'PH'], ['name' => 'Pasrur', 'country_code' => 'PK'], ['name' => 'Niort', 'country_code' => 'FR'], ['name' => 'Agrigento', 'country_code' => 'IT'], ['name' => 'Nordre Fale', 'country_code' => 'NO'], ['name' => 'Chibuto', 'country_code' => 'MZ'], ['name' => 'Prokhladnyy', 'country_code' => 'RU'], ['name' => 'Cambanugoy', 'country_code' => 'PH'], ['name' => 'Yara', 'country_code' => 'CU'], ['name' => 'Esfarayen', 'country_code' => 'IR'], ['name' => 'Sayaxche', 'country_code' => 'GT'], ['name' => 'Moron', 'country_code' => 'CU'], ['name' => 'Greenwood', 'country_code' => 'US'], ['name' => 'Los Andes', 'country_code' => 'CL'], ['name' => 'Lucas do Rio Verde', 'country_code' => 'BR'], ['name' => 'Paracale', 'country_code' => 'PH'], ['name' => 'Hua Hin', 'country_code' => 'TH'], ['name' => 'Bartlett', 'country_code' => 'US'], ['name' => 'Bradenton', 'country_code' => 'US'], ['name' => 'Pontiac', 'country_code' => 'US'], ['name' => 'Staunton', 'country_code' => 'US'], ['name' => 'Neu-Ulm', 'country_code' => 'DE'], ['name' => 'Gannan', 'country_code' => 'CN'], ['name' => 'Baao', 'country_code' => 'PH'], ['name' => 'El Cua', 'country_code' => 'NI'], ['name' => 'Concepcion Tutuapa', 'country_code' => 'GT'], ['name' => 'Meriden', 'country_code' => 'US'], ['name' => 'Aleksandrov', 'country_code' => 'RU'], ['name' => 'Cachoeiras de Macacu', 'country_code' => 'BR'], ['name' => 'Clay', 'country_code' => 'US'], ['name' => 'Tahara', 'country_code' => 'JP'], ['name' => 'Zengcun', 'country_code' => 'CN'], ['name' => 'Apex', 'country_code' => 'US'], ['name' => 'Unna', 'country_code' => 'DE'], ['name' => 'Royal Oak', 'country_code' => 'US'], ['name' => 'Benton Harbor', 'country_code' => 'US'], ['name' => 'Chichibu', 'country_code' => 'JP'], ['name' => 'Tianningcun', 'country_code' => 'CN'], ['name' => 'Santa Maria Chiquimula', 'country_code' => 'GT'], ['name' => 'Kattaqo rg on Shahri', 'country_code' => 'UZ'], ['name' => 'Pamplona', 'country_code' => 'CO'], ['name' => 'Florida', 'country_code' => 'CO'], ['name' => 'Constanza', 'country_code' => 'DO'], ['name' => 'Metapan', 'country_code' => 'SV'], ['name' => 'Faenza', 'country_code' => 'IT'], ['name' => 'Bilhorod-Dnistrovskyi', 'country_code' => 'UA'], ['name' => 'Lower Merion', 'country_code' => 'US'], ['name' => 'Xikeng', 'country_code' => 'CN'], ['name' => 'Mamungan', 'country_code' => 'PH'], ['name' => 'Motril', 'country_code' => 'ES'], ['name' => 'St. Clair Shores', 'country_code' => 'US'], ['name' => 'Juruti', 'country_code' => 'BR'], ['name' => 'Buique', 'country_code' => 'BR'], ['name' => 'Kelibia', 'country_code' => 'TN'], ['name' => 'Cabatuan', 'country_code' => 'PH'], ['name' => 'Sandnes', 'country_code' => 'NO'], ['name' => 'Rass el Djebel', 'country_code' => 'TN'], ['name' => 'Des Plaines', 'country_code' => 'US'], ['name' => 'Lac-Brome', 'country_code' => 'CA'], ['name' => 'Lewiston', 'country_code' => 'US'], ['name' => 'Jovellanos', 'country_code' => 'CU'], ['name' => 'Midland', 'country_code' => 'US'], ['name' => 'Timargara', 'country_code' => 'PK'], ['name' => 'Mikhaylovka', 'country_code' => 'RU'], ['name' => 'Boufarik', 'country_code' => 'DZ'], ['name' => 'Santo Domingo', 'country_code' => 'PH'], ['name' => 'Izberbash', 'country_code' => 'RU'], ['name' => 'Sucun', 'country_code' => 'CN'], ['name' => 'Bowie', 'country_code' => 'US'], ['name' => 'Cerignola', 'country_code' => 'IT'], ['name' => 'Kas', 'country_code' => 'TR'], ['name' => 'Tlaltenango de Sanchez Roman', 'country_code' => 'MX'], ['name' => 'Avila', 'country_code' => 'ES'], ['name' => 'Aketi', 'country_code' => 'CD'], ['name' => 'Qaskeleng', 'country_code' => 'KZ'], ['name' => 'Palompon', 'country_code' => 'PH'], ['name' => 'Felgueiras', 'country_code' => 'PT'], ['name' => 'Tokoname', 'country_code' => 'JP'], ['name' => 'Rotorua', 'country_code' => 'NZ'], ['name' => 'Goppingen', 'country_code' => 'DE'], ['name' => 'Lambayeque', 'country_code' => 'PE'], ['name' => 'Iskitim', 'country_code' => 'RU'], ['name' => 'Guarabira', 'country_code' => 'BR'], ['name' => 'Caldwell', 'country_code' => 'US'], ['name' => 'Sunshi', 'country_code' => 'CN'], ['name' => 'San Pedro', 'country_code' => 'AR'], ['name' => 'Moncada', 'country_code' => 'PH'], ['name' => 'Ma erkang', 'country_code' => 'CN'], ['name' => 'San Rafael', 'country_code' => 'US'], ['name' => 'Moncalieri', 'country_code' => 'IT'], ['name' => 'Acu', 'country_code' => 'BR'], ['name' => 'San Fernando', 'country_code' => 'CL'], ['name' => 'Euskirchen', 'country_code' => 'DE'], ['name' => 'Serres', 'country_code' => 'GR'], ['name' => 'Jiantang', 'country_code' => 'CN'], ['name' => 'Ishikari', 'country_code' => 'JP'], ['name' => 'Punta Alta', 'country_code' => 'AR'], ['name' => 'La Gomera', 'country_code' => 'GT'], ['name' => 'Ragay', 'country_code' => 'PH'], ['name' => 'Kosai', 'country_code' => 'JP'], ['name' => 'Nyagan', 'country_code' => 'RU'], ['name' => 'Sirvan', 'country_code' => 'AZ'], ['name' => 'Barneveld', 'country_code' => 'NL'], ['name' => 'Huaniu', 'country_code' => 'CN'], ['name' => 'Santa Cruz', 'country_code' => 'PH'], ['name' => 'Hamburg', 'country_code' => 'US'], ['name' => 'Frankfurt (Oder)', 'country_code' => 'DE'], ['name' => 'Masantol', 'country_code' => 'PH'], ['name' => 'Richland', 'country_code' => 'US'], ['name' => 'Fredericton', 'country_code' => 'CA'], ['name' => 'Taal', 'country_code' => 'PH'], ['name' => 'Asingan', 'country_code' => 'PH'], ['name' => 'St. Peters', 'country_code' => 'US'], ['name' => 'Wesley Chapel', 'country_code' => 'US'], ['name' => 'Togane', 'country_code' => 'JP'], ['name' => 'Gengzhuangqiao', 'country_code' => 'CN'], ['name' => 'Monte Alegre', 'country_code' => 'BR'], ['name' => 'Heerhugowaard', 'country_code' => 'NL'], ['name' => 'San Remigio', 'country_code' => 'PH'], ['name' => 'Pula', 'country_code' => 'HR'], ['name' => 'Tikhvin', 'country_code' => 'RU'], ['name' => 'Castilla', 'country_code' => 'PH'], ['name' => 'Pradera', 'country_code' => 'CO'], ['name' => 'Roermond', 'country_code' => 'NL'], ['name' => 'Hendersonville', 'country_code' => 'US'], ['name' => 'Huntersville', 'country_code' => 'US'], ['name' => 'Mirassol', 'country_code' => 'BR'], ['name' => 'Southampton', 'country_code' => 'US'], ['name' => 'Xiezhou', 'country_code' => 'CN'], ['name' => 'Santee', 'country_code' => 'US'], ['name' => 'Hameln', 'country_code' => 'DE'], ['name' => 'Wagga Wagga', 'country_code' => 'AU'], ['name' => 'Meleuz', 'country_code' => 'RU'], ['name' => 'Livingston', 'country_code' => 'GB'], ['name' => 'Allanmyo', 'country_code' => 'MM'], ['name' => 'Malvar', 'country_code' => 'PH'], ['name' => 'Aleksin', 'country_code' => 'RU'], ['name' => 'Antonio Enes', 'country_code' => 'MZ'], ['name' => 'Berezovskiy', 'country_code' => 'RU'], ['name' => 'Ping an', 'country_code' => 'CN'], ['name' => 'Beckley', 'country_code' => 'US'], ['name' => 'Samalkot', 'country_code' => 'IN'], ['name' => 'Alexandroupoli', 'country_code' => 'GR'], ['name' => 'Titusville', 'country_code' => 'US'], ['name' => 'Cartersville', 'country_code' => 'US'], ['name' => 'Ypane', 'country_code' => 'PY'], ['name' => 'Sidi Yahya Zaer', 'country_code' => 'MA'], ['name' => 'Bedzin', 'country_code' => 'PL'], ['name' => 'Walla Walla', 'country_code' => 'US'], ['name' => 'Orland Park', 'country_code' => 'US'], ['name' => 'Ciudad Cuauhtemoc', 'country_code' => 'MX'], ['name' => 'Qianwu', 'country_code' => 'CN'], ['name' => 'Tikhoretsk', 'country_code' => 'RU'], ['name' => 'Kothapet', 'country_code' => 'IN'], ['name' => 'Towson', 'country_code' => 'US'], ['name' => 'Orito', 'country_code' => 'CO'], ['name' => 'Manchester', 'country_code' => 'US'], ['name' => 'Biala Podlaska', 'country_code' => 'PL'], ['name' => 'Botolan', 'country_code' => 'PH'], ['name' => 'Qunghirot', 'country_code' => 'UZ'], ['name' => 'Minokamo', 'country_code' => 'JP'], ['name' => 'Weymouth', 'country_code' => 'US'], ['name' => 'Campo Alegre', 'country_code' => 'BR'], ['name' => 'Ibitinga', 'country_code' => 'BR'], ['name' => 'Macherla', 'country_code' => 'IN'], ['name' => 'Pavlovo', 'country_code' => 'RU'], ['name' => 'Beauvais', 'country_code' => 'FR'], ['name' => 'Jerez de Garcia Salinas', 'country_code' => 'MX'], ['name' => 'Parker', 'country_code' => 'US'], ['name' => 'Linares', 'country_code' => 'ES'], ['name' => 'Palm Beach Gardens', 'country_code' => 'US'], ['name' => 'Ejmiatsin', 'country_code' => 'AM'], ['name' => 'Krasnotur insk', 'country_code' => 'RU'], ['name' => 'Bozeman', 'country_code' => 'US'], ['name' => 'Kandukur', 'country_code' => 'IN'], ['name' => 'Diriamba', 'country_code' => 'NI'], ['name' => 'Beni Enzar', 'country_code' => 'MA'], ['name' => 'Salsk', 'country_code' => 'RU'], ['name' => 'Sicuani', 'country_code' => 'PE'], ['name' => 'Kojske', 'country_code' => 'XK'], ['name' => 'New Plymouth', 'country_code' => 'NZ'], ['name' => 'Ilog', 'country_code' => 'PH'], ['name' => 'East Stroudsburg', 'country_code' => 'US'], ['name' => 'Milagros', 'country_code' => 'PH'], ['name' => 'Santiago Tuxtla', 'country_code' => 'MX'], ['name' => 'Nova Odessa', 'country_code' => 'BR'], ['name' => 'Taunton', 'country_code' => 'US'], ['name' => 'Istaravshan', 'country_code' => 'TJ'], ['name' => 'Khlong Luang', 'country_code' => 'TH'], ['name' => 'Midwest City', 'country_code' => 'US'], ['name' => 'Sankt Augustin', 'country_code' => 'DE'], ['name' => 'Stolberg', 'country_code' => 'DE'], ['name' => 'Tivoli', 'country_code' => 'IT'], ['name' => 'Damghan', 'country_code' => 'IR'], ['name' => 'Bobbili', 'country_code' => 'IN'], ['name' => 'Irpin', 'country_code' => 'UA'], ['name' => 'Sattenapalle', 'country_code' => 'IN'], ['name' => 'Krymsk', 'country_code' => 'RU'], ['name' => 'Andradina', 'country_code' => 'BR'], ['name' => 'Kudamatsu', 'country_code' => 'JP'], ['name' => 'San Jose de Ocoa', 'country_code' => 'DO'], ['name' => 'Goldsboro', 'country_code' => 'US'], ['name' => 'Azzaba', 'country_code' => 'DZ'], ['name' => 'Tikapur', 'country_code' => 'NP'], ['name' => 'Foligno', 'country_code' => 'IT'], ['name' => 'Vargem Grande', 'country_code' => 'BR'], ['name' => 'Euless', 'country_code' => 'US'], ['name' => 'Talagante', 'country_code' => 'CL'], ['name' => 'Shicun', 'country_code' => 'CN'], ['name' => 'Gorlitz', 'country_code' => 'DE'], ['name' => 'Pau d Alho', 'country_code' => 'BR'], ['name' => 'Pacos de Ferreira', 'country_code' => 'PT'], ['name' => 'Eschweiler', 'country_code' => 'DE'], ['name' => 'Vrindavan', 'country_code' => 'IN'], ['name' => 'Ribnita', 'country_code' => 'MD'], ['name' => 'Alenquer', 'country_code' => 'BR'], ['name' => 'Langenhagen', 'country_code' => 'DE'], ['name' => 'Manfredonia', 'country_code' => 'IT'], ['name' => 'Meerbusch', 'country_code' => 'DE'], ['name' => 'General Pico', 'country_code' => 'AR'], ['name' => 'Manhattan', 'country_code' => 'US'], ['name' => 'Irosin', 'country_code' => 'PH'], ['name' => 'Matanao', 'country_code' => 'PH'], ['name' => 'Shoreline', 'country_code' => 'US'], ['name' => 'Tres Pontas', 'country_code' => 'BR'], ['name' => 'Neryungri', 'country_code' => 'RU'], ['name' => 'Moreno', 'country_code' => 'BR'], ['name' => 'Tama', 'country_code' => 'JP'], ['name' => 'Puerto Boyaca', 'country_code' => 'CO'], ['name' => 'Jackson', 'country_code' => 'US'], ['name' => 'Kananya', 'country_code' => 'PH'], ['name' => 'Jinoba-an', 'country_code' => 'PH'], ['name' => 'Calatagan', 'country_code' => 'PH'], ['name' => 'Chini', 'country_code' => 'CN'], ['name' => 'Bagheria', 'country_code' => 'IT'], ['name' => 'Piscataway', 'country_code' => 'US'], ['name' => 'Brentwood', 'country_code' => 'GB'], ['name' => 'Clacton-on-Sea', 'country_code' => 'GB'], ['name' => 'Orion', 'country_code' => 'PH'], ['name' => 'Acambay', 'country_code' => 'MX'], ['name' => 'Lake Havasu City', 'country_code' => 'US'], ['name' => 'Cuneo', 'country_code' => 'IT'], ['name' => 'Waiblingen', 'country_code' => 'DE'], ['name' => 'Santa Cruz Verapaz', 'country_code' => 'GT'], ['name' => 'Gattaran', 'country_code' => 'PH'], ['name' => 'Taquaritinga', 'country_code' => 'BR'], ['name' => 'Tulunan', 'country_code' => 'PH'], ['name' => 'Bertioga', 'country_code' => 'BR'], ['name' => 'Smyrna', 'country_code' => 'US'], ['name' => 'Tonsberg', 'country_code' => 'NO'], ['name' => 'Quezaltepeque', 'country_code' => 'SV'], ['name' => 'Cui erzhuang', 'country_code' => 'CN'], ['name' => 'Santa Cruz', 'country_code' => 'PH'], ['name' => 'Opava', 'country_code' => 'CZ'], ['name' => 'Nogata', 'country_code' => 'JP'], ['name' => 'Taybad', 'country_code' => 'IR'], ['name' => 'Trani', 'country_code' => 'IT'], ['name' => 'Bianyang', 'country_code' => 'CN'], ['name' => 'Santa Ana', 'country_code' => 'PH'], ['name' => 'Cape Girardeau', 'country_code' => 'US'], ['name' => 'Bartolome Maso', 'country_code' => 'CU'], ['name' => 'Amealco', 'country_code' => 'MX'], ['name' => 'Uson', 'country_code' => 'PH'], ['name' => 'Hassa', 'country_code' => 'TR'], ['name' => 'Sao Francisco', 'country_code' => 'BR'], ['name' => 'Hohoe', 'country_code' => 'GH'], ['name' => 'Belampalli', 'country_code' => 'IN'], ['name' => 'Shali', 'country_code' => 'RU'], ['name' => 'Araci', 'country_code' => 'BR'], ['name' => 'Oosterhout', 'country_code' => 'NL'], ['name' => 'Xinqing', 'country_code' => 'CN'], ['name' => 'Blainville', 'country_code' => 'CA'], ['name' => 'Gulariya', 'country_code' => 'NP'], ['name' => 'Registro', 'country_code' => 'BR'], ['name' => 'Baganga', 'country_code' => 'PH'], ['name' => 'Antratsyt', 'country_code' => 'UA'], ['name' => 'Vranjak', 'country_code' => 'XK'], ['name' => 'Irati', 'country_code' => 'BR'], ['name' => 'Winneba', 'country_code' => 'GH'], ['name' => 'Xanthi', 'country_code' => 'GR'], ['name' => 'Los Amates', 'country_code' => 'GT'], ['name' => 'San Fernando', 'country_code' => 'PH'], ['name' => 'Longmen', 'country_code' => 'CN'], ['name' => 'Zarrin Shahr', 'country_code' => 'IR'], ['name' => 'Rosario', 'country_code' => 'PH'], ['name' => 'Lozova', 'country_code' => 'UA'], ['name' => 'Bisceglie', 'country_code' => 'IT'], ['name' => 'Khan Shaykhun', 'country_code' => 'SY'], ['name' => 'Kazanlak', 'country_code' => 'BG'], ['name' => 'Placer', 'country_code' => 'PH'], ['name' => 'Vorkuta', 'country_code' => 'RU'], ['name' => 'Medellin', 'country_code' => 'PH'], ['name' => 'Yongqing', 'country_code' => 'CN'], ['name' => 'Katerini', 'country_code' => 'GR'], ['name' => 'Frydek-Mistek', 'country_code' => 'CZ'], ['name' => 'Parachinar', 'country_code' => 'PK'], ['name' => 'Tigaon', 'country_code' => 'PH'], ['name' => 'Bhimunipatnam', 'country_code' => 'IN'], ['name' => 'Hyeres', 'country_code' => 'FR'], ['name' => 'Canterbury', 'country_code' => 'GB'], ['name' => 'Boituva', 'country_code' => 'BR'], ['name' => 'Portimao', 'country_code' => 'PT'], ['name' => 'Den Helder', 'country_code' => 'NL'], ['name' => 'Volzhsk', 'country_code' => 'RU'], ['name' => 'Changling', 'country_code' => 'CN'], ['name' => 'Wangguanzhuang', 'country_code' => 'CN'], ['name' => 'Hidaka', 'country_code' => 'JP'], ['name' => 'Toki', 'country_code' => 'JP'], ['name' => 'Grants Pass', 'country_code' => 'US'], ['name' => 'Blue Springs', 'country_code' => 'US'], ['name' => 'Jaru', 'country_code' => 'BR'], ['name' => 'Xiva', 'country_code' => 'UZ'], ['name' => 'Gus -Khrustal nyy', 'country_code' => 'RU'], ['name' => 'Tucano', 'country_code' => 'BR'], ['name' => 'Martin', 'country_code' => 'SK'], ['name' => 'Southaven', 'country_code' => 'US'], ['name' => 'Umm Ruwaba', 'country_code' => 'SD'], ['name' => 'Tinley Park', 'country_code' => 'US'], ['name' => 'Apatity', 'country_code' => 'RU'], ['name' => 'Azul', 'country_code' => 'AR'], ['name' => 'Taua', 'country_code' => 'BR'], ['name' => 'Tanauan', 'country_code' => 'PH'], ['name' => 'Diamond Bar', 'country_code' => 'US'], ['name' => 'Binalonan', 'country_code' => 'PH'], ['name' => 'Pittsfield', 'country_code' => 'US'], ['name' => 'San Francisco', 'country_code' => 'PH'], ['name' => 'Navirai', 'country_code' => 'BR'], ['name' => 'Eagle Pass', 'country_code' => 'US'], ['name' => 'Acara', 'country_code' => 'BR'], ['name' => 'Avellino', 'country_code' => 'IT'], ['name' => 'Aran Bidgol', 'country_code' => 'IR'], ['name' => 'Limoeiro', 'country_code' => 'BR'], ['name' => 'Monte Mor', 'country_code' => 'BR'], ['name' => 'Jocotitlan', 'country_code' => 'MX'], ['name' => 'Lenexa', 'country_code' => 'US'], ['name' => 'Lagonoy', 'country_code' => 'PH'], ['name' => 'Corby', 'country_code' => 'GB'], ['name' => 'Hazleton', 'country_code' => 'US'], ['name' => 'Alangalang', 'country_code' => 'PH'], ['name' => 'El Banco', 'country_code' => 'CO'], ['name' => 'Basey', 'country_code' => 'PH'], ['name' => 'Twin Falls', 'country_code' => 'US'], ['name' => 'Brookhaven', 'country_code' => 'US'], ['name' => 'Schweinfurt', 'country_code' => 'DE'], ['name' => 'Batac', 'country_code' => 'PH'], ['name' => 'Villarrica', 'country_code' => 'CL'], ['name' => 'Baden-Baden', 'country_code' => 'DE'], ['name' => 'Novato', 'country_code' => 'US'], ['name' => 'Tigard', 'country_code' => 'US'], ['name' => 'Hoogeveen', 'country_code' => 'NL'], ['name' => 'Jaguaquara', 'country_code' => 'BR'], ['name' => 'San Remo', 'country_code' => 'IT'], ['name' => 'Congonhas', 'country_code' => 'BR'], ['name' => 'Abington', 'country_code' => 'US'], ['name' => 'Rolim de Moura', 'country_code' => 'BR'], ['name' => 'Aurora', 'country_code' => 'CA'], ['name' => 'Bitonto', 'country_code' => 'IT'], ['name' => 'Highland', 'country_code' => 'US'], ['name' => 'San Mariano', 'country_code' => 'PH'], ['name' => 'Dearborn Heights', 'country_code' => 'US'], ['name' => 'Puttur', 'country_code' => 'IN'], ['name' => 'Manapla', 'country_code' => 'PH'], ['name' => 'Hattingen', 'country_code' => 'DE'], ['name' => 'Bad Homburg', 'country_code' => 'DE'], ['name' => 'Songlindian', 'country_code' => 'CN'], ['name' => 'Pombal', 'country_code' => 'PT'], ['name' => 'Grapevine', 'country_code' => 'US'], ['name' => 'Hervey Bay', 'country_code' => 'AU'], ['name' => 'Sigaboy', 'country_code' => 'PH'], ['name' => 'Amalapuram', 'country_code' => 'IN'], ['name' => 'Chino', 'country_code' => 'JP'], ['name' => 'Fond du Lac', 'country_code' => 'US'], ['name' => 'Hacienda Heights', 'country_code' => 'US'], ['name' => 'Jasaan', 'country_code' => 'PH'], ['name' => 'Punganuru', 'country_code' => 'IN'], ['name' => 'Nandod', 'country_code' => 'IN'], ['name' => 'Apple Valley', 'country_code' => 'US'], ['name' => 'Qiryat Gat', 'country_code' => 'IL'], ['name' => 'Tiquisate', 'country_code' => 'GT'], ['name' => 'Chicopee', 'country_code' => 'US'], ['name' => 'Funato', 'country_code' => 'JP'], ['name' => 'Zhushan', 'country_code' => 'TW'], ['name' => 'San Luis', 'country_code' => 'PH'], ['name' => 'New Corella', 'country_code' => 'PH'], ['name' => 'San Gil', 'country_code' => 'CO'], ['name' => 'Narbonne', 'country_code' => 'FR'], ['name' => 'Tequisquiapan', 'country_code' => 'MX'], ['name' => 'Cathedral City', 'country_code' => 'US'], ['name' => 'Vannes', 'country_code' => 'FR'], ['name' => 'La Roche-sur-Yon', 'country_code' => 'FR'], ['name' => 'Vicosa do Ceara', 'country_code' => 'BR'], ['name' => 'San Cristobal Verapaz', 'country_code' => 'GT'], ['name' => 'Porto Ferreira', 'country_code' => 'BR'], ['name' => 'Huaishu', 'country_code' => 'CN'], ['name' => 'Barreirinhas', 'country_code' => 'BR'], ['name' => 'Delano', 'country_code' => 'US'], ['name' => 'Bentonville', 'country_code' => 'US'], ['name' => 'Stonecrest', 'country_code' => 'US'], ['name' => 'Sakurai', 'country_code' => 'JP'], ['name' => 'Dandarah', 'country_code' => 'EG'], ['name' => 'Kettering', 'country_code' => 'US'], ['name' => 'Esperanza', 'country_code' => 'PH'], ['name' => 'Mali', 'country_code' => 'CN'], ['name' => 'Canlaon', 'country_code' => 'PH'], ['name' => 'Sarpsborg', 'country_code' => 'NO'], ['name' => 'Colton', 'country_code' => 'US'], ['name' => 'Pulheim', 'country_code' => 'DE'], ['name' => 'Annaka', 'country_code' => 'JP'], ['name' => 'Kingston', 'country_code' => 'US'], ['name' => 'Ostroleka', 'country_code' => 'PL'], ['name' => 'Xielu', 'country_code' => 'CN'], ['name' => 'Monte Santo', 'country_code' => 'BR'], ['name' => 'Chota', 'country_code' => 'PE'], ['name' => 'Naguilian', 'country_code' => 'PH'], ['name' => 'Lingen', 'country_code' => 'DE'], ['name' => 'Barotac Nuevo', 'country_code' => 'PH'], ['name' => 'Modica', 'country_code' => 'IT'], ['name' => 'Jinchang', 'country_code' => 'CN'], ['name' => 'Teramo', 'country_code' => 'IT'], ['name' => 'Cuenca', 'country_code' => 'ES'], ['name' => 'Bad Salzuflen', 'country_code' => 'DE'], ['name' => 'Mansalay', 'country_code' => 'PH'], ['name' => 'West Haven', 'country_code' => 'US'], ['name' => 'Cava de Tirreni', 'country_code' => 'IT'], ['name' => 'Dayin', 'country_code' => 'CN'], ['name' => 'St. Cloud', 'country_code' => 'US'], ['name' => 'Sertolovo', 'country_code' => 'RU'], ['name' => 'Chivilcoy', 'country_code' => 'AR'], ['name' => 'Cholet', 'country_code' => 'FR'], ['name' => 'Chenab Nagar', 'country_code' => 'PK'], ['name' => 'Canoinhas', 'country_code' => 'BR'], ['name' => 'Sao Jose do Rio Pardo', 'country_code' => 'BR'], ['name' => 'Kotka', 'country_code' => 'FI'], ['name' => 'Shidong', 'country_code' => 'CN'], ['name' => 'Normal', 'country_code' => 'US'], ['name' => 'Palmaner', 'country_code' => 'IN'], ['name' => 'Qingan', 'country_code' => 'CN'], ['name' => 'Paombong', 'country_code' => 'PH'], ['name' => 'Itupeva', 'country_code' => 'BR'], ['name' => 'Siena', 'country_code' => 'IT'], ['name' => 'Milford', 'country_code' => 'US'], ['name' => 'Tarma', 'country_code' => 'PE'], ['name' => 'Jalor', 'country_code' => 'IN'], ['name' => 'Zarafshon Shahri', 'country_code' => 'UZ'], ['name' => 'Valle del Guamuez', 'country_code' => 'CO'], ['name' => 'Huesca', 'country_code' => 'ES'], ['name' => 'Campo Belo', 'country_code' => 'BR'], ['name' => 'Vikarabad', 'country_code' => 'IN'], ['name' => 'Hashtpar', 'country_code' => 'IR'], ['name' => 'Xingcheng', 'country_code' => 'CN'], ['name' => 'Ixhuatlan de Madero', 'country_code' => 'MX'], ['name' => 'Ruteng', 'country_code' => 'ID'], ['name' => 'Narva', 'country_code' => 'EE'], ['name' => 'Barra', 'country_code' => 'BR'], ['name' => 'Tokmok', 'country_code' => 'KG'], ['name' => 'Vigia', 'country_code' => 'BR'], ['name' => 'Zhigulevsk', 'country_code' => 'RU'], ['name' => 'Arroyo Grande', 'country_code' => 'US'], ['name' => 'Pinto', 'country_code' => 'ES'], ['name' => 'Kampen', 'country_code' => 'NL'], ['name' => 'San Simon', 'country_code' => 'PH'], ['name' => 'Progreso', 'country_code' => 'MX'], ['name' => 'Magsaysay', 'country_code' => 'PH'], ['name' => 'Minnetonka', 'country_code' => 'US'], ['name' => 'Jagtial', 'country_code' => 'IN'], ['name' => 'Dholka', 'country_code' => 'IN'], ['name' => 'Puerto Libertador', 'country_code' => 'CO'], ['name' => 'Elda', 'country_code' => 'ES'], ['name' => 'Santa Maria', 'country_code' => 'PH'], ['name' => 'Tajumulco', 'country_code' => 'GT'], ['name' => 'Wayne', 'country_code' => 'US'], ['name' => 'La Lima', 'country_code' => 'HN'], ['name' => 'Liski', 'country_code' => 'RU'], ['name' => 'Tuni', 'country_code' => 'IN'], ['name' => 'Yucaipa', 'country_code' => 'US'], ['name' => 'Markala', 'country_code' => 'ML'], ['name' => 'Svobodnyy', 'country_code' => 'RU'], ['name' => 'Jaggayyapeta', 'country_code' => 'IN'], ['name' => 'Salo', 'country_code' => 'FI'], ['name' => 'Brunswick', 'country_code' => 'US'], ['name' => 'Bijar', 'country_code' => 'IR'], ['name' => 'Williamsport', 'country_code' => 'US'], ['name' => 'Roxas', 'country_code' => 'PH'], ['name' => 'Neiba', 'country_code' => 'DO'], ['name' => 'Union', 'country_code' => 'US'], ['name' => 'Hagonoy', 'country_code' => 'PH'], ['name' => 'Malay', 'country_code' => 'PH'], ['name' => 'Nordhorn', 'country_code' => 'DE'], ['name' => 'Elyria', 'country_code' => 'US'], ['name' => 'Videira', 'country_code' => 'BR'], ['name' => 'Ibaan', 'country_code' => 'PH'], ['name' => 'Leesburg', 'country_code' => 'US'], ['name' => 'Mount Prospect', 'country_code' => 'US'], ['name' => 'Marco de Canavezes', 'country_code' => 'PT'], ['name' => 'Nebaj', 'country_code' => 'GT'], ['name' => 'Krasnokamsk', 'country_code' => 'RU'], ['name' => 'Upata', 'country_code' => 'VE'], ['name' => 'Port Shepstone', 'country_code' => 'ZA'], ['name' => 'Upi', 'country_code' => 'PH'], ['name' => 'Wetzlar', 'country_code' => 'DE'], ['name' => 'Enerhodar', 'country_code' => 'UA'], ['name' => 'Bristol', 'country_code' => 'US'], ['name' => 'Velletri', 'country_code' => 'IT'], ['name' => 'Pinellas Park', 'country_code' => 'US'], ['name' => 'Frechen', 'country_code' => 'DE'], ['name' => 'Tiwi', 'country_code' => 'PH'], ['name' => 'Neustadt', 'country_code' => 'DE'], ['name' => 'Encarnacion de Diaz', 'country_code' => 'MX'], ['name' => 'Bambang', 'country_code' => 'PH'], ['name' => 'Anzio', 'country_code' => 'IT'], ['name' => 'Acireale', 'country_code' => 'IT'], ['name' => 'Zhangjiazhuang', 'country_code' => 'CN'], ['name' => 'San Bartolome', 'country_code' => 'ES'], ['name' => 'Pijijiapan', 'country_code' => 'MX'], ['name' => 'Bellevue', 'country_code' => 'US'], ['name' => 'West Sacramento', 'country_code' => 'US'], ['name' => 'Gudermes', 'country_code' => 'RU'], ['name' => 'Yangmei', 'country_code' => 'CN'], ['name' => 'Apopka', 'country_code' => 'US'], ['name' => 'Olimpia', 'country_code' => 'BR'], ['name' => 'Barbosa', 'country_code' => 'CO'], ['name' => 'Pryluky', 'country_code' => 'UA'], ['name' => 'Xincheng', 'country_code' => 'CN'], ['name' => 'Lewiston', 'country_code' => 'US'], ['name' => 'Itupiranga', 'country_code' => 'BR'], ['name' => 'San Manuel', 'country_code' => 'PH'], ['name' => 'Lian', 'country_code' => 'PH'], ['name' => 'Santo Estevao', 'country_code' => 'BR'], ['name' => 'Porto Nacional', 'country_code' => 'BR'], ['name' => 'Yaozhuangcun', 'country_code' => 'CN'], ['name' => 'Capivari', 'country_code' => 'BR'], ['name' => 'Sao Bento do Una', 'country_code' => 'BR'], ['name' => 'Millcreek', 'country_code' => 'US'], ['name' => 'Grand Island', 'country_code' => 'US'], ['name' => 'Guiuan', 'country_code' => 'PH'], ['name' => 'Akbou', 'country_code' => 'DZ'], ['name' => 'Tame', 'country_code' => 'CO'], ['name' => 'Palm Desert', 'country_code' => 'US'], ['name' => 'Cangucu', 'country_code' => 'BR'], ['name' => 'Karlovac', 'country_code' => 'HR'], ['name' => 'Vyksa', 'country_code' => 'RU'], ['name' => 'Mulanay', 'country_code' => 'PH'], ['name' => 'Pangantocan', 'country_code' => 'PH'], ['name' => 'Passau', 'country_code' => 'DE'], ['name' => 'Leopoldina', 'country_code' => 'BR'], ['name' => 'Frejus', 'country_code' => 'FR'], ['name' => 'Milford city', 'country_code' => 'US'], ['name' => 'San Severo', 'country_code' => 'IT'], ['name' => 'Watertown', 'country_code' => 'US'], ['name' => 'Acopiara', 'country_code' => 'BR'], ['name' => 'Sagua la Grande', 'country_code' => 'CU'], ['name' => 'Little Elm', 'country_code' => 'US'], ['name' => 'Pasaje', 'country_code' => 'EC'], ['name' => 'Ramon', 'country_code' => 'PH'], ['name' => 'Chambersburg', 'country_code' => 'US'], ['name' => 'Peabody', 'country_code' => 'US'], ['name' => 'Wylie', 'country_code' => 'US'], ['name' => 'Manicore', 'country_code' => 'BR'], ['name' => 'Beaufort', 'country_code' => 'US'], ['name' => 'Arsenyev', 'country_code' => 'RU'], ['name' => 'Torrelavega', 'country_code' => 'ES'], ['name' => 'Mercedes', 'country_code' => 'AR'], ['name' => 'Ahlen', 'country_code' => 'DE'], ['name' => 'DeSoto', 'country_code' => 'US'], ['name' => 'Venkatagiri', 'country_code' => 'IN'], ['name' => 'Sihor', 'country_code' => 'IN'], ['name' => 'Burauen', 'country_code' => 'PH'], ['name' => 'Lorica', 'country_code' => 'CO'], ['name' => 'Tomiya', 'country_code' => 'JP'], ['name' => 'Chone', 'country_code' => 'EC'], ['name' => 'Kobryn', 'country_code' => 'BY'], ['name' => 'Jangaon', 'country_code' => 'IN'], ['name' => 'Poprad', 'country_code' => 'SK'], ['name' => 'Mongagua', 'country_code' => 'BR'], ['name' => 'Edina', 'country_code' => 'US'], ['name' => 'Wolfenbuttel', 'country_code' => 'DE'], ['name' => 'Krasnokamensk', 'country_code' => 'RU'], ['name' => 'Tutoia', 'country_code' => 'BR'], ['name' => 'Rondon do Para', 'country_code' => 'BR'], ['name' => 'Uniao da Vitoria', 'country_code' => 'BR'], ['name' => 'San Jose Villa de Allende', 'country_code' => 'MX'], ['name' => 'Minalabac', 'country_code' => 'PH'], ['name' => 'Minami-Soma', 'country_code' => 'JP'], ['name' => 'Wheaton', 'country_code' => 'US'], ['name' => 'Diffun', 'country_code' => 'PH'], ['name' => 'Thongwa', 'country_code' => 'MM'], ['name' => 'Viana', 'country_code' => 'BR'], ['name' => 'Jaen', 'country_code' => 'PE'], ['name' => 'Granja', 'country_code' => 'BR'], ['name' => 'Alesund', 'country_code' => 'NO'], ['name' => 'Huaiyang', 'country_code' => 'CN'], ['name' => 'Pacora', 'country_code' => 'PA'], ['name' => 'Horishni Plavni', 'country_code' => 'UA'], ['name' => 'An Nabk', 'country_code' => 'SY'], ['name' => 'Bato', 'country_code' => 'PH'], ['name' => 'Alfonso', 'country_code' => 'PH'], ['name' => 'Arles', 'country_code' => 'FR'], ['name' => 'Mandamari', 'country_code' => 'IN'], ['name' => 'Lacey', 'country_code' => 'US'], ['name' => 'Tobias Barreto', 'country_code' => 'BR'], ['name' => 'Ajuy', 'country_code' => 'PH'], ['name' => 'Qabqa', 'country_code' => 'CN'], ['name' => 'Caetite', 'country_code' => 'BR'], ['name' => 'Summerville', 'country_code' => 'US'], ['name' => 'Itabirito', 'country_code' => 'BR'], ['name' => 'Prudentopolis', 'country_code' => 'BR'], ['name' => 'Vyazma', 'country_code' => 'RU'], ['name' => 'San Isidro', 'country_code' => 'PH'], ['name' => 'Boa Viagem', 'country_code' => 'BR'], ['name' => 'Pordenone', 'country_code' => 'IT'], ['name' => 'Parsippany-Troy Hills', 'country_code' => 'US'], ['name' => 'Roman', 'country_code' => 'RO'], ['name' => 'Sape', 'country_code' => 'BR'], ['name' => 'Ibbenburen', 'country_code' => 'DE'], ['name' => 'Kleve', 'country_code' => 'DE'], ['name' => 'Pontevedra', 'country_code' => 'PH'], ['name' => 'Obidos', 'country_code' => 'BR'], ['name' => 'Civitavecchia', 'country_code' => 'IT'], ['name' => 'Welland', 'country_code' => 'CA'], ['name' => 'Jaguariuna', 'country_code' => 'BR'], ['name' => 'Guaxupe', 'country_code' => 'BR'], ['name' => 'Novovolynsk', 'country_code' => 'UA'], ['name' => 'Basankusu', 'country_code' => 'CD'], ['name' => 'Villareal', 'country_code' => 'ES'], ['name' => 'Colmenar Viejo', 'country_code' => 'ES'], ['name' => 'Molave', 'country_code' => 'PH'], ['name' => 'Cruz del Eje', 'country_code' => 'AR'], ['name' => 'Belorechensk', 'country_code' => 'RU'], ['name' => 'Maricopa', 'country_code' => 'US'], ['name' => 'Stratford', 'country_code' => 'US'], ['name' => 'San Joaquin', 'country_code' => 'PH'], ['name' => 'Abdul Hakim', 'country_code' => 'PK'], ['name' => 'Wangjiazhai', 'country_code' => 'CN'], ['name' => 'Albu Kamal', 'country_code' => 'SY'], ['name' => 'San Onofre', 'country_code' => 'CO'], ['name' => 'Porto Feliz', 'country_code' => 'BR'], ['name' => 'Lompoc', 'country_code' => 'US'], ['name' => 'Timashevsk', 'country_code' => 'RU'], ['name' => 'Eilat', 'country_code' => 'IL'], ['name' => 'Metpalli', 'country_code' => 'IN'], ['name' => 'Howell', 'country_code' => 'US'], ['name' => 'Caldas da Rainha', 'country_code' => 'PT'], ['name' => 'Paraiso do Tocantins', 'country_code' => 'BR'], ['name' => 'Cogan', 'country_code' => 'PH'], ['name' => 'Bando', 'country_code' => 'JP'], ['name' => 'Tagkawayan', 'country_code' => 'PH'], ['name' => 'Gwadar', 'country_code' => 'PK'], ['name' => 'Battipaglia', 'country_code' => 'IT'], ['name' => 'Pila', 'country_code' => 'PH'], ['name' => 'Kentwood', 'country_code' => 'US'], ['name' => 'Berriozabal', 'country_code' => 'MX'], ['name' => 'Covilha', 'country_code' => 'PT'], ['name' => 'Coron', 'country_code' => 'PH'], ['name' => 'Lucban', 'country_code' => 'PH'], ['name' => 'Bad Kreuznach', 'country_code' => 'DE'], ['name' => 'Shepparton', 'country_code' => 'AU'], ['name' => 'Shimencun', 'country_code' => 'CN'], ['name' => 'Levittown', 'country_code' => 'US'], ['name' => 'Dumanjog', 'country_code' => 'PH'], ['name' => 'Karvina', 'country_code' => 'CZ'], ['name' => 'Huazangsi', 'country_code' => 'CN'], ['name' => 'Carigara', 'country_code' => 'PH'], ['name' => 'Tsukubamirai', 'country_code' => 'JP'], ['name' => 'Xanxere', 'country_code' => 'BR'], ['name' => 'Pola de Siero', 'country_code' => 'ES'], ['name' => 'Solnechnogorsk', 'country_code' => 'RU'], ['name' => 'Caleta Olivia', 'country_code' => 'AR'], ['name' => 'Sierra Vista', 'country_code' => 'US'], ['name' => 'Laguna', 'country_code' => 'BR'], ['name' => 'Woerden', 'country_code' => 'NL'], ['name' => 'Mazara del Vallo', 'country_code' => 'IT'], ['name' => 'Tulsipur', 'country_code' => 'NP'], ['name' => 'Trento', 'country_code' => 'PH'], ['name' => 'Chieti', 'country_code' => 'IT'], ['name' => 'Rovigo', 'country_code' => 'IT'], ['name' => 'Madison', 'country_code' => 'US'], ['name' => 'Smyrna', 'country_code' => 'US'], ['name' => 'Guarne', 'country_code' => 'CO'], ['name' => 'Speyer', 'country_code' => 'DE'], ['name' => 'North Bay', 'country_code' => 'CA'], ['name' => 'Granadilla de Abona', 'country_code' => 'ES'], ['name' => 'Knysna', 'country_code' => 'ZA'], ['name' => 'Glendora', 'country_code' => 'US'], ['name' => 'Butare', 'country_code' => 'RW'], ['name' => 'El Talar de Pacheco', 'country_code' => 'AR'], ['name' => 'Zhexiang', 'country_code' => 'CN'], ['name' => 'Burien', 'country_code' => 'US'], ['name' => 'Grasse', 'country_code' => 'FR'], ['name' => 'Scandicci', 'country_code' => 'IT'], ['name' => 'Uzlovaya', 'country_code' => 'RU'], ['name' => 'Ribeira do Pombal', 'country_code' => 'BR'], ['name' => 'Trairi', 'country_code' => 'BR'], ['name' => 'Arao', 'country_code' => 'JP'], ['name' => 'Boblingen', 'country_code' => 'DE'], ['name' => 'Satte', 'country_code' => 'JP'], ['name' => 'Tapas', 'country_code' => 'PH'], ['name' => 'Cuyotenango', 'country_code' => 'GT'], ['name' => 'Montijo', 'country_code' => 'PT'], ['name' => 'Jaragua', 'country_code' => 'BR'], ['name' => 'Herriman', 'country_code' => 'US'], ['name' => 'Willich', 'country_code' => 'DE'], ['name' => 'Severomorsk', 'country_code' => 'RU'], ['name' => 'Tadmur', 'country_code' => 'SY'], ['name' => 'Misterbianco', 'country_code' => 'IT'], ['name' => 'Farmington', 'country_code' => 'US'], ['name' => 'New Bern', 'country_code' => 'US'], ['name' => 'Humaita', 'country_code' => 'BR'], ['name' => 'Cheremkhovo', 'country_code' => 'RU'], ['name' => 'Gummersbach', 'country_code' => 'DE'], ['name' => 'Hinesville', 'country_code' => 'US'], ['name' => 'Repalle', 'country_code' => 'IN'], ['name' => 'Snezhinsk', 'country_code' => 'RU'], ['name' => 'Ravensburg', 'country_code' => 'DE'], ['name' => 'Hassan Abdal', 'country_code' => 'PK'], ['name' => 'Douyu', 'country_code' => 'CN'], ['name' => 'Konibodom', 'country_code' => 'TJ'], ['name' => 'Mercedes', 'country_code' => 'PH'], ['name' => 'Sakaidecho', 'country_code' => 'JP'], ['name' => 'Zabid', 'country_code' => 'YE'], ['name' => 'Fangcun', 'country_code' => 'CN'], ['name' => 'Beaumont', 'country_code' => 'US'], ['name' => 'Goslar', 'country_code' => 'DE'], ['name' => 'Horsham', 'country_code' => 'GB'], ['name' => 'Collierville', 'country_code' => 'US'], ['name' => 'Utrera', 'country_code' => 'ES'], ['name' => 'Aurora', 'country_code' => 'PH'], ['name' => 'Campos do Jordao', 'country_code' => 'BR'], ['name' => 'Nazarovo', 'country_code' => 'RU'], ['name' => 'West Lafayette', 'country_code' => 'US'], ['name' => 'Yuki', 'country_code' => 'JP'], ['name' => 'Florissant', 'country_code' => 'US'], ['name' => 'Laval', 'country_code' => 'FR'], ['name' => 'Hoffman Estates', 'country_code' => 'US'], ['name' => 'Mozhga', 'country_code' => 'RU'], ['name' => 'Kirishi', 'country_code' => 'RU'], ['name' => 'El Bagre', 'country_code' => 'CO'], ['name' => 'Ye', 'country_code' => 'MM'], ['name' => 'Queen Creek', 'country_code' => 'US'], ['name' => 'Kizlyar', 'country_code' => 'RU'], ['name' => 'Fafe', 'country_code' => 'PT'], ['name' => 'Bani Walid', 'country_code' => 'LY'], ['name' => 'Kannapolis', 'country_code' => 'US'], ['name' => 'Buenavista', 'country_code' => 'PH'], ['name' => 'Pulawy', 'country_code' => 'PL'], ['name' => 'Turtkul', 'country_code' => 'UZ'], ['name' => 'Beloeil', 'country_code' => 'CA'], ['name' => 'Urbiztondo', 'country_code' => 'PH'], ['name' => 'Longwan', 'country_code' => 'CN'], ['name' => 'Houten', 'country_code' => 'NL'], ['name' => 'Mahalapye', 'country_code' => 'BW'], ['name' => 'Cardona', 'country_code' => 'PH'], ['name' => 'Mweka', 'country_code' => 'CD'], ['name' => 'Belleville', 'country_code' => 'CA'], ['name' => 'Beruniy', 'country_code' => 'UZ'], ['name' => 'Methuen Town', 'country_code' => 'US'], ['name' => 'Santa Lucia del Camino', 'country_code' => 'MX'], ['name' => 'Kulu', 'country_code' => 'TR'], ['name' => 'El Salvador', 'country_code' => 'PH'], ['name' => 'Yasu', 'country_code' => 'JP'], ['name' => 'Baranoa', 'country_code' => 'CO'], ['name' => 'Shakhtarsk', 'country_code' => 'UA'], ['name' => 'La Calera', 'country_code' => 'CL'], ['name' => 'Rastatt', 'country_code' => 'DE'], ['name' => 'Sittard', 'country_code' => 'NL'], ['name' => 'Starogard Gdanski', 'country_code' => 'PL'], ['name' => 'Sahuarita', 'country_code' => 'US'], ['name' => 'Lorrach', 'country_code' => 'DE'], ['name' => 'Cataingan', 'country_code' => 'PH'], ['name' => 'Bani', 'country_code' => 'PH'], ['name' => 'Tebourba', 'country_code' => 'TN'], ['name' => 'Rincon de la Victoria', 'country_code' => 'ES'], ['name' => 'Qinhe', 'country_code' => 'CN'], ['name' => 'Artur Nogueira', 'country_code' => 'BR'], ['name' => 'Traverse City', 'country_code' => 'US'], ['name' => 'Mirabel', 'country_code' => 'CA'], ['name' => 'San Ignacio', 'country_code' => 'PY'], ['name' => 'Severn', 'country_code' => 'US'], ['name' => 'Nova Venecia', 'country_code' => 'BR'], ['name' => 'Catalina Foothills', 'country_code' => 'US'], ['name' => 'Galveston', 'country_code' => 'US'], ['name' => 'Pozi', 'country_code' => 'TW'], ['name' => 'Amora', 'country_code' => 'PT'], ['name' => 'Cookeville', 'country_code' => 'US'], ['name' => 'Chinu', 'country_code' => 'CO'], ['name' => 'Leith', 'country_code' => 'GB'], ['name' => 'Peine', 'country_code' => 'DE'], ['name' => 'Mishawaka', 'country_code' => 'US'], ['name' => 'Emden', 'country_code' => 'DE'], ['name' => 'Ardea', 'country_code' => 'IT'], ['name' => 'Rowland Heights', 'country_code' => 'US'], ['name' => 'Kitaotao', 'country_code' => 'PH'], ['name' => 'Bullhead City', 'country_code' => 'US'], ['name' => 'Irondequoit', 'country_code' => 'US'], ['name' => 'Stillwater', 'country_code' => 'US'], ['name' => 'Cabagan', 'country_code' => 'PH'], ['name' => 'Baicheng', 'country_code' => 'CN'], ['name' => 'Tajura ', 'country_code' => 'LY'], ['name' => 'Macaubas', 'country_code' => 'BR'], ['name' => 'Rivoli', 'country_code' => 'IT'], ['name' => 'Puerto Berrio', 'country_code' => 'CO'], ['name' => 'East Hartford', 'country_code' => 'US'], ['name' => 'Bocaiuva', 'country_code' => 'BR'], ['name' => 'Huanghuajie', 'country_code' => 'CN'], ['name' => 'Forney', 'country_code' => 'US'], ['name' => 'Nanjian', 'country_code' => 'CN'], ['name' => 'Xiazhai', 'country_code' => 'CN'], ['name' => 'Sao Joaquim da Barra', 'country_code' => 'BR'], ['name' => 'Leon', 'country_code' => 'PH'], ['name' => 'Erftstadt', 'country_code' => 'DE'], ['name' => 'Estancia', 'country_code' => 'PH'], ['name' => 'Alta Floresta', 'country_code' => 'BR'], ['name' => 'Mantova', 'country_code' => 'IT'], ['name' => 'Lindong', 'country_code' => 'CN'], ['name' => 'Vargem Grande Paulista', 'country_code' => 'BR'], ['name' => 'Borovichi', 'country_code' => 'RU'], ['name' => 'Itarare', 'country_code' => 'BR'], ['name' => 'Bhainsa', 'country_code' => 'IN'], ['name' => 'Roslavl', 'country_code' => 'RU'], ['name' => 'Beni Yakhlef', 'country_code' => 'MA'], ['name' => 'Gogrial', 'country_code' => 'SS'], ['name' => 'Shankou', 'country_code' => 'CN'], ['name' => 'Miyoshi', 'country_code' => 'JP'], ['name' => 'Novovyatsk', 'country_code' => 'RU'], ['name' => 'Sesto Fiorentino', 'country_code' => 'IT'], ['name' => 'Sardasht', 'country_code' => 'IR'], ['name' => 'Buluan', 'country_code' => 'PH'], ['name' => 'Albi', 'country_code' => 'FR'], ['name' => 'Zaragoza', 'country_code' => 'PH'], ['name' => 'Shawinigan', 'country_code' => 'CA'], ['name' => 'Tepeapulco', 'country_code' => 'MX'], ['name' => 'Donsol', 'country_code' => 'PH'], ['name' => 'Kahemba', 'country_code' => 'CD'], ['name' => 'Porvoo', 'country_code' => 'FI'], ['name' => 'Abu Hamad', 'country_code' => 'SD'], ['name' => 'Chomutov', 'country_code' => 'CZ'], ['name' => 'Nichinan', 'country_code' => 'JP'], ['name' => 'Heidenheim', 'country_code' => 'DE'], ['name' => 'Jiuzhou', 'country_code' => 'CN'], ['name' => 'Azusa', 'country_code' => 'US'], ['name' => 'Upper Buchanan', 'country_code' => 'LR'], ['name' => 'Nahuizalco', 'country_code' => 'SV'], ['name' => 'Barobo', 'country_code' => 'PH'], ['name' => 'Orangetown', 'country_code' => 'US'], ['name' => 'Buguruslan', 'country_code' => 'RU'], ['name' => 'Xankandi', 'country_code' => 'AZ'], ['name' => 'Ibajay', 'country_code' => 'PH'], ['name' => 'Slonim', 'country_code' => 'BY'], ['name' => 'Ramhormoz', 'country_code' => 'IR'], ['name' => 'Nettuno', 'country_code' => 'IT'], ['name' => 'Ashburn', 'country_code' => 'US'], ['name' => 'Bloomsburg', 'country_code' => 'US'], ['name' => 'Moss', 'country_code' => 'NO'], ['name' => 'Titay', 'country_code' => 'PH'], ['name' => 'Bergkamen', 'country_code' => 'DE'], ['name' => 'Gualan', 'country_code' => 'GT'], ['name' => 'Morehead City', 'country_code' => 'US'], ['name' => 'Sesimbra', 'country_code' => 'PT'], ['name' => 'Leonberg', 'country_code' => 'DE'], ['name' => 'Suzaka', 'country_code' => 'JP'], ['name' => 'IJmuiden', 'country_code' => 'NL'], ['name' => 'Tomisato', 'country_code' => 'JP'], ['name' => 'Ridder', 'country_code' => 'KZ'], ['name' => 'Coral Gables', 'country_code' => 'US'], ['name' => 'Guacharachi', 'country_code' => 'MX'], ['name' => 'Ifakara', 'country_code' => 'TZ'], ['name' => 'Chioggia', 'country_code' => 'IT'], ['name' => 'Enid', 'country_code' => 'US'], ['name' => 'Zyryanovsk', 'country_code' => 'KZ'], ['name' => 'Zongshizhuang', 'country_code' => 'CN'], ['name' => 'Cimitarra', 'country_code' => 'CO'], ['name' => 'Berber', 'country_code' => 'SD'], ['name' => 'Tokamachi', 'country_code' => 'JP'], ['name' => 'Maria la Baja', 'country_code' => 'CO'], ['name' => 'Liujiaxia', 'country_code' => 'CN'], ['name' => 'Hikari', 'country_code' => 'JP'], ['name' => 'Wofotang', 'country_code' => 'CN'], ['name' => 'Oroville', 'country_code' => 'US'], ['name' => 'Evreux', 'country_code' => 'FR'], ['name' => 'Ozgon', 'country_code' => 'KG'], ['name' => 'Adeje', 'country_code' => 'ES'], ['name' => 'Wilson', 'country_code' => 'US'], ['name' => 'Okhtyrka', 'country_code' => 'UA'], ['name' => 'Padre Garcia', 'country_code' => 'PH'], ['name' => 'Lawrence', 'country_code' => 'US'], ['name' => 'Donglizhuang', 'country_code' => 'CN'], ['name' => 'Bad Oeynhausen', 'country_code' => 'DE'], ['name' => 'Villaguay', 'country_code' => 'AR'], ['name' => 'Muhanga', 'country_code' => 'RW'], ['name' => 'Jiashizhuang', 'country_code' => 'CN'], ['name' => 'Portage', 'country_code' => 'US'], ['name' => 'Christchurch', 'country_code' => 'GB'], ['name' => 'Nomimachi', 'country_code' => 'JP'], ['name' => 'Albury', 'country_code' => 'AU'], ['name' => 'Minot', 'country_code' => 'US'], ['name' => 'Empoli', 'country_code' => 'IT'], ['name' => 'Samaniego', 'country_code' => 'CO'], ['name' => 'Cwmbran', 'country_code' => 'GB'], ['name' => 'Yong an', 'country_code' => 'CN'], ['name' => 'Pasacao', 'country_code' => 'PH'], ['name' => 'Changyon', 'country_code' => 'KP'], ['name' => 'Dunwoody', 'country_code' => 'US'], ['name' => 'Ad Darwa', 'country_code' => 'MA'], ['name' => 'Beberibe', 'country_code' => 'BR'], ['name' => 'Poway', 'country_code' => 'US'], ['name' => 'Libertador General San Martin', 'country_code' => 'AR'], ['name' => 'Haverford', 'country_code' => 'US'], ['name' => 'Monopoli', 'country_code' => 'IT'], ['name' => 'Magpet', 'country_code' => 'PH'], ['name' => 'Agustin Codazzi', 'country_code' => 'CO'], ['name' => 'Santa Rosa', 'country_code' => 'EC'], ['name' => 'Prievidza', 'country_code' => 'SK'], ['name' => 'Lecco', 'country_code' => 'IT'], ['name' => 'San Jacinto', 'country_code' => 'US'], ['name' => 'San Benedetto del Tronto', 'country_code' => 'IT'], ['name' => 'Lesnoy', 'country_code' => 'RU'], ['name' => 'Carmen de Viboral', 'country_code' => 'CO'], ['name' => 'Freising', 'country_code' => 'DE'], ['name' => 'Palencia', 'country_code' => 'GT'], ['name' => 'Troy', 'country_code' => 'US'], ['name' => 'Newark', 'country_code' => 'US'], ['name' => 'Starachowice', 'country_code' => 'PL'], ['name' => 'Kalamansig', 'country_code' => 'PH'], ['name' => 'La Reja', 'country_code' => 'AR'], ['name' => 'Cuyahoga Falls', 'country_code' => 'US'], ['name' => 'Ascoli Piceno', 'country_code' => 'IT'], ['name' => 'Lower Paxton', 'country_code' => 'US'], ['name' => 'Rheda-Wiedenbruck', 'country_code' => 'DE'], ['name' => 'Downers Grove', 'country_code' => 'US'], ['name' => 'Jales', 'country_code' => 'BR'], ['name' => 'Libungan', 'country_code' => 'PH'], ['name' => 'Bedford', 'country_code' => 'US'], ['name' => 'Reedley', 'country_code' => 'US'], ['name' => 'Dublin', 'country_code' => 'US'], ['name' => 'Marana', 'country_code' => 'US'], ['name' => 'Kiblawan', 'country_code' => 'PH'], ['name' => 'Hamtic', 'country_code' => 'PH'], ['name' => 'Al Mayadin', 'country_code' => 'SY'], ['name' => 'Claveria', 'country_code' => 'PH'], ['name' => 'Huaquillas', 'country_code' => 'EC'], ['name' => 'Martina Franca', 'country_code' => 'IT'], ['name' => 'Sao Goncalo do Amarante', 'country_code' => 'BR'], ['name' => 'Murray', 'country_code' => 'US'], ['name' => 'Bornheim', 'country_code' => 'DE'], ['name' => 'Omitama', 'country_code' => 'JP'], ['name' => 'Roswell', 'country_code' => 'US'], ['name' => 'Pascagoula', 'country_code' => 'US'], ['name' => 'Martigues', 'country_code' => 'FR'], ['name' => 'Waingapu', 'country_code' => 'ID'], ['name' => 'Brandon', 'country_code' => 'CA'], ['name' => 'Batajnica', 'country_code' => 'RS'], ['name' => 'Bom Conselho', 'country_code' => 'BR'], ['name' => 'Sanare', 'country_code' => 'VE'], ['name' => 'Tuckahoe', 'country_code' => 'US'], ['name' => 'Poblacion', 'country_code' => 'PH'], ['name' => 'El Jem', 'country_code' => 'TN'], ['name' => 'Dachau', 'country_code' => 'DE'], ['name' => 'Suwa', 'country_code' => 'JP'], ['name' => 'Ami', 'country_code' => 'JP'], ['name' => 'Jasdan', 'country_code' => 'IN'], ['name' => 'Ladysmith', 'country_code' => 'ZA'], ['name' => 'Kozlu', 'country_code' => 'TR'], ['name' => 'Minalin', 'country_code' => 'PH'], ['name' => 'Alaminos', 'country_code' => 'PH'], ['name' => 'Gronau', 'country_code' => 'DE'], ['name' => 'Garmsar', 'country_code' => 'IR'], ['name' => 'Settimo Torinese', 'country_code' => 'IT'], ['name' => ' Ain Azel', 'country_code' => 'DZ'], ['name' => 'Wakema', 'country_code' => 'MM'], ['name' => 'Port Macquarie', 'country_code' => 'AU'], ['name' => 'Rimouski', 'country_code' => 'CA'], ['name' => 'St. Louis Park', 'country_code' => 'US'], ['name' => 'Cuxhaven', 'country_code' => 'DE'], ['name' => 'Angol', 'country_code' => 'CL'], ['name' => 'San Narciso', 'country_code' => 'PH'], ['name' => 'Penablanca', 'country_code' => 'PH'], ['name' => 'Yarumal', 'country_code' => 'CO'], ['name' => 'Namtu', 'country_code' => 'MM'], ['name' => 'Rio Grande City', 'country_code' => 'US'], ['name' => 'Matay', 'country_code' => 'EG'], ['name' => 'Draper', 'country_code' => 'US'], ['name' => 'Gava', 'country_code' => 'ES'], ['name' => 'Rumia', 'country_code' => 'PL'], ['name' => 'Dongshan', 'country_code' => 'CN'], ['name' => 'Harderwijk', 'country_code' => 'NL'], ['name' => 'Sibonga', 'country_code' => 'PH'], ['name' => 'Corato', 'country_code' => 'IT'], ['name' => 'Kolobrzeg', 'country_code' => 'PL'], ['name' => 'Zutphen', 'country_code' => 'NL'], ['name' => 'Sanmu', 'country_code' => 'JP'], ['name' => 'Palm Springs', 'country_code' => 'US'], ['name' => 'Beveren', 'country_code' => 'BE'], ['name' => 'Kurganinsk', 'country_code' => 'RU'], ['name' => 'Alsdorf', 'country_code' => 'DE'], ['name' => 'Straubing', 'country_code' => 'DE'], ['name' => 'San Pedro Mixtepec', 'country_code' => 'MX'], ['name' => 'Paducah', 'country_code' => 'US'], ['name' => ' Akko', 'country_code' => 'IL'], ['name' => 'Baiao', 'country_code' => 'BR'], ['name' => 'Findlay', 'country_code' => 'US'], ['name' => 'Ishigaki', 'country_code' => 'JP'], ['name' => 'Dornbirn', 'country_code' => 'AT'], ['name' => 'Damavand', 'country_code' => 'IR'], ['name' => 'Bel Air South', 'country_code' => 'US'], ['name' => 'Bulungu', 'country_code' => 'CD'], ['name' => 'Kyle', 'country_code' => 'US'], ['name' => 'Tarnobrzeg', 'country_code' => 'PL'], ['name' => 'Longtoushan Jiezi', 'country_code' => 'CN'], ['name' => 'Decin', 'country_code' => 'CZ'], ['name' => 'Durham', 'country_code' => 'GB'], ['name' => 'Xique-Xique', 'country_code' => 'BR'], ['name' => 'Campi Bisenzio', 'country_code' => 'IT'], ['name' => 'Santa Catarina Ixtahuacan', 'country_code' => 'GT'], ['name' => 'Monroe', 'country_code' => 'US'], ['name' => 'Rio Grande da Serra', 'country_code' => 'BR'], ['name' => 'Beypazari', 'country_code' => 'TR'], ['name' => 'Zhujiacun', 'country_code' => 'CN'], ['name' => 'Lincoln', 'country_code' => 'US'], ['name' => 'Pangkou', 'country_code' => 'CN'], ['name' => 'Turda', 'country_code' => 'RO'], ['name' => 'Ocoee', 'country_code' => 'US'], ['name' => 'Brianka', 'country_code' => 'UA'], ['name' => 'Burleson', 'country_code' => 'US'], ['name' => 'Mauriti', 'country_code' => 'BR'], ['name' => 'Kita', 'country_code' => 'ML'], ['name' => 'Finike', 'country_code' => 'TR'], ['name' => 'Donetsk', 'country_code' => 'RU'], ['name' => 'Alta Gracia', 'country_code' => 'AR'], ['name' => 'Shimotsucho-kominami', 'country_code' => 'JP'], ['name' => 'Farmers Branch', 'country_code' => 'US'], ['name' => 'Paterno', 'country_code' => 'IT'], ['name' => 'Semara', 'country_code' => 'MA'], ['name' => 'East Lansing', 'country_code' => 'US'], ['name' => 'Uniontown', 'country_code' => 'US'], ['name' => 'Yongping', 'country_code' => 'CN'], ['name' => 'Kashira', 'country_code' => 'RU'], ['name' => 'Shelekhov', 'country_code' => 'RU'], ['name' => 'Jeffersonville', 'country_code' => 'US'], ['name' => 'Winder', 'country_code' => 'US'], ['name' => 'Wauwatosa', 'country_code' => 'US'], ['name' => 'Asturias', 'country_code' => 'PH'], ['name' => 'Sison', 'country_code' => 'PH'], ['name' => 'Presidente Dutra', 'country_code' => 'BR'], ['name' => 'Vila Verde', 'country_code' => 'PT'], ['name' => 'Ena', 'country_code' => 'JP'], ['name' => 'Mengmeng', 'country_code' => 'CN'], ['name' => 'Ridderkerk', 'country_code' => 'NL'], ['name' => 'Skierniewice', 'country_code' => 'PL'], ['name' => 'Littleton', 'country_code' => 'US'], ['name' => 'General Tinio', 'country_code' => 'PH'], ['name' => 'Amulung', 'country_code' => 'PH'], ['name' => 'Otradnyy', 'country_code' => 'RU'], ['name' => 'Aringay', 'country_code' => 'PH'], ['name' => 'Soest', 'country_code' => 'DE'], ['name' => 'Tonami', 'country_code' => 'JP'], ['name' => 'Conceicao do Araguaia', 'country_code' => 'BR'], ['name' => 'Cumberland', 'country_code' => 'US'], ['name' => 'Higashine', 'country_code' => 'JP'], ['name' => 'Mapastepec', 'country_code' => 'MX'], ['name' => 'Monte Carmelo', 'country_code' => 'BR'], ['name' => 'San Francisco', 'country_code' => 'GT'], ['name' => 'Stade', 'country_code' => 'DE'], ['name' => 'Diamantina', 'country_code' => 'BR'], ['name' => 'Medias', 'country_code' => 'RO'], ['name' => 'Cedar Hill', 'country_code' => 'US'], ['name' => 'Santana do Ipanema', 'country_code' => 'BR'], ['name' => 'Carrollton', 'country_code' => 'US'], ['name' => 'Impasugong', 'country_code' => 'PH'], ['name' => 'Golpayegan', 'country_code' => 'IR'], ['name' => 'Charleville-Mezieres', 'country_code' => 'FR'], ['name' => 'Dila', 'country_code' => 'ET'], ['name' => 'Rancho Santa Margarita', 'country_code' => 'US'], ['name' => 'Jiquilisco', 'country_code' => 'SV'], ['name' => 'Pakenham', 'country_code' => 'AU'], ['name' => 'Lousada', 'country_code' => 'PT'], ['name' => 'Brive-la-Gaillarde', 'country_code' => 'FR'], ['name' => 'Santa Ignacia', 'country_code' => 'PH'], ['name' => 'Masinloc', 'country_code' => 'PH'], ['name' => 'Kuilsrivier', 'country_code' => 'ZA'], ['name' => 'Yecun', 'country_code' => 'CN'], ['name' => 'Cornelio Procopio', 'country_code' => 'BR'], ['name' => 'Atalaia', 'country_code' => 'BR'], ['name' => 'Washington', 'country_code' => 'US'], ['name' => 'East Brunswick', 'country_code' => 'US'], ['name' => 'Luwuk', 'country_code' => 'ID'], ['name' => 'Bantacan', 'country_code' => 'PH'], ['name' => 'Saint-Herblain', 'country_code' => 'FR'], ['name' => 'Tuba', 'country_code' => 'PH'], ['name' => 'Penco', 'country_code' => 'CL'], ['name' => 'Herzogenrath', 'country_code' => 'DE'], ['name' => 'Ribeirao', 'country_code' => 'BR'], ['name' => 'Caramoan', 'country_code' => 'PH'], ['name' => 'Vyshniy Volochek', 'country_code' => 'RU'], ['name' => 'Saint-Priest', 'country_code' => 'FR'], ['name' => 'Al Madrah Sama il', 'country_code' => 'OM'], ['name' => 'Al Majma ah', 'country_code' => 'SA'], ['name' => 'Beavercreek', 'country_code' => 'US'], ['name' => 'Joao Pinheiro', 'country_code' => 'BR'], ['name' => 'Dulag', 'country_code' => 'PH'], ['name' => 'Niagara Falls', 'country_code' => 'US'], ['name' => 'Hitachi-ota', 'country_code' => 'JP'], ['name' => 'Snizhne', 'country_code' => 'UA'], ['name' => 'Amahai', 'country_code' => 'ID'], ['name' => 'McLean', 'country_code' => 'US'], ['name' => 'Ipiau', 'country_code' => 'BR'], ['name' => 'Rieti', 'country_code' => 'IT'], ['name' => 'President Roxas', 'country_code' => 'PH'], ['name' => ' Amuda', 'country_code' => 'SY'], ['name' => 'Isabel', 'country_code' => 'PH'], ['name' => 'Dumingag', 'country_code' => 'PH'], ['name' => 'San Lorenzo', 'country_code' => 'AR'], ['name' => 'Chaidari', 'country_code' => 'GR'], ['name' => 'East Providence', 'country_code' => 'US'], ['name' => 'Jitaicun', 'country_code' => 'CN'], ['name' => 'Kafue', 'country_code' => 'ZM'], ['name' => 'Kutno', 'country_code' => 'PL'], ['name' => 'Livny', 'country_code' => 'RU'], ['name' => 'Azna', 'country_code' => 'IR'], ['name' => 'East Honolulu', 'country_code' => 'US'], ['name' => 'Chesterfield', 'country_code' => 'US'], ['name' => 'La Vega', 'country_code' => 'CO'], ['name' => 'Capao Bonito', 'country_code' => 'BR'], ['name' => 'San Pedro', 'country_code' => 'AR'], ['name' => 'San Jose Pinula', 'country_code' => 'GT'], ['name' => 'Ban Plai Bua Phatthana', 'country_code' => 'TH'], ['name' => 'Santa Ana Chiautempan', 'country_code' => 'MX'], ['name' => 'Lohja', 'country_code' => 'FI'], ['name' => 'Qingyuan', 'country_code' => 'CN'], ['name' => 'San Andres de Sotavento', 'country_code' => 'CO'], ['name' => 'Sanski Most', 'country_code' => 'BA'], ['name' => 'Chaparral', 'country_code' => 'CO'], ['name' => 'Bothell', 'country_code' => 'US'], ['name' => 'Jobabo', 'country_code' => 'CU'], ['name' => 'Villa Constitucion', 'country_code' => 'AR'], ['name' => 'Andes', 'country_code' => 'CO'], ['name' => 'Saint-Malo', 'country_code' => 'FR'], ['name' => 'West Orange', 'country_code' => 'US'], ['name' => 'Ouled Moussa', 'country_code' => 'DZ'], ['name' => 'Tangdukou', 'country_code' => 'CN'], ['name' => 'Kingisepp', 'country_code' => 'RU'], ['name' => 'Talghar', 'country_code' => 'KZ'], ['name' => 'Liulin', 'country_code' => 'CN'], ['name' => 'Fellbach', 'country_code' => 'DE'], ['name' => 'Daxiang', 'country_code' => 'CN'], ['name' => 'Yabrud', 'country_code' => 'SY'], ['name' => 'Blois', 'country_code' => 'FR'], ['name' => 'Tomioka', 'country_code' => 'JP'], ['name' => 'Glenview', 'country_code' => 'US'], ['name' => 'Ban Bang Mae Nang', 'country_code' => 'TH'], ['name' => 'Yehe', 'country_code' => 'CN'], ['name' => 'Tursunzoda', 'country_code' => 'TJ'], ['name' => 'Ayapel', 'country_code' => 'CO'], ['name' => 'Oberursel', 'country_code' => 'DE'], ['name' => 'Mentor', 'country_code' => 'US'], ['name' => 'Antalaha', 'country_code' => 'MG'], ['name' => 'Mabini', 'country_code' => 'PH'], ['name' => 'Puertollano', 'country_code' => 'ES'], ['name' => 'Landau', 'country_code' => 'DE'], ['name' => 'Keller', 'country_code' => 'US'], ['name' => 'Barras', 'country_code' => 'BR'], ['name' => 'Zarzal', 'country_code' => 'CO'], ['name' => 'Douz', 'country_code' => 'TN'], ['name' => 'Zarinsk', 'country_code' => 'RU'], ['name' => 'Huatan', 'country_code' => 'TW'], ['name' => 'Marhanets', 'country_code' => 'UA'], ['name' => 'Schwerte', 'country_code' => 'DE'], ['name' => 'Poso', 'country_code' => 'ID'], ['name' => 'Urrao', 'country_code' => 'CO'], ['name' => 'Tres Arroyos', 'country_code' => 'AR'], ['name' => 'Aubagne', 'country_code' => 'FR'], ['name' => 'Nysa', 'country_code' => 'PL'], ['name' => 'Calimaya', 'country_code' => 'MX'], ['name' => 'Ha Tien', 'country_code' => 'VN'], ['name' => 'Neunkirchen', 'country_code' => 'DE'], ['name' => 'Qiutouzhen', 'country_code' => 'CN'], ['name' => 'Danville', 'country_code' => 'US'], ['name' => 'Noboribetsu', 'country_code' => 'JP'], ['name' => 'Guajara-Mirim', 'country_code' => 'BR'], ['name' => 'Frosinone', 'country_code' => 'IT'], ['name' => 'Pio Duran', 'country_code' => 'PH'], ['name' => 'Spring Hill', 'country_code' => 'US'], ['name' => 'Al Qusayr', 'country_code' => 'SY'], ['name' => 'Norala', 'country_code' => 'PH'], ['name' => 'Roseville', 'country_code' => 'US'], ['name' => 'Cubulco', 'country_code' => 'GT'], ['name' => 'Wangtan', 'country_code' => 'CN'], ['name' => 'Roldanillo', 'country_code' => 'CO'], ['name' => 'Filderstadt', 'country_code' => 'DE'], ['name' => 'Siocon', 'country_code' => 'PH'], ['name' => 'Fastiv', 'country_code' => 'UA'], ['name' => 'Nanzhuangzhen', 'country_code' => 'CN'], ['name' => 'Tocoa', 'country_code' => 'HN'], ['name' => 'Yashan', 'country_code' => 'CN'], ['name' => 'Valencia', 'country_code' => 'CO'], ['name' => 'Nakai', 'country_code' => 'JP'], ['name' => 'Agrinio', 'country_code' => 'GR'], ['name' => 'Talisay', 'country_code' => 'PH'], ['name' => 'Lukavac', 'country_code' => 'BA'], ['name' => 'San Pascual', 'country_code' => 'PH'], ['name' => 'Dongzhuosu', 'country_code' => 'CN'], ['name' => 'Dulmen', 'country_code' => 'DE'], ['name' => 'Shimeo', 'country_code' => 'JP'], ['name' => 'Rosario', 'country_code' => 'PH'], ['name' => 'Fangguan', 'country_code' => 'CN'], ['name' => 'Lubny', 'country_code' => 'UA'], ['name' => 'Tamagawa', 'country_code' => 'JP'], ['name' => 'San Francisco de los Romo', 'country_code' => 'MX'], ['name' => 'Pontevedra', 'country_code' => 'PH'], ['name' => 'Berezovskiy', 'country_code' => 'RU'], ['name' => 'Jablonec nad Nisou', 'country_code' => 'CZ'], ['name' => 'Vercelli', 'country_code' => 'IT'], ['name' => 'Mahayag', 'country_code' => 'PH'], ['name' => 'Elmhurst', 'country_code' => 'US'], ['name' => 'Carcassonne', 'country_code' => 'FR'], ['name' => 'Sao Mateus do Sul', 'country_code' => 'BR'], ['name' => 'Niquelandia', 'country_code' => 'BR'], ['name' => 'Hof', 'country_code' => 'DE'], ['name' => 'Veldhoven', 'country_code' => 'NL'], ['name' => 'Dauis', 'country_code' => 'PH'], ['name' => 'Medianeira', 'country_code' => 'BR'], ['name' => 'Cabreuva', 'country_code' => 'BR'], ['name' => 'New Philadelphia', 'country_code' => 'US'], ['name' => 'Melle', 'country_code' => 'DE'], ['name' => 'Santa Cruz do Rio Pardo', 'country_code' => 'BR'], ['name' => 'Perinton', 'country_code' => 'US'], ['name' => 'Terracina', 'country_code' => 'IT'], ['name' => 'Sandusky', 'country_code' => 'US'], ['name' => 'Puerto Villarroel', 'country_code' => 'BO'], ['name' => 'Jocotepec', 'country_code' => 'MX'], ['name' => 'Shimenzhai', 'country_code' => 'CN'], ['name' => 'Eusebio', 'country_code' => 'BR'], ['name' => 'Hyvinkaa', 'country_code' => 'FI'], ['name' => 'El Dorado Hills', 'country_code' => 'US'], ['name' => 'Cornwall', 'country_code' => 'CA'], ['name' => 'Puerto Tejada', 'country_code' => 'CO'], ['name' => 'Morrinhos', 'country_code' => 'BR'], ['name' => 'Salina', 'country_code' => 'US'], ['name' => 'Euclid', 'country_code' => 'US'], ['name' => 'Gryazi', 'country_code' => 'RU'], ['name' => 'Kingman', 'country_code' => 'US'], ['name' => 'Augusto Correa', 'country_code' => 'BR'], ['name' => 'Sena Madureira', 'country_code' => 'BR'], ['name' => 'Panay', 'country_code' => 'PH'], ['name' => 'Fray Bartolome de Las Casas', 'country_code' => 'GT'], ['name' => 'Carmen', 'country_code' => 'PH'], ['name' => 'Dendermonde', 'country_code' => 'BE'], ['name' => 'Sirinhaem', 'country_code' => 'BR'], ['name' => 'Albuera', 'country_code' => 'PH'], ['name' => 'Kilmarnock', 'country_code' => 'GB'], ['name' => 'Ayungon', 'country_code' => 'PH'], ['name' => 'Berekum', 'country_code' => 'GH'], ['name' => 'Tibigan', 'country_code' => 'PH'], ['name' => 'Chalons-en-Champagne', 'country_code' => 'FR'], ['name' => 'Rio Tercero', 'country_code' => 'AR'], ['name' => 'Kurayoshi', 'country_code' => 'JP'], ['name' => 'Montecristi', 'country_code' => 'EC'], ['name' => 'Kasaoka', 'country_code' => 'JP'], ['name' => 'Torzhok', 'country_code' => 'RU'], ['name' => 'Zwijndrecht', 'country_code' => 'NL'], ['name' => 'Chichigalpa', 'country_code' => 'NI'], ['name' => 'Gotha', 'country_code' => 'DE'], ['name' => 'Anshan', 'country_code' => 'CN'], ['name' => 'Capannori', 'country_code' => 'IT'], ['name' => 'Tingo Maria', 'country_code' => 'PE'], ['name' => 'Dumarao', 'country_code' => 'PH'], ['name' => 'Tallbisah', 'country_code' => 'SY'], ['name' => 'Jammalamadugu', 'country_code' => 'IN'], ['name' => 'Lodi', 'country_code' => 'IT'], ['name' => 'Farmington', 'country_code' => 'US'], ['name' => 'Ocampo', 'country_code' => 'PH'], ['name' => 'Santiago Atitlan', 'country_code' => 'GT'], ['name' => 'Santo Antonio da Platina', 'country_code' => 'BR'], ['name' => 'Takashima', 'country_code' => 'JP'], ['name' => 'Marino', 'country_code' => 'IT'], ['name' => 'Bunde', 'country_code' => 'DE'], ['name' => 'Weatherford', 'country_code' => 'US'], ['name' => 'Middletown', 'country_code' => 'US'], ['name' => 'Inabanga', 'country_code' => 'PH'], ['name' => 'Mairinque', 'country_code' => 'BR'], ['name' => 'Roseburg', 'country_code' => 'US'], ['name' => 'Biloxi', 'country_code' => 'US'], ['name' => 'Maragogipe', 'country_code' => 'BR'], ['name' => 'Wittenberg', 'country_code' => 'DE'], ['name' => 'Roskilde', 'country_code' => 'DK'], ['name' => 'Leavenworth', 'country_code' => 'US'], ['name' => 'Megion', 'country_code' => 'RU'], ['name' => 'Salon-de-Provence', 'country_code' => 'FR'], ['name' => 'Bajil', 'country_code' => 'YE'], ['name' => 'Manono', 'country_code' => 'CD'], ['name' => 'Xingji', 'country_code' => 'CN'], ['name' => 'Hokota', 'country_code' => 'JP'], ['name' => 'Pontal', 'country_code' => 'BR'], ['name' => 'Aksay', 'country_code' => 'RU'], ['name' => 'Fort Pierce', 'country_code' => 'US'], ['name' => 'Shima', 'country_code' => 'JP'], ['name' => 'Weinheim', 'country_code' => 'DE'], ['name' => 'Livramento de Nossa Senhora', 'country_code' => 'BR'], ['name' => 'Barotac Viejo', 'country_code' => 'PH'], ['name' => 'Winter Garden', 'country_code' => 'US'], ['name' => 'Mlada Boleslav', 'country_code' => 'CZ'], ['name' => 'Oro Valley', 'country_code' => 'US'], ['name' => 'Ourem', 'country_code' => 'PT'], ['name' => 'Santa Rosa del Sur', 'country_code' => 'CO'], ['name' => 'Erkrath', 'country_code' => 'DE'], ['name' => 'Freeport City', 'country_code' => 'BS'], ['name' => 'Iranduba', 'country_code' => 'BR'], ['name' => 'Caiguantun', 'country_code' => 'CN'], ['name' => 'Guaramirim', 'country_code' => 'BR'], ['name' => 'Wao', 'country_code' => 'PH'], ['name' => 'Morgan Hill', 'country_code' => 'US'], ['name' => 'Ciudad Constitucion', 'country_code' => 'MX'], ['name' => 'Haymana', 'country_code' => 'TR'], ['name' => 'Potomac', 'country_code' => 'US'], ['name' => 'Pinehurst', 'country_code' => 'US'], ['name' => 'Chippenham', 'country_code' => 'GB'], ['name' => 'Changchong', 'country_code' => 'CN'], ['name' => 'Rodgau', 'country_code' => 'DE'], ['name' => 'Winchester', 'country_code' => 'GB'], ['name' => 'Danville', 'country_code' => 'US'], ['name' => 'Rockwall', 'country_code' => 'US'], ['name' => 'Mata de Sao Joao', 'country_code' => 'BR'], ['name' => 'Pilar', 'country_code' => 'PH'], ['name' => 'Dracena', 'country_code' => 'BR'], ['name' => 'Xisa', 'country_code' => 'CN'], ['name' => 'Salvador', 'country_code' => 'CU'], ['name' => 'Stouffville', 'country_code' => 'CA'], ['name' => 'Kariya', 'country_code' => 'JP'], ['name' => 'Dingle', 'country_code' => 'PH'], ['name' => 'Cascina', 'country_code' => 'IT'], ['name' => 'Pontes e Lacerda', 'country_code' => 'BR'], ['name' => 'Hokuto', 'country_code' => 'JP'], ['name' => 'Katipunan', 'country_code' => 'PH'], ['name' => 'Coachella', 'country_code' => 'US'], ['name' => 'Olhao', 'country_code' => 'PT'], ['name' => 'Baijie', 'country_code' => 'CN'], ['name' => 'Jones', 'country_code' => 'PH'], ['name' => 'Malinao', 'country_code' => 'PH'], ['name' => 'Salcedo', 'country_code' => 'DO'], ['name' => 'Remedios', 'country_code' => 'CU'], ['name' => 'Sao Bento', 'country_code' => 'BR'], ['name' => 'New Washington', 'country_code' => 'PH'], ['name' => 'Rameswaram', 'country_code' => 'IN'], ['name' => 'Albstadt', 'country_code' => 'DE'], ['name' => 'Cuautepec de Hinojosa', 'country_code' => 'MX'], ['name' => 'Wake Forest', 'country_code' => 'US'], ['name' => 'Bruhl', 'country_code' => 'DE'], ['name' => 'Alcamo', 'country_code' => 'IT'], ['name' => 'Saint-Germain-en-Laye', 'country_code' => 'FR'], ['name' => 'San Pedro Ayampuc', 'country_code' => 'GT'], ['name' => 'Odiongan', 'country_code' => 'PH'], ['name' => 'Pearl City', 'country_code' => 'US'], ['name' => 'Beaufort West', 'country_code' => 'ZA'], ['name' => 'Rada ', 'country_code' => 'YE'], ['name' => 'Aliwal North', 'country_code' => 'ZA'], ['name' => 'Wallsend', 'country_code' => 'GB'], ['name' => 'Tangjia', 'country_code' => 'CN'], ['name' => 'Goianira', 'country_code' => 'BR'], ['name' => 'Cerquilho Velho', 'country_code' => 'BR'], ['name' => 'San Pelayo', 'country_code' => 'CO'], ['name' => 'Kamen -na-Obi', 'country_code' => 'RU'], ['name' => 'Tupelo', 'country_code' => 'US'], ['name' => 'San Pedro Perulapan', 'country_code' => 'SV'], ['name' => 'Nongzhangjie', 'country_code' => 'CN'], ['name' => 'Carnot', 'country_code' => 'CF'], ['name' => 'Chateauroux', 'country_code' => 'FR'], ['name' => 'Uruara', 'country_code' => 'BR'], ['name' => 'Shazhou', 'country_code' => 'CN'], ['name' => 'Birak', 'country_code' => 'LY'], ['name' => 'Pinamar', 'country_code' => 'AR'], ['name' => 'Georgina', 'country_code' => 'CA'], ['name' => 'South Brunswick', 'country_code' => 'US'], ['name' => 'Guinayangan', 'country_code' => 'PH'], ['name' => 'Alcira', 'country_code' => 'ES'], ['name' => 'West Seneca', 'country_code' => 'US'], ['name' => 'Bingmei', 'country_code' => 'CN'], ['name' => 'Svitlovodsk', 'country_code' => 'UA'], ['name' => 'Victoriaville', 'country_code' => 'CA'], ['name' => 'Ruzayevka', 'country_code' => 'RU'], ['name' => 'Debica', 'country_code' => 'PL'], ['name' => 'Biella', 'country_code' => 'IT'], ['name' => 'Actopan', 'country_code' => 'MX'], ['name' => 'Brejo Santo', 'country_code' => 'BR'], ['name' => 'Gloria', 'country_code' => 'PH'], ['name' => 'Brejo da Madre de Deus', 'country_code' => 'BR'], ['name' => 'Bunawan', 'country_code' => 'PH'], ['name' => 'Attleboro', 'country_code' => 'US'], ['name' => 'Tank', 'country_code' => 'PK'], ['name' => 'Seabra', 'country_code' => 'BR'], ['name' => 'Sogod', 'country_code' => 'PH'], ['name' => 'Sugito', 'country_code' => 'JP'], ['name' => 'Pine Bluff', 'country_code' => 'US'], ['name' => 'Dimitrovgrad', 'country_code' => 'BG'], ['name' => 'Wiener Neustadt', 'country_code' => 'AT'], ['name' => 'Marion', 'country_code' => 'US'], ['name' => 'Afula', 'country_code' => 'IL'], ['name' => 'Shangshan', 'country_code' => 'CN'], ['name' => 'Hassi Messaoud', 'country_code' => 'DZ'], ['name' => 'Beiwanglizhen', 'country_code' => 'CN'], ['name' => 'Evesham', 'country_code' => 'US'], ['name' => 'Liuquan', 'country_code' => 'CN'], ['name' => 'Bruchsal', 'country_code' => 'DE'], ['name' => 'Yaopu', 'country_code' => 'CN'], ['name' => 'Middletown', 'country_code' => 'US'], ['name' => 'Grantham', 'country_code' => 'GB'], ['name' => 'Xinguara', 'country_code' => 'BR'], ['name' => 'Tres Valles', 'country_code' => 'MX'], ['name' => 'Rabinal', 'country_code' => 'GT'], ['name' => 'Buenos Aires', 'country_code' => 'CR'], ['name' => 'Hilo', 'country_code' => 'US'], ['name' => 'Kimry', 'country_code' => 'RU'], ['name' => 'Sete', 'country_code' => 'FR'], ['name' => 'Shahhat', 'country_code' => 'LY'], ['name' => 'Barra de Sao Francisco', 'country_code' => 'BR'], ['name' => 'Shchuchinsk', 'country_code' => 'KZ'], ['name' => 'Parma', 'country_code' => 'RU'], ['name' => 'Sidcup', 'country_code' => 'GB'], ['name' => 'Senigallia', 'country_code' => 'IT'], ['name' => 'Yatagan', 'country_code' => 'TR'], ['name' => 'Kaufbeuren', 'country_code' => 'DE'], ['name' => 'Medemblik', 'country_code' => 'NL'], ['name' => 'Pederneiras', 'country_code' => 'BR'], ['name' => 'Mount Pleasant', 'country_code' => 'US'], ['name' => 'Rasskazovo', 'country_code' => 'RU'], ['name' => 'Currais Novos', 'country_code' => 'BR'], ['name' => 'Lapa', 'country_code' => 'BR'], ['name' => 'Nadym', 'country_code' => 'RU'], ['name' => 'Marau', 'country_code' => 'BR'], ['name' => 'Drama', 'country_code' => 'GR'], ['name' => 'Vallenar', 'country_code' => 'CL'], ['name' => 'Dunakeszi', 'country_code' => 'HU'], ['name' => 'Pemangkat', 'country_code' => 'ID'], ['name' => 'Volkhov', 'country_code' => 'RU'], ['name' => 'Houbu', 'country_code' => 'CN'], ['name' => 'Lufkin', 'country_code' => 'US'], ['name' => 'Darcheh', 'country_code' => 'IR'], ['name' => 'Zhovti Vody', 'country_code' => 'UA'], ['name' => 'Middleton', 'country_code' => 'GB'], ['name' => 'Falkensee', 'country_code' => 'DE'], ['name' => 'Paraguacu Paulista', 'country_code' => 'BR'], ['name' => 'Bexhill', 'country_code' => 'GB'], ['name' => 'Chusovoy', 'country_code' => 'RU'], ['name' => 'Singhanakhon', 'country_code' => 'TH'], ['name' => 'Oranienburg', 'country_code' => 'DE'], ['name' => 'Jisr ash Shughur', 'country_code' => 'SY'], ['name' => 'Manitowoc', 'country_code' => 'US'], ['name' => 'Nidadavole', 'country_code' => 'IN'], ['name' => 'Maitum', 'country_code' => 'PH'], ['name' => 'Yaoquan', 'country_code' => 'CN'], ['name' => 'Taketoyo', 'country_code' => 'JP'], ['name' => 'Lake Ridge', 'country_code' => 'US'], ['name' => 'Selma', 'country_code' => 'US'], ['name' => 'Manacor', 'country_code' => 'ES'], ['name' => 'Talagutong', 'country_code' => 'PH'], ['name' => 'Ban Pet', 'country_code' => 'TH'], ['name' => 'Strongsville', 'country_code' => 'US'], ['name' => 'Louveira', 'country_code' => 'BR'], ['name' => 'Seferhisar', 'country_code' => 'TR'], ['name' => 'Arboletes', 'country_code' => 'CO'], ['name' => 'Garca', 'country_code' => 'BR'], ['name' => 'Uniao', 'country_code' => 'BR'], ['name' => 'Vernon', 'country_code' => 'CA'], ['name' => 'Wallingford', 'country_code' => 'US'], ['name' => 'Paraiba do Sul', 'country_code' => 'BR'], ['name' => 'Kaarst', 'country_code' => 'DE'], ['name' => 'Tiberias', 'country_code' => 'IL'], ['name' => 'Lal-lo', 'country_code' => 'PH'], ['name' => 'Etten-Leur', 'country_code' => 'NL'], ['name' => 'Vlissingen', 'country_code' => 'NL'], ['name' => 'Masuda', 'country_code' => 'JP'], ['name' => 'Les Sables-d Olonne', 'country_code' => 'FR'], ['name' => 'Qingfengdian', 'country_code' => 'CN'], ['name' => 'Changtoushang', 'country_code' => 'CN'], ['name' => 'Webster', 'country_code' => 'US'], ['name' => 'Abovyan', 'country_code' => 'AM'], ['name' => 'Danville', 'country_code' => 'US'], ['name' => 'Mamanguape', 'country_code' => 'BR'], ['name' => 'Petatlan', 'country_code' => 'MX'], ['name' => 'Prostejov', 'country_code' => 'CZ'], ['name' => 'Kabasalan', 'country_code' => 'PH'], ['name' => 'Bietigheim-Bissingen', 'country_code' => 'DE'], ['name' => 'Bridgewater', 'country_code' => 'US'], ['name' => 'Quincy', 'country_code' => 'US'], ['name' => 'Memmingen', 'country_code' => 'DE'], ['name' => 'San Juan y Martinez', 'country_code' => 'CU'], ['name' => 'Lancaster', 'country_code' => 'US'], ['name' => 'Riverton', 'country_code' => 'US'], ['name' => 'The Colony', 'country_code' => 'US'], ['name' => 'Simojovel de Allende', 'country_code' => 'MX'], ['name' => 'Neustadt am Rubenberge', 'country_code' => 'DE'], ['name' => 'Bassano del Grappa', 'country_code' => 'IT'], ['name' => 'Sao Jose de Mipibu', 'country_code' => 'BR'], ['name' => 'Upper Hutt', 'country_code' => 'NZ'], ['name' => 'Urbandale', 'country_code' => 'US'], ['name' => 'Narvacan', 'country_code' => 'PH'], ['name' => 'Tuodian', 'country_code' => 'CN'], ['name' => 'Alcala', 'country_code' => 'PH'], ['name' => 'Lehrte', 'country_code' => 'DE'], ['name' => 'Rheden', 'country_code' => 'NL'], ['name' => 'Volksrust', 'country_code' => 'ZA'], ['name' => 'Sao Benedito', 'country_code' => 'BR'], ['name' => 'Plainfield', 'country_code' => 'US'], ['name' => 'Monroe', 'country_code' => 'US'], ['name' => 'Lombard', 'country_code' => 'US'], ['name' => 'Prescott', 'country_code' => 'US'], ['name' => 'Balimbing', 'country_code' => 'PH'], ['name' => 'Dikili', 'country_code' => 'TR'], ['name' => 'Korogwe', 'country_code' => 'TZ'], ['name' => 'Krasnodon', 'country_code' => 'UA'], ['name' => 'Hanerik', 'country_code' => 'CN'], ['name' => 'Xin ansuo', 'country_code' => 'CN'], ['name' => 'Zevenaar', 'country_code' => 'NL'], ['name' => 'Eureka', 'country_code' => 'US'], ['name' => 'Addanki', 'country_code' => 'IN'], ['name' => 'Panambi', 'country_code' => 'BR'], ['name' => 'Igarape', 'country_code' => 'BR'], ['name' => 'Tuy', 'country_code' => 'PH'], ['name' => 'Catacamas', 'country_code' => 'HN'], ['name' => 'Hagi', 'country_code' => 'JP'], ['name' => 'Malabang', 'country_code' => 'PH'], ['name' => 'Kuybyshev', 'country_code' => 'RU'], ['name' => 'Sayreville', 'country_code' => 'US'], ['name' => 'Alghero', 'country_code' => 'IT'], ['name' => 'Saint-Eustache', 'country_code' => 'CA'], ['name' => 'Lupao', 'country_code' => 'PH'], ['name' => 'Otofuke', 'country_code' => 'JP'], ['name' => 'Enfield', 'country_code' => 'US'], ['name' => 'Altamonte Springs', 'country_code' => 'US'], ['name' => 'Jinku', 'country_code' => 'CN'], ['name' => 'Yartsevo', 'country_code' => 'RU'], ['name' => 'San Cristobal Totonicapan', 'country_code' => 'GT'], ['name' => 'Del Rio', 'country_code' => 'US'], ['name' => 'Voluntari', 'country_code' => 'RO'], ['name' => 'Kastel Stari', 'country_code' => 'HR'], ['name' => 'Libona', 'country_code' => 'PH'], ['name' => 'Pantanal', 'country_code' => 'DO'], ['name' => 'Comendador', 'country_code' => 'DO'], ['name' => 'Xinjun', 'country_code' => 'CN'], ['name' => 'Mastaga', 'country_code' => 'AZ'], ['name' => 'Kamen', 'country_code' => 'DE'], ['name' => 'Natanz', 'country_code' => 'IR'], ['name' => 'Menghan', 'country_code' => 'CN'], ['name' => 'Pinhal', 'country_code' => 'BR'], ['name' => 'Zongolica', 'country_code' => 'MX'], ['name' => 'Tayug', 'country_code' => 'PH'], ['name' => 'Bountiful', 'country_code' => 'US'], ['name' => 'Jiaohe', 'country_code' => 'CN'], ['name' => 'Himi', 'country_code' => 'JP'], ['name' => 'Claveria', 'country_code' => 'PH'], ['name' => 'Gravina in Puglia', 'country_code' => 'IT'], ['name' => 'Khutubi', 'country_code' => 'CN'], ['name' => 'Desert Hot Springs', 'country_code' => 'US'], ['name' => 'Nabire', 'country_code' => 'ID'], ['name' => 'Peachtree Corners', 'country_code' => 'US'], ['name' => 'Montevista', 'country_code' => 'PH'], ['name' => 'Villeta', 'country_code' => 'CO'], ['name' => 'Mombaca', 'country_code' => 'BR'], ['name' => 'Santa Rita do Sapucai', 'country_code' => 'BR'], ['name' => 'Buguias', 'country_code' => 'PH'], ['name' => 'Haltom City', 'country_code' => 'US'], ['name' => 'Nandazhang', 'country_code' => 'CN'], ['name' => 'Castro', 'country_code' => 'BR'], ['name' => 'Baniyas', 'country_code' => 'SY'], ['name' => ' Ain Arnat', 'country_code' => 'DZ'], ['name' => 'Veruela', 'country_code' => 'PH'], ['name' => 'Ad Dir iyah', 'country_code' => 'SA'], ['name' => 'Vinzons', 'country_code' => 'PH'], ['name' => 'Roseller Lim', 'country_code' => 'PH'], ['name' => 'Southington', 'country_code' => 'US'], ['name' => 'San al Hajar al Qibliyah', 'country_code' => 'EG'], ['name' => 'Pagsanjan', 'country_code' => 'PH'], ['name' => 'Worksop', 'country_code' => 'GB'], ['name' => 'Ormond Beach', 'country_code' => 'US'], ['name' => 'Banisilan', 'country_code' => 'PH'], ['name' => 'Sambava', 'country_code' => 'MG'], ['name' => 'Taniyama-chuo', 'country_code' => 'JP'], ['name' => 'Takab', 'country_code' => 'IR'], ['name' => 'Erkelenz', 'country_code' => 'DE'], ['name' => 'Zhangliangcun', 'country_code' => 'CN'], ['name' => 'Salto de Pirapora', 'country_code' => 'BR'], ['name' => 'Paraty', 'country_code' => 'BR'], ['name' => 'Basoko', 'country_code' => 'CD'], ['name' => 'Cutler Bay', 'country_code' => 'US'], ['name' => 'Of', 'country_code' => 'TR'], ['name' => 'Macenta', 'country_code' => 'GN'], ['name' => 'Shinshiro', 'country_code' => 'JP'], ['name' => 'Chefchaouene', 'country_code' => 'MA'], ['name' => 'Xihuachi', 'country_code' => 'CN'], ['name' => 'Adrian', 'country_code' => 'US'], ['name' => 'Nuevo Mexico', 'country_code' => 'MX'], ['name' => 'Lota', 'country_code' => 'CL'], ['name' => 'Otwock', 'country_code' => 'PL'], ['name' => 'Goose Creek', 'country_code' => 'US'], ['name' => 'Et Taiyiba', 'country_code' => 'IL'], ['name' => 'Concepcion', 'country_code' => 'PH'], ['name' => 'Moorhead', 'country_code' => 'US'], ['name' => 'Itaberai', 'country_code' => 'BR'], ['name' => 'Angouleme', 'country_code' => 'FR'], ['name' => 'Westfield', 'country_code' => 'US'], ['name' => 'Santa Cruz', 'country_code' => 'PT'], ['name' => 'Cesme', 'country_code' => 'TR'], ['name' => 'Ponte de Lima', 'country_code' => 'PT'], ['name' => 'Musina', 'country_code' => 'ZA'], ['name' => 'Venray', 'country_code' => 'NL'], ['name' => 'Birsk', 'country_code' => 'RU'], ['name' => 'Noordwijk', 'country_code' => 'NL'], ['name' => 'Quinte West', 'country_code' => 'CA'], ['name' => 'Wismar', 'country_code' => 'DE'], ['name' => 'Presidente Epitacio', 'country_code' => 'BR'], ['name' => 'Sao Lourenco do Sul', 'country_code' => 'BR'], ['name' => 'Catende', 'country_code' => 'BR'], ['name' => 'Bahia Honda', 'country_code' => 'CU'], ['name' => 'Istres', 'country_code' => 'FR'], ['name' => 'Manchester', 'country_code' => 'US'], ['name' => 'Zhangcun', 'country_code' => 'CN'], ['name' => 'Tamworth', 'country_code' => 'AU'], ['name' => 'Denia', 'country_code' => 'ES'], ['name' => 'Pedro Celestino Negrete', 'country_code' => 'MX'], ['name' => 'Heist-op-den-Berg', 'country_code' => 'BE'], ['name' => 'Makinohara', 'country_code' => 'JP'], ['name' => 'Zharkent', 'country_code' => 'KZ'], ['name' => 'Jaro', 'country_code' => 'PH'], ['name' => 'Sawakin', 'country_code' => 'SD'], ['name' => 'Hueyapan de Ocampo', 'country_code' => 'MX'], ['name' => 'Henrietta', 'country_code' => 'US'], ['name' => 'Tantangan', 'country_code' => 'PH'], ['name' => 'Esperanza', 'country_code' => 'AR'], ['name' => 'Germering', 'country_code' => 'DE'], ['name' => 'Kemer', 'country_code' => 'TR'], ['name' => 'Rantepao', 'country_code' => 'ID'], ['name' => 'Civitanova Marche', 'country_code' => 'IT'], ['name' => 'Angadanan', 'country_code' => 'PH'], ['name' => 'Labrea', 'country_code' => 'BR'], ['name' => 'Bourg-en-Bresse', 'country_code' => 'FR'], ['name' => 'Brea', 'country_code' => 'US'], ['name' => 'Nova Vicosa', 'country_code' => 'BR'], ['name' => 'Klamath Falls', 'country_code' => 'US'], ['name' => 'Al Wajh', 'country_code' => 'SA'], ['name' => 'King s Lynn', 'country_code' => 'GB'], ['name' => 'Siegburg', 'country_code' => 'DE'], ['name' => 'San Lorenzo', 'country_code' => 'HN'], ['name' => 'Cordon', 'country_code' => 'PH'], ['name' => 'Ambatondrazaka', 'country_code' => 'MG'], ['name' => 'Aguazul', 'country_code' => 'CO'], ['name' => 'Shuilou', 'country_code' => 'CN'], ['name' => 'Veroia', 'country_code' => 'GR'], ['name' => 'Billerica', 'country_code' => 'US'], ['name' => 'Nadi', 'country_code' => 'FJ'], ['name' => 'Tiel', 'country_code' => 'NL'], ['name' => 'Kobayashi', 'country_code' => 'JP'], ['name' => 'Daram', 'country_code' => 'PH'], ['name' => 'Ciechanow', 'country_code' => 'PL'], ['name' => 'Prerov', 'country_code' => 'CZ'], ['name' => 'Nansan', 'country_code' => 'CN'], ['name' => 'Visconde do Rio Branco', 'country_code' => 'BR'], ['name' => 'Cumaribo', 'country_code' => 'CO'], ['name' => 'Kolchugino', 'country_code' => 'RU'], ['name' => 'Whanganui', 'country_code' => 'NZ'], ['name' => 'Jesus Maria', 'country_code' => 'MX'], ['name' => 'Sao Gabriel da Cachoeira', 'country_code' => 'BR'], ['name' => 'Lubao', 'country_code' => 'CD'], ['name' => 'Lancaster', 'country_code' => 'US'], ['name' => 'Bihac', 'country_code' => 'BA'], ['name' => 'Rosario', 'country_code' => 'BR'], ['name' => 'Channelview', 'country_code' => 'US'], ['name' => 'Huizen', 'country_code' => 'NL'], ['name' => 'Entre Rios', 'country_code' => 'BR'], ['name' => 'Yendi', 'country_code' => 'GH'], ['name' => 'Poptun', 'country_code' => 'GT'], ['name' => 'Gualeguay', 'country_code' => 'AR'], ['name' => 'Jatibonico', 'country_code' => 'CU'], ['name' => 'Albano Laziale', 'country_code' => 'IT'], ['name' => 'Dolores', 'country_code' => 'PH'], ['name' => 'Nettetal', 'country_code' => 'DE'], ['name' => 'Osinniki', 'country_code' => 'RU'], ['name' => 'Sieradz', 'country_code' => 'PL'], ['name' => 'Pilar', 'country_code' => 'PH'], ['name' => 'Gifhorn', 'country_code' => 'DE'], ['name' => 'Centralia', 'country_code' => 'US'], ['name' => 'Sidi Mohamed Lahmar', 'country_code' => 'MA'], ['name' => 'Gallatin', 'country_code' => 'US'], ['name' => 'Atenco', 'country_code' => 'MX'], ['name' => 'Miranda', 'country_code' => 'CO'], ['name' => 'Tepalcatepec', 'country_code' => 'MX'], ['name' => 'Zvolen', 'country_code' => 'SK'], ['name' => 'Samborondon', 'country_code' => 'EC'], ['name' => 'Dreieich', 'country_code' => 'DE'], ['name' => 'Shenjiatun', 'country_code' => 'CN'], ['name' => 'Loufan', 'country_code' => 'CN'], ['name' => 'Hulin', 'country_code' => 'CN'], ['name' => 'Lucena', 'country_code' => 'ES'], ['name' => 'Stevens Point', 'country_code' => 'US'], ['name' => 'Nurmijarvi', 'country_code' => 'FI'], ['name' => 'Orlandia', 'country_code' => 'BR'], ['name' => 'Borken', 'country_code' => 'DE'], ['name' => 'Burke', 'country_code' => 'US'], ['name' => 'Vawkavysk', 'country_code' => 'BY'], ['name' => 'Vera Cruz', 'country_code' => 'BR'], ['name' => 'Manay', 'country_code' => 'PH'], ['name' => 'Brentwood', 'country_code' => 'US'], ['name' => 'Obita', 'country_code' => 'JP'], ['name' => 'Amberg', 'country_code' => 'DE'], ['name' => 'Eisenach', 'country_code' => 'DE'], ['name' => 'Santa Quiteria', 'country_code' => 'BR'], ['name' => 'North Fort Myers', 'country_code' => 'US'], ['name' => 'Temsia', 'country_code' => 'MA'], ['name' => 'Egg Harbor', 'country_code' => 'US'], ['name' => 'Fianga', 'country_code' => 'TD'], ['name' => 'Hwange', 'country_code' => 'ZW'], ['name' => 'Sansanne-Mango', 'country_code' => 'TG'], ['name' => 'Avezzano', 'country_code' => 'IT'], ['name' => 'Leigh', 'country_code' => 'GB'], ['name' => 'Santo Antonio de Padua', 'country_code' => 'BR'], ['name' => 'Mariel', 'country_code' => 'CU'], ['name' => 'Laatzen', 'country_code' => 'DE'], ['name' => 'Kotabumi', 'country_code' => 'ID'], ['name' => 'Bacnotan', 'country_code' => 'PH'], ['name' => 'Qiryat Yam', 'country_code' => 'IL'], ['name' => 'Edmonds', 'country_code' => 'US'], ['name' => 'Charlottetown', 'country_code' => 'CA'], ['name' => 'Dusheng', 'country_code' => 'CN'], ['name' => 'Ban Na Pa', 'country_code' => 'TH'], ['name' => 'Mikolow', 'country_code' => 'PL'], ['name' => 'Apache Junction', 'country_code' => 'US'], ['name' => 'Fairfield', 'country_code' => 'US'], ['name' => 'Bury Saint Edmunds', 'country_code' => 'GB'], ['name' => 'Oakley', 'country_code' => 'US'], ['name' => 'El Charco', 'country_code' => 'CO'], ['name' => 'Rio Negrinho', 'country_code' => 'BR'], ['name' => 'Hutchinson', 'country_code' => 'US'], ['name' => 'Loreto', 'country_code' => 'PH'], ['name' => 'Shebekino', 'country_code' => 'RU'], ['name' => 'Santa Helena', 'country_code' => 'BR'], ['name' => 'Tineghir', 'country_code' => 'MA'], ['name' => 'Manjuyod', 'country_code' => 'PH'], ['name' => 'Mascouche', 'country_code' => 'CA'], ['name' => 'Futtsu', 'country_code' => 'JP'], ['name' => 'Dayr Mawas', 'country_code' => 'EG'], ['name' => 'Wangyuanqiao', 'country_code' => 'CN'], ['name' => 'Cuihua', 'country_code' => 'CN'], ['name' => 'West Vancouver', 'country_code' => 'CA'], ['name' => 'Capao da Canoa', 'country_code' => 'BR'], ['name' => 'Toboso', 'country_code' => 'PH'], ['name' => 'Shepetivka', 'country_code' => 'UA'], ['name' => 'Shu', 'country_code' => 'KZ'], ['name' => 'Alerce', 'country_code' => 'CL'], ['name' => 'Greenwood', 'country_code' => 'US'], ['name' => 'Tome', 'country_code' => 'CL'], ['name' => 'Cortlandt', 'country_code' => 'US'], ['name' => 'Salaberry-de-Valleyfield', 'country_code' => 'CA'], ['name' => 'Balykchy', 'country_code' => 'KG'], ['name' => 'Heinsberg', 'country_code' => 'DE'], ['name' => 'Uden', 'country_code' => 'NL'], ['name' => 'La Orotava', 'country_code' => 'ES'], ['name' => 'Sao Lourenco', 'country_code' => 'BR'], ['name' => 'Itapolis', 'country_code' => 'BR'], ['name' => 'Liantang', 'country_code' => 'CN'], ['name' => 'Richmond', 'country_code' => 'US'], ['name' => 'Machang', 'country_code' => 'CN'], ['name' => 'Lorenskog', 'country_code' => 'NO'], ['name' => 'Linden', 'country_code' => 'US'], ['name' => 'Puyallup', 'country_code' => 'US'], ['name' => 'Santa Rita', 'country_code' => 'PH'], ['name' => 'Yangcunzai', 'country_code' => 'CN'], ['name' => 'Qazyan', 'country_code' => 'AZ'], ['name' => 'Rajgir', 'country_code' => 'IN'], ['name' => 'Rouyn-Noranda', 'country_code' => 'CA'], ['name' => 'San Dona di Piave', 'country_code' => 'IT'], ['name' => 'Wancheng', 'country_code' => 'CN'], ['name' => 'Koniz', 'country_code' => 'CH'], ['name' => 'Imperia', 'country_code' => 'IT'], ['name' => 'Homburg', 'country_code' => 'DE'], ['name' => 'Remanso', 'country_code' => 'BR'], ['name' => 'Beitbridge', 'country_code' => 'ZW'], ['name' => 'Ansbach', 'country_code' => 'DE'], ['name' => 'Gay', 'country_code' => 'RU'], ['name' => 'Itabaianinha', 'country_code' => 'BR'], ['name' => 'Huntsville', 'country_code' => 'US'], ['name' => 'Macerata', 'country_code' => 'IT'], ['name' => 'Dacun', 'country_code' => 'CN'], ['name' => 'Urbana', 'country_code' => 'US'], ['name' => 'Aurich', 'country_code' => 'DE'], ['name' => 'Qapshaghay', 'country_code' => 'KZ'], ['name' => 'Nordhausen', 'country_code' => 'DE'], ['name' => 'Sbiba', 'country_code' => 'TN'], ['name' => 'Beverly', 'country_code' => 'US'], ['name' => 'Safonovo', 'country_code' => 'RU'], ['name' => 'Villaba', 'country_code' => 'PH'], ['name' => 'Montenegro', 'country_code' => 'CO'], ['name' => 'Clovis', 'country_code' => 'US'], ['name' => 'Monterotondo', 'country_code' => 'IT'], ['name' => 'Amontada', 'country_code' => 'BR'], ['name' => 'Caceres', 'country_code' => 'CO'], ['name' => 'Lingquan', 'country_code' => 'CN'], ['name' => 'Lower Tungawan', 'country_code' => 'PH'], ['name' => 'Monchegorsk', 'country_code' => 'RU'], ['name' => 'Santa Maria da Boa Vista', 'country_code' => 'BR'], ['name' => 'Soran', 'country_code' => 'KZ'], ['name' => 'Coburg', 'country_code' => 'DE'], ['name' => 'Statesboro', 'country_code' => 'US'], ['name' => 'Poti', 'country_code' => 'GE'], ['name' => 'Hobbs', 'country_code' => 'US'], ['name' => 'Sarab', 'country_code' => 'IR'], ['name' => 'Su-ngai Kolok', 'country_code' => 'TH'], ['name' => 'Barcellona-Pozzo di Gotto', 'country_code' => 'IT'], ['name' => 'Litian Gezhuang', 'country_code' => 'CN'], ['name' => 'Korenovsk', 'country_code' => 'RU'], ['name' => 'Qiryat Mozqin', 'country_code' => 'IL'], ['name' => 'McMinnville', 'country_code' => 'US'], ['name' => 'Castres', 'country_code' => 'FR'], ['name' => 'Zagora', 'country_code' => 'MA'], ['name' => 'Labangan', 'country_code' => 'PH'], ['name' => 'Tuntum', 'country_code' => 'BR'], ['name' => 'Schertz', 'country_code' => 'US'], ['name' => 'Tequila', 'country_code' => 'MX'], ['name' => 'Nasipit', 'country_code' => 'PH'], ['name' => 'Moatize', 'country_code' => 'MZ'], ['name' => 'Merano', 'country_code' => 'IT'], ['name' => 'Shimotsuma', 'country_code' => 'JP'], ['name' => 'Yinggen', 'country_code' => 'CN'], ['name' => 'Matoupu', 'country_code' => 'CN'], ['name' => 'Greenock', 'country_code' => 'GB'], ['name' => 'Beigang', 'country_code' => 'TW'], ['name' => 'Ales', 'country_code' => 'FR'], ['name' => 'Xinleitou', 'country_code' => 'CN'], ['name' => 'Nurtingen', 'country_code' => 'DE'], ['name' => 'Spassk-Dal niy', 'country_code' => 'RU'], ['name' => 'Tadif', 'country_code' => 'SY'], ['name' => 'Puerto del Rosario', 'country_code' => 'ES'], ['name' => 'Tulun', 'country_code' => 'RU'], ['name' => 'Uspantan', 'country_code' => 'GT'], ['name' => 'Rajaori', 'country_code' => 'IN'], ['name' => 'Wunstorf', 'country_code' => 'DE'], ['name' => 'Pedra Branca', 'country_code' => 'BR'], ['name' => 'Puerto Real', 'country_code' => 'ES'], ['name' => 'Seevetal', 'country_code' => 'DE'], ['name' => 'Sassuolo', 'country_code' => 'IT'], ['name' => 'Oliveira', 'country_code' => 'BR'], ['name' => 'Jardinopolis', 'country_code' => 'BR'], ['name' => 'Bayt al Faqih', 'country_code' => 'YE'], ['name' => 'San', 'country_code' => 'ML'], ['name' => 'Oviedo', 'country_code' => 'US'], ['name' => 'Nanbaishezhen', 'country_code' => 'CN'], ['name' => 'Odenton', 'country_code' => 'US'], ['name' => 'Kwidzyn', 'country_code' => 'PL'], ['name' => 'Chojnice', 'country_code' => 'PL'], ['name' => 'Satka', 'country_code' => 'RU'], ['name' => 'Grove City', 'country_code' => 'US'], ['name' => 'Santa Maria da Vitoria', 'country_code' => 'BR'], ['name' => 'Berkeley', 'country_code' => 'US'], ['name' => 'Sumisip', 'country_code' => 'PH'], ['name' => 'Porto de Moz', 'country_code' => 'BR'], ['name' => 'Nanbei', 'country_code' => 'JP'], ['name' => 'Schwabach', 'country_code' => 'DE'], ['name' => 'Mozdok', 'country_code' => 'RU'], ['name' => 'Timmins', 'country_code' => 'CA'], ['name' => 'Konigswinter', 'country_code' => 'DE'], ['name' => 'Wentzville', 'country_code' => 'US'], ['name' => 'San Jacinto', 'country_code' => 'PH'], ['name' => 'Kalilangan', 'country_code' => 'PH'], ['name' => 'North Brunswick', 'country_code' => 'US'], ['name' => 'Myski', 'country_code' => 'RU'], ['name' => 'Santa Cruz de Los Taques', 'country_code' => 'VE'], ['name' => 'La Quinta', 'country_code' => 'US'], ['name' => 'Lobo', 'country_code' => 'PH'], ['name' => 'Strezhevoy', 'country_code' => 'RU'], ['name' => 'Pueblo Nuevo', 'country_code' => 'CO'], ['name' => 'Podilsk', 'country_code' => 'UA'], ['name' => 'General Mamerto Natividad', 'country_code' => 'PH'], ['name' => 'Freiberg', 'country_code' => 'DE'], ['name' => 'Panchimalco', 'country_code' => 'SV'], ['name' => 'Siay', 'country_code' => 'PH'], ['name' => 'Sarande', 'country_code' => 'AL'], ['name' => 'Santa Rita', 'country_code' => 'PH'], ['name' => 'Ust -Kut', 'country_code' => 'RU'], ['name' => 'Swinoujscie', 'country_code' => 'PL'], ['name' => 'Yakacik', 'country_code' => 'TR'], ['name' => 'Aguilar', 'country_code' => 'PH'], ['name' => 'Moises Padilla', 'country_code' => 'PH'], ['name' => 'Ihnasya al Madinah', 'country_code' => 'EG'], ['name' => 'Alhaurin de la Torre', 'country_code' => 'ES'], ['name' => 'Lokeren', 'country_code' => 'BE'], ['name' => 'Herstal', 'country_code' => 'BE'], ['name' => 'Yuzawa', 'country_code' => 'JP'], ['name' => 'El Nido', 'country_code' => 'PH'], ['name' => 'Cantu', 'country_code' => 'IT'], ['name' => 'Nanmeng', 'country_code' => 'CN'], ['name' => 'Weslaco', 'country_code' => 'US'], ['name' => 'Sorel-Tracy', 'country_code' => 'CA'], ['name' => 'Karabulak', 'country_code' => 'RU'], ['name' => 'Tuchin', 'country_code' => 'CO'], ['name' => 'President Quirino', 'country_code' => 'PH'], ['name' => 'Ladispoli', 'country_code' => 'IT'], ['name' => 'Labason', 'country_code' => 'PH'], ['name' => 'Naini Tal', 'country_code' => 'IN'], ['name' => 'Yangtangxu', 'country_code' => 'CN'], ['name' => 'Ayagoz', 'country_code' => 'KZ'], ['name' => 'Zanesville', 'country_code' => 'US'], ['name' => 'Newnan', 'country_code' => 'US'], ['name' => 'Kitaibaraki', 'country_code' => 'JP'], ['name' => 'Almenara', 'country_code' => 'BR'], ['name' => 'Shakopee', 'country_code' => 'US'], ['name' => 'San Jose', 'country_code' => 'PH'], ['name' => 'Nowa Sol', 'country_code' => 'PL'], ['name' => 'Brighton', 'country_code' => 'US'], ['name' => 'Catonsville', 'country_code' => 'US'], ['name' => 'Wijchen', 'country_code' => 'NL'], ['name' => 'Gaolincun', 'country_code' => 'CN'], ['name' => 'Rancho Palos Verdes', 'country_code' => 'US'], ['name' => 'Kirchheim unter Teck', 'country_code' => 'DE'], ['name' => 'Verkhnyaya Salda', 'country_code' => 'RU'], ['name' => 'Thionville', 'country_code' => 'FR'], ['name' => 'Baichigan', 'country_code' => 'CN'], ['name' => 'Mableton', 'country_code' => 'US'], ['name' => 'Erzin', 'country_code' => 'TR'], ['name' => 'Andradas', 'country_code' => 'BR'], ['name' => 'Charqueadas', 'country_code' => 'BR'], ['name' => 'New Tecumseth', 'country_code' => 'CA'], ['name' => 'Leinfelden-Echterdingen', 'country_code' => 'DE'], ['name' => 'Santo Nino', 'country_code' => 'PH'], ['name' => 'Mount Laurel', 'country_code' => 'US'], ['name' => 'San Gregorio de Nigua', 'country_code' => 'DO'], ['name' => 'Coppell', 'country_code' => 'US'], ['name' => 'Mandaon', 'country_code' => 'PH'], ['name' => 'Culasi', 'country_code' => 'PH'], ['name' => 'Sovetsk', 'country_code' => 'RU'], ['name' => 'Linton Hall', 'country_code' => 'US'], ['name' => 'Pananaw', 'country_code' => 'PH'], ['name' => 'Antequera', 'country_code' => 'ES'], ['name' => 'Girau do Ponciano', 'country_code' => 'BR'], ['name' => 'Moline', 'country_code' => 'US'], ['name' => 'Matnog', 'country_code' => 'PH'], ['name' => 'Tanxia', 'country_code' => 'CN'], ['name' => 'El Tocuyo', 'country_code' => 'VE'], ['name' => 'Aquidauana', 'country_code' => 'BR'], ['name' => 'Colinas', 'country_code' => 'BR'], ['name' => 'Tiegan', 'country_code' => 'CN'], ['name' => 'Niquero', 'country_code' => 'CU'], ['name' => 'Arauquita', 'country_code' => 'CO'], ['name' => 'Penn Hills', 'country_code' => 'US'], ['name' => 'Chaves', 'country_code' => 'PT'], ['name' => 'Hellevoetsluis', 'country_code' => 'NL'], ['name' => 'Delaware', 'country_code' => 'US'], ['name' => 'Kovvur', 'country_code' => 'IN'], ['name' => 'Gap', 'country_code' => 'FR'], ['name' => 'Anyuan', 'country_code' => 'CN'], ['name' => 'Yingzhou Linchang', 'country_code' => 'CN'], ['name' => 'Banaybanay', 'country_code' => 'PH'], ['name' => 'Temryuk', 'country_code' => 'RU'], ['name' => 'Guambog', 'country_code' => 'PH'], ['name' => 'Westfield', 'country_code' => 'US'], ['name' => 'Guaduas', 'country_code' => 'CO'], ['name' => 'Carranglan', 'country_code' => 'PH'], ['name' => 'Jarvenpaa', 'country_code' => 'FI'], ['name' => 'Vyshneve', 'country_code' => 'UA'], ['name' => 'Quezon', 'country_code' => 'PH'], ['name' => 'Basud', 'country_code' => 'PH'], ['name' => 'Bensheim', 'country_code' => 'DE'], ['name' => 'Boleslawiec', 'country_code' => 'PL'], ['name' => 'Shelton', 'country_code' => 'US'], ['name' => 'Proper Bansud', 'country_code' => 'PH'], ['name' => 'Baft', 'country_code' => 'IR'], ['name' => 'Marcianise', 'country_code' => 'IT'], ['name' => 'Jeremoabo', 'country_code' => 'BR'], ['name' => 'Westerville', 'country_code' => 'US'], ['name' => 'Lemgo', 'country_code' => 'DE'], ['name' => 'Ciudad Barrios', 'country_code' => 'SV'], ['name' => 'Mucuri', 'country_code' => 'BR'], ['name' => 'Manassas', 'country_code' => 'US'], ['name' => 'Eberswalde', 'country_code' => 'DE'], ['name' => 'Victoria', 'country_code' => 'PH'], ['name' => 'Ciudad Dario', 'country_code' => 'NI'], ['name' => 'Tonbridge', 'country_code' => 'GB'], ['name' => 'Salinopolis', 'country_code' => 'BR'], ['name' => 'Dois Vizinhos', 'country_code' => 'BR'], ['name' => 'Pirmasens', 'country_code' => 'DE'], ['name' => 'Kearny', 'country_code' => 'US'], ['name' => 'Chambas', 'country_code' => 'CU'], ['name' => 'Ostfildern', 'country_code' => 'DE'], ['name' => 'Maarssen', 'country_code' => 'NL'], ['name' => 'Los Banos', 'country_code' => 'US'], ['name' => 'Bagua Grande', 'country_code' => 'PE'], ['name' => 'Pyt -Yakh', 'country_code' => 'RU'], ['name' => 'El Tumbador', 'country_code' => 'GT'], ['name' => 'Santa Elena', 'country_code' => 'PH'], ['name' => 'Novozybkov', 'country_code' => 'RU'], ['name' => 'Richmond', 'country_code' => 'US'], ['name' => 'Osorio', 'country_code' => 'BR'], ['name' => 'Compiegne', 'country_code' => 'FR'], ['name' => 'Taicheng', 'country_code' => 'CN'], ['name' => 'Kabuga', 'country_code' => 'RW'], ['name' => 'Inhambupe', 'country_code' => 'BR'], ['name' => 'Chebarkul', 'country_code' => 'RU'], ['name' => 'Romny', 'country_code' => 'UA'], ['name' => 'Hempfield', 'country_code' => 'US'], ['name' => 'Spanish Fork', 'country_code' => 'US'], ['name' => 'Dronten', 'country_code' => 'NL'], ['name' => 'Woodstock', 'country_code' => 'CA'], ['name' => 'Sao Miguel d Oeste', 'country_code' => 'BR'], ['name' => 'Belleville', 'country_code' => 'US'], ['name' => 'Mangaratiba', 'country_code' => 'BR'], ['name' => 'Maluso', 'country_code' => 'PH'], ['name' => 'Ilhavo', 'country_code' => 'PT'], ['name' => 'Maplewood', 'country_code' => 'US'], ['name' => 'Ait Ourir', 'country_code' => 'MA'], ['name' => 'Rio Real', 'country_code' => 'BR'], ['name' => 'Leyte', 'country_code' => 'PH'], ['name' => 'Uruacu', 'country_code' => 'BR'], ['name' => 'Cuito Cuanavale', 'country_code' => 'AO'], ['name' => 'Maria Aurora', 'country_code' => 'PH'], ['name' => 'Colomiers', 'country_code' => 'FR'], ['name' => 'Schwabisch Hall', 'country_code' => 'DE'], ['name' => 'Abadan', 'country_code' => 'TM'], ['name' => 'Lugoj', 'country_code' => 'RO'], ['name' => 'Zoumi', 'country_code' => 'MA'], ['name' => 'Pereslavl -Zalesskiy', 'country_code' => 'RU'], ['name' => 'Petrich', 'country_code' => 'BG'], ['name' => 'Zhujiezhen', 'country_code' => 'CN'], ['name' => 'Tomar', 'country_code' => 'PT'], ['name' => 'Cateel', 'country_code' => 'PH'], ['name' => 'Weissenfels', 'country_code' => 'DE'], ['name' => 'Laouamra', 'country_code' => 'MA'], ['name' => 'Pie de Pato', 'country_code' => 'CO'], ['name' => 'Boucherville', 'country_code' => 'CA'], ['name' => 'Panitan', 'country_code' => 'PH'], ['name' => 'Yalutorovsk', 'country_code' => 'RU'], ['name' => 'Brumadinho', 'country_code' => 'BR'], ['name' => 'Arys', 'country_code' => 'KZ'], ['name' => 'Komono', 'country_code' => 'JP'], ['name' => 'Sciacca', 'country_code' => 'IT'], ['name' => 'Vahdat', 'country_code' => 'TJ'], ['name' => 'Channarayapatna', 'country_code' => 'IN'], ['name' => 'Pottsville', 'country_code' => 'US'], ['name' => 'Corigliano Calabro', 'country_code' => 'IT'], ['name' => 'Simao Dias', 'country_code' => 'BR'], ['name' => 'Buxtehude', 'country_code' => 'DE'], ['name' => 'Santo Tomas', 'country_code' => 'PH'], ['name' => 'Columbia', 'country_code' => 'US'], ['name' => 'La Union', 'country_code' => 'CO'], ['name' => 'Bayindir', 'country_code' => 'TR'], ['name' => 'Pechora', 'country_code' => 'RU'], ['name' => 'Altos', 'country_code' => 'BR'], ['name' => 'Heemskerk', 'country_code' => 'NL'], ['name' => 'Bartlett', 'country_code' => 'US'], ['name' => 'Curuca', 'country_code' => 'BR'], ['name' => 'Bluefield', 'country_code' => 'US'], ['name' => 'Fitchburg', 'country_code' => 'US'], ['name' => 'Orange', 'country_code' => 'AU'], ['name' => 'Rovereto', 'country_code' => 'IT'], ['name' => 'Braine-l Alleud', 'country_code' => 'BE'], ['name' => 'Marion', 'country_code' => 'US'], ['name' => 'Iesi', 'country_code' => 'IT'], ['name' => 'Huckelhoven', 'country_code' => 'DE'], ['name' => 'Huaura', 'country_code' => 'PE'], ['name' => 'San Fernando de Henares', 'country_code' => 'ES'], ['name' => 'Farnham', 'country_code' => 'GB'], ['name' => 'Uray', 'country_code' => 'RU'], ['name' => 'Maihar', 'country_code' => 'IN'], ['name' => 'Halberstadt', 'country_code' => 'DE'], ['name' => 'Cedar Falls', 'country_code' => 'US'], ['name' => 'Cumbal', 'country_code' => 'CO'], ['name' => 'Yian', 'country_code' => 'CN'], ['name' => 'Maintal', 'country_code' => 'DE'], ['name' => 'Neumarkt', 'country_code' => 'DE'], ['name' => 'Binh Long', 'country_code' => 'VN'], ['name' => 'Pyu', 'country_code' => 'MM'], ['name' => 'Buffalo Grove', 'country_code' => 'US'], ['name' => 'Jamestown', 'country_code' => 'US'], ['name' => 'Asuncion Mita', 'country_code' => 'GT'], ['name' => 'Woodlawn', 'country_code' => 'US'], ['name' => 'Arcos', 'country_code' => 'BR'], ['name' => 'Hofheim', 'country_code' => 'DE'], ['name' => 'Caraga', 'country_code' => 'PH'], ['name' => 'Sao Manuel', 'country_code' => 'BR'], ['name' => 'Aracataca', 'country_code' => 'CO'], ['name' => 'Clarksburg', 'country_code' => 'US'], ['name' => 'Anglet', 'country_code' => 'FR'], ['name' => 'Baksan', 'country_code' => 'RU'], ['name' => 'Zainsk', 'country_code' => 'RU'], ['name' => 'Royal Palm Beach', 'country_code' => 'US'], ['name' => 'South Upi', 'country_code' => 'PH'], ['name' => 'Imbituba', 'country_code' => 'BR'], ['name' => 'Ozu', 'country_code' => 'JP'], ['name' => 'Abucay', 'country_code' => 'PH'], ['name' => 'Freital', 'country_code' => 'DE'], ['name' => 'Tuquerres', 'country_code' => 'CO'], ['name' => 'Lohne', 'country_code' => 'DE'], ['name' => 'Jipijapa', 'country_code' => 'EC'], ['name' => 'Al Qa idah', 'country_code' => 'YE'], ['name' => 'Marion', 'country_code' => 'US'], ['name' => 'Eboli', 'country_code' => 'IT'], ['name' => 'Oswiecim', 'country_code' => 'PL'], ['name' => 'Covington', 'country_code' => 'US'], ['name' => 'Junnar', 'country_code' => 'IN'], ['name' => 'Schorndorf', 'country_code' => 'DE'], ['name' => 'Santa Cruz', 'country_code' => 'PH'], ['name' => 'Belaya Kalitva', 'country_code' => 'RU'], ['name' => 'Coram', 'country_code' => 'US'], ['name' => 'Tiete', 'country_code' => 'BR'], ['name' => 'Friendswood', 'country_code' => 'US'], ['name' => 'Arawa', 'country_code' => 'PG'], ['name' => 'Aguas Belas', 'country_code' => 'BR'], ['name' => 'Povazska Bystrica', 'country_code' => 'SK'], ['name' => 'Boa Esperanca', 'country_code' => 'BR'], ['name' => 'Itoigawa', 'country_code' => 'JP'], ['name' => 'Indian Trail', 'country_code' => 'US'], ['name' => 'Kasumigaura', 'country_code' => 'JP'], ['name' => 'San Agustin Acasaguastlan', 'country_code' => 'GT'], ['name' => 'Sejenane', 'country_code' => 'TN'], ['name' => 'Woburn', 'country_code' => 'US'], ['name' => 'Camargo', 'country_code' => 'MX'], ['name' => 'Medgidia', 'country_code' => 'RO'], ['name' => 'Balabac', 'country_code' => 'PH'], ['name' => 'Saraqib', 'country_code' => 'SY'], ['name' => 'Santiago Nonualco', 'country_code' => 'SV'], ['name' => 'Mtsensk', 'country_code' => 'RU'], ['name' => 'Tutayev', 'country_code' => 'RU'], ['name' => 'Tipton', 'country_code' => 'GB'], ['name' => 'Longtang', 'country_code' => 'CN'], ['name' => 'Ban Bang Khu Lat', 'country_code' => 'TH'], ['name' => 'Villanueva', 'country_code' => 'PH'], ['name' => 'The Acreage', 'country_code' => 'US'], ['name' => 'Penjamo', 'country_code' => 'MX'], ['name' => 'Bom Jardim', 'country_code' => 'BR'], ['name' => 'Tucuma', 'country_code' => 'BR'], ['name' => 'Oroqen Zizhiqi', 'country_code' => 'CN'], ['name' => 'Hangu', 'country_code' => 'PK'], ['name' => 'Liloy', 'country_code' => 'PH'], ['name' => 'Raub', 'country_code' => 'MY'], ['name' => 'Holyoke', 'country_code' => 'US'], ['name' => 'Amursk', 'country_code' => 'RU'], ['name' => 'Nueva Valencia', 'country_code' => 'PH'], ['name' => 'Glenrothes', 'country_code' => 'GB'], ['name' => 'Tucuran', 'country_code' => 'PH'], ['name' => 'Maddaloni', 'country_code' => 'IT'], ['name' => 'South Valley', 'country_code' => 'US'], ['name' => 'Altagracia de Orituco', 'country_code' => 'VE'], ['name' => 'Draguignan', 'country_code' => 'FR'], ['name' => 'Fondi', 'country_code' => 'IT'], ['name' => 'Santa Cruz', 'country_code' => 'BR'], ['name' => 'Payabon', 'country_code' => 'PH'], ['name' => 'Isfara', 'country_code' => 'TJ'], ['name' => 'Llanera', 'country_code' => 'PH'], ['name' => 'Plasencia', 'country_code' => 'ES'], ['name' => 'Otavalo', 'country_code' => 'EC'], ['name' => 'Zhongbai', 'country_code' => 'CN'], ['name' => 'Anda', 'country_code' => 'PH'], ['name' => 'Ettlingen', 'country_code' => 'DE'], ['name' => 'Alashankou', 'country_code' => 'CN'], ['name' => 'Jiaozishan', 'country_code' => 'CN'], ['name' => 'Tarauaca', 'country_code' => 'BR'], ['name' => 'Ouro Branco', 'country_code' => 'BR'], ['name' => 'Jayrud', 'country_code' => 'SY'], ['name' => 'Bacolor', 'country_code' => 'PH'], ['name' => 'PortoAlexandre', 'country_code' => 'AO'], ['name' => 'Torrington', 'country_code' => 'US'], ['name' => 'Laurel', 'country_code' => 'PH'], ['name' => 'Cedar City', 'country_code' => 'US'], ['name' => 'Fasano', 'country_code' => 'IT'], ['name' => 'Marlboro', 'country_code' => 'US'], ['name' => 'Halle', 'country_code' => 'BE'], ['name' => 'Hinatuan', 'country_code' => 'PH'], ['name' => 'Voghera', 'country_code' => 'IT'], ['name' => 'Banga', 'country_code' => 'PH'], ['name' => 'Rauma', 'country_code' => 'FI'], ['name' => 'Volklingen', 'country_code' => 'DE'], ['name' => 'Cabatuan', 'country_code' => 'PH'], ['name' => 'Villa de San Diego de Ubate', 'country_code' => 'CO'], ['name' => 'Acevedo', 'country_code' => 'CO'], ['name' => 'Xinlizhuang', 'country_code' => 'CN'], ['name' => 'Curitibanos', 'country_code' => 'BR'], ['name' => 'Yecapixtla', 'country_code' => 'MX'], ['name' => 'Ecija', 'country_code' => 'ES'], ['name' => 'Mambusao', 'country_code' => 'PH'], ['name' => 'Michalovce', 'country_code' => 'SK'], ['name' => 'Esperantina', 'country_code' => 'BR'], ['name' => 'Lloret de Mar', 'country_code' => 'ES'], ['name' => 'Weibo', 'country_code' => 'CN'], ['name' => 'Ouro Preto d Oeste', 'country_code' => 'BR'], ['name' => 'Matias Romero', 'country_code' => 'MX'], ['name' => 'Wurselen', 'country_code' => 'DE'], ['name' => 'Crystal Lake', 'country_code' => 'US'], ['name' => 'Calexico', 'country_code' => 'US'], ['name' => 'Lake Oswego', 'country_code' => 'US'], ['name' => 'Varzea da Palma', 'country_code' => 'BR'], ['name' => 'Amherst', 'country_code' => 'US'], ['name' => 'Kurobeshin', 'country_code' => 'JP'], ['name' => 'Villamontes', 'country_code' => 'BO'], ['name' => 'Apsheronsk', 'country_code' => 'RU'], ['name' => 'Buchholz in der Nordheide', 'country_code' => 'DE'], ['name' => 'Libano', 'country_code' => 'CO'], ['name' => 'Dolores', 'country_code' => 'GT'], ['name' => 'Mibu', 'country_code' => 'JP'], ['name' => 'Muskogee', 'country_code' => 'US'], ['name' => 'Bosconia', 'country_code' => 'CO'], ['name' => 'Steyr', 'country_code' => 'AT'], ['name' => 'Balaoan', 'country_code' => 'PH'], ['name' => 'Romeoville', 'country_code' => 'US'], ['name' => 'Plant City', 'country_code' => 'US'], ['name' => 'Kibawe', 'country_code' => 'PH'], ['name' => 'Mettmann', 'country_code' => 'DE'], ['name' => 'Citta di Castello', 'country_code' => 'IT'], ['name' => 'Santo Antonio', 'country_code' => 'BR'], ['name' => 'Iturama', 'country_code' => 'BR'], ['name' => 'Rosario do Sul', 'country_code' => 'BR'], ['name' => 'Solan', 'country_code' => 'IN'], ['name' => 'Santo Tomas', 'country_code' => 'PH'], ['name' => 'Novodvinsk', 'country_code' => 'RU'], ['name' => 'Manalapan', 'country_code' => 'US'], ['name' => 'Pagalungan', 'country_code' => 'PH'], ['name' => 'New Berlin', 'country_code' => 'US'], ['name' => 'Schio', 'country_code' => 'IT'], ['name' => 'La Chaux-de-Fonds', 'country_code' => 'CH'], ['name' => 'Sama', 'country_code' => 'ES'], ['name' => 'Socorro', 'country_code' => 'BR'], ['name' => 'Modugno', 'country_code' => 'IT'], ['name' => 'Naron', 'country_code' => 'ES'], ['name' => 'Araquari', 'country_code' => 'BR'], ['name' => 'Tampakan', 'country_code' => 'PH'], ['name' => 'Santa Eulalia del Rio', 'country_code' => 'ES'], ['name' => 'Roy', 'country_code' => 'US'], ['name' => 'Security-Widefield', 'country_code' => 'US'], ['name' => 'Villa del Carbon', 'country_code' => 'MX'], ['name' => 'Onesti', 'country_code' => 'RO'], ['name' => 'Takikawa', 'country_code' => 'JP'], ['name' => 'Dupnitsa', 'country_code' => 'BG'], ['name' => 'Marlborough', 'country_code' => 'US'], ['name' => 'Milton', 'country_code' => 'US'], ['name' => 'Stendal', 'country_code' => 'DE'], ['name' => 'Novo Horizonte', 'country_code' => 'BR'], ['name' => 'Afua', 'country_code' => 'BR'], ['name' => 'Sanjiang', 'country_code' => 'CN'], ['name' => 'San Giuliano Milanese', 'country_code' => 'IT'], ['name' => 'Hillsborough', 'country_code' => 'US'], ['name' => 'Trofa', 'country_code' => 'PT'], ['name' => 'Polanco', 'country_code' => 'PH'], ['name' => 'Tagudin', 'country_code' => 'PH'], ['name' => 'Tianchang', 'country_code' => 'CN'], ['name' => 'Pokrov', 'country_code' => 'UA'], ['name' => 'Yangfang', 'country_code' => 'CN'], ['name' => 'Andover', 'country_code' => 'GB'], ['name' => 'President Manuel Acuna Roxas', 'country_code' => 'PH'], ['name' => 'Borlange', 'country_code' => 'SE'], ['name' => 'Issaquah', 'country_code' => 'US'], ['name' => 'San Juan del Cesar', 'country_code' => 'CO'], ['name' => 'Benjamin Constant', 'country_code' => 'BR'], ['name' => 'Ahaus', 'country_code' => 'DE'], ['name' => 'Presidente Venceslau', 'country_code' => 'BR'], ['name' => 'Niutuo', 'country_code' => 'CN'], ['name' => 'Carini', 'country_code' => 'IT'], ['name' => 'Ninove', 'country_code' => 'BE'], ['name' => 'Sayansk', 'country_code' => 'RU'], ['name' => 'Essex', 'country_code' => 'US'], ['name' => 'Szigetszentmiklos', 'country_code' => 'HU'], ['name' => 'Parral', 'country_code' => 'CL'], ['name' => 'Vendrell', 'country_code' => 'ES'], ['name' => 'Tlalixcoyan', 'country_code' => 'MX'], ['name' => 'Tabogon', 'country_code' => 'PH'], ['name' => 'Plaridel', 'country_code' => 'PH'], ['name' => 'Eccles', 'country_code' => 'GB'], ['name' => 'Draa el Mizan', 'country_code' => 'DZ'], ['name' => 'San Miguel', 'country_code' => 'PH'], ['name' => 'Apan', 'country_code' => 'MX'], ['name' => 'Socorro', 'country_code' => 'PH'], ['name' => 'Palmas', 'country_code' => 'BR'], ['name' => 'Sao Francisco do Conde', 'country_code' => 'BR'], ['name' => 'Lasam', 'country_code' => 'PH'], ['name' => 'Bartlesville', 'country_code' => 'US'], ['name' => 'Borba', 'country_code' => 'BR'], ['name' => 'Niederkassel', 'country_code' => 'DE'], ['name' => 'Taraza', 'country_code' => 'CO'], ['name' => 'Northampton', 'country_code' => 'US'], ['name' => 'Higashimatsushima', 'country_code' => 'JP'], ['name' => 'Volodymyr-Volynskyi', 'country_code' => 'UA'], ['name' => 'Ilmenau', 'country_code' => 'DE'], ['name' => 'Hatfield', 'country_code' => 'GB'], ['name' => 'Bulalacao', 'country_code' => 'PH'], ['name' => 'Lancaster', 'country_code' => 'US'], ['name' => 'Streamwood', 'country_code' => 'US'], ['name' => 'Germantown', 'country_code' => 'US'], ['name' => 'Great Yarmouth', 'country_code' => 'GB'], ['name' => 'Sidi Bibi', 'country_code' => 'MA'], ['name' => 'Neu Isenburg', 'country_code' => 'DE'], ['name' => 'Yelizovo', 'country_code' => 'RU'], ['name' => 'El Viejo', 'country_code' => 'NI'], ['name' => 'Langen', 'country_code' => 'DE'], ['name' => 'Carol Stream', 'country_code' => 'US'], ['name' => 'Sungandiancun', 'country_code' => 'CN'], ['name' => 'Salinas', 'country_code' => 'BR'], ['name' => 'Asheboro', 'country_code' => 'US'], ['name' => 'Kalispell', 'country_code' => 'US'], ['name' => 'Cayambe', 'country_code' => 'EC'], ['name' => 'Arecibo', 'country_code' => 'PR'], ['name' => 'Xiwanzi', 'country_code' => 'CN'], ['name' => 'Baikonur', 'country_code' => 'KZ'], ['name' => 'Dwarka', 'country_code' => 'IN'], ['name' => 'Changchunpu', 'country_code' => 'CN'], ['name' => 'Omagari', 'country_code' => 'JP'], ['name' => 'Sao Mateus do Maranhao', 'country_code' => 'BR'], ['name' => 'Lynnwood', 'country_code' => 'US'], ['name' => 'Siguatepeque', 'country_code' => 'HN'], ['name' => 'Mooresville', 'country_code' => 'US'], ['name' => 'Monreale', 'country_code' => 'IT'], ['name' => 'Kachkanar', 'country_code' => 'RU'], ['name' => 'Al Malikiyah', 'country_code' => 'SY'], ['name' => 'Brookfield', 'country_code' => 'US'], ['name' => 'Landgraaf', 'country_code' => 'NL'], ['name' => 'Alcala', 'country_code' => 'PH'], ['name' => 'Nuevitas', 'country_code' => 'CU'], ['name' => 'Mobo', 'country_code' => 'PH'], ['name' => 'Shijiazhuangnan', 'country_code' => 'CN'], ['name' => 'San Dionisio', 'country_code' => 'PH'], ['name' => 'Joue-les-Tours', 'country_code' => 'FR'], ['name' => 'Igarape-Acu', 'country_code' => 'BR'], ['name' => 'Crestview', 'country_code' => 'US'], ['name' => 'Horizon West', 'country_code' => 'US'], ['name' => 'Toumodi', 'country_code' => 'CI'], ['name' => 'Inashiki', 'country_code' => 'JP'], ['name' => 'Kurchatov', 'country_code' => 'RU'], ['name' => 'Pirna', 'country_code' => 'DE'], ['name' => 'Caivano', 'country_code' => 'IT'], ['name' => 'Rtishchevo', 'country_code' => 'RU'], ['name' => 'Pala Oua', 'country_code' => 'TD'], ['name' => 'Clinton', 'country_code' => 'US'], ['name' => 'Ancud', 'country_code' => 'CL'], ['name' => 'Moses Lake', 'country_code' => 'US'], ['name' => 'Souma', 'country_code' => 'DZ'], ['name' => 'Vasylkiv', 'country_code' => 'UA'], ['name' => 'Dingras', 'country_code' => 'PH'], ['name' => 'Mira', 'country_code' => 'IT'], ['name' => 'Umi', 'country_code' => 'JP'], ['name' => 'Gonzaga', 'country_code' => 'PH'], ['name' => 'Hitachiomiya', 'country_code' => 'JP'], ['name' => 'Tagbina', 'country_code' => 'PH'], ['name' => 'Tshela', 'country_code' => 'CD'], ['name' => 'Malalag', 'country_code' => 'PH'], ['name' => 'Dubno', 'country_code' => 'UA'], ['name' => 'Galeana', 'country_code' => 'MX'], ['name' => 'New Castle', 'country_code' => 'US'], ['name' => 'Olive Branch', 'country_code' => 'US'], ['name' => 'Bitterfeld', 'country_code' => 'DE'], ['name' => 'Enterprise', 'country_code' => 'US'], ['name' => 'Dom Pedrito', 'country_code' => 'BR'], ['name' => 'Bautzen', 'country_code' => 'DE'], ['name' => 'Los Palacios y Villafranca', 'country_code' => 'ES'], ['name' => 'Sakuragawa', 'country_code' => 'JP'], ['name' => 'La Libertad', 'country_code' => 'PH'], ['name' => 'Sun City', 'country_code' => 'US'], ['name' => 'Melchor Ocampo', 'country_code' => 'MX'], ['name' => 'Mondragon', 'country_code' => 'PH'], ['name' => 'Skelmersdale', 'country_code' => 'GB'], ['name' => 'Furstenfeldbruck', 'country_code' => 'DE'], ['name' => 'Balcarce', 'country_code' => 'AR'], ['name' => 'Mission', 'country_code' => 'CA'], ['name' => 'Pervomaisk', 'country_code' => 'UA'], ['name' => 'Winslow', 'country_code' => 'US'], ['name' => 'Groton', 'country_code' => 'US'], ['name' => 'Bukama', 'country_code' => 'CD'], ['name' => 'Agoncillo', 'country_code' => 'PH'], ['name' => 'Tuusula', 'country_code' => 'FI'], ['name' => 'Promissao', 'country_code' => 'BR'], ['name' => 'Faraskur', 'country_code' => 'EG'], ['name' => 'Pedro II', 'country_code' => 'BR'], ['name' => 'Dabola', 'country_code' => 'GN'], ['name' => 'Gujo', 'country_code' => 'JP'], ['name' => 'Cajibio', 'country_code' => 'CO'], ['name' => 'Los Palacios', 'country_code' => 'CU'], ['name' => 'Warren', 'country_code' => 'US'], ['name' => 'Duncanville', 'country_code' => 'US'], ['name' => 'Sao Fidelis', 'country_code' => 'BR'], ['name' => 'Kirkkonummi', 'country_code' => 'FI'], ['name' => 'Dzhankoi', 'country_code' => 'UA'], ['name' => 'Sibate', 'country_code' => 'CO'], ['name' => 'Naga', 'country_code' => 'PH'], ['name' => 'Nove Zamky', 'country_code' => 'SK'], ['name' => 'Mechelen-aan-de-Maas', 'country_code' => 'BE'], ['name' => 'Segovia', 'country_code' => 'CO'], ['name' => 'Maayon', 'country_code' => 'PH'], ['name' => 'Alimodian', 'country_code' => 'PH'], ['name' => 'Amadeo', 'country_code' => 'PH'], ['name' => 'Siniloan', 'country_code' => 'PH'], ['name' => 'La Union', 'country_code' => 'GT'], ['name' => 'Hurst', 'country_code' => 'US'], ['name' => 'Clermont', 'country_code' => 'US'], ['name' => 'Mariinsk', 'country_code' => 'RU'], ['name' => 'Wheeling', 'country_code' => 'US'], ['name' => 'Bayan', 'country_code' => 'CN'], ['name' => 'Guariba', 'country_code' => 'BR'], ['name' => 'Malilipot', 'country_code' => 'PH'], ['name' => 'Vallehermoso', 'country_code' => 'PH'], ['name' => 'Krasnoufimsk', 'country_code' => 'RU'], ['name' => 'Zary', 'country_code' => 'PL'], ['name' => 'Xiaguanying', 'country_code' => 'CN'], ['name' => 'Valladolid', 'country_code' => 'PH'], ['name' => 'Sao Gabriel', 'country_code' => 'BR'], ['name' => 'Abinsk', 'country_code' => 'RU'], ['name' => 'Dubbo', 'country_code' => 'AU'], ['name' => 'Daraw', 'country_code' => 'EG'], ['name' => 'San Felipe Orizatlan', 'country_code' => 'MX'], ['name' => 'Lanyi', 'country_code' => 'CN'], ['name' => 'Uryupinsk', 'country_code' => 'RU'], ['name' => 'Jaroslaw', 'country_code' => 'PL'], ['name' => 'Monan', 'country_code' => 'CN'], ['name' => 'Veghel', 'country_code' => 'NL'], ['name' => 'Karditsa', 'country_code' => 'GR'], ['name' => 'Khalkhal', 'country_code' => 'IR'], ['name' => 'Pacifica', 'country_code' => 'US'], ['name' => 'Maddela', 'country_code' => 'PH'], ['name' => 'Alianca', 'country_code' => 'BR'], ['name' => 'Siyang', 'country_code' => 'CN'], ['name' => 'Caibarien', 'country_code' => 'CU'], ['name' => 'Konakovo', 'country_code' => 'RU'], ['name' => 'Lebanon', 'country_code' => 'US'], ['name' => 'Itiuba', 'country_code' => 'BR'], ['name' => 'Falavarjan', 'country_code' => 'IR'], ['name' => 'Americo Brasiliense', 'country_code' => 'BR'], ['name' => 'Sassandra', 'country_code' => 'CI'], ['name' => 'Varzea Alegre', 'country_code' => 'BR'], ['name' => 'Talacogon', 'country_code' => 'PH'], ['name' => 'Ventanas', 'country_code' => 'EC'], ['name' => 'Rizal', 'country_code' => 'PH'], ['name' => 'Hanumannagar', 'country_code' => 'NP'], ['name' => 'Taysan', 'country_code' => 'PH'], ['name' => 'Land O Lakes', 'country_code' => 'US'], ['name' => 'Venlo', 'country_code' => 'NL'], ['name' => 'Maimbung', 'country_code' => 'PH'], ['name' => 'San Jacinto de Buena Fe', 'country_code' => 'EC'], ['name' => 'Bodoco', 'country_code' => 'BR'], ['name' => 'Yanqi', 'country_code' => 'CN'], ['name' => 'Caltagirone', 'country_code' => 'IT'], ['name' => 'Kaka', 'country_code' => 'TM'], ['name' => 'Ibara', 'country_code' => 'JP'], ['name' => 'Eagle Mountain', 'country_code' => 'US'], ['name' => 'Usinsk', 'country_code' => 'RU'], ['name' => 'Sharypovo', 'country_code' => 'RU'], ['name' => 'Moncada', 'country_code' => 'ES'], ['name' => 'Atamyrat', 'country_code' => 'TM'], ['name' => 'Alekseyevka', 'country_code' => 'RU'], ['name' => 'Villagarcia de Arosa', 'country_code' => 'ES'], ['name' => 'Bol shoy Kamen ', 'country_code' => 'RU'], ['name' => 'Ciudad Manuel Doblado', 'country_code' => 'MX'], ['name' => 'Katsuragi', 'country_code' => 'JP'], ['name' => 'Reynoldsburg', 'country_code' => 'US'], ['name' => 'Sabang', 'country_code' => 'ID'], ['name' => 'Pathanamthitta', 'country_code' => 'IN'], ['name' => 'Krasnyy Sulin', 'country_code' => 'RU'], ['name' => 'Lyudinovo', 'country_code' => 'RU'], ['name' => 'Oxford', 'country_code' => 'US'], ['name' => 'Rosenberg', 'country_code' => 'US'], ['name' => 'Pitangueiras', 'country_code' => 'BR'], ['name' => 'Martinez', 'country_code' => 'US'], ['name' => 'Zavolzhye', 'country_code' => 'RU'], ['name' => 'Mapandan', 'country_code' => 'PH'], ['name' => 'Balud', 'country_code' => 'PH'], ['name' => 'Rio Pardo', 'country_code' => 'BR'], ['name' => 'Cerveteri', 'country_code' => 'IT'], ['name' => 'Pleasant Grove', 'country_code' => 'US'], ['name' => 'Badian', 'country_code' => 'PH'], ['name' => 'Bonito', 'country_code' => 'BR'], ['name' => 'Margosatubig', 'country_code' => 'PH'], ['name' => 'Dengtangcun', 'country_code' => 'CN'], ['name' => 'Backnang', 'country_code' => 'DE'], ['name' => 'Severna Park', 'country_code' => 'US'], ['name' => 'Xinpo', 'country_code' => 'CN'], ['name' => 'Teijlingen', 'country_code' => 'NL'], ['name' => 'Houghton le Spring', 'country_code' => 'GB'], ['name' => 'Taounate', 'country_code' => 'MA'], ['name' => 'Izobil nyy', 'country_code' => 'RU'], ['name' => 'Huber Heights', 'country_code' => 'US'], ['name' => 'Xinqiao', 'country_code' => 'CN'], ['name' => 'Vaudreuil-Dorion', 'country_code' => 'CA'], ['name' => 'Goes', 'country_code' => 'NL'], ['name' => 'Sampues', 'country_code' => 'CO'], ['name' => 'Maroantsetra', 'country_code' => 'MG'], ['name' => 'Capelinha', 'country_code' => 'BR'], ['name' => 'Boryslav', 'country_code' => 'UA'], ['name' => 'Geleen', 'country_code' => 'NL'], ['name' => 'Yamen', 'country_code' => 'CN'], ['name' => 'Las Navas', 'country_code' => 'PH'], ['name' => 'Yuzhnouralsk', 'country_code' => 'RU'], ['name' => 'Spoleto', 'country_code' => 'IT'], ['name' => 'Yajalon', 'country_code' => 'MX'], ['name' => 'Guira de Melena', 'country_code' => 'CU'], ['name' => 'Aristobulo del Valle', 'country_code' => 'AR'], ['name' => 'Mullaittivu', 'country_code' => 'LK'], ['name' => 'Formia', 'country_code' => 'IT'], ['name' => 'Mixquiahuala de Juarez', 'country_code' => 'MX'], ['name' => 'Menomonee Falls', 'country_code' => 'US'], ['name' => 'Hajin', 'country_code' => 'SY'], ['name' => 'Bathurst', 'country_code' => 'AU'], ['name' => 'Granbury', 'country_code' => 'US'], ['name' => 'Clarin', 'country_code' => 'PH'], ['name' => 'Waxahachie', 'country_code' => 'US'], ['name' => 'Kamp-Lintfort', 'country_code' => 'DE'], ['name' => 'Valrico', 'country_code' => 'US'], ['name' => 'Sighetu Marmatiei', 'country_code' => 'RO'], ['name' => 'Argun', 'country_code' => 'RU'], ['name' => 'Constitucion', 'country_code' => 'CL'], ['name' => 'Greven', 'country_code' => 'DE'], ['name' => 'Kapiri Mposhi', 'country_code' => 'ZM'], ['name' => 'Madridejos', 'country_code' => 'PH'], ['name' => 'Maragondon', 'country_code' => 'PH'], ['name' => 'Amarante do Maranhao', 'country_code' => 'BR'], ['name' => 'Santiago', 'country_code' => 'MX'], ['name' => 'Sanchahe', 'country_code' => 'CN'], ['name' => 'Pentecoste', 'country_code' => 'BR'], ['name' => 'Ceska Lipa', 'country_code' => 'CZ'], ['name' => 'Marratxi', 'country_code' => 'ES'], ['name' => 'Shakhtinsk', 'country_code' => 'KZ'], ['name' => 'Papenburg', 'country_code' => 'DE'], ['name' => 'Akhtubinsk', 'country_code' => 'RU'], ['name' => 'Amargosa', 'country_code' => 'BR'], ['name' => 'Cabugao', 'country_code' => 'PH'], ['name' => 'Ipueiras', 'country_code' => 'BR'], ['name' => 'Spisska Nova Ves', 'country_code' => 'SK'], ['name' => 'Dibulla', 'country_code' => 'CO'], ['name' => 'Lluchmayor', 'country_code' => 'ES'], ['name' => 'Stirling', 'country_code' => 'GB'], ['name' => 'San Juan', 'country_code' => 'PH'], ['name' => 'Emirdag', 'country_code' => 'TR'], ['name' => 'Guaraciaba do Norte', 'country_code' => 'BR'], ['name' => 'Al Qaryatayn', 'country_code' => 'SY'], ['name' => 'Kasibu', 'country_code' => 'PH'], ['name' => 'Ma arratmisrin', 'country_code' => 'SY'], ['name' => 'Holly Springs', 'country_code' => 'US'], ['name' => 'Malmesbury', 'country_code' => 'ZA'], ['name' => 'Butler', 'country_code' => 'US'], ['name' => 'Mieres', 'country_code' => 'ES'], ['name' => 'Juanjui', 'country_code' => 'PE'], ['name' => 'Pimenta Bueno', 'country_code' => 'BR'], ['name' => 'Dajiecun', 'country_code' => 'CN'], ['name' => 'Geraldton', 'country_code' => 'AU'], ['name' => 'Pamplona', 'country_code' => 'PH'], ['name' => 'Lampa', 'country_code' => 'CL'], ['name' => 'Albertville', 'country_code' => 'US'], ['name' => 'Aboisso', 'country_code' => 'CI'], ['name' => 'Haugesund', 'country_code' => 'NO'], ['name' => 'Uchaly', 'country_code' => 'RU'], ['name' => 'Tunduma', 'country_code' => 'TZ'], ['name' => 'Sunbury', 'country_code' => 'AU'], ['name' => 'London', 'country_code' => 'US'], ['name' => 'Reo', 'country_code' => 'BF'], ['name' => 'Wesseling', 'country_code' => 'DE'], ['name' => 'Sao Goncalo dos Campos', 'country_code' => 'BR'], ['name' => 'Kahrizak', 'country_code' => 'IR'], ['name' => 'Granadero Baigorria', 'country_code' => 'AR'], ['name' => 'Kalinkavichy', 'country_code' => 'BY'], ['name' => 'San Nicolas', 'country_code' => 'PH'], ['name' => 'Porteirinha', 'country_code' => 'BR'], ['name' => 'Ossining', 'country_code' => 'US'], ['name' => 'Chieri', 'country_code' => 'IT'], ['name' => 'Igrejinha', 'country_code' => 'BR'], ['name' => 'Nowra', 'country_code' => 'AU'], ['name' => 'Cottage Grove', 'country_code' => 'US'], ['name' => 'Daiyue', 'country_code' => 'CN'], ['name' => 'Kailua', 'country_code' => 'US'], ['name' => 'Beckum', 'country_code' => 'DE'], ['name' => 'Jelilyuzi', 'country_code' => 'CN'], ['name' => 'Konigs Wusterhausen', 'country_code' => 'DE'], ['name' => 'Frolovo', 'country_code' => 'RU'], ['name' => 'Alapayevsk', 'country_code' => 'RU'], ['name' => 'Pojuca', 'country_code' => 'BR'], ['name' => 'El Bordo', 'country_code' => 'CO'], ['name' => 'St. Marys', 'country_code' => 'US'], ['name' => 'Guaratuba', 'country_code' => 'BR'], ['name' => 'Shiji', 'country_code' => 'CN'], ['name' => 'Tosno', 'country_code' => 'RU'], ['name' => 'Santa Cruz', 'country_code' => 'PH'], ['name' => 'Chrzanow', 'country_code' => 'PL'], ['name' => 'Fermo', 'country_code' => 'IT'], ['name' => 'Dalnegorsk', 'country_code' => 'RU'], ['name' => 'Itarema', 'country_code' => 'BR'], ['name' => 'Fengguangcun', 'country_code' => 'CN'], ['name' => 'Lilio', 'country_code' => 'PH'], ['name' => 'Nandaime', 'country_code' => 'NI'], ['name' => 'Goryachiy Klyuch', 'country_code' => 'RU'], ['name' => 'Malgobek', 'country_code' => 'RU'], ['name' => 'Afogados da Ingazeira', 'country_code' => 'BR'], ['name' => 'Mechanicsville', 'country_code' => 'US'], ['name' => 'Bouznika', 'country_code' => 'MA'], ['name' => 'San Blas', 'country_code' => 'MX'], ['name' => 'Compostela', 'country_code' => 'MX'], ['name' => 'Santa Rosa de Osos', 'country_code' => 'CO'], ['name' => 'Molndal', 'country_code' => 'SE'], ['name' => 'Risalpur Cantonment', 'country_code' => 'PK'], ['name' => 'Cleburne', 'country_code' => 'US'], ['name' => 'Shaxi', 'country_code' => 'CN'], ['name' => 'Yirga Alem', 'country_code' => 'ET'], ['name' => 'Warendorf', 'country_code' => 'DE'], ['name' => 'Bacong', 'country_code' => 'PH'], ['name' => 'Holubivske', 'country_code' => 'UA'], ['name' => 'Yugorsk', 'country_code' => 'RU'], ['name' => 'Oswego', 'country_code' => 'US'], ['name' => 'Shrewsbury', 'country_code' => 'US'], ['name' => 'Melgar', 'country_code' => 'CO'], ['name' => 'Patnongon', 'country_code' => 'PH'], ['name' => 'Baco', 'country_code' => 'PH'], ['name' => 'Lierre', 'country_code' => 'BE'], ['name' => 'Nossa Senhora da Gloria', 'country_code' => 'BR'], ['name' => 'Oleiros', 'country_code' => 'ES'], ['name' => 'Aritao', 'country_code' => 'PH'], ['name' => 'Navarre', 'country_code' => 'US'], ['name' => 'Lebork', 'country_code' => 'PL'], ['name' => 'Don Benito', 'country_code' => 'ES'], ['name' => 'Petrosani', 'country_code' => 'RO'], ['name' => 'Mol', 'country_code' => 'BE'], ['name' => 'Montlucon', 'country_code' => 'FR'], ['name' => 'Koryazhma', 'country_code' => 'RU'], ['name' => 'Oregon City', 'country_code' => 'US'], ['name' => 'Poblacion', 'country_code' => 'PH'], ['name' => 'Aracuai', 'country_code' => 'BR'], ['name' => 'Masyaf', 'country_code' => 'SY'], ['name' => 'Mabuhay', 'country_code' => 'PH'], ['name' => 'Winter Springs', 'country_code' => 'US'], ['name' => 'Tibu', 'country_code' => 'CO'], ['name' => 'Morondava', 'country_code' => 'MG'], ['name' => 'Parkland', 'country_code' => 'US'], ['name' => 'Daying', 'country_code' => 'CN'], ['name' => 'Kizilyurt', 'country_code' => 'RU'], ['name' => 'Pahrump', 'country_code' => 'US'], ['name' => 'Tunzi', 'country_code' => 'CN'], ['name' => 'Carpentersville', 'country_code' => 'US'], ['name' => 'Penfield', 'country_code' => 'US'], ['name' => 'Mangai', 'country_code' => 'CD'], ['name' => 'Irbit', 'country_code' => 'RU'], ['name' => 'Frankston', 'country_code' => 'AU'], ['name' => 'Cisterna di Latina', 'country_code' => 'IT'], ['name' => 'Wildomar', 'country_code' => 'US'], ['name' => 'Greenfield', 'country_code' => 'US'], ['name' => 'Suhl', 'country_code' => 'DE'], ['name' => 'Licata', 'country_code' => 'IT'], ['name' => 'Tudela', 'country_code' => 'ES'], ['name' => 'Maasin', 'country_code' => 'PH'], ['name' => 'Braintree', 'country_code' => 'US'], ['name' => 'Protvino', 'country_code' => 'RU'], ['name' => 'Silves', 'country_code' => 'PT'], ['name' => 'Rezh', 'country_code' => 'RU'], ['name' => 'Rock Island', 'country_code' => 'US'], ['name' => 'Cheltenham', 'country_code' => 'US'], ['name' => 'Kannan', 'country_code' => 'JP'], ['name' => 'Olot', 'country_code' => 'ES'], ['name' => 'Baishi Airikecun', 'country_code' => 'CN'], ['name' => 'Akto', 'country_code' => 'CN'], ['name' => 'Yasynuvata', 'country_code' => 'UA'], ['name' => 'Rapu-Rapu', 'country_code' => 'PH'], ['name' => 'Anzhou', 'country_code' => 'CN'], ['name' => 'Agua Preta', 'country_code' => 'BR'], ['name' => 'Beslan', 'country_code' => 'RU'], ['name' => 'Erding', 'country_code' => 'DE'], ['name' => 'Evans', 'country_code' => 'US'], ['name' => 'Haverstraw', 'country_code' => 'US'], ['name' => 'Jose de Freitas', 'country_code' => 'BR'], ['name' => 'Zuojiawu', 'country_code' => 'CN'], ['name' => 'Qulsary', 'country_code' => 'KZ'], ['name' => 'Partizansk', 'country_code' => 'RU'], ['name' => 'Elixku', 'country_code' => 'CN'], ['name' => 'Kampene', 'country_code' => 'CD'], ['name' => 'Tsubata', 'country_code' => 'JP'], ['name' => 'West Fargo', 'country_code' => 'US'], ['name' => 'Kyshtym', 'country_code' => 'RU'], ['name' => 'Lesozavodsk', 'country_code' => 'RU'], ['name' => 'Boston', 'country_code' => 'GB'], ['name' => 'Mount Juliet', 'country_code' => 'US'], ['name' => 'Aourir', 'country_code' => 'MA'], ['name' => 'San Juan', 'country_code' => 'US'], ['name' => 'San Andres', 'country_code' => 'PH'], ['name' => 'Oakton', 'country_code' => 'US'], ['name' => 'Georgetown', 'country_code' => 'US'], ['name' => 'Portage', 'country_code' => 'US'], ['name' => 'Netishyn', 'country_code' => 'UA'], ['name' => 'Dabutou', 'country_code' => 'CN'], ['name' => 'Aguelmous', 'country_code' => 'MA'], ['name' => 'Caimito', 'country_code' => 'CU'], ['name' => 'Owasso', 'country_code' => 'US'], ['name' => 'Commack', 'country_code' => 'US'], ['name' => 'Xindian', 'country_code' => 'CN'], ['name' => 'Santaluz', 'country_code' => 'BR'], ['name' => 'Sokol', 'country_code' => 'RU'], ['name' => 'Cassino', 'country_code' => 'IT'], ['name' => 'Dagua', 'country_code' => 'CO'], ['name' => 'Chimboy Shahri', 'country_code' => 'UZ'], ['name' => 'Foley', 'country_code' => 'US'], ['name' => 'Villajoyosa', 'country_code' => 'ES'], ['name' => 'Komatsushimacho', 'country_code' => 'JP'], ['name' => 'Bangar', 'country_code' => 'PH'], ['name' => 'Beiya', 'country_code' => 'CN'], ['name' => 'Buug', 'country_code' => 'PH'], ['name' => 'Sayula', 'country_code' => 'MX'], ['name' => 'Vac', 'country_code' => 'HU'], ['name' => 'Basilisa', 'country_code' => 'PH'], ['name' => 'Mannar', 'country_code' => 'LK'], ['name' => 'Billingham', 'country_code' => 'GB'], ['name' => 'Gorinchem', 'country_code' => 'NL'], ['name' => 'Yejituo', 'country_code' => 'CN'], ['name' => 'Torres Novas', 'country_code' => 'PT'], ['name' => 'Kanada', 'country_code' => 'JP'], ['name' => 'Qaladizay', 'country_code' => 'IQ'], ['name' => 'New Albany', 'country_code' => 'US'], ['name' => 'Pamplona', 'country_code' => 'PH'], ['name' => 'Rossano', 'country_code' => 'IT'], ['name' => 'Lajedo', 'country_code' => 'BR'], ['name' => 'Benton', 'country_code' => 'US'], ['name' => 'Zhaoqiao', 'country_code' => 'CN'], ['name' => 'Nabas', 'country_code' => 'PH'], ['name' => 'Voi', 'country_code' => 'KE'], ['name' => 'Wangtuan', 'country_code' => 'CN'], ['name' => 'La Macarena', 'country_code' => 'CO'], ['name' => 'Koneurgench', 'country_code' => 'TM'], ['name' => 'Nuoro', 'country_code' => 'IT'], ['name' => 'Jamindan', 'country_code' => 'PH'], ['name' => 'Puerto Galera', 'country_code' => 'PH'], ['name' => 'Esplanada', 'country_code' => 'BR'], ['name' => 'Kambove', 'country_code' => 'CD'], ['name' => 'Danihe', 'country_code' => 'CN'], ['name' => 'Esik', 'country_code' => 'KZ'], ['name' => 'Oras', 'country_code' => 'PH'], ['name' => 'Morro do Chapeu', 'country_code' => 'BR'], ['name' => 'Airdrie', 'country_code' => 'GB'], ['name' => 'Gramado', 'country_code' => 'BR'], ['name' => 'Brant', 'country_code' => 'CA'], ['name' => 'Esquel', 'country_code' => 'AR'], ['name' => 'Meridian', 'country_code' => 'US'], ['name' => 'Brejo', 'country_code' => 'BR'], ['name' => 'Manucan', 'country_code' => 'PH'], ['name' => 'Clifton Park', 'country_code' => 'US'], ['name' => 'Pinerolo', 'country_code' => 'IT'], ['name' => 'Torre-Pacheco', 'country_code' => 'ES'], ['name' => 'Andujar', 'country_code' => 'ES'], ['name' => 'Zhetisay', 'country_code' => 'KZ'], ['name' => 'Belalcazar', 'country_code' => 'CO'], ['name' => 'Kinel', 'country_code' => 'RU'], ['name' => 'Luna', 'country_code' => 'PH'], ['name' => 'Bulicun', 'country_code' => 'CN'], ['name' => 'Kodaikanal', 'country_code' => 'IN'], ['name' => 'Haomen', 'country_code' => 'CN'], ['name' => 'Lakeshore', 'country_code' => 'CA'], ['name' => 'Porsgrunn', 'country_code' => 'NO'], ['name' => 'Dar Chabanne', 'country_code' => 'TN'], ['name' => 'Campos Novos', 'country_code' => 'BR'], ['name' => 'Masasi', 'country_code' => 'TZ'], ['name' => 'Kehl', 'country_code' => 'DE'], ['name' => 'Innisfil', 'country_code' => 'CA'], ['name' => 'Barra Bonita', 'country_code' => 'BR'], ['name' => 'Francavilla Fontana', 'country_code' => 'IT'], ['name' => 'Agudos', 'country_code' => 'BR'], ['name' => 'Mangalia', 'country_code' => 'RO'], ['name' => 'Bettendorf', 'country_code' => 'US'], ['name' => 'Yorktown', 'country_code' => 'US'], ['name' => 'Sao Paulo de Olivenca', 'country_code' => 'BR'], ['name' => 'Dunedin', 'country_code' => 'US'], ['name' => 'Hilliard', 'country_code' => 'US'], ['name' => 'Merritt Island', 'country_code' => 'US'], ['name' => 'Warrnambool', 'country_code' => 'AU'], ['name' => 'Emsdetten', 'country_code' => 'DE'], ['name' => 'Kaniama', 'country_code' => 'CD'], ['name' => 'Nueve de Julio', 'country_code' => 'AR'], ['name' => 'Sao Joao da Barra', 'country_code' => 'BR'], ['name' => 'Phenix City', 'country_code' => 'US'], ['name' => 'Sambir', 'country_code' => 'UA'], ['name' => 'Addison', 'country_code' => 'US'], ['name' => 'Muhlhausen', 'country_code' => 'DE'], ['name' => 'Selcuk', 'country_code' => 'TR'], ['name' => 'Camamu', 'country_code' => 'BR'], ['name' => 'Coesfeld', 'country_code' => 'DE'], ['name' => 'Sonson', 'country_code' => 'CO'], ['name' => 'Roseville', 'country_code' => 'US'], ['name' => 'Castricum', 'country_code' => 'NL'], ['name' => 'Careiro', 'country_code' => 'BR'], ['name' => 'Tambulig', 'country_code' => 'PH'], ['name' => 'Dama', 'country_code' => 'CN'], ['name' => 'Ma alot Tarshiha', 'country_code' => 'IL'], ['name' => 'Sankt Ingbert', 'country_code' => 'DE'], ['name' => 'Zhmerynka', 'country_code' => 'UA'], ['name' => 'Nyaungdon', 'country_code' => 'MM'], ['name' => 'Udhampur', 'country_code' => 'IN'], ['name' => 'Jaslo', 'country_code' => 'PL'], ['name' => 'Kerava', 'country_code' => 'FI'], ['name' => 'Isla de Maipo', 'country_code' => 'CL'], ['name' => 'Morohongo', 'country_code' => 'JP'], ['name' => 'Oakville', 'country_code' => 'US'], ['name' => 'Nejapa', 'country_code' => 'SV'], ['name' => 'Tucker', 'country_code' => 'US'], ['name' => 'Queanbeyan', 'country_code' => 'AU'], ['name' => 'Moorpark', 'country_code' => 'US'], ['name' => 'Rende', 'country_code' => 'IT'], ['name' => 'San Andres', 'country_code' => 'PH'], ['name' => 'San Pablo', 'country_code' => 'CO'], ['name' => 'Oeiras', 'country_code' => 'BR'], ['name' => 'Monrovia', 'country_code' => 'US'], ['name' => 'Oak Creek', 'country_code' => 'US'], ['name' => 'Tomelloso', 'country_code' => 'ES'], ['name' => 'San Bernardo del Viento', 'country_code' => 'CO'], ['name' => 'Rifu', 'country_code' => 'JP'], ['name' => 'La Ciotat', 'country_code' => 'FR'], ['name' => 'Brighton', 'country_code' => 'US'], ['name' => 'La Libertad', 'country_code' => 'SV'], ['name' => 'Claremont', 'country_code' => 'US'], ['name' => 'Pingshang', 'country_code' => 'CN'], ['name' => 'Oswego', 'country_code' => 'US'], ['name' => 'Post Falls', 'country_code' => 'US'], ['name' => 'Smarhon ', 'country_code' => 'BY'], ['name' => 'Mankayan', 'country_code' => 'PH'], ['name' => 'Peachtree City', 'country_code' => 'US'], ['name' => 'Palapye', 'country_code' => 'BW'], ['name' => 'Alicia', 'country_code' => 'PH'], ['name' => 'Lumba-a-Bayabao', 'country_code' => 'PH'], ['name' => 'Bantay', 'country_code' => 'PH'], ['name' => 'At Turrah', 'country_code' => 'JO'], ['name' => 'Ban Mueang Na Tai', 'country_code' => 'TH'], ['name' => 'Batobato', 'country_code' => 'PH'], ['name' => 'Araguatins', 'country_code' => 'BR'], ['name' => 'Augusta', 'country_code' => 'IT'], ['name' => 'Zacatepec', 'country_code' => 'MX'], ['name' => 'Jyvaskylan Maalaiskunta', 'country_code' => 'FI'], ['name' => 'Avdiivka', 'country_code' => 'UA'], ['name' => 'Magsaysay', 'country_code' => 'PH'], ['name' => 'Natick', 'country_code' => 'US'], ['name' => 'French Valley', 'country_code' => 'US'], ['name' => 'Somma Vesuviana', 'country_code' => 'IT'], ['name' => 'Farafenni', 'country_code' => 'GM'], ['name' => 'Miranda de Ebro', 'country_code' => 'ES'], ['name' => 'Portsmouth', 'country_code' => 'US'], ['name' => 'Canicatti', 'country_code' => 'IT'], ['name' => 'Tuttlingen', 'country_code' => 'DE'], ['name' => 'Viru', 'country_code' => 'PE'], ['name' => 'Cento', 'country_code' => 'IT'], ['name' => 'Galloway', 'country_code' => 'US'], ['name' => 'Shawnee', 'country_code' => 'US'], ['name' => 'Hellendoorn', 'country_code' => 'NL'], ['name' => 'Sertania', 'country_code' => 'BR'], ['name' => 'Adrano', 'country_code' => 'IT'], ['name' => 'Conegliano', 'country_code' => 'IT'], ['name' => 'Onteniente', 'country_code' => 'ES'], ['name' => 'Real', 'country_code' => 'PH'], ['name' => 'Ewing', 'country_code' => 'US'], ['name' => 'Gillette', 'country_code' => 'US'], ['name' => 'Enrile', 'country_code' => 'PH'], ['name' => 'Limburg', 'country_code' => 'DE'], ['name' => 'Tooele', 'country_code' => 'US'], ['name' => 'Guayaramerin', 'country_code' => 'BO'], ['name' => 'Porta Westfalica', 'country_code' => 'DE'], ['name' => 'Itapicuru', 'country_code' => 'BR'], ['name' => 'Fraiburgo', 'country_code' => 'BR'], ['name' => 'Salinas', 'country_code' => 'EC'], ['name' => 'Miyajima', 'country_code' => 'JP'], ['name' => 'Accrington', 'country_code' => 'GB'], ['name' => 'Zvishavane', 'country_code' => 'ZW'], ['name' => 'Rongwo', 'country_code' => 'CN'], ['name' => 'Velasco Ibarra', 'country_code' => 'EC'], ['name' => 'Zhentang', 'country_code' => 'CN'], ['name' => 'Trumbull', 'country_code' => 'US'], ['name' => 'Boyarka', 'country_code' => 'RU'], ['name' => 'Prattville', 'country_code' => 'US'], ['name' => 'Kamenka', 'country_code' => 'RU'], ['name' => 'Chortoq', 'country_code' => 'UZ'], ['name' => 'Belluno', 'country_code' => 'IT'], ['name' => 'Woodburn', 'country_code' => 'US'], ['name' => 'Kakhovka', 'country_code' => 'UA'], ['name' => 'Chernyakhovsk', 'country_code' => 'RU'], ['name' => 'Prince Albert', 'country_code' => 'CA'], ['name' => 'Samal', 'country_code' => 'PH'], ['name' => 'Calumet City', 'country_code' => 'US'], ['name' => 'Praya', 'country_code' => 'ID'], ['name' => 'San Juan Capistrano', 'country_code' => 'US'], ['name' => 'Vyazniki', 'country_code' => 'RU'], ['name' => 'Toretsk', 'country_code' => 'UA'], ['name' => 'Apodi', 'country_code' => 'BR'], ['name' => 'Colinas do Tocantins', 'country_code' => 'BR'], ['name' => 'Mengdong', 'country_code' => 'CN'], ['name' => 'Sion', 'country_code' => 'CH'], ['name' => 'Kumo', 'country_code' => 'NG'], ['name' => 'Alem Paraiba', 'country_code' => 'BR'], ['name' => 'Aguilas', 'country_code' => 'ES'], ['name' => 'Xonobod', 'country_code' => 'UZ'], ['name' => 'Zefat', 'country_code' => 'IL'], ['name' => 'Chancay', 'country_code' => 'PE'], ['name' => 'Karak', 'country_code' => 'PK'], ['name' => 'Ingelheim', 'country_code' => 'DE'], ['name' => 'Estreito', 'country_code' => 'BR'], ['name' => 'Imzouren', 'country_code' => 'MA'], ['name' => 'Guacari', 'country_code' => 'CO'], ['name' => 'Tallkalakh', 'country_code' => 'SY'], ['name' => 'Pak Chong', 'country_code' => 'TH'], ['name' => 'Dayr Hafir', 'country_code' => 'SY'], ['name' => 'Borbon', 'country_code' => 'PH'], ['name' => 'Andover', 'country_code' => 'US'], ['name' => 'Franklin', 'country_code' => 'US'], ['name' => 'Marialva', 'country_code' => 'BR'], ['name' => 'Usuki', 'country_code' => 'JP'], ['name' => 'Cooper City', 'country_code' => 'US'], ['name' => 'Dinas', 'country_code' => 'PH'], ['name' => 'Burriana', 'country_code' => 'ES'], ['name' => 'Leyland', 'country_code' => 'GB'], ['name' => 'Kundian', 'country_code' => 'PK'], ['name' => 'Laur', 'country_code' => 'PH'], ['name' => 'Svetlograd', 'country_code' => 'RU'], ['name' => 'Teruel', 'country_code' => 'ES'], ['name' => 'Santiago de Tolu', 'country_code' => 'CO'], ['name' => 'Guane', 'country_code' => 'CU'], ['name' => 'Caluya', 'country_code' => 'PH'], ['name' => 'Timbio', 'country_code' => 'CO'], ['name' => 'El Mirage', 'country_code' => 'US'], ['name' => 'Villenave-d Ornon', 'country_code' => 'FR'], ['name' => 'San Fernando', 'country_code' => 'PH'], ['name' => 'San Nicolas', 'country_code' => 'PH'], ['name' => 'Meadow Woods', 'country_code' => 'US'], ['name' => 'Turiacu', 'country_code' => 'BR'], ['name' => 'Woodley', 'country_code' => 'GB'], ['name' => 'Sinsheim', 'country_code' => 'DE'], ['name' => 'LaGrange', 'country_code' => 'US'], ['name' => 'Cambrils', 'country_code' => 'ES'], ['name' => 'Trebic', 'country_code' => 'CZ'], ['name' => 'Cieszyn', 'country_code' => 'PL'], ['name' => 'La Vergne', 'country_code' => 'US'], ['name' => 'Tayasan', 'country_code' => 'PH'], ['name' => 'Guilderland', 'country_code' => 'US'], ['name' => 'Middletown', 'country_code' => 'US'], ['name' => 'Mount Pleasant', 'country_code' => 'US'], ['name' => 'Bagabag', 'country_code' => 'PH'], ['name' => 'Carrollwood', 'country_code' => 'US'], ['name' => 'Boyarka', 'country_code' => 'UA'], ['name' => 'Junction City', 'country_code' => 'US'], ['name' => 'Inver Grove Heights', 'country_code' => 'US'], ['name' => 'Gurpinar', 'country_code' => 'TR'], ['name' => 'Cegled', 'country_code' => 'HU'], ['name' => 'Camara de Lobos', 'country_code' => 'PT'], ['name' => 'Pennsauken', 'country_code' => 'US'], ['name' => 'Kilimli', 'country_code' => 'TR'], ['name' => 'Kuala Kapuas', 'country_code' => 'ID'], ['name' => 'Santo Domingo', 'country_code' => 'PH'], ['name' => 'Uster', 'country_code' => 'CH'], ['name' => 'San Sebastian de Yali', 'country_code' => 'NI'], ['name' => 'Cha-am', 'country_code' => 'TH'], ['name' => 'Lokbatan', 'country_code' => 'AZ'], ['name' => 'Schoten', 'country_code' => 'BE'], ['name' => 'La Troncal', 'country_code' => 'EC'], ['name' => 'Bougouni', 'country_code' => 'ML'], ['name' => 'Morfelden-Walldorf', 'country_code' => 'DE'], ['name' => 'Minami-Boso', 'country_code' => 'JP'], ['name' => 'Lixingcun', 'country_code' => 'CN'], ['name' => 'Saint-Chamond', 'country_code' => 'FR'], ['name' => 'Dietzenbach', 'country_code' => 'DE'], ['name' => 'Porto Uniao', 'country_code' => 'BR'], ['name' => 'Krasnik', 'country_code' => 'PL'], ['name' => 'Tocancipa', 'country_code' => 'CO'], ['name' => 'Jose Bonifacio', 'country_code' => 'BR'], ['name' => 'Gigante', 'country_code' => 'CO'], ['name' => 'Yangambi', 'country_code' => 'CD'], ['name' => 'Toritama', 'country_code' => 'BR'], ['name' => 'Meppen', 'country_code' => 'DE'], ['name' => 'Guama Abajo', 'country_code' => 'CU'], ['name' => 'Douzhuang', 'country_code' => 'CN'], ['name' => 'Quimbaya', 'country_code' => 'CO'], ['name' => 'Monroe', 'country_code' => 'US'], ['name' => 'Savonlinna', 'country_code' => 'FI'], ['name' => 'Randallstown', 'country_code' => 'US'], ['name' => 'Yayladagi', 'country_code' => 'TR'], ['name' => 'Nanzhiqiu', 'country_code' => 'CN'], ['name' => 'Lanciano', 'country_code' => 'IT'], ['name' => 'Cutral-Co', 'country_code' => 'AR'], ['name' => 'Matinhos', 'country_code' => 'BR'], ['name' => 'Lage', 'country_code' => 'DE'], ['name' => 'Vichuga', 'country_code' => 'RU'], ['name' => 'Santana do Paraiso', 'country_code' => 'BR'], ['name' => 'Shenjiabang', 'country_code' => 'CN'], ['name' => 'Gahanna', 'country_code' => 'US'], ['name' => 'Kahoku', 'country_code' => 'JP'], ['name' => 'Cartagena del Chaira', 'country_code' => 'CO'], ['name' => 'Saint-Benoit', 'country_code' => 'RE'], ['name' => 'Aine Draham', 'country_code' => 'TN'], ['name' => 'Tago', 'country_code' => 'PH'], ['name' => 'Kamata', 'country_code' => 'JP'], ['name' => 'San Miguel Ixtahuacan', 'country_code' => 'GT'], ['name' => 'Sanford', 'country_code' => 'US'], ['name' => 'Riviera Beach', 'country_code' => 'US'], ['name' => 'Tamuin', 'country_code' => 'MX'], ['name' => 'Ikot Abasi', 'country_code' => 'NG'], ['name' => 'Armenia', 'country_code' => 'SV'], ['name' => 'Saint-Raphael', 'country_code' => 'FR'], ['name' => 'Pilar', 'country_code' => 'BR'], ['name' => 'Antiguo Cuscatlan', 'country_code' => 'SV'], ['name' => 'Riachao do Jacuipe', 'country_code' => 'BR'], ['name' => 'Wildwood', 'country_code' => 'US'], ['name' => 'Pilao Arcado', 'country_code' => 'BR'], ['name' => 'Paracuru', 'country_code' => 'BR'], ['name' => 'Angra do Heroismo', 'country_code' => 'PT'], ['name' => 'Cloppenburg', 'country_code' => 'DE'], ['name' => 'Millerovo', 'country_code' => 'RU'], ['name' => 'La Palma', 'country_code' => 'CU'], ['name' => 'Sogod', 'country_code' => 'PH'], ['name' => 'Osimo', 'country_code' => 'IT'], ['name' => 'Akouda', 'country_code' => 'TN'], ['name' => 'Cieza', 'country_code' => 'ES'], ['name' => 'Buldon', 'country_code' => 'PH'], ['name' => 'Upper Arlington', 'country_code' => 'US'], ['name' => 'Dagami', 'country_code' => 'PH'], ['name' => 'Yarumal', 'country_code' => 'CO'], ['name' => 'Saarlouis', 'country_code' => 'DE'], ['name' => 'Langford Station', 'country_code' => 'CA'], ['name' => 'Auxerre', 'country_code' => 'FR'], ['name' => 'Ozu', 'country_code' => 'JP'], ['name' => 'Bradford West Gwillimbury', 'country_code' => 'CA'], ['name' => 'Aurora', 'country_code' => 'PH'], ['name' => 'Radebeul', 'country_code' => 'DE'], ['name' => 'Auburn', 'country_code' => 'US'], ['name' => 'Yellandu', 'country_code' => 'IN'], ['name' => 'Bad Vilbel', 'country_code' => 'DE'], ['name' => 'Bou Salem', 'country_code' => 'TN'], ['name' => 'Plainfield', 'country_code' => 'US'], ['name' => 'Luga', 'country_code' => 'RU'], ['name' => 'Tecuci', 'country_code' => 'RO'], ['name' => 'Crema', 'country_code' => 'IT'], ['name' => 'Giddalur', 'country_code' => 'IN'], ['name' => 'Colwyn Bay', 'country_code' => 'GB'], ['name' => 'Cansancao', 'country_code' => 'BR'], ['name' => 'Voznesensk', 'country_code' => 'UA'], ['name' => 'Fonseca', 'country_code' => 'CO'], ['name' => 'Massape', 'country_code' => 'BR'], ['name' => 'Gorizia', 'country_code' => 'IT'], ['name' => 'Tall Salhab', 'country_code' => 'SY'], ['name' => 'Siltepec', 'country_code' => 'MX'], ['name' => 'Ieper', 'country_code' => 'BE'], ['name' => 'Wermelskirchen', 'country_code' => 'DE'], ['name' => 'Oak Harbor', 'country_code' => 'US'], ['name' => 'Yarim', 'country_code' => 'YE'], ['name' => 'Mirnyy', 'country_code' => 'RU'], ['name' => 'Winsen', 'country_code' => 'DE'], ['name' => 'Curaca', 'country_code' => 'BR'], ['name' => 'Joao Camara', 'country_code' => 'BR'], ['name' => 'Venaria Reale', 'country_code' => 'IT'], ['name' => 'Yefremov', 'country_code' => 'RU'], ['name' => 'Olney', 'country_code' => 'US'], ['name' => 'Trinec', 'country_code' => 'CZ'], ['name' => 'Umarkot', 'country_code' => 'PK'], ['name' => 'Kotah-ye Ashro', 'country_code' => 'AF'], ['name' => 'Wodonga', 'country_code' => 'AU'], ['name' => 'Gorna Oryahovitsa', 'country_code' => 'BG'], ['name' => 'Gasan', 'country_code' => 'PH'], ['name' => 'Sabanagrande', 'country_code' => 'CO'], ['name' => 'Nova Olinda do Norte', 'country_code' => 'BR'], ['name' => 'Tamra', 'country_code' => 'IL'], ['name' => 'San Vicente de Chucuri', 'country_code' => 'CO'], ['name' => 'Campbell River', 'country_code' => 'CA'], ['name' => 'Datteln', 'country_code' => 'DE'], ['name' => 'Aborlan', 'country_code' => 'PH'], ['name' => 'Adamantina', 'country_code' => 'BR'], ['name' => 'Ubajara', 'country_code' => 'BR'], ['name' => 'Chelmsford', 'country_code' => 'US'], ['name' => 'Azazga', 'country_code' => 'DZ'], ['name' => 'Matou', 'country_code' => 'CN'], ['name' => 'Champerico', 'country_code' => 'GT'], ['name' => 'San Luis de Since', 'country_code' => 'CO'], ['name' => 'Iyo', 'country_code' => 'JP'], ['name' => 'Puerto Lopez', 'country_code' => 'CO'], ['name' => 'New City', 'country_code' => 'US'], ['name' => 'Kempen', 'country_code' => 'DE'], ['name' => 'Bochil', 'country_code' => 'MX'], ['name' => 'Qadsayya', 'country_code' => 'SY'], ['name' => 'Valencia', 'country_code' => 'PH'], ['name' => 'Casilda', 'country_code' => 'AR'], ['name' => 'Formigine', 'country_code' => 'IT'], ['name' => 'Owings Mills', 'country_code' => 'US'], ['name' => 'Seelze', 'country_code' => 'DE'], ['name' => 'Raxruha', 'country_code' => 'GT'], ['name' => 'Palauig', 'country_code' => 'PH'], ['name' => 'Bagamoyo', 'country_code' => 'TZ'], ['name' => 'Jaguariaiva', 'country_code' => 'BR'], ['name' => 'Acaxochitlan', 'country_code' => 'MX'], ['name' => 'Siayan', 'country_code' => 'PH'], ['name' => 'Zaventem', 'country_code' => 'BE'], ['name' => 'Blagoveshchensk', 'country_code' => 'RU'], ['name' => 'Campoalegre', 'country_code' => 'CO'], ['name' => 'Curralinho', 'country_code' => 'BR'], ['name' => 'Canaman', 'country_code' => 'PH'], ['name' => 'Korkino', 'country_code' => 'RU'], ['name' => 'Baja', 'country_code' => 'HU'], ['name' => 'Leer', 'country_code' => 'DE'], ['name' => 'La Porte', 'country_code' => 'US'], ['name' => 'Armacao dos Buzios', 'country_code' => 'BR'], ['name' => 'Odorheiu Secuiesc', 'country_code' => 'RO'], ['name' => 'Meyzieu', 'country_code' => 'FR'], ['name' => 'Piui', 'country_code' => 'BR'], ['name' => 'Itamarandiba', 'country_code' => 'BR'], ['name' => 'Bethlehem', 'country_code' => 'US'], ['name' => 'Freehold', 'country_code' => 'US'], ['name' => 'Aguai', 'country_code' => 'BR'], ['name' => 'Aznakayevo', 'country_code' => 'RU'], ['name' => 'Loudaya', 'country_code' => 'MA'], ['name' => 'Pola', 'country_code' => 'PH'], ['name' => 'Victoria', 'country_code' => 'CL'], ['name' => 'Nevers', 'country_code' => 'FR'], ['name' => 'Barra do Choca', 'country_code' => 'BR'], ['name' => 'Sao Raimundo Nonato', 'country_code' => 'BR'], ['name' => 'Macon', 'country_code' => 'FR'], ['name' => 'Feijo', 'country_code' => 'BR'], ['name' => 'Sint-Pieters-Leeuw', 'country_code' => 'BE'], ['name' => 'Brunswick', 'country_code' => 'US'], ['name' => 'East Point', 'country_code' => 'US'], ['name' => 'Torres', 'country_code' => 'BR'], ['name' => 'DeLand', 'country_code' => 'US'], ['name' => 'Tangua', 'country_code' => 'BR'], ['name' => 'Magsaysay', 'country_code' => 'PH'], ['name' => 'Cumberland', 'country_code' => 'US'], ['name' => 'San Antonio', 'country_code' => 'PH'], ['name' => 'Ilawa', 'country_code' => 'PL'], ['name' => 'Martinez', 'country_code' => 'US'], ['name' => 'Pleasant Hill', 'country_code' => 'US'], ['name' => 'Angamali', 'country_code' => 'IN'], ['name' => 'Diaowo', 'country_code' => 'CN'], ['name' => 'Orangevale', 'country_code' => 'US'], ['name' => 'Aksay', 'country_code' => 'KZ'], ['name' => 'Guying', 'country_code' => 'CN'], ['name' => 'Ringsaker', 'country_code' => 'NO'], ['name' => 'Merrillville', 'country_code' => 'US'], ['name' => 'Dzierzoniow', 'country_code' => 'PL'], ['name' => 'Stow', 'country_code' => 'US'], ['name' => 'Yangquan', 'country_code' => 'CN'], ['name' => 'San Luis', 'country_code' => 'US'], ['name' => 'Sagnay', 'country_code' => 'PH'], ['name' => 'Shingu', 'country_code' => 'JP'], ['name' => 'Calhoun', 'country_code' => 'US'], ['name' => 'Ban Ang Sila', 'country_code' => 'TH'], ['name' => 'Sarpol-e Zahab', 'country_code' => 'IR'], ['name' => 'Crailsheim', 'country_code' => 'DE'], ['name' => 'Leawood', 'country_code' => 'US'], ['name' => 'Gutalac', 'country_code' => 'PH'], ['name' => 'Zelenokumsk', 'country_code' => 'RU'], ['name' => 'Abashiri', 'country_code' => 'JP'], ['name' => 'Sao Luis do Quitunde', 'country_code' => 'BR'], ['name' => 'Shangzhen', 'country_code' => 'CN'], ['name' => 'Merseburg', 'country_code' => 'DE'], ['name' => 'Phra Phutthabat', 'country_code' => 'TH'], ['name' => 'Menlo Park', 'country_code' => 'US'], ['name' => 'Haguenau', 'country_code' => 'FR'], ['name' => 'Zweibrucken', 'country_code' => 'DE'], ['name' => 'Canguaretama', 'country_code' => 'BR'], ['name' => 'Tabor', 'country_code' => 'CZ'], ['name' => 'Biharamulo', 'country_code' => 'TZ'], ['name' => 'Sibuco', 'country_code' => 'PH'], ['name' => 'Sun Prairie', 'country_code' => 'US'], ['name' => 'Dakota Ridge', 'country_code' => 'US'], ['name' => 'IJsselstein', 'country_code' => 'NL'], ['name' => 'Bugojno', 'country_code' => 'BA'], ['name' => 'Jaguaribe', 'country_code' => 'BR'], ['name' => 'Pandan', 'country_code' => 'PH'], ['name' => 'Coventry', 'country_code' => 'US'], ['name' => 'Cachoeira', 'country_code' => 'BR'], ['name' => 'Duenas', 'country_code' => 'PH'], ['name' => 'Arcata', 'country_code' => 'US'], ['name' => 'Esposende', 'country_code' => 'PT'], ['name' => 'Humenne', 'country_code' => 'SK'], ['name' => 'Chacabuco', 'country_code' => 'AR'], ['name' => 'Guanhaes', 'country_code' => 'BR'], ['name' => 'Shrirangapattana', 'country_code' => 'IN'], ['name' => 'Parnarama', 'country_code' => 'BR'], ['name' => 'Balingen', 'country_code' => 'DE'], ['name' => 'Capela', 'country_code' => 'BR'], ['name' => 'Ballesteros', 'country_code' => 'PH'], ['name' => 'Hemer', 'country_code' => 'DE'], ['name' => 'Sao Luis Gonzaga', 'country_code' => 'BR'], ['name' => 'Canete', 'country_code' => 'CL'], ['name' => 'Guimbal', 'country_code' => 'PH'], ['name' => 'Barsinghausen', 'country_code' => 'DE'], ['name' => 'Glastonbury', 'country_code' => 'US'], ['name' => 'Lockport', 'country_code' => 'US'], ['name' => 'Skhira', 'country_code' => 'TN'], ['name' => 'Tabango', 'country_code' => 'PH'], ['name' => 'Kopavogur', 'country_code' => 'IS'], ['name' => 'Centenario', 'country_code' => 'AR'], ['name' => 'Zhangzhengqiao', 'country_code' => 'CN'], ['name' => 'Mandaguari', 'country_code' => 'BR'], ['name' => 'Wedel', 'country_code' => 'DE'], ['name' => 'Albany', 'country_code' => 'AU'], ['name' => 'Cicero Dantas', 'country_code' => 'BR'], ['name' => 'Mnasra', 'country_code' => 'MA'], ['name' => 'Cabrobo', 'country_code' => 'BR'], ['name' => 'Zimapan', 'country_code' => 'MX'], ['name' => 'Pullman', 'country_code' => 'US'], ['name' => 'Songcaozhen', 'country_code' => 'CN'], ['name' => 'Banes', 'country_code' => 'CU'], ['name' => 'Gandara', 'country_code' => 'PH'], ['name' => 'Gerash', 'country_code' => 'IR'], ['name' => 'Palapag', 'country_code' => 'PH'], ['name' => 'Vassouras', 'country_code' => 'BR'], ['name' => 'Ramnicu Sarat', 'country_code' => 'RO'], ['name' => 'Youwangjie', 'country_code' => 'CN'], ['name' => 'Padre Bernardo', 'country_code' => 'BR'], ['name' => 'Imbatug', 'country_code' => 'PH'], ['name' => 'Exmouth', 'country_code' => 'GB'], ['name' => 'Boardman', 'country_code' => 'US'], ['name' => 'Taiobeiras', 'country_code' => 'BR'], ['name' => 'Xincheng', 'country_code' => 'CN'], ['name' => 'Ahrensburg', 'country_code' => 'DE'], ['name' => 'Nacogdoches', 'country_code' => 'US'], ['name' => 'Merauke', 'country_code' => 'ID'], ['name' => 'Kearney', 'country_code' => 'US'], ['name' => 'Vestavia Hills', 'country_code' => 'US'], ['name' => 'Sual', 'country_code' => 'PH'], ['name' => 'Casale Monferrato', 'country_code' => 'IT'], ['name' => 'North Ridgeville', 'country_code' => 'US'], ['name' => 'Steinfurt', 'country_code' => 'DE'], ['name' => 'Windsor', 'country_code' => 'GB'], ['name' => 'Socorro', 'country_code' => 'US'], ['name' => 'Vibo Valentia', 'country_code' => 'IT'], ['name' => 'Randolph', 'country_code' => 'US'], ['name' => 'Mogpog', 'country_code' => 'PH'], ['name' => 'Cambrai', 'country_code' => 'FR'], ['name' => 'Marignane', 'country_code' => 'FR'], ['name' => 'Basista', 'country_code' => 'PH'], ['name' => 'Missao Velha', 'country_code' => 'BR'], ['name' => 'Gladstone', 'country_code' => 'AU'], ['name' => 'Campina', 'country_code' => 'RO'], ['name' => 'Gulkevichi', 'country_code' => 'RU'], ['name' => 'Znojmo', 'country_code' => 'CZ'], ['name' => 'Bogorodsk', 'country_code' => 'RU'], ['name' => 'Businga', 'country_code' => 'CD'], ['name' => 'Komarno', 'country_code' => 'SK'], ['name' => 'Villena', 'country_code' => 'ES'], ['name' => 'Inca', 'country_code' => 'ES'], ['name' => 'Datang', 'country_code' => 'CN'], ['name' => 'Shahin Dezh', 'country_code' => 'IR'], ['name' => 'Redmond', 'country_code' => 'US'], ['name' => 'Caldono', 'country_code' => 'CO'], ['name' => 'Valuyki', 'country_code' => 'RU'], ['name' => 'Quinchia', 'country_code' => 'CO'], ['name' => 'Firestone', 'country_code' => 'US'], ['name' => 'Cravinhos', 'country_code' => 'BR'], ['name' => 'San Enrique', 'country_code' => 'PH'], ['name' => 'Goshen', 'country_code' => 'US'], ['name' => 'Goiatuba', 'country_code' => 'BR'], ['name' => 'Vitrolles', 'country_code' => 'FR'], ['name' => 'Carmel', 'country_code' => 'US'], ['name' => 'Panglao', 'country_code' => 'PH'], ['name' => 'Butte', 'country_code' => 'US'], ['name' => 'Russellville', 'country_code' => 'US'], ['name' => 'Dartmouth', 'country_code' => 'US'], ['name' => 'Nowy Targ', 'country_code' => 'PL'], ['name' => 'Sao Luis de Montes Belos', 'country_code' => 'BR'], ['name' => 'Grass Valley', 'country_code' => 'US'], ['name' => 'Menen', 'country_code' => 'BE'], ['name' => 'Pascani', 'country_code' => 'RO'], ['name' => 'Peyziwat', 'country_code' => 'CN'], ['name' => 'Termoli', 'country_code' => 'IT'], ['name' => 'Geldern', 'country_code' => 'DE'], ['name' => 'Viernheim', 'country_code' => 'DE'], ['name' => 'Parkland', 'country_code' => 'US'], ['name' => 'Pomerode', 'country_code' => 'BR'], ['name' => 'Romans-sur-Isere', 'country_code' => 'FR'], ['name' => 'Wickford', 'country_code' => 'GB'], ['name' => 'Binche', 'country_code' => 'BE'], ['name' => 'Uonuma', 'country_code' => 'JP'], ['name' => 'Dimona', 'country_code' => 'IL'], ['name' => 'San Agustin', 'country_code' => 'CO'], ['name' => 'Mascalucia', 'country_code' => 'IT'], ['name' => 'Cabanglasan', 'country_code' => 'PH'], ['name' => 'Cishan', 'country_code' => 'CN'], ['name' => 'Bariri', 'country_code' => 'BR'], ['name' => 'Goch', 'country_code' => 'DE'], ['name' => 'Piombino', 'country_code' => 'IT'], ['name' => 'Sao Jose do Egito', 'country_code' => 'BR'], ['name' => 'Six-Fours-les-Plages', 'country_code' => 'FR'], ['name' => 'Jagna', 'country_code' => 'PH'], ['name' => 'Atiquizaya', 'country_code' => 'SV'], ['name' => 'Stuhr', 'country_code' => 'DE'], ['name' => 'Franklin', 'country_code' => 'US'], ['name' => 'Castelfranco Veneto', 'country_code' => 'IT'], ['name' => 'San Antonio de los Banos', 'country_code' => 'CU'], ['name' => 'Kennesaw', 'country_code' => 'US'], ['name' => 'Almeirim', 'country_code' => 'BR'], ['name' => 'Victoria Falls', 'country_code' => 'ZW'], ['name' => 'Spruce Grove', 'country_code' => 'CA'], ['name' => 'San Juan Nepomuceno', 'country_code' => 'CO'], ['name' => 'Zhaitangcun', 'country_code' => 'CN'], ['name' => 'Almendralejo', 'country_code' => 'ES'], ['name' => 'Majagual', 'country_code' => 'CO'], ['name' => 'Adelanto', 'country_code' => 'US'], ['name' => 'Irvine', 'country_code' => 'GB'], ['name' => 'Sneek', 'country_code' => 'NL'], ['name' => 'Sao Jose do Belmonte', 'country_code' => 'BR'], ['name' => 'Ken Caryl', 'country_code' => 'US'], ['name' => 'Carlsbad', 'country_code' => 'US'], ['name' => 'Braco do Norte', 'country_code' => 'BR'], ['name' => 'Eirunepe', 'country_code' => 'BR'], ['name' => 'Deggendorf', 'country_code' => 'DE'], ['name' => 'Domingos Martins', 'country_code' => 'BR'], ['name' => 'University Place', 'country_code' => 'US'], ['name' => 'Yinchengpu', 'country_code' => 'CN'], ['name' => 'Baltiysk', 'country_code' => 'RU'], ['name' => 'Douglasville', 'country_code' => 'US'], ['name' => 'Salisbury', 'country_code' => 'US'], ['name' => 'Kadingilan', 'country_code' => 'PH'], ['name' => 'Olutanga', 'country_code' => 'PH'], ['name' => 'Oulad Zemam', 'country_code' => 'MA'], ['name' => 'Furmanov', 'country_code' => 'RU'], ['name' => 'Laramie', 'country_code' => 'US'], ['name' => 'San Luis', 'country_code' => 'PH'], ['name' => 'Tynaarlo', 'country_code' => 'NL'], ['name' => 'Nizhneudinsk', 'country_code' => 'RU'], ['name' => 'Lake Stevens', 'country_code' => 'US'], ['name' => 'Valparaiso', 'country_code' => 'US'], ['name' => 'Moose Jaw', 'country_code' => 'CA'], ['name' => 'Custodia', 'country_code' => 'BR'], ['name' => 'Fairborn', 'country_code' => 'US'], ['name' => 'Reghin', 'country_code' => 'RO'], ['name' => 'Ban Pak Phun', 'country_code' => 'TH'], ['name' => 'Camiri', 'country_code' => 'BO'], ['name' => 'Santa Pola', 'country_code' => 'ES'], ['name' => 'Estero', 'country_code' => 'US'], ['name' => 'Mason', 'country_code' => 'US'], ['name' => 'Uelzen', 'country_code' => 'DE'], ['name' => 'Miguel Alves', 'country_code' => 'BR'], ['name' => 'Tekes', 'country_code' => 'CN'], ['name' => 'Ouro Fino', 'country_code' => 'BR'], ['name' => 'Penha', 'country_code' => 'BR'], ['name' => 'Bell Ville', 'country_code' => 'AR'], ['name' => 'Cottonwood Heights', 'country_code' => 'US'], ['name' => 'Kaneohe', 'country_code' => 'US'], ['name' => 'Sonoma', 'country_code' => 'US'], ['name' => 'Luuq', 'country_code' => 'SO'], ['name' => 'Sulop', 'country_code' => 'PH'], ['name' => 'Geraardsbergen', 'country_code' => 'BE'], ['name' => 'Ronda', 'country_code' => 'ES'], ['name' => 'Villafranca di Verona', 'country_code' => 'IT'], ['name' => 'Bugasong', 'country_code' => 'PH'], ['name' => 'Dej', 'country_code' => 'RO'], ['name' => 'Capoocan', 'country_code' => 'PH'], ['name' => 'Leo', 'country_code' => 'BF'], ['name' => 'Poco Redondo', 'country_code' => 'BR'], ['name' => 'Mella', 'country_code' => 'CU'], ['name' => 'Galesburg', 'country_code' => 'US'], ['name' => 'Jishi', 'country_code' => 'CN'], ['name' => 'Penticton', 'country_code' => 'CA'], ['name' => 'Gimbi', 'country_code' => 'ET'], ['name' => 'Gurupa', 'country_code' => 'BR'], ['name' => 'Didouche Mourad', 'country_code' => 'DZ'], ['name' => 'San Marcelino', 'country_code' => 'PH'], ['name' => 'Todos Santos Cuchumatan', 'country_code' => 'GT'], ['name' => 'Xiadian', 'country_code' => 'CN'], ['name' => 'Belen', 'country_code' => 'TR'], ['name' => 'Chilecito', 'country_code' => 'AR'], ['name' => 'Teykovo', 'country_code' => 'RU'], ['name' => 'Sukhoy Log', 'country_code' => 'RU'], ['name' => 'Vyatskiye Polyany', 'country_code' => 'RU'], ['name' => 'Puerto Rico', 'country_code' => 'CO'], ['name' => 'Mosonmagyarovar', 'country_code' => 'HU'], ['name' => 'Warsaw', 'country_code' => 'US'], ['name' => 'San Antero', 'country_code' => 'CO'], ['name' => 'Cacapava do Sul', 'country_code' => 'BR'], ['name' => 'Balasan', 'country_code' => 'PH'], ['name' => 'Moncao', 'country_code' => 'BR'], ['name' => 'Cantel', 'country_code' => 'GT'], ['name' => 'Bayog', 'country_code' => 'PH'], ['name' => 'Knokke-Heist', 'country_code' => 'BE'], ['name' => 'Allacapan', 'country_code' => 'PH'], ['name' => 'Fatehpur Sikri', 'country_code' => 'IN'], ['name' => 'Korschenbroich', 'country_code' => 'DE'], ['name' => 'Korsakov', 'country_code' => 'RU'], ['name' => 'Lianmuqin Kancun', 'country_code' => 'CN'], ['name' => 'San Antonio', 'country_code' => 'PH'], ['name' => 'Ibate', 'country_code' => 'BR'], ['name' => 'Lebowakgomo', 'country_code' => 'ZA'], ['name' => 'Sao Domingos do Maranhao', 'country_code' => 'BR'], ['name' => 'Dois Irmaos', 'country_code' => 'BR'], ['name' => 'Mildura', 'country_code' => 'AU'], ['name' => 'Asse', 'country_code' => 'BE'], ['name' => 'San Dimas', 'country_code' => 'US'], ['name' => 'Sakaiminato', 'country_code' => 'JP'], ['name' => 'Corinto', 'country_code' => 'CO'], ['name' => 'Batouri', 'country_code' => 'CM'], ['name' => 'Rheinfelden (Baden)', 'country_code' => 'DE'], ['name' => 'Ayvacik', 'country_code' => 'TR'], ['name' => 'Sao Bento', 'country_code' => 'BR'], ['name' => 'Zhitiqara', 'country_code' => 'KZ'], ['name' => 'Tortosa', 'country_code' => 'ES'], ['name' => 'Ciudad Tecun Uman', 'country_code' => 'GT'], ['name' => 'Shangcaiyuan', 'country_code' => 'CN'], ['name' => 'Joao Alfredo', 'country_code' => 'BR'], ['name' => 'Dana Point', 'country_code' => 'US'], ['name' => 'San Javier', 'country_code' => 'ES'], ['name' => 'Ipero', 'country_code' => 'BR'], ['name' => 'Panjakent', 'country_code' => 'TJ'], ['name' => 'Languyan', 'country_code' => 'PH'], ['name' => 'Port Moody', 'country_code' => 'CA'], ['name' => 'Riverhead', 'country_code' => 'US'], ['name' => 'Castro', 'country_code' => 'CL'], ['name' => 'Touros', 'country_code' => 'BR'], ['name' => 'Falls', 'country_code' => 'US'], ['name' => 'Slobodskoy', 'country_code' => 'RU'], ['name' => 'Shaliuhe', 'country_code' => 'CN'], ['name' => 'Midlothian', 'country_code' => 'US'], ['name' => 'Malangas', 'country_code' => 'PH'], ['name' => 'Newark', 'country_code' => 'US'], ['name' => 'Santa Maria', 'country_code' => 'PH'], ['name' => 'Alamogordo', 'country_code' => 'US'], ['name' => 'Boca do Acre', 'country_code' => 'BR'], ['name' => 'Kasulu', 'country_code' => 'TZ'], ['name' => 'Leganes', 'country_code' => 'PH'], ['name' => 'Alabaster', 'country_code' => 'US'], ['name' => 'Pikesville', 'country_code' => 'US'], ['name' => 'Hlukhiv', 'country_code' => 'UA'], ['name' => 'Qarqan', 'country_code' => 'CN'], ['name' => 'Deer Park', 'country_code' => 'US'], ['name' => 'Dumfries', 'country_code' => 'GB'], ['name' => 'Navodari', 'country_code' => 'RO'], ['name' => 'Derry', 'country_code' => 'US'], ['name' => 'Aranda de Duero', 'country_code' => 'ES'] ]); DB::table('cities')->insert([ ['name' => 'Shobara', 'country_code' => 'JP'], ['name' => 'Nokia', 'country_code' => 'FI'], ['name' => 'Woodridge', 'country_code' => 'US'], ['name' => 'Baturite', 'country_code' => 'BR'], ['name' => 'Abbiategrasso', 'country_code' => 'IT'], ['name' => 'Kolin', 'country_code' => 'CZ'], ['name' => 'Kohtla-Jarve', 'country_code' => 'EE'], ['name' => 'Biberach', 'country_code' => 'DE'], ['name' => 'Southport', 'country_code' => 'AU'], ['name' => 'Bridgeton', 'country_code' => 'US'], ['name' => 'Conceicao de Jacuipe', 'country_code' => 'BR'], ['name' => 'Sitangkai', 'country_code' => 'PH'], ['name' => 'Greer', 'country_code' => 'US'], ['name' => 'Matalom', 'country_code' => 'PH'], ['name' => 'Tayshet', 'country_code' => 'RU'], ['name' => 'Umaria', 'country_code' => 'IN'], ['name' => 'Tavda', 'country_code' => 'RU'], ['name' => 'La Virginia', 'country_code' => 'CO'], ['name' => 'Cuenca', 'country_code' => 'PH'], ['name' => 'Tobias Fornier', 'country_code' => 'PH'], ['name' => 'Lexington', 'country_code' => 'US'], ['name' => 'Police', 'country_code' => 'PL'], ['name' => 'Ourilandia do Norte', 'country_code' => 'BR'], ['name' => 'Zgorzelec', 'country_code' => 'PL'], ['name' => 'Oldenzaal', 'country_code' => 'NL'], ['name' => 'Tynda', 'country_code' => 'RU'], ['name' => 'Huangzhuang', 'country_code' => 'CN'], ['name' => 'Pocone', 'country_code' => 'BR'], ['name' => 'Springville', 'country_code' => 'US'], ['name' => 'Obukhiv', 'country_code' => 'UA'], ['name' => 'Espinho', 'country_code' => 'PT'], ['name' => 'Columbio', 'country_code' => 'PH'], ['name' => 'Canavieiras', 'country_code' => 'BR'], ['name' => 'Saratoga Springs', 'country_code' => 'US'], ['name' => 'Levice', 'country_code' => 'SK'], ['name' => 'Pambujan', 'country_code' => 'PH'], ['name' => 'Temascalapa', 'country_code' => 'MX'], ['name' => 'Pivijay', 'country_code' => 'CO'], ['name' => 'Shatura', 'country_code' => 'RU'], ['name' => 'Camacan', 'country_code' => 'BR'], ['name' => 'Bragado', 'country_code' => 'AR'], ['name' => 'Copperas Cove', 'country_code' => 'US'], ['name' => 'Epsom', 'country_code' => 'GB'], ['name' => 'Fraijanes', 'country_code' => 'GT'], ['name' => 'San Quintin', 'country_code' => 'PH'], ['name' => 'Casiguran', 'country_code' => 'PH'], ['name' => 'Castelfranco Emilia', 'country_code' => 'IT'], ['name' => 'Pribram', 'country_code' => 'CZ'], ['name' => 'Khvaf', 'country_code' => 'IR'], ['name' => 'San Lazzaro di Savena', 'country_code' => 'IT'], ['name' => 'Jaguarari', 'country_code' => 'BR'], ['name' => 'Floresta', 'country_code' => 'BR'], ['name' => 'Fucheng', 'country_code' => 'CN'], ['name' => 'Bou Ahmed', 'country_code' => 'MA'], ['name' => 'Correntina', 'country_code' => 'BR'], ['name' => 'Motherwell', 'country_code' => 'GB'], ['name' => 'Lucera', 'country_code' => 'IT'], ['name' => 'Catubig', 'country_code' => 'PH'], ['name' => 'American Fork', 'country_code' => 'US'], ['name' => 'Shimotoba', 'country_code' => 'JP'], ['name' => 'Franklin', 'country_code' => 'US'], ['name' => 'Bad Nauheim', 'country_code' => 'DE'], ['name' => 'Sanarate', 'country_code' => 'GT'], ['name' => 'Munai', 'country_code' => 'PH'], ['name' => 'Andover', 'country_code' => 'US'], ['name' => 'Matthews', 'country_code' => 'US'], ['name' => 'Kamaishi', 'country_code' => 'JP'], ['name' => 'Barugo', 'country_code' => 'PH'], ['name' => 'De Aar', 'country_code' => 'ZA'], ['name' => 'Medina', 'country_code' => 'PH'], ['name' => 'Rio das Pedras', 'country_code' => 'BR'], ['name' => 'Laojiezi', 'country_code' => 'CN'], ['name' => 'Djenne', 'country_code' => 'ML'], ['name' => 'Massafra', 'country_code' => 'IT'], ['name' => 'Carangola', 'country_code' => 'BR'], ['name' => 'Arteijo', 'country_code' => 'ES'], ['name' => 'Mashiki', 'country_code' => 'JP'], ['name' => 'San Luis', 'country_code' => 'CU'], ['name' => 'Wakabadai', 'country_code' => 'JP'], ['name' => 'Plaisir', 'country_code' => 'FR'], ['name' => 'Puebloviejo', 'country_code' => 'CO'], ['name' => 'Mushie', 'country_code' => 'CD'], ['name' => 'Timimoun', 'country_code' => 'DZ'], ['name' => 'Liptovsky Mikulas', 'country_code' => 'SK'], ['name' => 'Sarikaya', 'country_code' => 'TR'], ['name' => 'Numancia', 'country_code' => 'PH'], ['name' => 'Woodstock', 'country_code' => 'US'], ['name' => 'Maragogi', 'country_code' => 'BR'], ['name' => 'Forbe Oroya', 'country_code' => 'PE'], ['name' => 'Bardejov', 'country_code' => 'SK'], ['name' => 'Marantao', 'country_code' => 'PH'], ['name' => 'Descalvado', 'country_code' => 'BR'], ['name' => 'Itzehoe', 'country_code' => 'DE'], ['name' => 'Bautista', 'country_code' => 'PH'], ['name' => 'Florence', 'country_code' => 'US'], ['name' => 'Glossop', 'country_code' => 'GB'], ['name' => 'Julich', 'country_code' => 'DE'], ['name' => 'Leamington', 'country_code' => 'CA'], ['name' => 'Arroyomolinos', 'country_code' => 'ES'], ['name' => 'Lampertheim', 'country_code' => 'DE'], ['name' => 'Jalajala', 'country_code' => 'PH'], ['name' => 'Imbituva', 'country_code' => 'BR'], ['name' => 'Esperanca', 'country_code' => 'BR'], ['name' => 'Chernushka', 'country_code' => 'RU'], ['name' => 'Santa Ana', 'country_code' => 'PH'], ['name' => 'Mataquescuintla', 'country_code' => 'GT'], ['name' => 'Winsford', 'country_code' => 'GB'], ['name' => 'Barao de Cocais', 'country_code' => 'BR'], ['name' => 'Bernburg', 'country_code' => 'DE'], ['name' => 'Dellys', 'country_code' => 'DZ'], ['name' => 'Northbrook', 'country_code' => 'US'], ['name' => 'Baragua', 'country_code' => 'CU'], ['name' => 'Gandu', 'country_code' => 'BR'], ['name' => 'Mazarron', 'country_code' => 'ES'], ['name' => 'Oiso', 'country_code' => 'JP'], ['name' => 'Wernigerode', 'country_code' => 'DE'], ['name' => 'Ozd', 'country_code' => 'HU'], ['name' => 'Trekhgornyy', 'country_code' => 'RU'], ['name' => 'Vicencia', 'country_code' => 'BR'], ['name' => 'Forchheim', 'country_code' => 'DE'], ['name' => 'St. Charles', 'country_code' => 'US'], ['name' => 'Arbaoua', 'country_code' => 'MA'], ['name' => 'Coatepec Harinas', 'country_code' => 'MX'], ['name' => 'Rosmalen', 'country_code' => 'NL'], ['name' => 'Claveria', 'country_code' => 'PH'], ['name' => 'Kuji', 'country_code' => 'JP'], ['name' => 'Dao', 'country_code' => 'PH'], ['name' => 'Santa Cruz das Palmeiras', 'country_code' => 'BR'], ['name' => 'Oeiras do Para', 'country_code' => 'BR'], ['name' => 'Banate', 'country_code' => 'PH'], ['name' => 'Fairmont', 'country_code' => 'US'], ['name' => 'Tafas', 'country_code' => 'SY'], ['name' => 'Puerto Escondido', 'country_code' => 'CO'], ['name' => 'Manises', 'country_code' => 'ES'], ['name' => 'Naumburg', 'country_code' => 'DE'], ['name' => 'Baraawe', 'country_code' => 'SO'], ['name' => 'Safita', 'country_code' => 'SY'], ['name' => 'Presidente Figueiredo', 'country_code' => 'BR'], ['name' => 'Kaarina', 'country_code' => 'FI'], ['name' => 'Sao Miguel Arcanjo', 'country_code' => 'BR'], ['name' => 'Ylojarvi', 'country_code' => 'FI'], ['name' => 'Vechta', 'country_code' => 'DE'], ['name' => 'Bocas de Satinga', 'country_code' => 'CO'], ['name' => 'Nazare da Mata', 'country_code' => 'BR'], ['name' => 'Payshamba Shahri', 'country_code' => 'UZ'], ['name' => 'Altenburg', 'country_code' => 'DE'], ['name' => 'Pombal', 'country_code' => 'BR'], ['name' => 'Baiyan', 'country_code' => 'CN'], ['name' => 'Silvia', 'country_code' => 'CO'], ['name' => 'Nurlat', 'country_code' => 'RU'], ['name' => 'Tres Marias', 'country_code' => 'BR'], ['name' => 'Pomian', 'country_code' => 'CN'], ['name' => 'Espigao D Oeste', 'country_code' => 'BR'], ['name' => 'Yuzhne', 'country_code' => 'UA'], ['name' => 'Bacarra', 'country_code' => 'PH'], ['name' => 'Camaiore', 'country_code' => 'IT'], ['name' => 'Concon', 'country_code' => 'CL'], ['name' => 'Abulug', 'country_code' => 'PH'], ['name' => 'Favara', 'country_code' => 'IT'], ['name' => 'Dobryanka', 'country_code' => 'RU'], ['name' => 'Ridgecrest', 'country_code' => 'US'], ['name' => 'Cururupu', 'country_code' => 'BR'], ['name' => 'El Dificil', 'country_code' => 'CO'], ['name' => 'Lower Makefield', 'country_code' => 'US'], ['name' => 'Initao', 'country_code' => 'PH'], ['name' => 'Mateur', 'country_code' => 'TN'], ['name' => 'Pitanga', 'country_code' => 'BR'], ['name' => 'East Kelowna', 'country_code' => 'CA'], ['name' => 'Campulung', 'country_code' => 'RO'], ['name' => 'Aalsmeer', 'country_code' => 'NL'], ['name' => 'Godollo', 'country_code' => 'HU'], ['name' => 'Paratinga', 'country_code' => 'BR'], ['name' => 'Redcliff', 'country_code' => 'ZW'], ['name' => 'Totana', 'country_code' => 'ES'], ['name' => 'Ostrogozhsk', 'country_code' => 'RU'], ['name' => 'Salina', 'country_code' => 'US'], ['name' => 'Deurne', 'country_code' => 'NL'], ['name' => 'Mioveni', 'country_code' => 'RO'], ['name' => 'Inza', 'country_code' => 'CO'], ['name' => 'Aloguinsan', 'country_code' => 'PH'], ['name' => 'Lawrence', 'country_code' => 'US'], ['name' => 'Castro-Urdiales', 'country_code' => 'ES'], ['name' => 'Sao Joaquim de Bicas', 'country_code' => 'BR'], ['name' => 'Guindulman', 'country_code' => 'PH'], ['name' => 'Juban', 'country_code' => 'PH'], ['name' => 'Massillon', 'country_code' => 'US'], ['name' => 'Spanaway', 'country_code' => 'US'], ['name' => 'Kulebaki', 'country_code' => 'RU'], ['name' => 'Rio Branco do Sul', 'country_code' => 'BR'], ['name' => 'Diplahan', 'country_code' => 'PH'], ['name' => 'Bonifacio', 'country_code' => 'PH'], ['name' => 'Rethymno', 'country_code' => 'GR'], ['name' => 'Grodzisk Mazowiecki', 'country_code' => 'PL'], ['name' => 'Starkville', 'country_code' => 'US'], ['name' => 'Yorii', 'country_code' => 'JP'], ['name' => 'Slantsy', 'country_code' => 'RU'], ['name' => 'Yankou', 'country_code' => 'CN'], ['name' => 'I-n-Salah', 'country_code' => 'DZ'], ['name' => 'Louvain-la-Neuve', 'country_code' => 'BE'], ['name' => 'Milazzo', 'country_code' => 'IT'], ['name' => 'Osvaldo Cruz', 'country_code' => 'BR'], ['name' => 'Warminster', 'country_code' => 'US'], ['name' => 'La Calera', 'country_code' => 'AR'], ['name' => 'Beixinzhuang', 'country_code' => 'CN'], ['name' => 'Hoyerswerda', 'country_code' => 'DE'], ['name' => 'Staryy Beyneu', 'country_code' => 'KZ'], ['name' => 'Nova Russas', 'country_code' => 'BR'], ['name' => 'Maputsoe', 'country_code' => 'LS'], ['name' => 'Chatellerault', 'country_code' => 'FR'], ['name' => 'Plottier', 'country_code' => 'AR'], ['name' => 'Landecy', 'country_code' => 'CH'], ['name' => 'Clarence', 'country_code' => 'US'], ['name' => 'Batan', 'country_code' => 'PH'], ['name' => 'Brasilia de Minas', 'country_code' => 'BR'], ['name' => 'Olintepeque', 'country_code' => 'GT'], ['name' => 'Harker Heights', 'country_code' => 'US'], ['name' => 'Tawaramoto', 'country_code' => 'JP'], ['name' => 'Sarno', 'country_code' => 'IT'], ['name' => 'Mohyliv-Podilskyi', 'country_code' => 'UA'], ['name' => 'Zentsujicho', 'country_code' => 'JP'], ['name' => 'Cachoeira Paulista', 'country_code' => 'BR'], ['name' => 'Georgsmarienhutte', 'country_code' => 'DE'], ['name' => 'Elk Grove Village', 'country_code' => 'US'], ['name' => 'Zaojiao', 'country_code' => 'CN'], ['name' => 'Zangang', 'country_code' => 'CN'], ['name' => 'San Pedro de Uraba', 'country_code' => 'CO'], ['name' => 'Furstenwalde', 'country_code' => 'DE'], ['name' => 'Kaysville', 'country_code' => 'US'], ['name' => 'Guararapes', 'country_code' => 'BR'], ['name' => 'Achim', 'country_code' => 'DE'], ['name' => 'Draa Ben Khedda', 'country_code' => 'DZ'], ['name' => 'Southlake', 'country_code' => 'US'], ['name' => 'Ferry Pass', 'country_code' => 'US'], ['name' => 'Kristianstad', 'country_code' => 'SE'], ['name' => 'Savage', 'country_code' => 'US'], ['name' => 'Salug', 'country_code' => 'PH'], ['name' => 'Menglie', 'country_code' => 'CN'], ['name' => 'Des Moines', 'country_code' => 'US'], ['name' => 'Ferrenafe', 'country_code' => 'PE'], ['name' => 'Bethel Park', 'country_code' => 'US'], ['name' => 'San Andres Itzapa', 'country_code' => 'GT'], ['name' => 'Sao Jose da Tapera', 'country_code' => 'BR'], ['name' => 'Mayantoc', 'country_code' => 'PH'], ['name' => 'Santo Domingo Suchitepequez', 'country_code' => 'GT'], ['name' => 'Lupi Viejo', 'country_code' => 'PH'], ['name' => 'Capalonga', 'country_code' => 'PH'], ['name' => 'Ra s Gharib', 'country_code' => 'EG'], ['name' => 'Curanilahue', 'country_code' => 'CL'], ['name' => 'Dreux', 'country_code' => 'FR'], ['name' => 'Princeton', 'country_code' => 'US'], ['name' => 'Warwick', 'country_code' => 'GB'], ['name' => 'Mangur', 'country_code' => 'IN'], ['name' => 'Ribeira Grande', 'country_code' => 'PT'], ['name' => 'Ilhabela', 'country_code' => 'BR'], ['name' => 'Dumalinao', 'country_code' => 'PH'], ['name' => 'Shimizucho', 'country_code' => 'JP'], ['name' => 'Koupela', 'country_code' => 'BF'], ['name' => 'Laoac East', 'country_code' => 'PH'], ['name' => 'Jaguaruana', 'country_code' => 'BR'], ['name' => 'Nagato', 'country_code' => 'JP'], ['name' => 'Vintar', 'country_code' => 'PH'], ['name' => 'Capulhuac', 'country_code' => 'MX'], ['name' => 'Dania Beach', 'country_code' => 'US'], ['name' => 'Kangasala', 'country_code' => 'FI'], ['name' => 'Luuk', 'country_code' => 'PH'], ['name' => 'Mendez-Nunez', 'country_code' => 'PH'], ['name' => 'Areka', 'country_code' => 'ET'], ['name' => 'Bandeirantes', 'country_code' => 'BR'], ['name' => 'Oer-Erkenschwick', 'country_code' => 'DE'], ['name' => 'Cheb', 'country_code' => 'CZ'], ['name' => 'Lonneker', 'country_code' => 'NL'], ['name' => 'Bowling Green', 'country_code' => 'US'], ['name' => 'Tuzantan', 'country_code' => 'MX'], ['name' => 'Wevelgem', 'country_code' => 'BE'], ['name' => 'Springfield', 'country_code' => 'US'], ['name' => 'Igbaras', 'country_code' => 'PH'], ['name' => 'Lower Macungie', 'country_code' => 'US'], ['name' => 'Primorsko-Akhtarsk', 'country_code' => 'RU'], ['name' => 'Itatiaia', 'country_code' => 'BR'], ['name' => 'Xangda', 'country_code' => 'CN'], ['name' => 'Pedana', 'country_code' => 'IN'], ['name' => 'Grottaglie', 'country_code' => 'IT'], ['name' => 'Mirnyy', 'country_code' => 'RU'], ['name' => 'Novovoronezh', 'country_code' => 'RU'], ['name' => 'Laranjeiras do Sul', 'country_code' => 'BR'], ['name' => 'San Manuel', 'country_code' => 'PH'], ['name' => 'Odacho-oda', 'country_code' => 'JP'], ['name' => 'East Lake', 'country_code' => 'US'], ['name' => 'Whitstable', 'country_code' => 'GB'], ['name' => 'Uglich', 'country_code' => 'RU'], ['name' => 'Dongxianpo', 'country_code' => 'CN'], ['name' => 'Douar Oulad Hssine', 'country_code' => 'MA'], ['name' => 'Coos Bay', 'country_code' => 'US'], ['name' => 'Smithfield', 'country_code' => 'US'], ['name' => 'Vall de Uxo', 'country_code' => 'ES'], ['name' => 'Delbruck', 'country_code' => 'DE'], ['name' => 'Sechura', 'country_code' => 'PE'], ['name' => 'Rome', 'country_code' => 'US'], ['name' => 'Palmeira', 'country_code' => 'BR'], ['name' => 'San Luis', 'country_code' => 'PH'], ['name' => 'Quintero', 'country_code' => 'CL'], ['name' => 'Yaguaron', 'country_code' => 'PY'], ['name' => 'Colider', 'country_code' => 'BR'], ['name' => 'Jasim', 'country_code' => 'SY'], ['name' => 'Balimbing', 'country_code' => 'PH'], ['name' => 'Trinidad', 'country_code' => 'PH'], ['name' => 'Clearfield', 'country_code' => 'US'], ['name' => 'Serdobsk', 'country_code' => 'RU'], ['name' => 'Zapala', 'country_code' => 'AR'], ['name' => 'Jiming', 'country_code' => 'CN'], ['name' => 'Liberty', 'country_code' => 'US'], ['name' => 'Midsalip', 'country_code' => 'PH'], ['name' => 'Donggou', 'country_code' => 'CN'], ['name' => 'Shentang', 'country_code' => 'CN'], ['name' => 'Naguilian', 'country_code' => 'PH'], ['name' => 'Alba', 'country_code' => 'IT'], ['name' => 'Partinico', 'country_code' => 'IT'], ['name' => 'Macau', 'country_code' => 'BR'], ['name' => 'Milaor', 'country_code' => 'PH'], ['name' => 'Remedios', 'country_code' => 'CO'], ['name' => 'Pinukpuk', 'country_code' => 'PH'], ['name' => 'Asilah', 'country_code' => 'MA'], ['name' => 'Tongkou', 'country_code' => 'CN'], ['name' => 'Cabaiguan', 'country_code' => 'CU'], ['name' => 'El Golea', 'country_code' => 'DZ'], ['name' => 'Oristano', 'country_code' => 'IT'], ['name' => 'Pekin', 'country_code' => 'US'], ['name' => 'Westlake', 'country_code' => 'US'], ['name' => 'Badoc', 'country_code' => 'PH'], ['name' => 'Bahharet Oulad Ayyad', 'country_code' => 'MA'], ['name' => 'Herrenberg', 'country_code' => 'DE'], ['name' => 'San Remigio', 'country_code' => 'PH'], ['name' => 'Dar Ould Zidouh', 'country_code' => 'MA'], ['name' => 'Nilka', 'country_code' => 'CN'], ['name' => 'Chillicothe', 'country_code' => 'US'], ['name' => 'Jaral del Progreso', 'country_code' => 'MX'], ['name' => 'Pativilca', 'country_code' => 'PE'], ['name' => 'La Verne', 'country_code' => 'US'], ['name' => 'Prairieville', 'country_code' => 'US'], ['name' => 'Paipa', 'country_code' => 'CO'], ['name' => 'Namegata', 'country_code' => 'JP'], ['name' => 'Komagane', 'country_code' => 'JP'], ['name' => 'Santa Rita', 'country_code' => 'VE'], ['name' => 'Placerville', 'country_code' => 'US'], ['name' => 'Ivaipora', 'country_code' => 'BR'], ['name' => 'Bel Air North', 'country_code' => 'US'], ['name' => 'Shahedian', 'country_code' => 'CN'], ['name' => 'Nanyuki', 'country_code' => 'KE'], ['name' => 'Guachaves', 'country_code' => 'CO'], ['name' => 'San Isidro', 'country_code' => 'PH'], ['name' => 'Sakhnin', 'country_code' => 'IL'], ['name' => 'Turicato', 'country_code' => 'MX'], ['name' => 'Montebelluna', 'country_code' => 'IT'], ['name' => 'Grajau', 'country_code' => 'BR'], ['name' => 'Sasaguri', 'country_code' => 'JP'], ['name' => 'El Oro de Hidalgo', 'country_code' => 'MX'], ['name' => 'I zaz', 'country_code' => 'SY'], ['name' => 'Manlius', 'country_code' => 'US'], ['name' => 'Ruy Barbosa', 'country_code' => 'BR'], ['name' => 'Katagami', 'country_code' => 'JP'], ['name' => 'Touba', 'country_code' => 'CI'], ['name' => 'Dandenong', 'country_code' => 'AU'], ['name' => 'San Pedro de Ribas', 'country_code' => 'ES'], ['name' => 'Redan', 'country_code' => 'US'], ['name' => 'Martinsville', 'country_code' => 'US'], ['name' => 'Gevelsberg', 'country_code' => 'DE'], ['name' => 'Val-d Or', 'country_code' => 'CA'], ['name' => 'Boghni', 'country_code' => 'DZ'], ['name' => 'Pueblo West', 'country_code' => 'US'], ['name' => 'Chajul', 'country_code' => 'GT'], ['name' => 'Buzovna', 'country_code' => 'AZ'], ['name' => 'Avola', 'country_code' => 'IT'], ['name' => 'Radnor', 'country_code' => 'US'], ['name' => 'Owen Sound', 'country_code' => 'CA'], ['name' => 'Payao', 'country_code' => 'PH'], ['name' => 'Velikiy Ustyug', 'country_code' => 'RU'], ['name' => 'Gubbio', 'country_code' => 'IT'], ['name' => 'San Giuliano Terme', 'country_code' => 'IT'], ['name' => 'Chum Phae', 'country_code' => 'TH'], ['name' => 'San Roque', 'country_code' => 'ES'], ['name' => 'Temascaltepec de Gonzalez', 'country_code' => 'MX'], ['name' => 'Kyzyl-Kyya', 'country_code' => 'KG'], ['name' => 'Kalingalan Caluang', 'country_code' => 'PH'], ['name' => 'Kasimov', 'country_code' => 'RU'], ['name' => 'Kuroishi', 'country_code' => 'JP'], ['name' => 'Haan', 'country_code' => 'DE'], ['name' => 'Sitionuevo', 'country_code' => 'CO'], ['name' => 'Kulat', 'country_code' => 'ID'], ['name' => 'Radolfzell am Bodensee', 'country_code' => 'DE'], ['name' => 'Kotovsk', 'country_code' => 'RU'], ['name' => 'Weil am Rhein', 'country_code' => 'DE'], ['name' => 'Nijar', 'country_code' => 'ES'], ['name' => 'Balyqshy', 'country_code' => 'KZ'], ['name' => 'San Pedro Sacatepequez', 'country_code' => 'GT'], ['name' => 'Jesus Maria', 'country_code' => 'AR'], ['name' => 'Fallbrook', 'country_code' => 'US'], ['name' => 'Dongmaying', 'country_code' => 'CN'], ['name' => 'Zepce', 'country_code' => 'BA'], ['name' => 'Bedworth', 'country_code' => 'GB'], ['name' => 'Lowicz', 'country_code' => 'PL'], ['name' => 'Ibaiti', 'country_code' => 'BR'], ['name' => 'Nueva Imperial', 'country_code' => 'CL'], ['name' => 'Tecozautla', 'country_code' => 'MX'], ['name' => 'Willingboro', 'country_code' => 'US'], ['name' => 'Jacareacanga', 'country_code' => 'BR'], ['name' => 'Exu', 'country_code' => 'BR'], ['name' => 'Castelvetrano', 'country_code' => 'IT'], ['name' => 'Santa Barbara', 'country_code' => 'BR'], ['name' => 'Spring Valley', 'country_code' => 'US'], ['name' => 'Tanmen', 'country_code' => 'CN'], ['name' => 'Morro Agudo', 'country_code' => 'BR'], ['name' => 'Ayabe', 'country_code' => 'JP'], ['name' => 'Espinosa', 'country_code' => 'BR'], ['name' => 'Kreuztal', 'country_code' => 'DE'], ['name' => 'Cantilan', 'country_code' => 'PH'], ['name' => 'Frederico Westphalen', 'country_code' => 'BR'], ['name' => 'Waterloo', 'country_code' => 'BE'], ['name' => 'San Andres Xecul', 'country_code' => 'GT'], ['name' => 'Yawatahama-shi', 'country_code' => 'JP'], ['name' => 'Mae Sot', 'country_code' => 'TH'], ['name' => 'Carballo', 'country_code' => 'ES'], ['name' => 'Nardo', 'country_code' => 'IT'], ['name' => 'Oudenaarde', 'country_code' => 'BE'], ['name' => 'Lingig', 'country_code' => 'PH'], ['name' => 'Fengrenxu', 'country_code' => 'CN'], ['name' => 'Hopkinsville', 'country_code' => 'US'], ['name' => 'Mocajuba', 'country_code' => 'BR'], ['name' => 'Zima', 'country_code' => 'RU'], ['name' => 'Ponta de Pedras', 'country_code' => 'BR'], ['name' => 'Kosonsoy', 'country_code' => 'UZ'], ['name' => 'Fagaras', 'country_code' => 'RO'], ['name' => 'Ban Chang', 'country_code' => 'TH'], ['name' => 'Calubian', 'country_code' => 'PH'], ['name' => 'Balungao', 'country_code' => 'PH'], ['name' => 'Ipora', 'country_code' => 'BR'], ['name' => 'Huangxicun', 'country_code' => 'CN'], ['name' => 'Puerto Wilches', 'country_code' => 'CO'], ['name' => 'Verbania', 'country_code' => 'IT'], ['name' => 'Rochester', 'country_code' => 'US'], ['name' => 'Lavras da Mangabeira', 'country_code' => 'BR'], ['name' => 'Maubeuge', 'country_code' => 'FR'], ['name' => 'South Riding', 'country_code' => 'US'], ['name' => 'Saint-Medard-en-Jalles', 'country_code' => 'FR'], ['name' => 'Minas Novas', 'country_code' => 'BR'], ['name' => 'Marks', 'country_code' => 'RU'], ['name' => 'Rheinberg', 'country_code' => 'DE'], ['name' => 'Kostopil', 'country_code' => 'UA'], ['name' => 'Santa Fe do Sul', 'country_code' => 'BR'], ['name' => 'Deinze', 'country_code' => 'BE'], ['name' => 'Centereach', 'country_code' => 'US'], ['name' => 'Neira', 'country_code' => 'CO'], ['name' => 'Save', 'country_code' => 'BJ'], ['name' => 'Geesthacht', 'country_code' => 'DE'], ['name' => 'Milledgeville', 'country_code' => 'US'], ['name' => 'Mograne', 'country_code' => 'MA'], ['name' => 'Parambu', 'country_code' => 'BR'], ['name' => 'Mateus Leme', 'country_code' => 'BR'], ['name' => 'Stratford', 'country_code' => 'CA'], ['name' => 'Wanghong Yidui', 'country_code' => 'CN'], ['name' => 'Yingyangcun', 'country_code' => 'CN'], ['name' => 'Santa Maria La Pila', 'country_code' => 'GT'], ['name' => 'Syracuse', 'country_code' => 'US'], ['name' => 'Netivot', 'country_code' => 'IL'], ['name' => 'Kaminokawa', 'country_code' => 'JP'], ['name' => 'Bielsk Podlaski', 'country_code' => 'PL'], ['name' => 'Aracoiaba da Serra', 'country_code' => 'BR'], ['name' => 'Barrinha', 'country_code' => 'BR'], ['name' => 'Trebinje', 'country_code' => 'BA'], ['name' => 'Tiquipaya', 'country_code' => 'BO'], ['name' => 'Sherwood', 'country_code' => 'US'], ['name' => 'Posse', 'country_code' => 'BR'], ['name' => 'Valkenswaard', 'country_code' => 'NL'], ['name' => 'Alacuas', 'country_code' => 'ES'], ['name' => 'Wenxian Chengguanzhen', 'country_code' => 'CN'], ['name' => 'Halden', 'country_code' => 'NO'], ['name' => 'Quesada', 'country_code' => 'CR'], ['name' => 'Lloydminster', 'country_code' => 'CA'], ['name' => 'Simunul', 'country_code' => 'PH'], ['name' => 'Lumbang', 'country_code' => 'PH'], ['name' => 'Garner', 'country_code' => 'US'], ['name' => 'Guamo', 'country_code' => 'CO'], ['name' => 'Key West', 'country_code' => 'US'], ['name' => 'Coria del Rio', 'country_code' => 'ES'], ['name' => 'Caracal', 'country_code' => 'RO'], ['name' => 'Cauquenes', 'country_code' => 'CL'], ['name' => 'Pointe-Claire', 'country_code' => 'CA'], ['name' => 'Moalboal', 'country_code' => 'PH'], ['name' => 'Kudymkar', 'country_code' => 'RU'], ['name' => 'Dracut', 'country_code' => 'US'], ['name' => 'Skelleftea', 'country_code' => 'SE'], ['name' => 'Abra de Ilog', 'country_code' => 'PH'], ['name' => 'Ganderkesee', 'country_code' => 'DE'], ['name' => 'Novo Cruzeiro', 'country_code' => 'BR'], ['name' => 'Petersburg', 'country_code' => 'US'], ['name' => 'Al Husayniyah', 'country_code' => 'EG'], ['name' => 'North Olmsted', 'country_code' => 'US'], ['name' => 'Kahului', 'country_code' => 'US'], ['name' => 'Ostuni', 'country_code' => 'IT'], ['name' => 'Kandalaksha', 'country_code' => 'RU'], ['name' => 'Bagre', 'country_code' => 'BR'], ['name' => 'Manduria', 'country_code' => 'IT'], ['name' => 'Alice Springs', 'country_code' => 'AU'], ['name' => 'Yaita', 'country_code' => 'JP'], ['name' => 'Duanshan', 'country_code' => 'CN'], ['name' => 'Wheat Ridge', 'country_code' => 'US'], ['name' => 'Fruit Cove', 'country_code' => 'US'], ['name' => 'Conceicao da Barra', 'country_code' => 'BR'], ['name' => 'Rosignano Marittimo', 'country_code' => 'IT'], ['name' => 'Tracuateua', 'country_code' => 'BR'], ['name' => 'Cibolo', 'country_code' => 'US'], ['name' => 'Buurhakaba', 'country_code' => 'SO'], ['name' => 'Marovoay', 'country_code' => 'MG'], ['name' => 'Calape', 'country_code' => 'PH'], ['name' => 'Barra dos Coqueiros', 'country_code' => 'BR'], ['name' => 'Bauko', 'country_code' => 'PH'], ['name' => 'Pindare-Mirim', 'country_code' => 'BR'], ['name' => 'Taozhuangcun', 'country_code' => 'CN'], ['name' => 'Vitoria do Mearim', 'country_code' => 'BR'], ['name' => 'Uran', 'country_code' => 'IN'], ['name' => 'Biritiba-Mirim', 'country_code' => 'BR'], ['name' => 'Alliance', 'country_code' => 'US'], ['name' => 'Balatan', 'country_code' => 'PH'], ['name' => 'Circasia', 'country_code' => 'CO'], ['name' => 'San Vicente', 'country_code' => 'PH'], ['name' => 'Ipubi', 'country_code' => 'BR'], ['name' => 'Lukow', 'country_code' => 'PL'], ['name' => 'Boxtel', 'country_code' => 'NL'], ['name' => 'Banning', 'country_code' => 'US'], ['name' => 'Warwick', 'country_code' => 'US'], ['name' => 'Burgess Hill', 'country_code' => 'GB'], ['name' => 'Getafe', 'country_code' => 'PH'], ['name' => 'Laguna Hills', 'country_code' => 'US'], ['name' => 'Central Islip', 'country_code' => 'US'], ['name' => 'Marigliano', 'country_code' => 'IT'], ['name' => 'Lagos', 'country_code' => 'PT'], ['name' => 'Bogoroditsk', 'country_code' => 'RU'], ['name' => 'Lushnje', 'country_code' => 'AL'], ['name' => 'Athens', 'country_code' => 'US'], ['name' => 'Princeton', 'country_code' => 'US'], ['name' => 'Yingshouyingzi', 'country_code' => 'CN'], ['name' => 'Weyhe', 'country_code' => 'DE'], ['name' => 'Flores da Cunha', 'country_code' => 'BR'], ['name' => 'Werl', 'country_code' => 'DE'], ['name' => 'Culleredo', 'country_code' => 'ES'], ['name' => 'Loughton', 'country_code' => 'GB'], ['name' => 'Jimalalud', 'country_code' => 'PH'], ['name' => 'Orillia', 'country_code' => 'CA'], ['name' => 'Baixo Guandu', 'country_code' => 'BR'], ['name' => 'Minacu', 'country_code' => 'BR'], ['name' => 'Ciudad Vieja', 'country_code' => 'GT'], ['name' => 'Diemen', 'country_code' => 'NL'], ['name' => 'Tokmak', 'country_code' => 'UA'], ['name' => 'Magsingal', 'country_code' => 'PH'], ['name' => 'Chitral', 'country_code' => 'PK'], ['name' => 'Paraparaumu', 'country_code' => 'NZ'], ['name' => 'Atotonilco de Tula', 'country_code' => 'MX'], ['name' => 'Candido Mota', 'country_code' => 'BR'], ['name' => 'Ski', 'country_code' => 'NO'], ['name' => 'Masaki', 'country_code' => 'JP'], ['name' => 'Afonso Claudio', 'country_code' => 'BR'], ['name' => 'Falmouth', 'country_code' => 'US'], ['name' => 'Bramsche', 'country_code' => 'DE'], ['name' => 'Orcutt', 'country_code' => 'US'], ['name' => 'Santa Maria', 'country_code' => 'PH'], ['name' => 'Portao', 'country_code' => 'BR'], ['name' => 'Lemery', 'country_code' => 'PH'], ['name' => 'Naugatuck', 'country_code' => 'US'], ['name' => 'Eldersburg', 'country_code' => 'US'], ['name' => 'Rio Grande', 'country_code' => 'AR'], ['name' => 'Tewksbury', 'country_code' => 'US'], ['name' => 'Itabela', 'country_code' => 'BR'], ['name' => 'Muritiba', 'country_code' => 'BR'], ['name' => 'Jacare', 'country_code' => 'BR'], ['name' => 'Columbus', 'country_code' => 'US'], ['name' => 'Bochnia', 'country_code' => 'PL'], ['name' => 'Schonebeck', 'country_code' => 'DE'], ['name' => 'Tijucas', 'country_code' => 'BR'], ['name' => 'Soledade', 'country_code' => 'BR'], ['name' => 'Rio Pardo de Minas', 'country_code' => 'BR'], ['name' => 'Mundelein', 'country_code' => 'US'], ['name' => 'Sapa Sapa', 'country_code' => 'PH'], ['name' => 'Bielawa', 'country_code' => 'PL'], ['name' => 'Fair Oaks', 'country_code' => 'US'], ['name' => 'Matoes', 'country_code' => 'BR'], ['name' => 'San Andres del Rabanedo', 'country_code' => 'ES'], ['name' => 'Dyurtyuli', 'country_code' => 'RU'], ['name' => 'Harpenden', 'country_code' => 'GB'], ['name' => 'Santa Vitoria do Palmar', 'country_code' => 'BR'], ['name' => 'Mocimboa da Praia', 'country_code' => 'MZ'], ['name' => 'Huamachuco', 'country_code' => 'PE'], ['name' => 'Nartkala', 'country_code' => 'RU'], ['name' => 'Amircan', 'country_code' => 'AZ'], ['name' => 'Rexburg', 'country_code' => 'US'], ['name' => 'Burgdorf', 'country_code' => 'DE'], ['name' => 'Needham', 'country_code' => 'US'], ['name' => 'Rostov', 'country_code' => 'RU'], ['name' => 'Ambanja', 'country_code' => 'MG'], ['name' => 'Einbeck', 'country_code' => 'DE'], ['name' => 'Trindade', 'country_code' => 'BR'], ['name' => 'Sombrio', 'country_code' => 'BR'], ['name' => 'Neuruppin', 'country_code' => 'DE'], ['name' => 'Mossendjo', 'country_code' => 'CG'], ['name' => 'Fabriano', 'country_code' => 'IT'], ['name' => 'Nogales', 'country_code' => 'US'], ['name' => 'Bela Cruz', 'country_code' => 'BR'], ['name' => 'Nicholasville', 'country_code' => 'US'], ['name' => 'Amatenango de la Frontera', 'country_code' => 'MX'], ['name' => 'Goleta', 'country_code' => 'US'], ['name' => 'Opelika', 'country_code' => 'US'], ['name' => 'Layla', 'country_code' => 'SA'], ['name' => 'Newburgh', 'country_code' => 'US'], ['name' => 'Alma', 'country_code' => 'CA'], ['name' => 'Algonquin', 'country_code' => 'US'], ['name' => 'Sacele', 'country_code' => 'RO'], ['name' => 'Marrero', 'country_code' => 'US'], ['name' => 'Radcliffe', 'country_code' => 'GB'], ['name' => 'Arcos de la Frontera', 'country_code' => 'ES'], ['name' => 'Cranberry', 'country_code' => 'US'], ['name' => 'Gragnano', 'country_code' => 'IT'], ['name' => 'Aiken', 'country_code' => 'US'], ['name' => 'Cicero', 'country_code' => 'US'], ['name' => 'Pisek', 'country_code' => 'CZ'], ['name' => 'Unterschleissheim', 'country_code' => 'DE'], ['name' => 'North Andover', 'country_code' => 'US'], ['name' => 'Lawrenceville', 'country_code' => 'US'], ['name' => 'Lohmar', 'country_code' => 'DE'], ['name' => 'Winter Park', 'country_code' => 'US'], ['name' => 'Alcazar de San Juan', 'country_code' => 'ES'], ['name' => 'Novoyavorovskoye', 'country_code' => 'UA'], ['name' => 'Alegre', 'country_code' => 'BR'], ['name' => 'Artemovskiy', 'country_code' => 'RU'], ['name' => 'Lake Magdalene', 'country_code' => 'US'], ['name' => 'Santa Maria', 'country_code' => 'PH'], ['name' => 'Carshalton', 'country_code' => 'GB'], ['name' => 'Arraial do Cabo', 'country_code' => 'BR'], ['name' => 'Fitchburg', 'country_code' => 'US'], ['name' => 'Gloria do Goita', 'country_code' => 'BR'], ['name' => 'Hajduboszormeny', 'country_code' => 'HU'], ['name' => 'San Roque', 'country_code' => 'PH'], ['name' => 'Granger', 'country_code' => 'US'], ['name' => 'Qahderijan', 'country_code' => 'IR'], ['name' => 'Guaira', 'country_code' => 'BR'], ['name' => 'Tekeli', 'country_code' => 'KZ'], ['name' => 'Wooster', 'country_code' => 'US'], ['name' => 'Catmon', 'country_code' => 'PH'], ['name' => 'Synelnykove', 'country_code' => 'UA'], ['name' => 'Treviglio', 'country_code' => 'IT'], ['name' => 'Amaga', 'country_code' => 'CO'], ['name' => 'Fountain', 'country_code' => 'US'], ['name' => 'Sandanski', 'country_code' => 'BG'], ['name' => 'Orangeville', 'country_code' => 'CA'], ['name' => 'Simbahan', 'country_code' => 'PH'], ['name' => 'Emmen', 'country_code' => 'CH'], ['name' => 'Nanwucun', 'country_code' => 'CN'], ['name' => 'Pau dos Ferros', 'country_code' => 'BR'], ['name' => 'Papa', 'country_code' => 'HU'], ['name' => 'Fort Erie', 'country_code' => 'CA'], ['name' => 'Puerto de la Cruz', 'country_code' => 'ES'], ['name' => 'Xinzhaidian', 'country_code' => 'CN'], ['name' => 'Polillo', 'country_code' => 'PH'], ['name' => 'Juquitiba', 'country_code' => 'BR'], ['name' => 'Duanzhuang', 'country_code' => 'CN'], ['name' => 'Torrijos', 'country_code' => 'PH'], ['name' => 'Brooklyn Center', 'country_code' => 'US'], ['name' => 'Mallig', 'country_code' => 'PH'], ['name' => 'Mlawa', 'country_code' => 'PL'], ['name' => 'Barreirinha', 'country_code' => 'BR'], ['name' => 'Banamba', 'country_code' => 'ML'], ['name' => 'Draveil', 'country_code' => 'FR'], ['name' => 'Mercedes', 'country_code' => 'AR'], ['name' => 'Thung Song', 'country_code' => 'TH'], ['name' => 'South Kingstown', 'country_code' => 'US'], ['name' => 'Piedra Blanca', 'country_code' => 'DO'], ['name' => 'Victoria', 'country_code' => 'AR'], ['name' => 'Kerrville', 'country_code' => 'US'], ['name' => 'Wuyuan', 'country_code' => 'CN'], ['name' => 'San Jacinto', 'country_code' => 'PH'], ['name' => 'Rapallo', 'country_code' => 'IT'], ['name' => 'Vienne', 'country_code' => 'FR'], ['name' => 'Barstow', 'country_code' => 'US'], ['name' => 'Ross', 'country_code' => 'US'], ['name' => 'Ennepetal', 'country_code' => 'DE'], ['name' => 'Motomiya', 'country_code' => 'JP'], ['name' => 'Ypacarai', 'country_code' => 'PY'], ['name' => 'Mehdya', 'country_code' => 'MA'], ['name' => 'Chimakurti', 'country_code' => 'IN'], ['name' => 'Riesa', 'country_code' => 'DE'], ['name' => 'Mount Gambier', 'country_code' => 'AU'], ['name' => 'Kirov', 'country_code' => 'RU'], ['name' => 'Blagodarnyy', 'country_code' => 'RU'], ['name' => 'Leusden', 'country_code' => 'NL'], ['name' => 'Rio Preto da Eva', 'country_code' => 'BR'], ['name' => 'Joacaba', 'country_code' => 'BR'], ['name' => 'G ijduvon Shahri', 'country_code' => 'UZ'], ['name' => 'Canton', 'country_code' => 'US'], ['name' => 'Andernach', 'country_code' => 'DE'], ['name' => 'Villa Donato Guerra', 'country_code' => 'MX'], ['name' => 'Ob', 'country_code' => 'RU'], ['name' => 'Bela Vista de Goias', 'country_code' => 'BR'], ['name' => 'Fetesti', 'country_code' => 'RO'], ['name' => 'Sevenoaks', 'country_code' => 'GB'], ['name' => 'Mataas Na Kahoy', 'country_code' => 'PH'], ['name' => 'Auburn', 'country_code' => 'US'], ['name' => 'Osterholz-Scharmbeck', 'country_code' => 'DE'], ['name' => 'Sibagat', 'country_code' => 'PH'], ['name' => 'Tskhinvali', 'country_code' => 'GE'], ['name' => 'Sibutu', 'country_code' => 'PH'], ['name' => 'Crown Point', 'country_code' => 'US'], ['name' => 'Talusan', 'country_code' => 'PH'], ['name' => 'Xinpo', 'country_code' => 'CN'], ['name' => 'Slavgorod', 'country_code' => 'RU'], ['name' => 'Windsor', 'country_code' => 'US'], ['name' => 'Korinthos', 'country_code' => 'GR'], ['name' => 'Itaporanga d Ajuda', 'country_code' => 'BR'], ['name' => 'Lakeside', 'country_code' => 'US'], ['name' => 'Taunusstein', 'country_code' => 'DE'], ['name' => 'Deptford', 'country_code' => 'US'], ['name' => 'Sigma', 'country_code' => 'PH'], ['name' => 'North Huntingdon', 'country_code' => 'US'], ['name' => 'Gloucester', 'country_code' => 'US'], ['name' => 'Ust -Dzheguta', 'country_code' => 'RU'], ['name' => 'Damulog', 'country_code' => 'PH'], ['name' => 'Lalla Mimouna', 'country_code' => 'MA'], ['name' => 'Horki', 'country_code' => 'BY'], ['name' => 'Salou', 'country_code' => 'ES'], ['name' => 'Hirakawacho', 'country_code' => 'JP'], ['name' => 'Togitsu', 'country_code' => 'JP'], ['name' => 'Iguape', 'country_code' => 'BR'], ['name' => 'Telimele', 'country_code' => 'GN'], ['name' => 'Huanta', 'country_code' => 'PE'], ['name' => 'Gurnee', 'country_code' => 'US'], ['name' => 'Carlos Barbosa', 'country_code' => 'BR'], ['name' => 'Orangeburg', 'country_code' => 'US'], ['name' => 'Mont-de-Marsan', 'country_code' => 'FR'], ['name' => 'Buguey', 'country_code' => 'PH'], ['name' => 'Carmo do Paranaiba', 'country_code' => 'BR'], ['name' => 'Galdacano', 'country_code' => 'ES'], ['name' => 'Tactic', 'country_code' => 'GT'], ['name' => 'Vinces', 'country_code' => 'EC'], ['name' => 'Shetang', 'country_code' => 'CN'], ['name' => 'Holladay', 'country_code' => 'US'], ['name' => 'Fuquay-Varina', 'country_code' => 'US'], ['name' => 'Chimichagua', 'country_code' => 'CO'], ['name' => 'Valdepenas', 'country_code' => 'ES'], ['name' => 'Chamblee', 'country_code' => 'US'], ['name' => 'Kondopoga', 'country_code' => 'RU'], ['name' => 'Comiso', 'country_code' => 'IT'], ['name' => 'Dimataling', 'country_code' => 'PH'], ['name' => 'Carney', 'country_code' => 'US'], ['name' => 'Xunjiansi', 'country_code' => 'CN'], ['name' => 'Peru', 'country_code' => 'US'], ['name' => 'Kibiti', 'country_code' => 'TZ'], ['name' => 'Decines-Charpieu', 'country_code' => 'FR'], ['name' => 'Cihuatlan', 'country_code' => 'MX'], ['name' => 'Tsuruno', 'country_code' => 'JP'], ['name' => 'Sergio Osmena Sr', 'country_code' => 'PH'], ['name' => 'Rushden', 'country_code' => 'GB'], ['name' => 'Temse', 'country_code' => 'BE'], ['name' => 'Kombissiri', 'country_code' => 'BF'], ['name' => 'Augustow', 'country_code' => 'PL'], ['name' => 'Upper Merion', 'country_code' => 'US'], ['name' => 'Cornelius', 'country_code' => 'US'], ['name' => 'Gorodets', 'country_code' => 'RU'], ['name' => 'Matsubushi', 'country_code' => 'JP'], ['name' => 'Trutnov', 'country_code' => 'CZ'], ['name' => 'North Tonawanda', 'country_code' => 'US'], ['name' => 'Talayan', 'country_code' => 'PH'], ['name' => 'Sue', 'country_code' => 'JP'], ['name' => 'Gaggenau', 'country_code' => 'DE'], ['name' => 'Newington', 'country_code' => 'US'], ['name' => 'Catole do Rocha', 'country_code' => 'BR'], ['name' => 'Buenavista', 'country_code' => 'PH'], ['name' => 'Sitges', 'country_code' => 'ES'], ['name' => 'Bergen', 'country_code' => 'NL'], ['name' => 'Los Gatos', 'country_code' => 'US'], ['name' => 'Mozhaysk', 'country_code' => 'RU'], ['name' => 'Shangpa', 'country_code' => 'CN'], ['name' => 'Moanda', 'country_code' => 'GA'], ['name' => 'Bad Hersfeld', 'country_code' => 'DE'], ['name' => 'Saint-Etienne-du-Rouvray', 'country_code' => 'FR'], ['name' => 'Penaranda', 'country_code' => 'PH'], ['name' => 'South Lake Tahoe', 'country_code' => 'US'], ['name' => 'LaSalle', 'country_code' => 'CA'], ['name' => 'Friedberg', 'country_code' => 'DE'], ['name' => 'Clinton', 'country_code' => 'US'], ['name' => 'Merida', 'country_code' => 'PH'], ['name' => 'Caramoran', 'country_code' => 'PH'], ['name' => 'Northfleet', 'country_code' => 'GB'], ['name' => 'Saratoga', 'country_code' => 'US'], ['name' => 'Hinunangan', 'country_code' => 'PH'], ['name' => 'Kalgoorlie', 'country_code' => 'AU'], ['name' => 'Tizi Gheniff', 'country_code' => 'DZ'], ['name' => 'Paraipaba', 'country_code' => 'BR'], ['name' => 'Bra', 'country_code' => 'IT'], ['name' => 'Planadas', 'country_code' => 'CO'], ['name' => 'Gamu', 'country_code' => 'PH'], ['name' => 'Brodnica', 'country_code' => 'PL'], ['name' => 'Tabio', 'country_code' => 'CO'], ['name' => 'Lismore', 'country_code' => 'AU'], ['name' => 'L Arbaa Nait Irathen', 'country_code' => 'DZ'], ['name' => 'Puente-Genil', 'country_code' => 'ES'], ['name' => 'Guotang', 'country_code' => 'CN'], ['name' => 'Sainte-Julie', 'country_code' => 'CA'], ['name' => 'Shibancun', 'country_code' => 'CN'], ['name' => 'Barbosa', 'country_code' => 'CO'], ['name' => 'Tacuba', 'country_code' => 'SV'], ['name' => 'Los Altos', 'country_code' => 'US'], ['name' => 'Pervomaiskyi', 'country_code' => 'UA'], ['name' => 'Ballwin', 'country_code' => 'US'], ['name' => 'Barira', 'country_code' => 'PH'], ['name' => 'Atascadero', 'country_code' => 'US'], ['name' => 'Claveria', 'country_code' => 'PH'], ['name' => 'Barra Velha', 'country_code' => 'BR'], ['name' => 'Selargius', 'country_code' => 'IT'], ['name' => 'Alubijid', 'country_code' => 'PH'], ['name' => 'North Royalton', 'country_code' => 'US'], ['name' => 'Budaors', 'country_code' => 'HU'], ['name' => 'Villa Angela', 'country_code' => 'AR'], ['name' => 'Schwedt (Oder)', 'country_code' => 'DE'], ['name' => 'Heesch', 'country_code' => 'NL'], ['name' => 'Saalfeld', 'country_code' => 'DE'], ['name' => 'Meschede', 'country_code' => 'DE'], ['name' => 'President Roxas', 'country_code' => 'PH'], ['name' => 'Somerset', 'country_code' => 'US'], ['name' => 'Villa Regina', 'country_code' => 'AR'], ['name' => 'Werve', 'country_code' => 'DE'], ['name' => 'Siraha', 'country_code' => 'NP'], ['name' => 'Neuburg', 'country_code' => 'DE'], ['name' => 'Campo Alegre de Lourdes', 'country_code' => 'BR'], ['name' => 'Canosa di Puglia', 'country_code' => 'IT'], ['name' => 'Morong', 'country_code' => 'PH'], ['name' => 'Degeh Bur', 'country_code' => 'ET'], ['name' => 'Casma', 'country_code' => 'PE'], ['name' => 'Devarkonda', 'country_code' => 'IN'], ['name' => 'Nan ao', 'country_code' => 'CN'], ['name' => 'Merzig', 'country_code' => 'DE'], ['name' => 'Asipovichy', 'country_code' => 'BY'], ['name' => 'Bourem Guindou', 'country_code' => 'ML'], ['name' => 'Kelkheim (Taunus)', 'country_code' => 'DE'], ['name' => 'Evaz', 'country_code' => 'IR'], ['name' => 'Pantabangan', 'country_code' => 'PH'], ['name' => 'Mavinga', 'country_code' => 'AO'], ['name' => 'Leduc', 'country_code' => 'CA'], ['name' => 'Seguin', 'country_code' => 'US'], ['name' => 'Arlon', 'country_code' => 'BE'], ['name' => 'Santana do Acarau', 'country_code' => 'BR'], ['name' => 'Waltrop', 'country_code' => 'DE'], ['name' => 'Tonisvorst', 'country_code' => 'DE'], ['name' => 'Hampden', 'country_code' => 'US'], ['name' => 'Carinhanha', 'country_code' => 'BR'], ['name' => 'Svendborg', 'country_code' => 'DK'], ['name' => 'Giannitsa', 'country_code' => 'GR'], ['name' => 'Arari', 'country_code' => 'BR'], ['name' => 'Fortuna Foothills', 'country_code' => 'US'], ['name' => 'Fresno', 'country_code' => 'CO'], ['name' => 'Cambui', 'country_code' => 'BR'], ['name' => 'Schwelm', 'country_code' => 'DE'], ['name' => 'Milford Mill', 'country_code' => 'US'], ['name' => 'Cannock', 'country_code' => 'GB'], ['name' => 'Pasadena', 'country_code' => 'US'], ['name' => 'Casa Branca', 'country_code' => 'BR'], ['name' => 'San Rafael', 'country_code' => 'MX'], ['name' => 'Souk et Tnine Jorf el Mellah', 'country_code' => 'MA'], ['name' => 'Calintaan', 'country_code' => 'PH'], ['name' => 'Stockbridge', 'country_code' => 'US'], ['name' => 'Tameslouht', 'country_code' => 'MA'], ['name' => 'East Liverpool', 'country_code' => 'US'], ['name' => 'Triunfo', 'country_code' => 'BR'], ['name' => 'Leonding', 'country_code' => 'AT'], ['name' => 'Aral', 'country_code' => 'KZ'], ['name' => 'Madison Heights', 'country_code' => 'US'], ['name' => 'Gyongyos', 'country_code' => 'HU'], ['name' => 'Vaihingen an der Enz', 'country_code' => 'DE'], ['name' => 'Kinik', 'country_code' => 'TR'], ['name' => 'Capim', 'country_code' => 'BR'], ['name' => 'Zhangguzhuang', 'country_code' => 'CN'], ['name' => 'Oosterend', 'country_code' => 'NL'], ['name' => 'Kabalo', 'country_code' => 'CD'], ['name' => 'Prainha', 'country_code' => 'BR'], ['name' => 'Purificacion', 'country_code' => 'CO'], ['name' => 'Livingston', 'country_code' => 'US'], ['name' => 'Mahon', 'country_code' => 'ES'], ['name' => 'Williston', 'country_code' => 'US'], ['name' => 'Villa Gesell', 'country_code' => 'AR'], ['name' => 'Labasa', 'country_code' => 'FJ'], ['name' => 'Askoy', 'country_code' => 'NO'], ['name' => 'Dedovsk', 'country_code' => 'RU'], ['name' => 'Heywood', 'country_code' => 'GB'], ['name' => 'Shiyeli', 'country_code' => 'KZ'], ['name' => 'Matanog', 'country_code' => 'PH'], ['name' => 'Bretten', 'country_code' => 'DE'], ['name' => 'Crevillente', 'country_code' => 'ES'], ['name' => 'Dipaculao', 'country_code' => 'PH'], ['name' => 'Redondela', 'country_code' => 'ES'], ['name' => 'Pontedera', 'country_code' => 'IT'], ['name' => 'Mandali', 'country_code' => 'IQ'], ['name' => 'Misilmeri', 'country_code' => 'IT'], ['name' => 'Eagle', 'country_code' => 'US'], ['name' => 'Igarapava', 'country_code' => 'BR'], ['name' => 'Parabiago', 'country_code' => 'IT'], ['name' => 'Dzyarzhynsk', 'country_code' => 'BY'], ['name' => 'Flandes', 'country_code' => 'CO'], ['name' => 'Alushta', 'country_code' => 'UA'], ['name' => 'Benito Soliven', 'country_code' => 'PH'], ['name' => 'Rancharia', 'country_code' => 'BR'], ['name' => 'Brecht', 'country_code' => 'BE'], ['name' => 'Spinea', 'country_code' => 'IT'], ['name' => 'Alquizar', 'country_code' => 'CU'], ['name' => 'Campo Magro', 'country_code' => 'BR'], ['name' => 'Friedberg', 'country_code' => 'DE'], ['name' => 'Candijay', 'country_code' => 'PH'], ['name' => 'Mangdongshan', 'country_code' => 'CN'], ['name' => 'Maryville', 'country_code' => 'US'], ['name' => 'Atbasar', 'country_code' => 'KZ'], ['name' => 'Dumalag', 'country_code' => 'PH'], ['name' => 'Mashan', 'country_code' => 'CN'], ['name' => 'Rietberg', 'country_code' => 'DE'], ['name' => 'Brunssum', 'country_code' => 'NL'], ['name' => 'Xinmin', 'country_code' => 'CN'], ['name' => 'General Nakar', 'country_code' => 'PH'], ['name' => 'Piraju', 'country_code' => 'BR'], ['name' => 'Asha', 'country_code' => 'RU'], ['name' => 'Bosanska Krupa', 'country_code' => 'BA'], ['name' => 'Anajas', 'country_code' => 'BR'], ['name' => 'Walnut', 'country_code' => 'US'], ['name' => 'Toksun', 'country_code' => 'CN'], ['name' => 'Shuangtian', 'country_code' => 'CN'], ['name' => 'Lianga', 'country_code' => 'PH'], ['name' => 'North Cowichan', 'country_code' => 'CA'], ['name' => 'Mamaroneck', 'country_code' => 'US'], ['name' => 'Rendsburg', 'country_code' => 'DE'], ['name' => 'Garden City', 'country_code' => 'US'], ['name' => 'Texarkana', 'country_code' => 'US'], ['name' => 'Gustrow', 'country_code' => 'DE'], ['name' => 'Kent', 'country_code' => 'US'], ['name' => 'Landsberg', 'country_code' => 'DE'], ['name' => 'Rota', 'country_code' => 'ES'], ['name' => 'Rhennouch', 'country_code' => 'TN'], ['name' => 'Santa Fe', 'country_code' => 'PH'], ['name' => 'North Chicago', 'country_code' => 'US'], ['name' => 'Greenville', 'country_code' => 'US'], ['name' => 'Oelde', 'country_code' => 'DE'], ['name' => 'Yangshuling', 'country_code' => 'CN'], ['name' => 'Duluth', 'country_code' => 'US'], ['name' => 'Aberdeen', 'country_code' => 'US'], ['name' => 'Konigsbrunn', 'country_code' => 'DE'], ['name' => 'Winona', 'country_code' => 'US'], ['name' => 'Rotterdam', 'country_code' => 'US'], ['name' => 'Ivisan', 'country_code' => 'PH'], ['name' => 'O Fallon', 'country_code' => 'US'], ['name' => 'Drexel Heights', 'country_code' => 'US'], ['name' => 'Ukiah', 'country_code' => 'US'], ['name' => 'Atwater', 'country_code' => 'US'], ['name' => 'Bourgoin-Jallieu', 'country_code' => 'FR'], ['name' => 'Maracana', 'country_code' => 'BR'], ['name' => 'Sanford', 'country_code' => 'US'], ['name' => 'Ja ar', 'country_code' => 'YE'], ['name' => 'Nazare', 'country_code' => 'BR'], ['name' => 'Highland Park', 'country_code' => 'US'], ['name' => 'Westfield', 'country_code' => 'US'], ['name' => 'Hermiston', 'country_code' => 'US'], ['name' => 'Orchard Park', 'country_code' => 'US'], ['name' => 'Riihimaki', 'country_code' => 'FI'], ['name' => 'Orlova', 'country_code' => 'CZ'], ['name' => 'Sint-Michielsgestel', 'country_code' => 'NL'], ['name' => 'Fritissa', 'country_code' => 'MA'], ['name' => 'Culemborg', 'country_code' => 'NL'], ['name' => 'Desenzano del Garda', 'country_code' => 'IT'], ['name' => 'Tredyffrin', 'country_code' => 'US'], ['name' => 'Xiaobazi', 'country_code' => 'CN'], ['name' => 'Campello', 'country_code' => 'ES'], ['name' => 'Ans', 'country_code' => 'BE'], ['name' => 'Likino-Dulevo', 'country_code' => 'RU'], ['name' => 'Timizart', 'country_code' => 'DZ'], ['name' => 'Tandubas', 'country_code' => 'PH'], ['name' => 'Poggibonsi', 'country_code' => 'IT'], ['name' => 'Rosrath', 'country_code' => 'DE'], ['name' => 'Ibimirim', 'country_code' => 'BR'], ['name' => 'Kavaje', 'country_code' => 'AL'], ['name' => 'Gyula', 'country_code' => 'HU'], ['name' => 'Kiskunfelegyhaza', 'country_code' => 'HU'], ['name' => 'Pittsford', 'country_code' => 'US'], ['name' => 'Capim Grosso', 'country_code' => 'BR'], ['name' => 'Iguaba Grande', 'country_code' => 'BR'], ['name' => 'Kostomuksha', 'country_code' => 'RU'], ['name' => 'Ra s al Ayn', 'country_code' => 'SY'], ['name' => 'Sopo', 'country_code' => 'CO'], ['name' => 'Benhao', 'country_code' => 'CN'], ['name' => 'Central', 'country_code' => 'US'], ['name' => 'Quivican', 'country_code' => 'CU'], ['name' => 'Dolores', 'country_code' => 'PH'], ['name' => 'Suran', 'country_code' => 'SY'], ['name' => 'Masiu', 'country_code' => 'PH'], ['name' => 'East Lake-Orient Park', 'country_code' => 'US'], ['name' => 'Winnenden', 'country_code' => 'DE'], ['name' => 'Bogdanovich', 'country_code' => 'RU'], ['name' => 'Matouying', 'country_code' => 'CN'], ['name' => 'Hattersheim', 'country_code' => 'DE'], ['name' => 'Novaya Usman ', 'country_code' => 'RU'], ['name' => 'Chicago Heights', 'country_code' => 'US'], ['name' => 'Boxmeer', 'country_code' => 'NL'], ['name' => 'Divnogorsk', 'country_code' => 'RU'], ['name' => 'Mondragone', 'country_code' => 'IT'], ['name' => 'Orange', 'country_code' => 'FR'], ['name' => 'Johnston', 'country_code' => 'US'], ['name' => 'Northeim', 'country_code' => 'DE'], ['name' => 'Norwood', 'country_code' => 'US'], ['name' => 'Khmilnyk', 'country_code' => 'UA'], ['name' => 'Limoeiro do Ajuru', 'country_code' => 'BR'], ['name' => 'Capitan Bermudez', 'country_code' => 'AR'], ['name' => 'Namaacha', 'country_code' => 'MZ'], ['name' => 'East Fishkill', 'country_code' => 'US'], ['name' => 'Tubao', 'country_code' => 'PH'], ['name' => 'Buhl', 'country_code' => 'DE'], ['name' => 'Glenville', 'country_code' => 'US'], ['name' => 'Dasol', 'country_code' => 'PH'], ['name' => 'Anadia', 'country_code' => 'PT'], ['name' => 'Truskavets', 'country_code' => 'UA'], ['name' => 'Duzhuang', 'country_code' => 'CN'], ['name' => 'Redencao', 'country_code' => 'BR'], ['name' => 'Carmagnola', 'country_code' => 'IT'], ['name' => 'Monitos', 'country_code' => 'CO'], ['name' => 'Canada de Gomez', 'country_code' => 'AR'], ['name' => 'Shiqiao', 'country_code' => 'CN'], ['name' => 'Chortkiv', 'country_code' => 'UA'], ['name' => 'Balindong', 'country_code' => 'PH'], ['name' => 'Palpa', 'country_code' => 'NP'], ['name' => 'Cyangugu', 'country_code' => 'RW'], ['name' => 'Tabuleiro do Norte', 'country_code' => 'BR'], ['name' => 'Prado', 'country_code' => 'BR'], ['name' => 'Salem', 'country_code' => 'US'], ['name' => 'Vernon', 'country_code' => 'US'], ['name' => 'Tudela', 'country_code' => 'PH'], ['name' => 'Newberg', 'country_code' => 'US'], ['name' => 'Viacha', 'country_code' => 'BO'], ['name' => 'Aipe', 'country_code' => 'CO'], ['name' => 'Voorhees', 'country_code' => 'US'], ['name' => 'Cottica', 'country_code' => 'SR'], ['name' => 'Santa Quiteria do Maranhao', 'country_code' => 'BR'], ['name' => 'Timbiras', 'country_code' => 'BR'], ['name' => 'Ciying', 'country_code' => 'CN'], ['name' => 'Ornskoldsvik', 'country_code' => 'SE'], ['name' => 'Taquaritinga do Norte', 'country_code' => 'BR'], ['name' => 'Bontoc', 'country_code' => 'PH'], ['name' => 'Lewes', 'country_code' => 'US'], ['name' => 'Agde', 'country_code' => 'FR'], ['name' => 'North Attleborough', 'country_code' => 'US'], ['name' => 'Aleysk', 'country_code' => 'RU'], ['name' => 'Itubera', 'country_code' => 'BR'], ['name' => 'Washington', 'country_code' => 'US'], ['name' => 'Sant Anastasia', 'country_code' => 'IT'], ['name' => 'Balete', 'country_code' => 'PH'], ['name' => 'Gubkinskiy', 'country_code' => 'RU'], ['name' => 'Primero de Enero', 'country_code' => 'CU'], ['name' => 'Oak Ridge', 'country_code' => 'US'], ['name' => 'La Concordia', 'country_code' => 'EC'], ['name' => 'San Cristobal', 'country_code' => 'CU'], ['name' => 'Gonglang', 'country_code' => 'CN'], ['name' => 'Cheshire', 'country_code' => 'US'], ['name' => 'Beverley', 'country_code' => 'GB'], ['name' => 'Extremoz', 'country_code' => 'BR'], ['name' => 'Crofton', 'country_code' => 'US'], ['name' => 'Vinaroz', 'country_code' => 'ES'], ['name' => 'Springe', 'country_code' => 'DE'], ['name' => 'Samokov', 'country_code' => 'BG'], ['name' => 'Madinat Zayid', 'country_code' => 'AE'], ['name' => 'Ban Phai', 'country_code' => 'TH'], ['name' => 'Athens', 'country_code' => 'US'], ['name' => 'Chambly', 'country_code' => 'CA'], ['name' => 'Pasuquin', 'country_code' => 'PH'], ['name' => 'Winterswijk', 'country_code' => 'NL'], ['name' => 'Old Harbour', 'country_code' => 'JM'], ['name' => 'Laplace', 'country_code' => 'US'], ['name' => 'Nouna', 'country_code' => 'BF'], ['name' => 'Benavente', 'country_code' => 'PT'], ['name' => 'Mirandopolis', 'country_code' => 'BR'], ['name' => 'Itaperucu', 'country_code' => 'BR'], ['name' => 'Goio-Ere', 'country_code' => 'BR'], ['name' => 'Carpentras', 'country_code' => 'FR'], ['name' => 'La Dorada', 'country_code' => 'CO'], ['name' => 'Schwandorf', 'country_code' => 'DE'], ['name' => 'Alatri', 'country_code' => 'IT'], ['name' => 'Gagarin', 'country_code' => 'RU'], ['name' => 'Tocache Nuevo', 'country_code' => 'PE'], ['name' => 'San Javier', 'country_code' => 'CL'], ['name' => 'Cervia', 'country_code' => 'IT'], ['name' => 'New Panamao', 'country_code' => 'PH'], ['name' => 'SeaTac', 'country_code' => 'US'], ['name' => 'Jauja', 'country_code' => 'PE'], ['name' => 'Riosucio', 'country_code' => 'CO'], ['name' => 'Staraya Russa', 'country_code' => 'RU'], ['name' => 'Tanglou', 'country_code' => 'CN'], ['name' => 'Langedijk', 'country_code' => 'NL'], ['name' => 'Cajati', 'country_code' => 'BR'], ['name' => 'Dongwang', 'country_code' => 'CN'], ['name' => 'Nenton', 'country_code' => 'GT'], ['name' => 'Salay', 'country_code' => 'PH'], ['name' => 'Lavezares', 'country_code' => 'PH'], ['name' => 'Hoxter', 'country_code' => 'DE'], ['name' => 'Xaxim', 'country_code' => 'BR'], ['name' => 'Lubon', 'country_code' => 'PL'], ['name' => 'La Calera', 'country_code' => 'CO'], ['name' => 'Caetes', 'country_code' => 'BR'], ['name' => 'Raytown', 'country_code' => 'US'], ['name' => 'Paragould', 'country_code' => 'US'], ['name' => 'Rosa Zarate', 'country_code' => 'EC'], ['name' => 'Passira', 'country_code' => 'BR'], ['name' => 'Graham', 'country_code' => 'US'], ['name' => 'Vihti', 'country_code' => 'FI'], ['name' => 'Anilao', 'country_code' => 'PH'], ['name' => 'Hanawa', 'country_code' => 'JP'], ['name' => 'Krotoszyn', 'country_code' => 'PL'], ['name' => 'Yemanzhelinsk', 'country_code' => 'RU'], ['name' => 'Candelaria', 'country_code' => 'ES'], ['name' => 'Southgate', 'country_code' => 'US'], ['name' => 'Caicedonia', 'country_code' => 'CO'], ['name' => 'Calafell', 'country_code' => 'ES'], ['name' => 'Meissen', 'country_code' => 'DE'], ['name' => 'Barabinsk', 'country_code' => 'RU'], ['name' => 'Pucon', 'country_code' => 'CL'], ['name' => 'West Warwick', 'country_code' => 'US'], ['name' => 'Harrison', 'country_code' => 'US'], ['name' => 'Pulupandan', 'country_code' => 'PH'], ['name' => 'Niles', 'country_code' => 'US'], ['name' => 'Fernandina Beach', 'country_code' => 'US'], ['name' => 'Siraway', 'country_code' => 'PH'], ['name' => 'Chahe', 'country_code' => 'CN'], ['name' => 'Kromeriz', 'country_code' => 'CZ'], ['name' => 'Timaru', 'country_code' => 'NZ'], ['name' => 'Mount Olive', 'country_code' => 'US'], ['name' => 'Big Spring', 'country_code' => 'US'], ['name' => 'Petrovsk', 'country_code' => 'RU'], ['name' => 'Heshancun', 'country_code' => 'CN'], ['name' => 'Balakliia', 'country_code' => 'UA'], ['name' => 'Claudio', 'country_code' => 'BR'], ['name' => 'Zhonghechang', 'country_code' => 'CN'], ['name' => 'Hafnarfjordhur', 'country_code' => 'IS'], ['name' => 'Quakers Hill', 'country_code' => 'AU'], ['name' => 'Toqsu', 'country_code' => 'CN'], ['name' => 'Chiredzi', 'country_code' => 'ZW'], ['name' => 'Stanford le Hope', 'country_code' => 'GB'], ['name' => 'Borzya', 'country_code' => 'RU'], ['name' => 'Eibar', 'country_code' => 'ES'], ['name' => 'Novyi Rozdil', 'country_code' => 'UA'], ['name' => 'Milford', 'country_code' => 'US'], ['name' => 'Okotoks', 'country_code' => 'CA'], ['name' => 'Campos Gerais', 'country_code' => 'BR'], ['name' => 'Bella Vista', 'country_code' => 'US'], ['name' => 'Pabellon de Arteaga', 'country_code' => 'MX'], ['name' => 'Windsor', 'country_code' => 'US'], ['name' => 'Ogawa', 'country_code' => 'JP'], ['name' => 'Laoaoba', 'country_code' => 'CN'], ['name' => 'Chichaoua', 'country_code' => 'MA'], ['name' => 'Herentals', 'country_code' => 'BE'], ['name' => 'Milton', 'country_code' => 'US'], ['name' => 'Shangluhu', 'country_code' => 'CN'], ['name' => 'Oyabe', 'country_code' => 'JP'], ['name' => 'Morrisville', 'country_code' => 'US'], ['name' => 'Balzar', 'country_code' => 'EC'], ['name' => 'Harelbeke', 'country_code' => 'BE'], ['name' => 'Zhongtai', 'country_code' => 'CN'], ['name' => 'Greenville', 'country_code' => 'US'], ['name' => 'Santa Rita de Cassia', 'country_code' => 'BR'], ['name' => 'Buriti', 'country_code' => 'BR'], ['name' => 'Heerenveen', 'country_code' => 'NL'], ['name' => 'Bad Zwischenahn', 'country_code' => 'DE'], ['name' => 'Qaratau', 'country_code' => 'KZ'], ['name' => 'Lacey', 'country_code' => 'US'], ['name' => 'Pires do Rio', 'country_code' => 'BR'], ['name' => 'Zeitz', 'country_code' => 'DE'], ['name' => 'Leichlingen', 'country_code' => 'DE'], ['name' => 'Henstedt-Ulzburg', 'country_code' => 'DE'], ['name' => 'San Salvador', 'country_code' => 'MX'], ['name' => 'Zhailuo', 'country_code' => 'CN'], ['name' => 'Cecina', 'country_code' => 'IT'], ['name' => 'Taza', 'country_code' => 'MA'], ['name' => 'Yangiyer', 'country_code' => 'UZ'], ['name' => 'Casselberry', 'country_code' => 'US'], ['name' => 'San Narciso', 'country_code' => 'PH'], ['name' => 'Hatonuevo', 'country_code' => 'CO'], ['name' => 'Propria', 'country_code' => 'BR'], ['name' => 'Wellesley', 'country_code' => 'US'], ['name' => 'East Haven', 'country_code' => 'US'], ['name' => 'Plattsburgh', 'country_code' => 'US'], ['name' => 'Alagoa Grande', 'country_code' => 'BR'], ['name' => 'Vittorio Veneto', 'country_code' => 'IT'], ['name' => 'Naranjito', 'country_code' => 'EC'], ['name' => 'Novi Ligure', 'country_code' => 'IT'], ['name' => 'Tucuru', 'country_code' => 'GT'], ['name' => 'Griesheim', 'country_code' => 'DE'], ['name' => 'Palotina', 'country_code' => 'BR'], ['name' => 'Wasco', 'country_code' => 'US'], ['name' => 'Emmendingen', 'country_code' => 'DE'], ['name' => 'Novo Oriente', 'country_code' => 'BR'], ['name' => 'Qincun', 'country_code' => 'CN'], ['name' => 'Douar Oulad Aj-jabri', 'country_code' => 'MA'], ['name' => 'South Laurel', 'country_code' => 'US'], ['name' => 'Saint Bernard', 'country_code' => 'PH'], ['name' => 'Fleming Island', 'country_code' => 'US'], ['name' => 'Licab', 'country_code' => 'PH'], ['name' => 'Byaroza', 'country_code' => 'BY'], ['name' => 'Belle Glade', 'country_code' => 'US'], ['name' => 'Aioi', 'country_code' => 'JP'], ['name' => 'Kumalarang', 'country_code' => 'PH'], ['name' => 'San Carlos', 'country_code' => 'CO'], ['name' => 'Manticao', 'country_code' => 'PH'], ['name' => 'Stoughton', 'country_code' => 'US'], ['name' => 'Lake in the Hills', 'country_code' => 'US'], ['name' => 'Witney', 'country_code' => 'GB'], ['name' => 'Kartaly', 'country_code' => 'RU'], ['name' => 'Agawam', 'country_code' => 'US'], ['name' => 'Pokhvistnevo', 'country_code' => 'RU'], ['name' => 'Isnos', 'country_code' => 'CO'], ['name' => 'Datu Paglas', 'country_code' => 'PH'], ['name' => 'Baishaling', 'country_code' => 'CN'], ['name' => 'Dubasari', 'country_code' => 'MD'], ['name' => 'Bilgoraj', 'country_code' => 'PL'], ['name' => 'Wallkill', 'country_code' => 'US'], ['name' => 'Shirley', 'country_code' => 'US'], ['name' => 'Nzega', 'country_code' => 'TZ'], ['name' => 'Naranjal', 'country_code' => 'EC'], ['name' => 'Lucenec', 'country_code' => 'SK'], ['name' => 'Burton', 'country_code' => 'US'], ['name' => 'Oulad Yaich', 'country_code' => 'MA'], ['name' => 'Izu', 'country_code' => 'JP'], ['name' => 'Chili', 'country_code' => 'US'], ['name' => 'Geneva', 'country_code' => 'US'], ['name' => 'Baradero', 'country_code' => 'AR'], ['name' => 'Giarre', 'country_code' => 'IT'], ['name' => 'Tha Yang', 'country_code' => 'TH'], ['name' => 'San Miguel', 'country_code' => 'PH'], ['name' => 'Khust', 'country_code' => 'UA'], ['name' => 'Oulad Hammou', 'country_code' => 'MA'], ['name' => 'Gusev', 'country_code' => 'RU'], ['name' => 'Reinbek', 'country_code' => 'DE'], ['name' => 'Sept-Iles', 'country_code' => 'CA'], ['name' => 'Triggiano', 'country_code' => 'IT'], ['name' => 'Schererville', 'country_code' => 'US'], ['name' => 'Independence', 'country_code' => 'US'], ['name' => 'Gorlice', 'country_code' => 'PL'], ['name' => 'West Springfield', 'country_code' => 'US'], ['name' => 'Villareal', 'country_code' => 'PH'], ['name' => 'Venezuela', 'country_code' => 'CU'], ['name' => 'Wegberg', 'country_code' => 'DE'], ['name' => 'Assisi', 'country_code' => 'IT'], ['name' => 'Geislingen an der Steige', 'country_code' => 'DE'], ['name' => 'Austintown', 'country_code' => 'US'], ['name' => 'Marapanim', 'country_code' => 'BR'], ['name' => 'Villa Allende', 'country_code' => 'AR'], ['name' => 'Tournefeuille', 'country_code' => 'FR'], ['name' => 'Coyaima', 'country_code' => 'CO'], ['name' => 'Lisen', 'country_code' => 'CZ'], ['name' => 'Santo Domingo', 'country_code' => 'PH'], ['name' => 'San Jose', 'country_code' => 'PH'], ['name' => 'Baunatal', 'country_code' => 'DE'], ['name' => 'Burlington', 'country_code' => 'US'], ['name' => 'Mpika', 'country_code' => 'ZM'], ['name' => 'McCandless', 'country_code' => 'US'], ['name' => 'Bom Jesus', 'country_code' => 'BR'], ['name' => 'Las Nieves', 'country_code' => 'PH'], ['name' => 'Serra Negra', 'country_code' => 'BR'], ['name' => 'Carbonia', 'country_code' => 'IT'], ['name' => 'Mogliano Veneto', 'country_code' => 'IT'], ['name' => 'New Iberia', 'country_code' => 'US'], ['name' => 'Silvassa', 'country_code' => 'IN'], ['name' => 'Northampton', 'country_code' => 'US'], ['name' => 'Guararema', 'country_code' => 'BR'], ['name' => 'Luis Correia', 'country_code' => 'BR'], ['name' => 'Raseborg', 'country_code' => 'FI'], ['name' => 'Javea', 'country_code' => 'ES'], ['name' => 'Esztergom', 'country_code' => 'HU'], ['name' => 'Manaquiri', 'country_code' => 'BR'], ['name' => 'Ciro Redondo', 'country_code' => 'CU'], ['name' => 'Macalelon', 'country_code' => 'PH'], ['name' => 'Huanghuajing', 'country_code' => 'CN'], ['name' => 'Jeffrey s Bay', 'country_code' => 'ZA'], ['name' => 'Pershotravensk', 'country_code' => 'UA'], ['name' => 'Lillehammer', 'country_code' => 'NO'], ['name' => 'Warin Chamrap', 'country_code' => 'TH'], ['name' => 'San Giovanni in Persiceto', 'country_code' => 'IT'], ['name' => 'Gates', 'country_code' => 'US'], ['name' => 'Gaotan', 'country_code' => 'CN'], ['name' => 'Sighisoara', 'country_code' => 'RO'], ['name' => 'Vineyard', 'country_code' => 'US'], ['name' => 'Las Rosas', 'country_code' => 'MX'], ['name' => 'Toli', 'country_code' => 'CN'], ['name' => 'Bermejo', 'country_code' => 'BO'], ['name' => 'Bretigny-sur-Orge', 'country_code' => 'FR'], ['name' => 'Bacoli', 'country_code' => 'IT'], ['name' => 'Conceicao das Alagoas', 'country_code' => 'BR'], ['name' => 'Luruaco', 'country_code' => 'CO'], ['name' => 'Zionsville', 'country_code' => 'US'], ['name' => 'Pedras de Fogo', 'country_code' => 'BR'], ['name' => 'Vestal', 'country_code' => 'US'], ['name' => 'Libacao', 'country_code' => 'PH'], ['name' => 'Pilar do Sul', 'country_code' => 'BR'], ['name' => 'Blankenfelde', 'country_code' => 'DE'], ['name' => 'Guamal', 'country_code' => 'CO'], ['name' => 'Mollendo', 'country_code' => 'PE'], ['name' => 'Short Pump', 'country_code' => 'US'], ['name' => 'Wetter (Ruhr)', 'country_code' => 'DE'], ['name' => 'Sexmoan', 'country_code' => 'PH'], ['name' => 'Grimma', 'country_code' => 'DE'], ['name' => 'Kevelaer', 'country_code' => 'DE'], ['name' => 'Belpasso', 'country_code' => 'IT'], ['name' => 'Ajka', 'country_code' => 'HU'], ['name' => 'Klodzko', 'country_code' => 'PL'], ['name' => 'Lumberton', 'country_code' => 'US'], ['name' => 'Leimen', 'country_code' => 'DE'], ['name' => 'Alga', 'country_code' => 'KZ'], ['name' => 'Safaja', 'country_code' => 'EG'], ['name' => 'Hiji', 'country_code' => 'JP'], ['name' => 'Perry Hall', 'country_code' => 'US'], ['name' => 'Pitangui', 'country_code' => 'BR'], ['name' => 'Dar Bel Hamri', 'country_code' => 'MA'], ['name' => 'Obama', 'country_code' => 'JP'], ['name' => 'Zacoalco de Torres', 'country_code' => 'MX'], ['name' => 'Aberdeen', 'country_code' => 'US'], ['name' => 'Bad Neuenahr-Ahrweiler', 'country_code' => 'DE'], ['name' => 'Villa Luvianos', 'country_code' => 'MX'], ['name' => 'Santa Cruz Cabralia', 'country_code' => 'BR'], ['name' => 'Bardaskan', 'country_code' => 'IR'], ['name' => 'Benicia', 'country_code' => 'US'], ['name' => 'Erice', 'country_code' => 'IT'], ['name' => 'Oakleaf Plantation', 'country_code' => 'US'], ['name' => 'La Paz', 'country_code' => 'PH'], ['name' => 'Jacksonville', 'country_code' => 'US'], ['name' => 'Capljina', 'country_code' => 'BA'], ['name' => 'Rockledge', 'country_code' => 'US'], ['name' => 'Navahrudak', 'country_code' => 'BY'], ['name' => 'Miranda', 'country_code' => 'BR'], ['name' => 'San Miniato', 'country_code' => 'IT'], ['name' => 'Agno', 'country_code' => 'PH'], ['name' => 'Saugus', 'country_code' => 'US'], ['name' => 'Henderson', 'country_code' => 'US'], ['name' => 'Honcho', 'country_code' => 'JP'], ['name' => 'Rapperswil-Jona', 'country_code' => 'CH'], ['name' => 'Kurchaloy', 'country_code' => 'RU'], ['name' => 'Oktyabrsk', 'country_code' => 'KZ'], ['name' => 'Qujingpu', 'country_code' => 'CN'], ['name' => 'Guma', 'country_code' => 'CN'], ['name' => 'Majayjay', 'country_code' => 'PH'], ['name' => 'Centre Wellington', 'country_code' => 'CA'], ['name' => 'Bo ka', 'country_code' => 'UZ'], ['name' => 'Monterey', 'country_code' => 'US'], ['name' => 'Shuiding', 'country_code' => 'CN'], ['name' => 'Langdu', 'country_code' => 'CN'], ['name' => 'Arqalyq', 'country_code' => 'KZ'], ['name' => 'Converse', 'country_code' => 'US'], ['name' => 'Paracelis', 'country_code' => 'PH'], ['name' => 'Khrestivka', 'country_code' => 'UA'], ['name' => 'San Felipe Jalapa de Diaz', 'country_code' => 'MX'], ['name' => 'Granite City', 'country_code' => 'US'], ['name' => 'Llallagua', 'country_code' => 'BO'], ['name' => 'Oppegard', 'country_code' => 'NO'], ['name' => 'Buritizeiro', 'country_code' => 'BR'], ['name' => 'Iguig', 'country_code' => 'PH'], ['name' => 'Yangyuhe', 'country_code' => 'CN'], ['name' => 'Tainai', 'country_code' => 'JP'], ['name' => 'Gaoua', 'country_code' => 'BF'], ['name' => 'Nallihan', 'country_code' => 'TR'], ['name' => 'Bien Unido', 'country_code' => 'PH'], ['name' => 'Tara', 'country_code' => 'RU'], ['name' => 'Hazar', 'country_code' => 'TM'], ['name' => 'Khulm', 'country_code' => 'AF'], ['name' => 'Oslob', 'country_code' => 'PH'], ['name' => 'Xochistlahuaca', 'country_code' => 'MX'], ['name' => 'Lepe', 'country_code' => 'ES'], ['name' => 'Algemesi', 'country_code' => 'ES'], ['name' => 'Pantao-Ragat', 'country_code' => 'PH'], ['name' => 'Yukon', 'country_code' => 'US'], ['name' => 'Kushva', 'country_code' => 'RU'], ['name' => 'Villazon', 'country_code' => 'BO'], ['name' => 'Pontal do Parana', 'country_code' => 'BR'], ['name' => 'Ballina', 'country_code' => 'AU'], ['name' => 'Taree', 'country_code' => 'AU'], ['name' => 'Sorochinsk', 'country_code' => 'RU'], ['name' => 'Babatngon', 'country_code' => 'PH'], ['name' => 'Kakuda', 'country_code' => 'JP'], ['name' => 'Sonora', 'country_code' => 'US'], ['name' => 'Kuaidamao', 'country_code' => 'CN'], ['name' => 'Shaler', 'country_code' => 'US'], ['name' => 'Dauin', 'country_code' => 'PH'], ['name' => 'Prata', 'country_code' => 'BR'], ['name' => 'Gameleira', 'country_code' => 'BR'], ['name' => 'Branford', 'country_code' => 'US'], ['name' => 'Westport', 'country_code' => 'US'], ['name' => 'Kasangulu', 'country_code' => 'CD'], ['name' => 'Uchturpan', 'country_code' => 'CN'], ['name' => 'Baesweiler', 'country_code' => 'DE'], ['name' => 'Chios', 'country_code' => 'GR'], ['name' => 'Camiri', 'country_code' => 'BO'], ['name' => 'Jimenez', 'country_code' => 'PH'], ['name' => 'Illkirch-Graffenstaden', 'country_code' => 'FR'], ['name' => 'Kriens', 'country_code' => 'CH'], ['name' => 'Imatra', 'country_code' => 'FI'], ['name' => 'Coromandel', 'country_code' => 'BR'], ['name' => 'Kholmsk', 'country_code' => 'RU'], ['name' => 'Mehlville', 'country_code' => 'US'], ['name' => 'Ternivka', 'country_code' => 'UA'], ['name' => 'Niuchangqiao', 'country_code' => 'CN'], ['name' => 'Mirassol d Oeste', 'country_code' => 'BR'], ['name' => 'Wisconsin Rapids', 'country_code' => 'US'], ['name' => 'Nochistlan de Mejia', 'country_code' => 'MX'], ['name' => 'Baisuo', 'country_code' => 'CN'], ['name' => 'San Martin de los Andes', 'country_code' => 'AR'], ['name' => 'Aglipay', 'country_code' => 'PH'], ['name' => 'Dembi Dolo', 'country_code' => 'ET'], ['name' => 'Dahmani', 'country_code' => 'TN'], ['name' => 'Piest any', 'country_code' => 'SK'], ['name' => 'Galt', 'country_code' => 'US'], ['name' => 'Mocimboa', 'country_code' => 'MZ'], ['name' => 'Hutto', 'country_code' => 'US'], ['name' => 'Sundern', 'country_code' => 'DE'], ['name' => 'Jaguarao', 'country_code' => 'BR'], ['name' => 'Bixby', 'country_code' => 'US'], ['name' => 'Hobart', 'country_code' => 'US'], ['name' => 'West Windsor', 'country_code' => 'US'], ['name' => 'Benicarlo', 'country_code' => 'ES'], ['name' => 'Tlalpujahua de Rayon', 'country_code' => 'MX'], ['name' => 'Oakdale', 'country_code' => 'US'], ['name' => 'Sabaneta', 'country_code' => 'VE'], ['name' => 'Sunbury', 'country_code' => 'US'], ['name' => 'Valente', 'country_code' => 'BR'], ['name' => 'Moulay Bousselham', 'country_code' => 'MA'], ['name' => 'Shilan', 'country_code' => 'CN'], ['name' => 'Summerlin South', 'country_code' => 'US'], ['name' => 'Bolobo', 'country_code' => 'CD'], ['name' => 'Melgaco', 'country_code' => 'BR'], ['name' => 'Pirai', 'country_code' => 'BR'], ['name' => 'Andenne', 'country_code' => 'BE'], ['name' => 'Carauari', 'country_code' => 'BR'], ['name' => 'Belen de Umbria', 'country_code' => 'CO'], ['name' => 'Hadishahr', 'country_code' => 'IR'], ['name' => 'Topki', 'country_code' => 'RU'], ['name' => 'Zamboanguita', 'country_code' => 'PH'], ['name' => 'Vyshhorod', 'country_code' => 'UA'], ['name' => 'Salinas Victoria', 'country_code' => 'MX'], ['name' => 'Atlautla', 'country_code' => 'MX'], ['name' => 'Cocal', 'country_code' => 'BR'], ['name' => 'Porto Sant Elpidio', 'country_code' => 'IT'], ['name' => 'Sueca', 'country_code' => 'ES'], ['name' => 'Zolotonosha', 'country_code' => 'UA'], ['name' => 'Ormskirk', 'country_code' => 'GB'], ['name' => 'Ouda-yamaguchi', 'country_code' => 'JP'], ['name' => 'Aloran', 'country_code' => 'PH'], ['name' => 'Zaltbommel', 'country_code' => 'NL'], ['name' => 'Lufeng', 'country_code' => 'CN'], ['name' => 'Soignies', 'country_code' => 'BE'], ['name' => 'Fuman', 'country_code' => 'IR'], ['name' => 'New Smyrna Beach', 'country_code' => 'US'], ['name' => 'Bellaa', 'country_code' => 'MA'], ['name' => 'Mahaplag', 'country_code' => 'PH'], ['name' => 'Tualatin', 'country_code' => 'US'], ['name' => 'Tehuipango', 'country_code' => 'MX'], ['name' => 'Forest Hills', 'country_code' => 'US'], ['name' => 'Fridley', 'country_code' => 'US'], ['name' => 'Maloyaroslavets', 'country_code' => 'RU'], ['name' => 'Newtown', 'country_code' => 'US'], ['name' => 'Iguai', 'country_code' => 'BR'], ['name' => 'Zakopane', 'country_code' => 'PL'], ['name' => 'East Chicago', 'country_code' => 'US'], ['name' => 'Ofaqim', 'country_code' => 'IL'], ['name' => 'Vinales', 'country_code' => 'CU'], ['name' => 'Kirkwood', 'country_code' => 'US'], ['name' => 'Ozumba', 'country_code' => 'MX'], ['name' => 'San Martin Hidalgo', 'country_code' => 'MX'], ['name' => 'Sumilao', 'country_code' => 'PH'], ['name' => 'Mechernich', 'country_code' => 'DE'], ['name' => 'Lagoa Vermelha', 'country_code' => 'BR'], ['name' => 'Arnstadt', 'country_code' => 'DE'], ['name' => 'Littlehampton', 'country_code' => 'GB'], ['name' => 'Havran', 'country_code' => 'TR'], ['name' => 'Sanger', 'country_code' => 'US'], ['name' => 'Gioia del Colle', 'country_code' => 'IT'], ['name' => 'Mananjary', 'country_code' => 'MG'], ['name' => 'Jarrow', 'country_code' => 'GB'], ['name' => 'Mirano', 'country_code' => 'IT'], ['name' => 'Kongsberg', 'country_code' => 'NO'], ['name' => 'Itako', 'country_code' => 'JP'], ['name' => 'Lainate', 'country_code' => 'IT'], ['name' => 'Nova Prata', 'country_code' => 'BR'], ['name' => 'Boca da Mata', 'country_code' => 'BR'], ['name' => 'Morgan City', 'country_code' => 'US'], ['name' => 'Curtea de Arges', 'country_code' => 'RO'], ['name' => 'Sao Jose do Norte', 'country_code' => 'BR'], ['name' => 'Ramsey', 'country_code' => 'US'], ['name' => 'Zongdi', 'country_code' => 'CN'], ['name' => 'Ruston', 'country_code' => 'US'], ['name' => 'Jeffersontown', 'country_code' => 'US'], ['name' => 'Glen Ellyn', 'country_code' => 'US'], ['name' => 'Zarechnyy', 'country_code' => 'RU'], ['name' => 'Longtan', 'country_code' => 'CN'], ['name' => 'Supia', 'country_code' => 'CO'], ['name' => 'Argelia', 'country_code' => 'CO'], ['name' => 'Kapellen', 'country_code' => 'BE'], ['name' => 'Narat', 'country_code' => 'CN'], ['name' => 'Moron de la Frontera', 'country_code' => 'ES'], ['name' => 'Bandipura', 'country_code' => 'IN'], ['name' => 'San Juan Guichicovi', 'country_code' => 'MX'], ['name' => 'Bom Jardim', 'country_code' => 'BR'], ['name' => 'Mantena', 'country_code' => 'BR'], ['name' => 'Makato', 'country_code' => 'PH'], ['name' => 'Borsa', 'country_code' => 'RO'], ['name' => 'Canon City', 'country_code' => 'US'], ['name' => 'Ibotirama', 'country_code' => 'BR'], ['name' => 'Lichtenburg', 'country_code' => 'ZA'], ['name' => 'Gojo', 'country_code' => 'JP'], ['name' => 'Wangtang', 'country_code' => 'CN'], ['name' => 'Juatuba', 'country_code' => 'BR'], ['name' => 'Cuartero', 'country_code' => 'PH'], ['name' => 'Monticello', 'country_code' => 'US'], ['name' => 'Itacare', 'country_code' => 'BR'], ['name' => 'Lebrija', 'country_code' => 'ES'], ['name' => 'Oktyabrsk', 'country_code' => 'RU'], ['name' => 'Burlington', 'country_code' => 'US'], ['name' => 'Ashtabula', 'country_code' => 'US'], ['name' => 'Santa Perpetua de Moguda', 'country_code' => 'ES'], ['name' => 'Marco', 'country_code' => 'BR'], ['name' => 'Wiesloch', 'country_code' => 'DE'], ['name' => 'Temescal Valley', 'country_code' => 'US'], ['name' => 'Oroshaza', 'country_code' => 'HU'], ['name' => 'Xima', 'country_code' => 'CN'], ['name' => 'Bridgewater', 'country_code' => 'US'], ['name' => 'Agua Azul do Norte', 'country_code' => 'BR'], ['name' => 'Mint Hill', 'country_code' => 'US'], ['name' => 'Jarinu', 'country_code' => 'BR'], ['name' => 'Rosiori de Vede', 'country_code' => 'RO'], ['name' => 'Dupax Del Norte', 'country_code' => 'PH'], ['name' => 'Ponot', 'country_code' => 'PH'], ['name' => 'Panauti', 'country_code' => 'NP'], ['name' => 'Danvers', 'country_code' => 'US'], ['name' => 'Tupanatinga', 'country_code' => 'BR'], ['name' => 'Sao Miguel do Iguacu', 'country_code' => 'BR'], ['name' => 'Stratford-upon-Avon', 'country_code' => 'GB'], ['name' => 'Tortona', 'country_code' => 'IT'], ['name' => 'Milton', 'country_code' => 'US'], ['name' => 'Molins de Rey', 'country_code' => 'ES'], ['name' => 'Tongyangdao', 'country_code' => 'CN'], ['name' => 'Spring', 'country_code' => 'US'], ['name' => 'Whitehall', 'country_code' => 'US'], ['name' => 'Piracuruca', 'country_code' => 'BR'], ['name' => 'Lapao', 'country_code' => 'BR'], ['name' => 'Jaszbereny', 'country_code' => 'HU'], ['name' => 'Neptune', 'country_code' => 'US'], ['name' => 'Neckarsulm', 'country_code' => 'DE'], ['name' => 'Niimi', 'country_code' => 'JP'], ['name' => 'Ciudad Bolivar', 'country_code' => 'CO'], ['name' => 'Miguel Calmon', 'country_code' => 'BR'], ['name' => 'Haiyang', 'country_code' => 'CN'], ['name' => 'Almazora', 'country_code' => 'ES'], ['name' => 'Buenavista', 'country_code' => 'PH'], ['name' => 'Geilenkirchen', 'country_code' => 'DE'], ['name' => 'Bidur', 'country_code' => 'NP'], ['name' => 'Ipsala', 'country_code' => 'TR'], ['name' => 'Santa Rita do Passa Quatro', 'country_code' => 'BR'], ['name' => 'Placer', 'country_code' => 'PH'], ['name' => 'Ashford', 'country_code' => 'GB'], ['name' => 'Gawler', 'country_code' => 'AU'], ['name' => 'Statesville', 'country_code' => 'US'], ['name' => 'Kathu', 'country_code' => 'TH'], ['name' => 'Repelon', 'country_code' => 'CO'], ['name' => 'Verkhniy Ufaley', 'country_code' => 'RU'], ['name' => 'Terlizzi', 'country_code' => 'IT'], ['name' => 'Gloversville', 'country_code' => 'US'], ['name' => 'Miramas', 'country_code' => 'FR'], ['name' => 'Rambouillet', 'country_code' => 'FR'], ['name' => 'Chillan Viejo', 'country_code' => 'CL'], ['name' => 'Campos Sales', 'country_code' => 'BR'], ['name' => 'Gladstone', 'country_code' => 'US'], ['name' => 'Pilar', 'country_code' => 'PH'], ['name' => 'Deer Park', 'country_code' => 'US'], ['name' => 'Sola', 'country_code' => 'NO'], ['name' => 'Bo ao', 'country_code' => 'CN'], ['name' => 'Kedu', 'country_code' => 'CN'], ['name' => 'Reina Mercedes Viejo', 'country_code' => 'PH'], ['name' => 'East Grinstead', 'country_code' => 'GB'], ['name' => 'Longdian', 'country_code' => 'CN'], ['name' => 'Fremont', 'country_code' => 'US'], ['name' => 'Queensbury', 'country_code' => 'US'], ['name' => 'Laranjal Paulista', 'country_code' => 'BR'], ['name' => 'Rheinbach', 'country_code' => 'DE'], ['name' => 'Garfield Heights', 'country_code' => 'US'], ['name' => 'Maryborough', 'country_code' => 'AU'], ['name' => 'Seneca', 'country_code' => 'US'], ['name' => 'Barcelos', 'country_code' => 'BR'], ['name' => 'Vimercate', 'country_code' => 'IT'], ['name' => 'Overath', 'country_code' => 'DE'], ['name' => 'Mabini', 'country_code' => 'PH'], ['name' => 'Zempoala', 'country_code' => 'MX'], ['name' => 'Florence', 'country_code' => 'US'], ['name' => 'Thatcham', 'country_code' => 'GB'], ['name' => 'Bayonet Point', 'country_code' => 'US'], ['name' => 'Klosterneuburg', 'country_code' => 'AT'], ['name' => 'Zhongshan', 'country_code' => 'CN'], ['name' => 'Bakhchysarai', 'country_code' => 'UA'], ['name' => 'Lansing', 'country_code' => 'US'], ['name' => 'Drimmelen', 'country_code' => 'NL'], ['name' => 'San Luis', 'country_code' => 'PH'], ['name' => 'Aschersleben', 'country_code' => 'DE'], ['name' => 'Huaquechula', 'country_code' => 'MX'], ['name' => 'Millville', 'country_code' => 'US'], ['name' => 'Monroeville', 'country_code' => 'US'], ['name' => 'Tall Rif at', 'country_code' => 'SY'], ['name' => 'Forquilhinha', 'country_code' => 'BR'], ['name' => 'Saint-Constant', 'country_code' => 'CA'], ['name' => 'Valencia', 'country_code' => 'PH'], ['name' => 'Badiangan', 'country_code' => 'PH'], ['name' => 'St. Helens', 'country_code' => 'US'], ['name' => 'Ban Phonla Krang', 'country_code' => 'TH'], ['name' => 'Stafford', 'country_code' => 'US'], ['name' => 'Lapuyan', 'country_code' => 'PH'], ['name' => 'Pitogo', 'country_code' => 'PH'], ['name' => 'Lunel', 'country_code' => 'FR'], ['name' => 'Orvault', 'country_code' => 'FR'], ['name' => 'Sibinal', 'country_code' => 'GT'], ['name' => 'Castro Alves', 'country_code' => 'BR'], ['name' => 'Ixchiguan', 'country_code' => 'GT'], ['name' => 'Atitalaquia', 'country_code' => 'MX'], ['name' => 'Vicar', 'country_code' => 'ES'], ['name' => 'Enna', 'country_code' => 'IT'], ['name' => 'Grimsby', 'country_code' => 'CA'], ['name' => 'Teutonia', 'country_code' => 'BR'], ['name' => 'Bergerac', 'country_code' => 'FR'], ['name' => 'La Oliva', 'country_code' => 'ES'], ['name' => 'Tepehuacan de Guerrero', 'country_code' => 'MX'], ['name' => 'Albignasego', 'country_code' => 'IT'], ['name' => 'Puerto Colombia', 'country_code' => 'CO'], ['name' => 'New Windsor', 'country_code' => 'US'], ['name' => 'Gonesse', 'country_code' => 'FR'], ['name' => 'Heiligenhaus', 'country_code' => 'DE'], ['name' => 'Aalten', 'country_code' => 'NL'], ['name' => 'El Alia', 'country_code' => 'TN'], ['name' => 'Cangas', 'country_code' => 'ES'], ['name' => 'Conchal', 'country_code' => 'BR'], ['name' => 'Pombos', 'country_code' => 'BR'], ['name' => 'San Giovanni Rotondo', 'country_code' => 'IT'], ['name' => 'Santana', 'country_code' => 'BR'], ['name' => 'Henin-Beaumont', 'country_code' => 'FR'], ['name' => 'Santo Nino', 'country_code' => 'PH'], ['name' => 'Horn Lake', 'country_code' => 'US'], ['name' => 'San Juan de Uraba', 'country_code' => 'CO'], ['name' => 'Itapissuma', 'country_code' => 'BR'], ['name' => 'Candelaria', 'country_code' => 'PH'], ['name' => 'Pereyaslav-Khmel nyts kyy', 'country_code' => 'UA'], ['name' => 'Sebes', 'country_code' => 'RO'], ['name' => 'Chivasso', 'country_code' => 'IT'], ['name' => 'Estarreja', 'country_code' => 'PT'], ['name' => 'East Windsor', 'country_code' => 'US'], ['name' => 'Miracema', 'country_code' => 'BR'], ['name' => 'Prior Lake', 'country_code' => 'US'], ['name' => 'Jardim', 'country_code' => 'BR'], ['name' => 'Caboolture', 'country_code' => 'AU'], ['name' => 'Santa Eugenia', 'country_code' => 'ES'], ['name' => 'Scicli', 'country_code' => 'IT'], ['name' => 'Huntley', 'country_code' => 'US'], ['name' => 'Niscemi', 'country_code' => 'IT'], ['name' => 'Galatina', 'country_code' => 'IT'], ['name' => 'Cavaillon', 'country_code' => 'FR'], ['name' => 'Kolambugan', 'country_code' => 'PH'], ['name' => 'Qingshan', 'country_code' => 'CN'], ['name' => 'Maple Valley', 'country_code' => 'US'], ['name' => 'San Agustin Tlaxiaca', 'country_code' => 'MX'], ['name' => 'Vilyeyka', 'country_code' => 'BY'], ['name' => 'Mundo Novo', 'country_code' => 'BR'], ['name' => 'Xalatlaco', 'country_code' => 'MX'], ['name' => 'Fidenza', 'country_code' => 'IT'], ['name' => 'Willebroek', 'country_code' => 'BE'], ['name' => 'Porto da Folha', 'country_code' => 'BR'], ['name' => 'Oak Forest', 'country_code' => 'US'], ['name' => 'Schloss Holte-Stukenbrock', 'country_code' => 'DE'], ['name' => 'Mayskiy', 'country_code' => 'RU'], ['name' => 'Pemberton', 'country_code' => 'US'], ['name' => 'Glen Cove', 'country_code' => 'US'], ['name' => 'Ermelo', 'country_code' => 'NL'], ['name' => 'Liqizhuang', 'country_code' => 'CN'], ['name' => 'Gradignan', 'country_code' => 'FR'], ['name' => 'Werkendam', 'country_code' => 'NL'], ['name' => 'Wangen im Allgau', 'country_code' => 'DE'], ['name' => 'Szentes', 'country_code' => 'HU'], ['name' => 'Sao Joaquim', 'country_code' => 'BR'], ['name' => 'Sikonge', 'country_code' => 'TZ'], ['name' => 'Sens', 'country_code' => 'FR'], ['name' => 'Kiskunhalas', 'country_code' => 'HU'], ['name' => 'Saumur', 'country_code' => 'FR'], ['name' => 'Ubata', 'country_code' => 'BR'], ['name' => 'Ksebia', 'country_code' => 'MA'], ['name' => 'Shoreview', 'country_code' => 'US'], ['name' => 'Assemini', 'country_code' => 'IT'], ['name' => 'Windsor', 'country_code' => 'US'], ['name' => 'Sterling', 'country_code' => 'US'], ['name' => 'Poona-Piagapo', 'country_code' => 'PH'], ['name' => 'Garchitorena', 'country_code' => 'PH'], ['name' => 'Montbeliard', 'country_code' => 'FR'], ['name' => 'Hennigsdorf', 'country_code' => 'DE'], ['name' => 'Dodge City', 'country_code' => 'US'], ['name' => 'Ronse', 'country_code' => 'BE'], ['name' => 'Unisan', 'country_code' => 'PH'], ['name' => 'Tlaxcoapan', 'country_code' => 'MX'], ['name' => 'Sol -Iletsk', 'country_code' => 'RU'], ['name' => 'San Pedro del Pinatar', 'country_code' => 'ES'], ['name' => 'Colleyville', 'country_code' => 'US'], ['name' => 'Wilmette', 'country_code' => 'US'], ['name' => 'Plum', 'country_code' => 'US'], ['name' => 'Bernards', 'country_code' => 'US'], ['name' => 'Mount Pleasant', 'country_code' => 'US'], ['name' => 'Libenge', 'country_code' => 'CD'], ['name' => 'Sabanilla', 'country_code' => 'MX'], ['name' => 'Belo Oriente', 'country_code' => 'BR'], ['name' => 'Falconara Marittima', 'country_code' => 'IT'], ['name' => 'Pamidi', 'country_code' => 'IN'], ['name' => 'Itamaraca', 'country_code' => 'BR'], ['name' => 'Amatepec', 'country_code' => 'MX'], ['name' => 'Laranjeiras', 'country_code' => 'BR'], ['name' => 'Ruzomberok', 'country_code' => 'SK'], ['name' => 'McHenry', 'country_code' => 'US'], ['name' => 'Lohne', 'country_code' => 'DE'], ['name' => 'Kazincbarcika', 'country_code' => 'HU'], ['name' => 'Waterville', 'country_code' => 'US'], ['name' => 'Bagac', 'country_code' => 'PH'], ['name' => 'Mesagne', 'country_code' => 'IT'], ['name' => 'Szentendre', 'country_code' => 'HU'], ['name' => 'Jiangdi', 'country_code' => 'CN'], ['name' => 'Walcz', 'country_code' => 'PL'], ['name' => 'Quarrata', 'country_code' => 'IT'], ['name' => 'Norfolk', 'country_code' => 'US'], ['name' => 'Zuitou', 'country_code' => 'CN'], ['name' => 'Shaker Heights', 'country_code' => 'US'], ['name' => 'Citrus Park', 'country_code' => 'US'], ['name' => 'Boquim', 'country_code' => 'BR'], ['name' => 'Tarui', 'country_code' => 'JP'], ['name' => 'Teltow', 'country_code' => 'DE'], ['name' => 'Marcos Juarez', 'country_code' => 'AR'], ['name' => 'New Milford', 'country_code' => 'US'], ['name' => 'Erie', 'country_code' => 'US'], ['name' => 'Brownsburg', 'country_code' => 'US'], ['name' => 'Sanharo', 'country_code' => 'BR'], ['name' => 'Wakefield', 'country_code' => 'US'], ['name' => 'Sao Sebastiao da Boa Vista', 'country_code' => 'BR'], ['name' => 'Mainit', 'country_code' => 'PH'], ['name' => 'Chaska', 'country_code' => 'US'], ['name' => 'Aripuana', 'country_code' => 'BR'], ['name' => 'Strausberg', 'country_code' => 'DE'], ['name' => 'Ilchester', 'country_code' => 'US'], ['name' => 'Shelby', 'country_code' => 'US'], ['name' => 'Noicattaro', 'country_code' => 'IT'], ['name' => 'Karpinsk', 'country_code' => 'RU'], ['name' => 'Uyuni', 'country_code' => 'BO'], ['name' => 'Taquari', 'country_code' => 'BR'], ['name' => 'Lauf', 'country_code' => 'DE'], ['name' => 'Maryland Heights', 'country_code' => 'US'], ['name' => 'Kamyshlov', 'country_code' => 'RU'], ['name' => 'Magna', 'country_code' => 'US'], ['name' => 'Pontecagnano', 'country_code' => 'IT'], ['name' => 'Xenia', 'country_code' => 'US'], ['name' => 'Putignano', 'country_code' => 'IT'], ['name' => 'Allen Park', 'country_code' => 'US'], ['name' => 'Chuimatan', 'country_code' => 'CN'], ['name' => 'Khanabad', 'country_code' => 'AF'], ['name' => 'Balabagan', 'country_code' => 'PH'], ['name' => 'Mason City', 'country_code' => 'US'], ['name' => 'Hancun', 'country_code' => 'CN'], ['name' => 'New Lenox', 'country_code' => 'US'], ['name' => 'Batalha', 'country_code' => 'BR'], ['name' => 'Jaltenco', 'country_code' => 'MX'], ['name' => 'Pinarbasi', 'country_code' => 'TR'], ['name' => 'Hanahan', 'country_code' => 'US'], ['name' => 'Cartama', 'country_code' => 'ES'], ['name' => 'Karasuk', 'country_code' => 'RU'], ['name' => 'Iglesias', 'country_code' => 'IT'], ['name' => 'Padada', 'country_code' => 'PH'], ['name' => 'Hamminkeln', 'country_code' => 'DE'], ['name' => 'Lier', 'country_code' => 'NO'], ['name' => 'Dongen', 'country_code' => 'NL'], ['name' => 'Tibiao', 'country_code' => 'PH'], ['name' => 'Burdeos', 'country_code' => 'PH'], ['name' => 'Kinston', 'country_code' => 'US'], ['name' => 'Searcy', 'country_code' => 'US'], ['name' => 'Flemalle-Haute', 'country_code' => 'BE'], ['name' => 'Fern Down', 'country_code' => 'GB'], ['name' => 'Boisbriand', 'country_code' => 'CA'], ['name' => 'Brzozow', 'country_code' => 'PL'], ['name' => 'Miyanaga', 'country_code' => 'JP'], ['name' => 'Majagua', 'country_code' => 'CU'], ['name' => 'Candido Sales', 'country_code' => 'BR'], ['name' => 'Pacasmayo', 'country_code' => 'PE'], ['name' => 'Tamorot', 'country_code' => 'MA'], ['name' => 'Shangxiao', 'country_code' => 'CN'], ['name' => 'Olindina', 'country_code' => 'BR'], ['name' => 'Ipixuna', 'country_code' => 'BR'], ['name' => 'New London', 'country_code' => 'US'], ['name' => 'Jinju', 'country_code' => 'CN'], ['name' => 'Lamego', 'country_code' => 'PT'], ['name' => 'Nossa Senhora das Dores', 'country_code' => 'BR'], ['name' => 'West Islip', 'country_code' => 'US'], ['name' => 'Reserva', 'country_code' => 'BR'], ['name' => 'Ramon Magsaysay', 'country_code' => 'PH'], ['name' => 'Bafoulabe', 'country_code' => 'ML'], ['name' => 'Sofiyivs ka Borshchahivka', 'country_code' => 'UA'], ['name' => 'Sabaa Aiyoun', 'country_code' => 'MA'], ['name' => 'Solanea', 'country_code' => 'BR'], ['name' => 'Rijssen', 'country_code' => 'NL'], ['name' => 'Fortul', 'country_code' => 'CO'], ['name' => 'San Juan', 'country_code' => 'PH'], ['name' => 'Monreal', 'country_code' => 'PH'], ['name' => 'West Chicago', 'country_code' => 'US'], ['name' => 'Dyatkovo', 'country_code' => 'RU'], ['name' => 'Nepomuceno', 'country_code' => 'BR'], ['name' => 'Sliedrecht', 'country_code' => 'NL'], ['name' => 'Goianinha', 'country_code' => 'BR'], ['name' => 'Santa Josefa', 'country_code' => 'PH'], ['name' => 'Novoaleksandrovsk', 'country_code' => 'RU'], ['name' => 'Saint-Dizier', 'country_code' => 'FR'], ['name' => 'Santa Helena', 'country_code' => 'BR'], ['name' => 'Codajas', 'country_code' => 'BR'], ['name' => 'Los Cordobas', 'country_code' => 'CO'], ['name' => 'Santeramo in Colle', 'country_code' => 'IT'], ['name' => 'Obertshausen', 'country_code' => 'DE'], ['name' => 'Francavilla al Mare', 'country_code' => 'IT'], ['name' => 'Semiluki', 'country_code' => 'RU'], ['name' => 'Springettsbury', 'country_code' => 'US'], ['name' => 'McDonough', 'country_code' => 'US'], ['name' => 'Mariano Comense', 'country_code' => 'IT'], ['name' => 'Chuanliaocun', 'country_code' => 'CN'], ['name' => 'Morales', 'country_code' => 'CO'], ['name' => 'Montreux', 'country_code' => 'CH'], ['name' => 'La Garde', 'country_code' => 'FR'], ['name' => 'Piracaia', 'country_code' => 'BR'], ['name' => 'General Luna', 'country_code' => 'PH'], ['name' => 'Ragan Sur', 'country_code' => 'PH'], ['name' => 'San Isidro', 'country_code' => 'PH'], ['name' => 'Narasannapeta', 'country_code' => 'IN'], ['name' => 'Polysayevo', 'country_code' => 'RU'], ['name' => 'West Linn', 'country_code' => 'US'], ['name' => 'Weiterstadt', 'country_code' => 'DE'], ['name' => 'Basay', 'country_code' => 'PH'], ['name' => 'Cortland', 'country_code' => 'US'], ['name' => 'Lemoore', 'country_code' => 'US'], ['name' => 'Alvin', 'country_code' => 'US'], ['name' => 'Bushey', 'country_code' => 'GB'], ['name' => 'Corrente', 'country_code' => 'BR'], ['name' => 'Kauswagan', 'country_code' => 'PH'], ['name' => 'Kirzhach', 'country_code' => 'RU'], ['name' => 'Ocean', 'country_code' => 'US'], ['name' => 'Brasileia', 'country_code' => 'BR'], ['name' => 'Tubize', 'country_code' => 'BE'], ['name' => 'Kiruna', 'country_code' => 'SE'], ['name' => 'Nova Zagora', 'country_code' => 'BG'], ['name' => 'Yuanyangzhen', 'country_code' => 'CN'], ['name' => 'Hohen Neuendorf', 'country_code' => 'DE'], ['name' => 'Husi', 'country_code' => 'RO'], ['name' => 'Waynesboro', 'country_code' => 'US'], ['name' => 'Krasnoarmeysk', 'country_code' => 'RU'], ['name' => 'Betong', 'country_code' => 'TH'], ['name' => 'Nova Esperanca', 'country_code' => 'BR'], ['name' => 'Talisay', 'country_code' => 'PH'], ['name' => 'Sosnogorsk', 'country_code' => 'RU'], ['name' => 'Segezha', 'country_code' => 'RU'], ['name' => 'San Giovanni Lupatoto', 'country_code' => 'IT'], ['name' => 'Marshalltown', 'country_code' => 'US'], ['name' => 'Lebanon', 'country_code' => 'US'], ['name' => 'Planalto', 'country_code' => 'BR'], ['name' => 'Wappinger', 'country_code' => 'US'], ['name' => 'Lower Providence', 'country_code' => 'US'], ['name' => 'Thomasville', 'country_code' => 'US'], ['name' => 'Unterhaching', 'country_code' => 'DE'], ['name' => 'Macka', 'country_code' => 'TR'], ['name' => 'Goias', 'country_code' => 'BR'], ['name' => 'Temple Terrace', 'country_code' => 'US'], ['name' => 'Lafayette', 'country_code' => 'US'], ['name' => 'Wassenaar', 'country_code' => 'NL'], ['name' => 'Coulsdon', 'country_code' => 'GB'], ['name' => 'Veranopolis', 'country_code' => 'BR'], ['name' => 'Coracao de Jesus', 'country_code' => 'BR'], ['name' => 'Falticeni', 'country_code' => 'RO'], ['name' => 'Az Zabadani', 'country_code' => 'SY'], ['name' => 'Dalnerechensk', 'country_code' => 'RU'], ['name' => 'San Benito Abad', 'country_code' => 'CO'], ['name' => 'Norco', 'country_code' => 'US'], ['name' => 'Pirapozinho', 'country_code' => 'BR'], ['name' => 'Immokalee', 'country_code' => 'US'], ['name' => 'San Alberto', 'country_code' => 'CO'], ['name' => 'Kirovsk', 'country_code' => 'RU'], ['name' => 'Khadbari', 'country_code' => 'NP'], ['name' => 'Bolkhov', 'country_code' => 'RU'], ['name' => 'As Sanamayn', 'country_code' => 'SY'], ['name' => 'Shalqar', 'country_code' => 'KZ'], ['name' => 'Hermanus', 'country_code' => 'ZA'], ['name' => 'Dois Corregos', 'country_code' => 'BR'], ['name' => 'Muhlacker', 'country_code' => 'DE'], ['name' => 'Severouralsk', 'country_code' => 'RU'], ['name' => 'San Antonio del Sur', 'country_code' => 'CU'], ['name' => 'Santa Margarita', 'country_code' => 'PH'], ['name' => 'Congleton', 'country_code' => 'GB'], ['name' => 'Cesenatico', 'country_code' => 'IT'], ['name' => 'La Union', 'country_code' => 'CL'], ['name' => 'Valdagno', 'country_code' => 'IT'], ['name' => 'Traralgon', 'country_code' => 'AU'], ['name' => 'Heppenheim', 'country_code' => 'DE'], ['name' => 'Vernon Hills', 'country_code' => 'US'], ['name' => 'Zhaicun', 'country_code' => 'CN'], ['name' => 'Sao Joao Nepomuceno', 'country_code' => 'BR'], ['name' => 'Pearl', 'country_code' => 'US'], ['name' => 'Paracuellos de Jarama', 'country_code' => 'ES'], ['name' => 'Sao Bernardo', 'country_code' => 'BR'], ['name' => 'Bethany', 'country_code' => 'US'], ['name' => 'Vila Rica', 'country_code' => 'BR'], ['name' => 'Senador Pompeu', 'country_code' => 'BR'], ['name' => 'Tabira', 'country_code' => 'BR'], ['name' => 'Nordenham', 'country_code' => 'DE'], ['name' => 'Marquette', 'country_code' => 'US'], ['name' => 'Horsham', 'country_code' => 'US'], ['name' => 'Zirndorf', 'country_code' => 'DE'], ['name' => 'Oltenita', 'country_code' => 'RO'], ['name' => 'Iesolo', 'country_code' => 'IT'], ['name' => 'Sedalia', 'country_code' => 'US'], ['name' => 'Bessemer', 'country_code' => 'US'], ['name' => 'Oisterwijk', 'country_code' => 'NL'], ['name' => 'Balboa', 'country_code' => 'CO'], ['name' => 'Plainview', 'country_code' => 'US'], ['name' => 'Macrohon', 'country_code' => 'PH'], ['name' => 'Migdal Ha Emeq', 'country_code' => 'IL'], ['name' => 'Butzbach', 'country_code' => 'DE'], ['name' => 'Selm', 'country_code' => 'DE'], ['name' => 'Pati do Alferes', 'country_code' => 'BR'], ['name' => 'Caririacu', 'country_code' => 'BR'], ['name' => 'Oldbury', 'country_code' => 'GB'], ['name' => 'Ocuilan de Arteaga', 'country_code' => 'MX'], ['name' => 'Beuningen', 'country_code' => 'NL'], ['name' => 'Liushuquan', 'country_code' => 'CN'], ['name' => 'Ait Faska', 'country_code' => 'MA'], ['name' => 'Canarana', 'country_code' => 'BR'], ['name' => 'Sangerhausen', 'country_code' => 'DE'], ['name' => 'New Milton', 'country_code' => 'GB'], ['name' => 'Vignola', 'country_code' => 'IT'], ['name' => 'Batavia', 'country_code' => 'US'], ['name' => 'Topol cany', 'country_code' => 'SK'], ['name' => 'Kirovsk', 'country_code' => 'RU'], ['name' => 'Garden City', 'country_code' => 'US'], ['name' => 'Ehingen an der Donau', 'country_code' => 'DE'], ['name' => 'West Milford', 'country_code' => 'US'], ['name' => 'Lilancheng', 'country_code' => 'CN'], ['name' => 'Pensilvania', 'country_code' => 'CO'], ['name' => 'Chanhassen', 'country_code' => 'US'], ['name' => 'Santo Tomas', 'country_code' => 'SV'], ['name' => 'Aurillac', 'country_code' => 'FR'], ['name' => 'Jarocin', 'country_code' => 'PL'], ['name' => 'Ilha Solteira', 'country_code' => 'BR'], ['name' => 'Daventry', 'country_code' => 'GB'], ['name' => 'Sacramento', 'country_code' => 'BR'], ['name' => 'Palanas', 'country_code' => 'PH'], ['name' => 'Conversano', 'country_code' => 'IT'], ['name' => 'Dimasalang', 'country_code' => 'PH'], ['name' => 'Bourdoud', 'country_code' => 'MA'], ['name' => 'Sumperk', 'country_code' => 'CZ'], ['name' => 'Termini Imerese', 'country_code' => 'IT'], ['name' => 'Arzignano', 'country_code' => 'IT'], ['name' => 'Cabot', 'country_code' => 'US'], ['name' => 'Bad Honnef am Rhein', 'country_code' => 'DE'], ['name' => 'Pukekohe East', 'country_code' => 'NZ'], ['name' => 'Ludwigsfelde', 'country_code' => 'DE'], ['name' => 'Shuanghe', 'country_code' => 'CN'], ['name' => 'Kalfou', 'country_code' => 'CM'], ['name' => 'Cuart de Poblet', 'country_code' => 'ES'], ['name' => 'Vicksburg', 'country_code' => 'US'], ['name' => 'Bangzha', 'country_code' => 'CN'], ['name' => 'Karoi', 'country_code' => 'ZW'], ['name' => 'Bingen am Rhein', 'country_code' => 'DE'], ['name' => 'Itaiba', 'country_code' => 'BR'], ['name' => 'Sora', 'country_code' => 'IT'], ['name' => 'Kluczbork', 'country_code' => 'PL'], ['name' => 'Lauaan', 'country_code' => 'PH'], ['name' => 'Upper Dublin', 'country_code' => 'US'], ['name' => 'Leon Postigo', 'country_code' => 'PH'], ['name' => 'Alitagtag', 'country_code' => 'PH'], ['name' => 'Dengjiazhuang', 'country_code' => 'CN'], ['name' => 'Schleswig', 'country_code' => 'DE'], ['name' => 'Ayorou', 'country_code' => 'NE'], ['name' => 'Tarragona', 'country_code' => 'PH'], ['name' => 'Farafangana', 'country_code' => 'MG'], ['name' => 'Brawley', 'country_code' => 'US'], ['name' => 'Bouknadel', 'country_code' => 'MA'], ['name' => 'Geretsried', 'country_code' => 'DE'], ['name' => 'Neenah', 'country_code' => 'US'], ['name' => 'Perevalsk', 'country_code' => 'UA'], ['name' => 'Boureit', 'country_code' => 'MA'], ['name' => 'Snoqualmie', 'country_code' => 'US'], ['name' => 'Quipapa', 'country_code' => 'BR'], ['name' => 'Montemor-o-Velho', 'country_code' => 'PT'], ['name' => 'Labytnangi', 'country_code' => 'RU'], ['name' => 'Buesaco', 'country_code' => 'CO'], ['name' => 'Troy', 'country_code' => 'US'], ['name' => 'San Pablo', 'country_code' => 'PH'], ['name' => 'Hercules', 'country_code' => 'US'], ['name' => 'Mahwah', 'country_code' => 'US'], ['name' => 'Scandiano', 'country_code' => 'IT'], ['name' => 'Semirom', 'country_code' => 'IR'], ['name' => 'Lake City', 'country_code' => 'US'], ['name' => 'Astorga', 'country_code' => 'BR'], ['name' => 'Bishop Auckland', 'country_code' => 'GB'], ['name' => 'Magarao', 'country_code' => 'PH'], ['name' => 'Colotenango', 'country_code' => 'GT'], ['name' => 'Paramus', 'country_code' => 'US'], ['name' => 'Lindau', 'country_code' => 'DE'], ['name' => 'Elefsina', 'country_code' => 'GR'], ['name' => 'Okeechobee', 'country_code' => 'US'], ['name' => 'Lanaken', 'country_code' => 'BE'], ['name' => 'Jardim', 'country_code' => 'BR'], ['name' => 'Vierzon', 'country_code' => 'FR'], ['name' => 'Paz de Ariporo', 'country_code' => 'CO'], ['name' => 'Almunecar', 'country_code' => 'ES'], ['name' => 'Khashuri', 'country_code' => 'GE'], ['name' => 'Malyn', 'country_code' => 'UA'], ['name' => 'Sasovo', 'country_code' => 'RU'], ['name' => 'North Kingstown', 'country_code' => 'US'], ['name' => 'Dongfeng', 'country_code' => 'CN'], ['name' => 'Swiecie', 'country_code' => 'PL'], ['name' => 'Vsetin', 'country_code' => 'CZ'], ['name' => 'San Lucas Sacatepequez', 'country_code' => 'GT'], ['name' => 'La Teste-de-Buch', 'country_code' => 'FR'], ['name' => 'Baleno', 'country_code' => 'PH'], ['name' => 'Conde', 'country_code' => 'BR'], ['name' => 'Xishan', 'country_code' => 'CN'], ['name' => 'Haoping', 'country_code' => 'CN'], ['name' => 'Wilmslow', 'country_code' => 'GB'], ['name' => 'Tavira', 'country_code' => 'PT'], ['name' => 'Yuanchang', 'country_code' => 'TW'], ['name' => 'Conception Bay South', 'country_code' => 'CA'], ['name' => 'Pfaffenhofen', 'country_code' => 'DE'], ['name' => 'Castel Volturno', 'country_code' => 'IT'], ['name' => 'Independencia', 'country_code' => 'BR'], ['name' => 'Kulmbach', 'country_code' => 'DE'], ['name' => 'Sao Sebastiao do Cai', 'country_code' => 'BR'], ['name' => 'Lice', 'country_code' => 'TR'], ['name' => 'Cujubim', 'country_code' => 'BR'], ['name' => 'Iacu', 'country_code' => 'BR'], ['name' => 'Puerto Varas', 'country_code' => 'CL'], ['name' => 'Muchamiel', 'country_code' => 'ES'], ['name' => 'Uherske Hradiste', 'country_code' => 'CZ'], ['name' => 'Guarai', 'country_code' => 'BR'], ['name' => 'Aracoiaba', 'country_code' => 'BR'], ['name' => 'Wetteren', 'country_code' => 'BE'], ['name' => 'Wethersfield', 'country_code' => 'US'], ['name' => 'Muscatine', 'country_code' => 'US'], ['name' => 'Palmar de Varela', 'country_code' => 'CO'], ['name' => 'Novopavlovsk', 'country_code' => 'RU'], ['name' => 'Boone', 'country_code' => 'US'], ['name' => 'Itapuranga', 'country_code' => 'BR'], ['name' => 'Moscow', 'country_code' => 'US'], ['name' => 'Oum Hadjer', 'country_code' => 'TD'], ['name' => 'Toktogul', 'country_code' => 'KG'], ['name' => 'Tacaratu', 'country_code' => 'BR'], ['name' => 'Santiago Papasquiaro', 'country_code' => 'MX'], ['name' => 'Sebastian', 'country_code' => 'US'], ['name' => 'Northport', 'country_code' => 'US'], ['name' => 'Helmstedt', 'country_code' => 'DE'], ['name' => 'Mizdah', 'country_code' => 'LY'], ['name' => 'San Manuel', 'country_code' => 'PH'], ['name' => 'Saint-Bruno-de-Montarville', 'country_code' => 'CA'], ['name' => 'Queimadas', 'country_code' => 'BR'], ['name' => 'Natchez', 'country_code' => 'US'], ['name' => 'Zacualtipan', 'country_code' => 'MX'], ['name' => 'Sankt Wendel', 'country_code' => 'DE'], ['name' => 'Conner', 'country_code' => 'PH'], ['name' => 'Winchester', 'country_code' => 'US'], ['name' => 'Odemira', 'country_code' => 'PT'], ['name' => 'Novelda', 'country_code' => 'ES'], ['name' => 'Aparecida do Taboado', 'country_code' => 'BR'], ['name' => 'Zarraga', 'country_code' => 'PH'], ['name' => 'Twentynine Palms', 'country_code' => 'US'], ['name' => 'Roseto degli Abruzzi', 'country_code' => 'IT'], ['name' => 'Sapian', 'country_code' => 'PH'], ['name' => 'Itai', 'country_code' => 'BR'], ['name' => 'Holt', 'country_code' => 'US'], ['name' => 'Stein', 'country_code' => 'NL'], ['name' => 'Zavodoukovsk', 'country_code' => 'RU'], ['name' => 'Traun', 'country_code' => 'AT'], ['name' => 'Duiven', 'country_code' => 'NL'], ['name' => 'Puerto Piritu', 'country_code' => 'VE'], ['name' => 'East St. Louis', 'country_code' => 'US'], ['name' => 'Sachse', 'country_code' => 'US'], ['name' => 'Montgomery', 'country_code' => 'US'], ['name' => 'Tinipuka', 'country_code' => 'ID'], ['name' => 'Renedo', 'country_code' => 'ES'], ['name' => 'Pandami', 'country_code' => 'PH'], ['name' => 'Libourne', 'country_code' => 'FR'], ['name' => 'Gaoya', 'country_code' => 'CN'], ['name' => 'Nocera Superiore', 'country_code' => 'IT'], ['name' => 'Sinait', 'country_code' => 'PH'], ['name' => 'Friedrichsdorf', 'country_code' => 'DE'], ['name' => 'South Ubian', 'country_code' => 'PH'], ['name' => 'Montichiari', 'country_code' => 'IT'], ['name' => 'Tamparan', 'country_code' => 'PH'], ['name' => 'Diapaga', 'country_code' => 'BF'], ['name' => 'Achern', 'country_code' => 'DE'], ['name' => 'Saintes', 'country_code' => 'FR'], ['name' => 'Jumilla', 'country_code' => 'ES'], ['name' => 'Paris', 'country_code' => 'US'], ['name' => 'Haines City', 'country_code' => 'US'], ['name' => 'Blagnac', 'country_code' => 'FR'], ['name' => 'Allen', 'country_code' => 'PH'], ['name' => 'Salamina', 'country_code' => 'GR'], ['name' => 'Cave Spring', 'country_code' => 'US'], ['name' => 'Santo Antonio do Monte', 'country_code' => 'BR'], ['name' => 'Quezon', 'country_code' => 'PH'], ['name' => 'Correggio', 'country_code' => 'IT'], ['name' => 'Caluquembe', 'country_code' => 'AO'], ['name' => 'Istmina', 'country_code' => 'CO'], ['name' => 'Magdalena', 'country_code' => 'PH'], ['name' => 'Kimovsk', 'country_code' => 'RU'], ['name' => 'Merrimack', 'country_code' => 'US'], ['name' => 'Superior', 'country_code' => 'US'], ['name' => 'Karlovo', 'country_code' => 'BG'], ['name' => 'Maozhou', 'country_code' => 'CN'], ['name' => 'Marmara Ereglisi', 'country_code' => 'TR'], ['name' => 'Encruzilhada do Sul', 'country_code' => 'BR'], ['name' => 'Pantelimon', 'country_code' => 'RO'], ['name' => 'West Odessa', 'country_code' => 'US'], ['name' => 'Alamos', 'country_code' => 'MX'], ['name' => 'San Juan Ixcoy', 'country_code' => 'GT'], ['name' => 'Medina', 'country_code' => 'US'], ['name' => 'Conway', 'country_code' => 'US'], ['name' => 'Santa Ana', 'country_code' => 'CO'], ['name' => 'Dolores', 'country_code' => 'AR'], ['name' => 'Barberton', 'country_code' => 'US'], ['name' => 'Espanola', 'country_code' => 'US'], ['name' => 'Koko', 'country_code' => 'NG'], ['name' => 'Armidale', 'country_code' => 'AU'], ['name' => 'Yinajia', 'country_code' => 'CN'], ['name' => 'San Vicente de Canete', 'country_code' => 'PE'], ['name' => 'Cuajinicuilapa', 'country_code' => 'MX'], ['name' => 'Newport', 'country_code' => 'GB'], ['name' => 'Omachi', 'country_code' => 'JP'], ['name' => 'Londonderry', 'country_code' => 'US'], ['name' => 'Erandio', 'country_code' => 'ES'], ['name' => 'Malangawa', 'country_code' => 'NP'], ['name' => 'Dix Hills', 'country_code' => 'US'], ['name' => 'Villanueva de la Serena', 'country_code' => 'ES'], ['name' => 'Wetzikon', 'country_code' => 'CH'], ['name' => 'Rock Springs', 'country_code' => 'US'], ['name' => 'Santa Lucia', 'country_code' => 'PH'], ['name' => 'San Martin', 'country_code' => 'CO'], ['name' => 'Wagrowiec', 'country_code' => 'PL'], ['name' => 'Beersel', 'country_code' => 'BE'], ['name' => 'South Windsor', 'country_code' => 'US'], ['name' => 'Mercer Island', 'country_code' => 'US'], ['name' => 'Mola di Bari', 'country_code' => 'IT'], ['name' => 'Lubbecke', 'country_code' => 'DE'], ['name' => 'Heber', 'country_code' => 'US'], ['name' => 'White Bear Lake', 'country_code' => 'US'], ['name' => 'San Lucas Toliman', 'country_code' => 'GT'], ['name' => 'Kunisakimachi-tsurugawa', 'country_code' => 'JP'], ['name' => 'Lagoa Grande', 'country_code' => 'BR'], ['name' => 'Nova Soure', 'country_code' => 'BR'], ['name' => 'Roth', 'country_code' => 'DE'], ['name' => 'Chester-le-Street', 'country_code' => 'GB'], ['name' => 'Santa Lucia La Reforma', 'country_code' => 'GT'], ['name' => 'Verl', 'country_code' => 'DE'], ['name' => 'Cochrane', 'country_code' => 'CA'], ['name' => 'Laurel', 'country_code' => 'US'], ['name' => 'Marshfield', 'country_code' => 'US'], ['name' => 'Monte Cristi', 'country_code' => 'DO'], ['name' => 'Bagno a Ripoli', 'country_code' => 'IT'], ['name' => 'Yany Kapu', 'country_code' => 'UA'], ['name' => 'Holbrook', 'country_code' => 'US'], ['name' => 'Broadstairs', 'country_code' => 'GB'], ['name' => 'Huejotzingo', 'country_code' => 'MX'], ['name' => 'Kireyevsk', 'country_code' => 'RU'], ['name' => 'Nechi', 'country_code' => 'CO'], ['name' => 'Haskoy', 'country_code' => 'TR'], ['name' => 'Velingrad', 'country_code' => 'BG'], ['name' => 'Tabuelan', 'country_code' => 'PH'], ['name' => 'Bay Point', 'country_code' => 'US'], ['name' => 'Surgidero de Batabano', 'country_code' => 'CU'], ['name' => 'Mansfield', 'country_code' => 'US'], ['name' => 'Pereira Barreto', 'country_code' => 'BR'], ['name' => 'Woodstock', 'country_code' => 'US'], ['name' => 'Nanpingcun', 'country_code' => 'CN'], ['name' => 'Firmat', 'country_code' => 'AR'], ['name' => 'Lochearn', 'country_code' => 'US'], ['name' => 'Gross-Gerau', 'country_code' => 'DE'], ['name' => 'Zittau', 'country_code' => 'DE'], ['name' => 'Umbauba', 'country_code' => 'BR'], ['name' => 'Santa Rosa de Viterbo', 'country_code' => 'BR'], ['name' => 'Green', 'country_code' => 'US'], ['name' => 'Oulad Said', 'country_code' => 'MA'], ['name' => 'Felipe Carrillo Puerto', 'country_code' => 'MX'], ['name' => 'Wall', 'country_code' => 'US'], ['name' => 'Saky', 'country_code' => 'UA'], ['name' => 'Pfungstadt', 'country_code' => 'DE'], ['name' => 'Saint-Ouen-l Aumone', 'country_code' => 'FR'], ['name' => 'Aimores', 'country_code' => 'BR'], ['name' => 'Carandai', 'country_code' => 'BR'], ['name' => 'Ishii', 'country_code' => 'JP'], ['name' => 'Rinteln', 'country_code' => 'DE'], ['name' => 'Carahue', 'country_code' => 'CL'], ['name' => 'Cueramaro', 'country_code' => 'MX'], ['name' => 'Panelas', 'country_code' => 'BR'], ['name' => 'Golborne', 'country_code' => 'GB'], ['name' => 'Etampes', 'country_code' => 'FR'], ['name' => 'Thetford Mines', 'country_code' => 'CA'], ['name' => 'Lamzoudia', 'country_code' => 'MA'], ['name' => 'Alhaurin el Grande', 'country_code' => 'ES'], ['name' => 'Owatonna', 'country_code' => 'US'], ['name' => 'Ditzingen', 'country_code' => 'DE'], ['name' => 'Tepetlaoxtoc', 'country_code' => 'MX'], ['name' => 'Adra', 'country_code' => 'ES'], ['name' => 'Pooler', 'country_code' => 'US'], ['name' => 'Lennestadt', 'country_code' => 'DE'], ['name' => 'Exeter', 'country_code' => 'US'], ['name' => 'Haiwei', 'country_code' => 'CN'], ['name' => 'Balabanovo', 'country_code' => 'RU'], ['name' => 'Haisyn', 'country_code' => 'UA'], ['name' => 'Datu Piang', 'country_code' => 'PH'], ['name' => 'Yolombo', 'country_code' => 'CO'], ['name' => 'Bom Jesus', 'country_code' => 'BR'], ['name' => 'Siofok', 'country_code' => 'HU'], ['name' => 'Madison', 'country_code' => 'US'], ['name' => 'Nesher', 'country_code' => 'IL'], ['name' => 'Sarrat', 'country_code' => 'PH'], ['name' => 'Lancaster', 'country_code' => 'US'], ['name' => 'Otradnoye', 'country_code' => 'RU'], ['name' => 'Oliva', 'country_code' => 'ES'], ['name' => 'Veenoord', 'country_code' => 'NL'], ['name' => 'Lanling', 'country_code' => 'CN'], ['name' => 'Pirai do Sul', 'country_code' => 'BR'], ['name' => 'Rottweil', 'country_code' => 'DE'], ['name' => 'Austin', 'country_code' => 'US'], ['name' => 'Mata Grande', 'country_code' => 'BR'], ['name' => 'Fengruncun', 'country_code' => 'CN'], ['name' => 'Lockport', 'country_code' => 'US'], ['name' => 'Oulad Tayeb', 'country_code' => 'MA'], ['name' => 'Ciempozuelos', 'country_code' => 'ES'], ['name' => 'Puebla de Vallbona', 'country_code' => 'ES'], ['name' => 'Poro', 'country_code' => 'PH'], ['name' => 'Franklin', 'country_code' => 'US'], ['name' => 'Wiehl', 'country_code' => 'DE'], ['name' => 'Courtenay', 'country_code' => 'CA'], ['name' => 'Olesa de Montserrat', 'country_code' => 'ES'], ['name' => 'Sao Geraldo do Araguaia', 'country_code' => 'BR'], ['name' => 'Vynohradiv', 'country_code' => 'UA'], ['name' => 'Gosforth', 'country_code' => 'GB'], ['name' => 'South Salt Lake', 'country_code' => 'US'], ['name' => 'Plettenberg', 'country_code' => 'DE'], ['name' => 'Legnago', 'country_code' => 'IT'], ['name' => 'Tarpon Springs', 'country_code' => 'US'], ['name' => 'Edgewood', 'country_code' => 'US'], ['name' => 'Soure', 'country_code' => 'BR'], ['name' => 'Busselton', 'country_code' => 'AU'], ['name' => 'Rudolstadt', 'country_code' => 'DE'], ['name' => 'Tougue', 'country_code' => 'GN'], ['name' => 'Dingalan', 'country_code' => 'PH'], ['name' => 'Santa Maria', 'country_code' => 'PH'], ['name' => 'Stassfurt', 'country_code' => 'DE'], ['name' => 'Bluffton', 'country_code' => 'US'], ['name' => 'Sevierville', 'country_code' => 'US'], ['name' => 'Forest Grove', 'country_code' => 'US'], ['name' => 'Paete', 'country_code' => 'PH'], ['name' => 'Yanyan', 'country_code' => 'CN'], ['name' => 'Randolph', 'country_code' => 'US'], ['name' => 'Solano', 'country_code' => 'CO'], ['name' => 'Bugho', 'country_code' => 'PH'], ['name' => 'Sun City West', 'country_code' => 'US'], ['name' => 'Thiene', 'country_code' => 'IT'], ['name' => 'Luzilandia', 'country_code' => 'BR'], ['name' => 'Cambara', 'country_code' => 'BR'], ['name' => 'Yanaul', 'country_code' => 'RU'], ['name' => 'South Portland', 'country_code' => 'US'], ['name' => 'Ruskin', 'country_code' => 'US'], ['name' => 'Denison', 'country_code' => 'US'], ['name' => 'Maaseik', 'country_code' => 'BE'], ['name' => 'Farmington', 'country_code' => 'US'], ['name' => 'Brilon', 'country_code' => 'DE'], ['name' => 'Oud-Beijerland', 'country_code' => 'NL'], ['name' => 'Eidsvoll', 'country_code' => 'NO'], ['name' => 'Del Gallego', 'country_code' => 'PH'], ['name' => 'Ain Aicha', 'country_code' => 'MA'], ['name' => 'Piagapo', 'country_code' => 'PH'], ['name' => 'Alta Floresta D Oeste', 'country_code' => 'BR'], ['name' => 'Samtredia', 'country_code' => 'GE'], ['name' => 'Tanabi', 'country_code' => 'BR'], ['name' => 'Skawina', 'country_code' => 'PL'], ['name' => 'Keystone', 'country_code' => 'US'], ['name' => 'Moon', 'country_code' => 'US'], ['name' => 'Korostyshiv', 'country_code' => 'UA'], ['name' => 'Dalmine', 'country_code' => 'IT'], ['name' => 'Workington', 'country_code' => 'GB'], ['name' => 'Jequitinhonha', 'country_code' => 'BR'], ['name' => 'Witham', 'country_code' => 'GB'], ['name' => 'Sandona', 'country_code' => 'CO'], ['name' => 'Vistahermosa', 'country_code' => 'CO'], ['name' => 'Laon', 'country_code' => 'FR'], ['name' => 'Tamboril', 'country_code' => 'BR'], ['name' => 'Markkleeberg', 'country_code' => 'DE'], ['name' => 'San Jose', 'country_code' => 'CO'], ['name' => 'La Union', 'country_code' => 'CO'], ['name' => 'Inta', 'country_code' => 'RU'], ['name' => 'Capao do Leao', 'country_code' => 'BR'], ['name' => 'Ruvo di Puglia', 'country_code' => 'IT'], ['name' => 'Yamagata', 'country_code' => 'JP'], ['name' => 'Wumaying', 'country_code' => 'CN'], ['name' => 'Lamut', 'country_code' => 'PH'], ['name' => 'Ituporanga', 'country_code' => 'BR'], ['name' => 'Ozery', 'country_code' => 'RU'], ['name' => 'San Pablo', 'country_code' => 'PH'], ['name' => 'La Valette-du-Var', 'country_code' => 'FR'], ['name' => 'Tupaciguara', 'country_code' => 'BR'], ['name' => 'Albergaria-a-Velha', 'country_code' => 'PT'], ['name' => 'Taupo', 'country_code' => 'NZ'], ['name' => 'Sevlievo', 'country_code' => 'BG'], ['name' => 'Harsewinkel', 'country_code' => 'DE'], ['name' => 'Cuijk', 'country_code' => 'NL'], ['name' => 'Meckenheim', 'country_code' => 'DE'], ['name' => 'Bom Jesus', 'country_code' => 'BR'], ['name' => 'Saydnaya', 'country_code' => 'SY'], ['name' => 'Areia Branca', 'country_code' => 'BR'], ['name' => 'Claremore', 'country_code' => 'US'], ['name' => 'Pinheiral', 'country_code' => 'BR'], ['name' => 'Whitehaven', 'country_code' => 'GB'], ['name' => 'Homewood', 'country_code' => 'US'], ['name' => 'Muret', 'country_code' => 'FR'], ['name' => 'Formosa do Rio Preto', 'country_code' => 'BR'], ['name' => 'Sao Joao da Ponte', 'country_code' => 'BR'], ['name' => 'Chiromo', 'country_code' => 'MW'], ['name' => 'Mengdan', 'country_code' => 'CN'], ['name' => 'Ibia', 'country_code' => 'BR'], ['name' => 'La Blanca', 'country_code' => 'GT'], ['name' => 'Magog', 'country_code' => 'CA'], ['name' => 'Hudson', 'country_code' => 'US'], ['name' => 'Mednogorsk', 'country_code' => 'RU'], ['name' => 'Pandag', 'country_code' => 'PH'], ['name' => 'Tabina', 'country_code' => 'PH'], ['name' => 'Horb am Neckar', 'country_code' => 'DE'], ['name' => 'Choconta', 'country_code' => 'CO'], ['name' => 'Farmington', 'country_code' => 'US'], ['name' => 'Westerlo', 'country_code' => 'BE'], ['name' => 'Salamanca', 'country_code' => 'CL'], ['name' => 'Columbine', 'country_code' => 'US'], ['name' => 'Zheleznovodsk', 'country_code' => 'RU'], ['name' => 'Pinal de Amoles', 'country_code' => 'MX'], ['name' => 'Canyon Lake', 'country_code' => 'US'], ['name' => 'Lopez Jaena', 'country_code' => 'PH'], ['name' => 'Oulad Barhil', 'country_code' => 'MA'], ['name' => 'Kingsville', 'country_code' => 'US'], ['name' => 'Kochubeyevskoye', 'country_code' => 'RU'], ['name' => 'Forest City', 'country_code' => 'US'], ['name' => 'Cabangan', 'country_code' => 'PH'], ['name' => 'Merelbeke', 'country_code' => 'BE'], ['name' => 'Salem', 'country_code' => 'US'], ['name' => 'Baar', 'country_code' => 'CH'], ['name' => 'Bainbridge Island', 'country_code' => 'US'], ['name' => 'Norden', 'country_code' => 'DE'], ['name' => 'Salzkotten', 'country_code' => 'DE'], ['name' => 'Petershagen', 'country_code' => 'DE'], ['name' => 'Dedham', 'country_code' => 'US'], ['name' => 'Khed Brahma', 'country_code' => 'IN'], ['name' => 'Caledonia', 'country_code' => 'US'], ['name' => 'Kamo', 'country_code' => 'JP'], ['name' => 'Eloi Mendes', 'country_code' => 'BR'], ['name' => 'De Witt', 'country_code' => 'US'], ['name' => 'Cajuru', 'country_code' => 'BR'], ['name' => 'Champlin', 'country_code' => 'US'], ['name' => 'El Ghiate', 'country_code' => 'MA'], ['name' => 'Sprockhovel', 'country_code' => 'DE'], ['name' => 'Lom', 'country_code' => 'BG'], ['name' => 'Thetford', 'country_code' => 'GB'], ['name' => 'Kariba', 'country_code' => 'ZW'], ['name' => 'Frederikshavn', 'country_code' => 'DK'], ['name' => 'Camalaniugan', 'country_code' => 'PH'], ['name' => 'Xiaolongtan', 'country_code' => 'CN'], ['name' => 'Safsaf', 'country_code' => 'MA'], ['name' => 'Koscierzyna', 'country_code' => 'PL'], ['name' => 'Anastacio', 'country_code' => 'BR'], ['name' => 'Sastamala', 'country_code' => 'FI'], ['name' => 'Apiai', 'country_code' => 'BR'], ['name' => 'Edwardsville', 'country_code' => 'US'], ['name' => 'Pinillos', 'country_code' => 'CO'], ['name' => 'Genzano di Roma', 'country_code' => 'IT'], ['name' => 'Rochefort', 'country_code' => 'FR'], ['name' => 'Fairland', 'country_code' => 'US'], ['name' => 'Bad Oldesloe', 'country_code' => 'DE'], ['name' => 'Morozovsk', 'country_code' => 'RU'], ['name' => 'Elk River', 'country_code' => 'US'], ['name' => 'Tono', 'country_code' => 'JP'], ['name' => 'Onda', 'country_code' => 'ES'], ['name' => 'Idstein', 'country_code' => 'DE'], ['name' => 'Rosemount', 'country_code' => 'US'], ['name' => 'San Isidro', 'country_code' => 'PH'], ['name' => 'Portogruaro', 'country_code' => 'IT'], ['name' => 'Sezze', 'country_code' => 'IT'], ['name' => 'Fountain Hills', 'country_code' => 'US'], ['name' => 'Espera Feliz', 'country_code' => 'BR'], ['name' => 'Droitwich', 'country_code' => 'GB'], ['name' => 'Otuzco', 'country_code' => 'PE'], ['name' => 'Cambre', 'country_code' => 'ES'], ['name' => 'Paoay', 'country_code' => 'PH'], ['name' => 'Agrestina', 'country_code' => 'BR'], ['name' => 'Shaqlawah', 'country_code' => 'IQ'], ['name' => 'Santa Maria Tonameca', 'country_code' => 'MX'], ['name' => 'Raahe', 'country_code' => 'FI'], ['name' => 'Tarangnan', 'country_code' => 'PH'], ['name' => 'Socorro', 'country_code' => 'CO'], ['name' => 'Icatu', 'country_code' => 'BR'], ['name' => 'Quissama', 'country_code' => 'BR'], ['name' => 'Nedre Eiker', 'country_code' => 'NO'], ['name' => 'Great Sankey', 'country_code' => 'GB'], ['name' => 'Charentsavan', 'country_code' => 'AM'], ['name' => 'Delitzsch', 'country_code' => 'DE'], ['name' => 'Atkarsk', 'country_code' => 'RU'], ['name' => 'Sovetskaya Gavan ', 'country_code' => 'RU'], ['name' => 'Villarrobledo', 'country_code' => 'ES'], ['name' => 'Belvidere', 'country_code' => 'US'], ['name' => 'Ereymentau', 'country_code' => 'KZ'], ['name' => 'Yuzhang', 'country_code' => 'CN'], ['name' => 'Riverside', 'country_code' => 'US'], ['name' => 'Reading', 'country_code' => 'US'], ['name' => 'Middle River', 'country_code' => 'US'], ['name' => 'Walpole', 'country_code' => 'US'], ['name' => 'Muskego', 'country_code' => 'US'], ['name' => 'Jaleshwar', 'country_code' => 'NP'], ['name' => 'Wolfsberg', 'country_code' => 'AT'], ['name' => 'Hazelwood', 'country_code' => 'US'], ['name' => 'Scottsbluff', 'country_code' => 'US'], ['name' => 'Tubay', 'country_code' => 'PH'], ['name' => 'Pitsea', 'country_code' => 'GB'], ['name' => 'Dalupo', 'country_code' => 'CN'], ['name' => 'Santo Tomas', 'country_code' => 'PE'], ['name' => 'Saguiaran', 'country_code' => 'PH'], ['name' => 'Uaua', 'country_code' => 'BR'], ['name' => 'Derry', 'country_code' => 'US'], ['name' => 'Matriz de Camarajibe', 'country_code' => 'BR'], ['name' => 'Krems an der Donau', 'country_code' => 'AT'], ['name' => 'Whitehorse', 'country_code' => 'CA'], ['name' => 'Bialogard', 'country_code' => 'PL'], ['name' => 'Doctor Mora', 'country_code' => 'MX'], ['name' => 'Sakai', 'country_code' => 'JP'], ['name' => 'Fresno', 'country_code' => 'US'], ['name' => 'Rockaway', 'country_code' => 'US'], ['name' => 'Turnu Magurele', 'country_code' => 'RO'], ['name' => 'Ridgewood', 'country_code' => 'US'], ['name' => 'Wujiaying', 'country_code' => 'CN'], ['name' => 'Piritiba', 'country_code' => 'BR'], ['name' => 'Cruz', 'country_code' => 'BR'], ['name' => 'Santa Maria do Para', 'country_code' => 'BR'], ['name' => 'Slavutych', 'country_code' => 'UA'], ['name' => 'Yucca Valley', 'country_code' => 'US'], ['name' => 'Ridgefield', 'country_code' => 'US'], ['name' => 'Torrelodones', 'country_code' => 'ES'], ['name' => 'Iraquara', 'country_code' => 'BR'], ['name' => 'Branson', 'country_code' => 'US'], ['name' => 'Sultepec', 'country_code' => 'MX'], ['name' => 'Dainyor', 'country_code' => 'PK'], ['name' => 'Seaford', 'country_code' => 'GB'], ['name' => 'Uvarovo', 'country_code' => 'RU'], ['name' => 'Sandomierz', 'country_code' => 'PL'], ['name' => 'Caransebes', 'country_code' => 'RO'], ['name' => 'Ma bar', 'country_code' => 'YE'], ['name' => 'Valparaiso', 'country_code' => 'BR'], ['name' => 'Eisenhuttenstadt', 'country_code' => 'DE'], ['name' => 'Zwevegem', 'country_code' => 'BE'], ['name' => 'Balch Springs', 'country_code' => 'US'], ['name' => 'Woolwich', 'country_code' => 'CA'], ['name' => 'Ubach-Palenberg', 'country_code' => 'DE'], ['name' => 'Warstein', 'country_code' => 'DE'], ['name' => 'Magenta', 'country_code' => 'IT'], ['name' => 'Ronnenberg', 'country_code' => 'DE'], ['name' => 'Santa Gertrudes', 'country_code' => 'BR'], ['name' => 'Espelkamp', 'country_code' => 'DE'], ['name' => 'Timberwood Park', 'country_code' => 'US'], ['name' => 'Olpe', 'country_code' => 'DE'], ['name' => 'De Pere', 'country_code' => 'US'], ['name' => 'Ribas do Rio Pardo', 'country_code' => 'BR'], ['name' => 'Piranhas', 'country_code' => 'BR'], ['name' => 'Socastee', 'country_code' => 'US'], ['name' => 'Lagindingan', 'country_code' => 'PH'], ['name' => 'Susquehanna', 'country_code' => 'US'], ['name' => 'Rishton', 'country_code' => 'UZ'], ['name' => 'Schmallenberg', 'country_code' => 'DE'], ['name' => 'Fajardo', 'country_code' => 'PR'], ['name' => 'Marysville', 'country_code' => 'US'], ['name' => 'San Martin Sacatepequez', 'country_code' => 'GT'], ['name' => 'Madaoua', 'country_code' => 'NE'], ['name' => 'Sao Joao dos Patos', 'country_code' => 'BR'], ['name' => 'Derby', 'country_code' => 'US'], ['name' => 'Zarautz', 'country_code' => 'ES'], ['name' => 'Trebisov', 'country_code' => 'SK'], ['name' => 'Manito', 'country_code' => 'PH'], ['name' => 'Litomerice', 'country_code' => 'CZ'], ['name' => 'Betera', 'country_code' => 'ES'], ['name' => 'Plymstock', 'country_code' => 'GB'], ['name' => 'Shitan', 'country_code' => 'CN'], ['name' => 'Vertou', 'country_code' => 'FR'], ['name' => 'Valls', 'country_code' => 'ES'], ['name' => 'Wilsonville', 'country_code' => 'US'], ['name' => 'Echemmaia Est', 'country_code' => 'MA'], ['name' => 'Wil', 'country_code' => 'CH'], ['name' => 'Sharya', 'country_code' => 'RU'], ['name' => 'Ampatuan', 'country_code' => 'PH'], ['name' => 'Douar Olad. Salem', 'country_code' => 'MA'], ['name' => 'Ottaviano', 'country_code' => 'IT'], ['name' => 'Ouaoula', 'country_code' => 'MA'], ['name' => 'Clayton', 'country_code' => 'US'], ['name' => 'Brookings', 'country_code' => 'US'], ['name' => 'Pavlovsk', 'country_code' => 'RU'], ['name' => 'Liangwu', 'country_code' => 'CN'], ['name' => 'Evesham', 'country_code' => 'GB'], ['name' => 'Cabrican', 'country_code' => 'GT'], ['name' => 'Aquila', 'country_code' => 'MX'], ['name' => 'Leoben', 'country_code' => 'AT'], ['name' => 'North Laurel', 'country_code' => 'US'], ['name' => 'Breclav', 'country_code' => 'CZ'], ['name' => 'Montevarchi', 'country_code' => 'IT'], ['name' => 'Sierra Bullones', 'country_code' => 'PH'], ['name' => 'Walker', 'country_code' => 'US'], ['name' => 'Colon', 'country_code' => 'AR'], ['name' => 'Wyandotte', 'country_code' => 'US'], ['name' => 'Santa Rosa', 'country_code' => 'CO'], ['name' => 'Grandview', 'country_code' => 'US'], ['name' => 'Dongxiaozhai', 'country_code' => 'CN'], ['name' => 'Forest Lake', 'country_code' => 'US'], ['name' => 'Igreja Nova', 'country_code' => 'BR'], ['name' => 'Mabini', 'country_code' => 'PH'], ['name' => 'Middleborough', 'country_code' => 'US'], ['name' => 'Chesapeake Beach', 'country_code' => 'US'], ['name' => 'Altavas', 'country_code' => 'PH'], ['name' => 'Palm City', 'country_code' => 'US'], ['name' => 'Hudson', 'country_code' => 'US'], ['name' => 'Pao de Acucar', 'country_code' => 'BR'], ['name' => 'Kulachi', 'country_code' => 'PK'], ['name' => 'Zhuchangba', 'country_code' => 'CN'], ['name' => 'Isernhagen-Sud', 'country_code' => 'DE'], ['name' => 'Aytos', 'country_code' => 'BG'], ['name' => 'Pangil', 'country_code' => 'PH'], ['name' => 'Lincoln', 'country_code' => 'AR'], ['name' => 'Simsbury', 'country_code' => 'US'], ['name' => 'Calahorra', 'country_code' => 'ES'], ['name' => 'Oga', 'country_code' => 'JP'], ['name' => 'Swatara', 'country_code' => 'US'], ['name' => 'Raisio', 'country_code' => 'FI'], ['name' => 'Cesky Tesin', 'country_code' => 'CZ'], ['name' => 'Hodonin', 'country_code' => 'CZ'], ['name' => 'Villanueva', 'country_code' => 'CO'], ['name' => 'Clarksburg', 'country_code' => 'US'], ['name' => 'Ziketan', 'country_code' => 'CN'], ['name' => 'Ludinghausen', 'country_code' => 'DE'], ['name' => 'Kakonko', 'country_code' => 'TZ'], ['name' => 'Buy', 'country_code' => 'RU'], ['name' => 'Tauramena', 'country_code' => 'CO'], ['name' => 'South Elgin', 'country_code' => 'US'], ['name' => 'Samaxi', 'country_code' => 'AZ'], ['name' => 'Algeciras', 'country_code' => 'CO'], ['name' => 'Auburn Hills', 'country_code' => 'US'], ['name' => 'Cadca', 'country_code' => 'SK'], ['name' => 'Juayua', 'country_code' => 'SV'], ['name' => 'Ipameri', 'country_code' => 'BR'], ['name' => 'Bela Vista', 'country_code' => 'BR'], ['name' => 'San Enrique', 'country_code' => 'PH'], ['name' => 'Ohringen', 'country_code' => 'DE'], ['name' => 'Larvik', 'country_code' => 'NO'], ['name' => 'Giulianova', 'country_code' => 'IT'], ['name' => 'Vizela', 'country_code' => 'PT'], ['name' => 'Dorohoi', 'country_code' => 'RO'], ['name' => 'Caninde de Sao Francisco', 'country_code' => 'BR'], ['name' => 'Chebba', 'country_code' => 'TN'], ['name' => 'North Tustin', 'country_code' => 'US'], ['name' => 'Igaracu do Tiete', 'country_code' => 'BR'], ['name' => 'Ontario', 'country_code' => 'US'], ['name' => 'Takhli', 'country_code' => 'TH'], ['name' => 'Albenga', 'country_code' => 'IT'], ['name' => 'Arad', 'country_code' => 'IL'], ['name' => 'Ardmore', 'country_code' => 'US'], ['name' => 'Quirino', 'country_code' => 'PH'], ['name' => 'Hastings', 'country_code' => 'US'], ['name' => 'Burlington', 'country_code' => 'US'], ['name' => 'Shangtianba', 'country_code' => 'CN'], ['name' => 'Tanglin', 'country_code' => 'CN'], ['name' => 'Talisayan', 'country_code' => 'PH'], ['name' => 'Itabaiana', 'country_code' => 'BR'], ['name' => 'Las Cabras', 'country_code' => 'CL'], ['name' => 'Hannoversch Munden', 'country_code' => 'DE'], ['name' => 'Heiloo', 'country_code' => 'NL'], ['name' => 'Roissy-en-Brie', 'country_code' => 'FR'], ['name' => 'Alvares Machado', 'country_code' => 'BR'], ['name' => 'Sanchez-Mira', 'country_code' => 'PH'], ['name' => 'Norton Shores', 'country_code' => 'US'], ['name' => 'Kernersville', 'country_code' => 'US'], ['name' => 'Rickmansworth', 'country_code' => 'GB'], ['name' => 'Windham', 'country_code' => 'US'], ['name' => 'Tairan Camp', 'country_code' => 'PH'], ['name' => 'Khajuraho', 'country_code' => 'IN'], ['name' => 'Meiningen', 'country_code' => 'DE'], ['name' => 'Aurora', 'country_code' => 'BR'], ['name' => 'Yayas de Viajama', 'country_code' => 'DO'], ['name' => 'Easton', 'country_code' => 'US'], ['name' => 'Sugar Hill', 'country_code' => 'US'], ['name' => 'Hoensbroek', 'country_code' => 'NL'], ['name' => 'Attendorn', 'country_code' => 'DE'], ['name' => 'San Borja', 'country_code' => 'BO'], ['name' => 'Pueblo Bello', 'country_code' => 'CO'], ['name' => 'Freha', 'country_code' => 'DZ'], ['name' => 'Craibas', 'country_code' => 'BR'], ['name' => 'Emporia', 'country_code' => 'US'], ['name' => 'Nasukarasuyama', 'country_code' => 'JP'], ['name' => 'Urbano Santos', 'country_code' => 'BR'], ['name' => 'Mekla', 'country_code' => 'DZ'], ['name' => 'Sulmona', 'country_code' => 'IT'], ['name' => 'Infanta', 'country_code' => 'PH'], ['name' => 'Zernograd', 'country_code' => 'RU'], ['name' => 'Canhotinho', 'country_code' => 'BR'], ['name' => 'Prosper', 'country_code' => 'US'], ['name' => 'La Huerta', 'country_code' => 'MX'], ['name' => 'Pirajui', 'country_code' => 'BR'], ['name' => 'Valdivia', 'country_code' => 'CO'], ['name' => 'Gyal', 'country_code' => 'HU'], ['name' => 'El Retorno', 'country_code' => 'CO'], ['name' => 'Maguing', 'country_code' => 'PH'], ['name' => 'Cedro', 'country_code' => 'BR'], ['name' => 'Radauti', 'country_code' => 'RO'], ['name' => 'Fossano', 'country_code' => 'IT'], ['name' => 'Dubnica nad Vahom', 'country_code' => 'SK'], ['name' => 'Almansa', 'country_code' => 'ES'], ['name' => 'Vernon', 'country_code' => 'FR'], ['name' => 'Itaporanga', 'country_code' => 'BR'], ['name' => 'Kaniv', 'country_code' => 'UA'], ['name' => 'Syke', 'country_code' => 'DE'], ['name' => 'Waldshut-Tiengen', 'country_code' => 'DE'], ['name' => 'Watsa', 'country_code' => 'CD'], ['name' => 'Almonte', 'country_code' => 'ES'], ['name' => 'San Agustin Loxicha', 'country_code' => 'MX'], ['name' => 'Waldkraiburg', 'country_code' => 'DE'], ['name' => 'Rathenow', 'country_code' => 'DE'], ['name' => 'Palmetto Bay', 'country_code' => 'US'], ['name' => 'Guabiruba', 'country_code' => 'BR'], ['name' => 'Svishtov', 'country_code' => 'BG'], ['name' => 'Clarence-Rockland', 'country_code' => 'CA'], ['name' => 'Somerset', 'country_code' => 'US'], ['name' => 'Mahdishahr', 'country_code' => 'IR'], ['name' => 'Limbach-Oberfrohna', 'country_code' => 'DE'], ['name' => 'Copertino', 'country_code' => 'IT'], ['name' => 'Avon Lake', 'country_code' => 'US'], ['name' => 'Pyrgos', 'country_code' => 'GR'], ['name' => 'Forquilha', 'country_code' => 'BR'], ['name' => 'Malitbog', 'country_code' => 'PH'], ['name' => 'Neftekumsk', 'country_code' => 'RU'], ['name' => 'Xinxing', 'country_code' => 'CN'], ['name' => 'Tamilisan', 'country_code' => 'PH'], ['name' => 'Lathrop', 'country_code' => 'US'], ['name' => 'Loma Linda', 'country_code' => 'US'], ['name' => 'Natividad', 'country_code' => 'PH'], ['name' => 'Pura', 'country_code' => 'PH'], ['name' => 'Putten', 'country_code' => 'NL'], ['name' => 'Homer Glen', 'country_code' => 'US'], ['name' => 'Tifton', 'country_code' => 'US'], ['name' => 'Senftenberg', 'country_code' => 'DE'], ['name' => 'Tocopilla', 'country_code' => 'CL'], ['name' => 'Dinuba', 'country_code' => 'US'], ['name' => 'East Hempfield', 'country_code' => 'US'], ['name' => 'Poblacion', 'country_code' => 'PH'], ['name' => 'Bad Soden am Taunus', 'country_code' => 'DE'], ['name' => 'Bloomingdale', 'country_code' => 'US'], ['name' => 'Stroitel', 'country_code' => 'RU'], ['name' => 'Amarapura', 'country_code' => 'MM'], ['name' => 'Selydove', 'country_code' => 'UA'], ['name' => 'Westmont', 'country_code' => 'US'], ['name' => 'Clinton', 'country_code' => 'US'], ['name' => 'Sao Jeronimo', 'country_code' => 'BR'], ['name' => 'Salvaterra', 'country_code' => 'BR'], ['name' => 'Vulcan', 'country_code' => 'RO'], ['name' => 'Porto de Mos', 'country_code' => 'PT'], ['name' => 'Hujiachi', 'country_code' => 'CN'], ['name' => 'Opelousas', 'country_code' => 'US'], ['name' => 'Kotelnich', 'country_code' => 'RU'], ['name' => 'Camas', 'country_code' => 'US'], ['name' => 'Orbassano', 'country_code' => 'IT'], ['name' => 'Semenov', 'country_code' => 'RU'], ['name' => 'Harvey', 'country_code' => 'US'], ['name' => 'Medford', 'country_code' => 'US'], ['name' => 'Trotwood', 'country_code' => 'US'], ['name' => 'West Memphis', 'country_code' => 'US'], ['name' => 'Cupira', 'country_code' => 'BR'], ['name' => 'Qiaomaichuan', 'country_code' => 'CN'], ['name' => 'Collinsville', 'country_code' => 'US'], ['name' => 'Longonjo', 'country_code' => 'AO'], ['name' => 'Garcia Hernandez', 'country_code' => 'PH'], ['name' => 'Mequon', 'country_code' => 'US'], ['name' => 'Joaquim Gomes', 'country_code' => 'BR'], ['name' => 'Ellensburg', 'country_code' => 'US'], ['name' => 'Rodniki', 'country_code' => 'RU'], ['name' => 'Nittedal', 'country_code' => 'NO'], ['name' => 'Marple', 'country_code' => 'GB'], ['name' => 'Ottumwa', 'country_code' => 'US'], ['name' => 'Chantilly', 'country_code' => 'US'], ['name' => 'Puerto Guzman', 'country_code' => 'CO'], ['name' => 'Santo Antonio', 'country_code' => 'BR'], ['name' => 'Asino', 'country_code' => 'RU'], ['name' => 'Al Qusayr', 'country_code' => 'EG'], ['name' => 'Shelbyville', 'country_code' => 'US'], ['name' => 'Buturlinovka', 'country_code' => 'RU'], ['name' => 'Casiguran', 'country_code' => 'PH'], ['name' => 'Goulburn', 'country_code' => 'AU'], ['name' => 'Pedra Azul', 'country_code' => 'BR'], ['name' => 'Westford', 'country_code' => 'US'], ['name' => 'La Montanita', 'country_code' => 'CO'], ['name' => 'Orchards', 'country_code' => 'US'], ['name' => 'Newport', 'country_code' => 'US'], ['name' => 'Goirle', 'country_code' => 'NL'], ['name' => 'San Miguel', 'country_code' => 'PH'], ['name' => 'Neropolis', 'country_code' => 'BR'], ['name' => 'Dole', 'country_code' => 'FR'], ['name' => 'Nueva Paz', 'country_code' => 'CU'], ['name' => 'Inhapim', 'country_code' => 'BR'], ['name' => 'Douar Ayn Dfali', 'country_code' => 'MA'], ['name' => 'Rimavska Sobota', 'country_code' => 'SK'], ['name' => 'Calpe', 'country_code' => 'ES'], ['name' => 'Novo Aripuana', 'country_code' => 'BR'], ['name' => 'Donmatias', 'country_code' => 'CO'], ['name' => 'Saginaw', 'country_code' => 'US'], ['name' => 'Cogua', 'country_code' => 'CO'], ['name' => 'Alfter', 'country_code' => 'DE'], ['name' => 'Saint-Laurent-du-Maroni', 'country_code' => 'GF'], ['name' => 'Sao Lourenco d Oeste', 'country_code' => 'BR'], ['name' => 'Manage', 'country_code' => 'BE'], ['name' => 'Port Angeles', 'country_code' => 'US'], ['name' => 'Marsella', 'country_code' => 'CO'], ['name' => 'Brandon', 'country_code' => 'US'], ['name' => 'Biancavilla', 'country_code' => 'IT'], ['name' => 'Santiago', 'country_code' => 'PH'], ['name' => 'Sun City Center', 'country_code' => 'US'], ['name' => 'Sarangani', 'country_code' => 'PH'], ['name' => 'Inkster', 'country_code' => 'US'], ['name' => 'Buenavista', 'country_code' => 'PH'], ['name' => 'Wednesfield', 'country_code' => 'GB'], ['name' => 'Thomasville', 'country_code' => 'US'], ['name' => 'Dazhuang', 'country_code' => 'CN'], ['name' => 'Ponca City', 'country_code' => 'US'], ['name' => 'Catano', 'country_code' => 'PR'], ['name' => 'Gazojak', 'country_code' => 'TM'], ['name' => 'Tecolutla', 'country_code' => 'MX'], ['name' => 'Solsona', 'country_code' => 'PH'], ['name' => 'Oiapoque', 'country_code' => 'BR'], ['name' => 'Camillus', 'country_code' => 'US'], ['name' => 'West Melbourne', 'country_code' => 'US'], ['name' => 'Warrington', 'country_code' => 'US'], ['name' => 'Feriana', 'country_code' => 'TN'], ['name' => 'Faribault', 'country_code' => 'US'], ['name' => 'Springfield', 'country_code' => 'US'], ['name' => 'San Benito', 'country_code' => 'US'], ['name' => 'Fort Washington', 'country_code' => 'US'], ['name' => 'Diest', 'country_code' => 'BE'], ['name' => 'Ibirapitanga', 'country_code' => 'BR'], ['name' => 'Pietrasanta', 'country_code' => 'IT'], ['name' => 'Lincolnton', 'country_code' => 'US'], ['name' => 'Halfmoon', 'country_code' => 'US'], ['name' => 'Bierun Stary', 'country_code' => 'PL'], ['name' => 'West Springfield', 'country_code' => 'US'], ['name' => 'Simpsonville', 'country_code' => 'US'], ['name' => 'Ivrea', 'country_code' => 'IT'], ['name' => 'Setti Fatma', 'country_code' => 'MA'], ['name' => 'Krychaw', 'country_code' => 'BY'], ['name' => 'Varel', 'country_code' => 'DE'], ['name' => 'Uchquduq Shahri', 'country_code' => 'UZ'], ['name' => 'Scotch Plains', 'country_code' => 'US'], ['name' => 'San Marcos', 'country_code' => 'NI'], ['name' => 'Waverly', 'country_code' => 'US'], ['name' => 'San Nicolas', 'country_code' => 'PH'], ['name' => 'Huilongping', 'country_code' => 'CN'], ['name' => 'Skoura', 'country_code' => 'MA'], ['name' => 'Rugeley', 'country_code' => 'GB'], ['name' => 'Angatuba', 'country_code' => 'BR'], ['name' => 'Salqin', 'country_code' => 'SY'], ['name' => 'Guaiuba', 'country_code' => 'BR'], ['name' => 'Lihe', 'country_code' => 'CN'], ['name' => 'Diu', 'country_code' => 'IN'], ['name' => 'Baiheqiao', 'country_code' => 'CN'], ['name' => 'Schijndel', 'country_code' => 'NL'], ['name' => 'Stjordal', 'country_code' => 'NO'], ['name' => 'Grootfontein', 'country_code' => 'NA'], ['name' => 'Gauripur', 'country_code' => 'IN'], ['name' => 'Ashton in Makerfield', 'country_code' => 'GB'], ['name' => 'Rioblanco', 'country_code' => 'CO'], ['name' => 'Quedlinburg', 'country_code' => 'DE'], ['name' => 'Fishkill', 'country_code' => 'US'], ['name' => 'Fort Saskatchewan', 'country_code' => 'CA'], ['name' => 'Okemos', 'country_code' => 'US'], ['name' => 'Sao Jose da Laje', 'country_code' => 'BR'], ['name' => 'Upper Macungie', 'country_code' => 'US'], ['name' => 'Suonan', 'country_code' => 'CN'], ['name' => 'Ibicarai', 'country_code' => 'BR'], ['name' => 'Al Jawf', 'country_code' => 'LY'], ['name' => 'Castiglione delle Stiviere', 'country_code' => 'IT'], ['name' => 'Sattahip', 'country_code' => 'TH'], ['name' => 'Zolochiv', 'country_code' => 'UA'], ['name' => 'Beni Amrane', 'country_code' => 'DZ'], ['name' => 'Formby', 'country_code' => 'GB'], ['name' => 'Upper Moreland', 'country_code' => 'US'], ['name' => 'Monte Siao', 'country_code' => 'BR'], ['name' => 'Sonneberg', 'country_code' => 'DE'], ['name' => 'Dobeln', 'country_code' => 'DE'], ['name' => 'Amstetten', 'country_code' => 'AT'], ['name' => 'Burgos', 'country_code' => 'PH'], ['name' => 'Koilkuntla', 'country_code' => 'IN'], ['name' => 'Vaterstetten', 'country_code' => 'DE'], ['name' => 'Ridgeland', 'country_code' => 'US'], ['name' => 'North Platte', 'country_code' => 'US'], ['name' => 'As Sulayyil', 'country_code' => 'SA'], ['name' => 'Borne', 'country_code' => 'NL'], ['name' => 'Charles Town', 'country_code' => 'US'], ['name' => 'Freeport', 'country_code' => 'US'], ['name' => 'Waukee', 'country_code' => 'US'], ['name' => 'Mina', 'country_code' => 'PH'], ['name' => 'Husum', 'country_code' => 'DE'], ['name' => 'Montecchio Maggiore', 'country_code' => 'IT'], ['name' => 'Mentana', 'country_code' => 'IT'], ['name' => 'Tupancireta', 'country_code' => 'BR'], ['name' => 'Selvazzano Dentro', 'country_code' => 'IT'], ['name' => 'Rio Tinto', 'country_code' => 'BR'], ['name' => 'Cachoeira do Arari', 'country_code' => 'BR'], ['name' => 'Noto', 'country_code' => 'IT'], ['name' => 'Talugtug', 'country_code' => 'PH'], ['name' => 'Bayang', 'country_code' => 'PH'], ['name' => 'Litvinov', 'country_code' => 'CZ'], ['name' => 'Ban Phru', 'country_code' => 'TH'], ['name' => 'Ventimiglia', 'country_code' => 'IT'], ['name' => 'Bognor Regis', 'country_code' => 'GB'], ['name' => 'Zawyat an Nwacer', 'country_code' => 'MA'], ['name' => 'Sao Miguel do Guapore', 'country_code' => 'BR'], ['name' => 'Tayga', 'country_code' => 'RU'], ['name' => 'Tres Passos', 'country_code' => 'BR'], ['name' => 'South Plainfield', 'country_code' => 'US'], ['name' => 'Konstancin-Jeziorna', 'country_code' => 'PL'], ['name' => 'Wadsworth', 'country_code' => 'US'], ['name' => 'Dapa', 'country_code' => 'PH'], ['name' => 'Quatro Barras', 'country_code' => 'BR'], ['name' => 'Kourou', 'country_code' => 'GF'], ['name' => 'Horley', 'country_code' => 'GB'], ['name' => 'Puerto San Jose', 'country_code' => 'GT'], ['name' => 'Ocara', 'country_code' => 'BR'], ['name' => 'Mairena del Alcor', 'country_code' => 'ES'], ['name' => 'Piracanjuba', 'country_code' => 'BR'], ['name' => 'Nava', 'country_code' => 'MX'], ['name' => 'Grande-Synthe', 'country_code' => 'FR'], ['name' => 'Bormujos', 'country_code' => 'ES'], ['name' => 'Tumwater', 'country_code' => 'US'], ['name' => 'Fairfax', 'country_code' => 'US'], ['name' => 'Cranford', 'country_code' => 'US'], ['name' => 'Hoh Ereg', 'country_code' => 'CN'], ['name' => 'Picarras', 'country_code' => 'BR'], ['name' => 'Candler-McAfee', 'country_code' => 'US'], ['name' => 'East Gwillimbury', 'country_code' => 'CA'], ['name' => 'Venice', 'country_code' => 'US'], ['name' => 'Calw', 'country_code' => 'DE'], ['name' => 'Lanester', 'country_code' => 'FR'], ['name' => 'Tres Coroas', 'country_code' => 'BR'], ['name' => 'Kelishad va Sudarjan', 'country_code' => 'IR'], ['name' => 'Hajduszoboszlo', 'country_code' => 'HU'], ['name' => 'Macaparana', 'country_code' => 'BR'], ['name' => 'El Zulia', 'country_code' => 'CO'], ['name' => 'Harmanli', 'country_code' => 'BG'], ['name' => 'Jawor', 'country_code' => 'PL'], ['name' => 'Wright', 'country_code' => 'US'], ['name' => 'Aldeias Altas', 'country_code' => 'BR'], ['name' => 'Wajimazakimachi', 'country_code' => 'JP'], ['name' => 'Hollola', 'country_code' => 'FI'], ['name' => 'Kalach-na-Donu', 'country_code' => 'RU'], ['name' => 'Anchieta', 'country_code' => 'BR'], ['name' => 'Sao Goncalo do Sapucai', 'country_code' => 'BR'], ['name' => 'Laje', 'country_code' => 'BR'], ['name' => 'Mansfield', 'country_code' => 'US'], ['name' => 'La Mana', 'country_code' => 'EC'], ['name' => 'Haren', 'country_code' => 'DE'], ['name' => 'Ibi', 'country_code' => 'ES'], ['name' => 'Bogotol', 'country_code' => 'RU'], ['name' => 'Maldegem', 'country_code' => 'BE'], ['name' => 'Caras', 'country_code' => 'PE'], ['name' => 'Lincolnia', 'country_code' => 'US'], ['name' => 'Tres de Maio', 'country_code' => 'BR'], ['name' => 'Capoterra', 'country_code' => 'IT'], ['name' => 'Nanxingguo', 'country_code' => 'CN'], ['name' => 'Sokolov', 'country_code' => 'CZ'], ['name' => 'Corinto', 'country_code' => 'BR'], ['name' => 'Westchase', 'country_code' => 'US'], ['name' => 'Poco Verde', 'country_code' => 'BR'], ['name' => 'Upper Providence', 'country_code' => 'US'], ['name' => 'Dongsheng', 'country_code' => 'CN'], ['name' => 'Edgewater', 'country_code' => 'US'], ['name' => 'Tlacolula', 'country_code' => 'MX'], ['name' => 'Bambui', 'country_code' => 'BR'], ['name' => 'North Potomac', 'country_code' => 'US'], ['name' => 'Pelham', 'country_code' => 'US'], ['name' => 'Honda', 'country_code' => 'CO'], ['name' => 'Si Racha', 'country_code' => 'TH'], ['name' => 'Corsicana', 'country_code' => 'US'], ['name' => 'Monte Aprazivel', 'country_code' => 'BR'], ['name' => 'Seal Beach', 'country_code' => 'US'], ['name' => 'Comapa', 'country_code' => 'GT'], ['name' => 'Pagudpud', 'country_code' => 'PH'], ['name' => 'Combs-la-Ville', 'country_code' => 'FR'], ['name' => 'San Miguel Ocotenco', 'country_code' => 'MX'], ['name' => 'Ciudad Serdan', 'country_code' => 'MX'], ['name' => 'Fort Dodge', 'country_code' => 'US'], ['name' => 'Bad Mergentheim', 'country_code' => 'DE'], ['name' => 'Mirandela', 'country_code' => 'PT'], ['name' => 'Jurh', 'country_code' => 'CN'], ['name' => 'Qift', 'country_code' => 'EG'], ['name' => 'Starnberg', 'country_code' => 'DE'], ['name' => 'Oostkamp', 'country_code' => 'BE'], ['name' => 'Dunkirk', 'country_code' => 'US'], ['name' => 'Khenichet-sur Ouerrha', 'country_code' => 'MA'], ['name' => 'Douar Ouled Ayad', 'country_code' => 'MA'], ['name' => 'Zemst', 'country_code' => 'BE'], ['name' => 'Nyuzen', 'country_code' => 'JP'], ['name' => 'Zeya', 'country_code' => 'RU'], ['name' => 'Bazhajiemicun', 'country_code' => 'CN'], ['name' => 'Carambei', 'country_code' => 'BR'], ['name' => 'Calabasas', 'country_code' => 'US'], ['name' => 'Chalmette', 'country_code' => 'US'], ['name' => 'Bobon', 'country_code' => 'PH'], ['name' => 'Raul Soares', 'country_code' => 'BR'], ['name' => 'Los Barrios', 'country_code' => 'ES'], ['name' => 'Lustenau', 'country_code' => 'AT'], ['name' => 'Berehove', 'country_code' => 'UA'], ['name' => 'North Augusta', 'country_code' => 'US'], ['name' => 'Palm River-Clair Mel', 'country_code' => 'US'], ['name' => 'Stepanavan', 'country_code' => 'AM'], ['name' => 'Alexania', 'country_code' => 'BR'], ['name' => 'Chrudim', 'country_code' => 'CZ'], ['name' => 'Oldebroek', 'country_code' => 'NL'], ['name' => 'Ostrow Mazowiecka', 'country_code' => 'PL'], ['name' => 'Ayuquitan', 'country_code' => 'PH'], ['name' => 'Jucas', 'country_code' => 'BR'], ['name' => 'Kafr Sa d', 'country_code' => 'EG'], ['name' => 'El Maknassi', 'country_code' => 'TN'], ['name' => 'Montgomery', 'country_code' => 'US'], ['name' => 'Bedburg', 'country_code' => 'DE'], ['name' => 'Mirandola', 'country_code' => 'IT'], ['name' => 'Mount Pocono', 'country_code' => 'US'], ['name' => 'Olopa', 'country_code' => 'GT'], ['name' => 'San Jose', 'country_code' => 'CO'], ['name' => 'Tugaya', 'country_code' => 'PH'], ['name' => 'Abbeville', 'country_code' => 'FR'], ['name' => 'Sao Sepe', 'country_code' => 'BR'], ['name' => 'Makouda', 'country_code' => 'DZ'], ['name' => 'Brody', 'country_code' => 'UA'], ['name' => 'Quartier Militaire', 'country_code' => 'MU'], ['name' => 'Carai', 'country_code' => 'BR'], ['name' => 'Sao Miguel', 'country_code' => 'BR'], ['name' => 'Dumaran', 'country_code' => 'PH'], ['name' => 'Lincoln', 'country_code' => 'CA'], ['name' => 'Novy Jicin', 'country_code' => 'CZ'], ['name' => 'Garopaba', 'country_code' => 'BR'], ['name' => 'Santa Lucia Utatlan', 'country_code' => 'GT'], ['name' => 'Loon op Zand', 'country_code' => 'NL'], ['name' => 'Pitogo', 'country_code' => 'PH'], ['name' => 'Dancagan', 'country_code' => 'PH'], ['name' => 'Marple', 'country_code' => 'US'], ['name' => 'Farragut', 'country_code' => 'US'], ['name' => 'Mosbach', 'country_code' => 'DE'], ['name' => 'Korbach', 'country_code' => 'DE'], ['name' => 'Belmonte', 'country_code' => 'BR'], ['name' => 'Kuvandyk', 'country_code' => 'RU'], ['name' => 'Hachimantai', 'country_code' => 'JP'], ['name' => 'Kalayaan', 'country_code' => 'PH'], ['name' => 'Jenks', 'country_code' => 'US'], ['name' => 'Lucena', 'country_code' => 'PH'], ['name' => 'Piat', 'country_code' => 'PH'], ['name' => 'Kayapa', 'country_code' => 'PH'], ['name' => 'Ceccano', 'country_code' => 'IT'], ['name' => 'Joao Lisboa', 'country_code' => 'BR'], ['name' => 'Maracas', 'country_code' => 'BR'], ['name' => 'Luninyets', 'country_code' => 'BY'], ['name' => 'Fria', 'country_code' => 'GN'], ['name' => 'Oulad Hassoune', 'country_code' => 'MA'], ['name' => 'Gueznaia', 'country_code' => 'MA'], ['name' => 'Herdecke', 'country_code' => 'DE'], ['name' => 'Ayancik', 'country_code' => 'TR'], ['name' => 'Kalawit', 'country_code' => 'PH'], ['name' => 'Palatka', 'country_code' => 'US'], ['name' => 'Tatarsk', 'country_code' => 'RU'], ['name' => 'Tamandare', 'country_code' => 'BR'], ['name' => 'Salzwedel', 'country_code' => 'DE'], ['name' => 'Pamplona', 'country_code' => 'PH'], ['name' => 'Coronado', 'country_code' => 'US'], ['name' => 'Ayt Mohamed', 'country_code' => 'MA'], ['name' => 'Lubartow', 'country_code' => 'PL'], ['name' => 'Rio Formoso', 'country_code' => 'BR'], ['name' => 'Alicia', 'country_code' => 'PH'], ['name' => 'North Haven', 'country_code' => 'US'], ['name' => 'Sao Joao do Paraiso', 'country_code' => 'BR'], ['name' => 'Khromtau', 'country_code' => 'KZ'], ['name' => 'Gamay', 'country_code' => 'PH'], ['name' => 'San Juan Cotzocon', 'country_code' => 'MX'], ['name' => 'Freudenstadt', 'country_code' => 'DE'], ['name' => 'Nagykoros', 'country_code' => 'HU'], ['name' => 'Bauta', 'country_code' => 'CU'], ['name' => 'Centerville', 'country_code' => 'US'], ['name' => 'Maracaju', 'country_code' => 'BR'], ['name' => 'Kreuzlingen', 'country_code' => 'CH'], ['name' => 'Taraka', 'country_code' => 'PH'], ['name' => 'Juchitepec', 'country_code' => 'MX'], ['name' => 'Lupeni', 'country_code' => 'RO'], ['name' => 'Ladario', 'country_code' => 'BR'], ['name' => 'Santo Antonio do Ica', 'country_code' => 'BR'], ['name' => 'Sredneuralsk', 'country_code' => 'RU'], ['name' => 'Van Buren', 'country_code' => 'US'], ['name' => 'Greeneville', 'country_code' => 'US'], ['name' => 'Tata', 'country_code' => 'HU'], ['name' => 'Waycross', 'country_code' => 'US'], ['name' => 'Koziatyn', 'country_code' => 'UA'], ['name' => 'Partizanske', 'country_code' => 'SK'], ['name' => 'Inaja', 'country_code' => 'BR'], ['name' => 'Soledad Atzompa', 'country_code' => 'MX'], ['name' => 'Juchen', 'country_code' => 'DE'], ['name' => 'Bulle', 'country_code' => 'CH'], ['name' => 'Poggiomarino', 'country_code' => 'IT'], ['name' => 'Epernay', 'country_code' => 'FR'], ['name' => 'Carletonville', 'country_code' => 'ZA'], ['name' => 'Half Moon Bay', 'country_code' => 'US'], ['name' => 'Krnov', 'country_code' => 'CZ'], ['name' => 'Hingham', 'country_code' => 'US'], ['name' => 'Santo Amaro da Imperatriz', 'country_code' => 'BR'], ['name' => 'Vigonza', 'country_code' => 'IT'], ['name' => 'Zheleznogorsk-Ilimskiy', 'country_code' => 'RU'], ['name' => 'Dillenburg', 'country_code' => 'DE'], ['name' => 'Gitega', 'country_code' => 'BI'], ['name' => 'Belton', 'country_code' => 'US'], ['name' => 'Qianmotou', 'country_code' => 'CN'], ['name' => 'Lentini', 'country_code' => 'IT'], ['name' => 'Baglung', 'country_code' => 'NP'], ['name' => 'Fucecchio', 'country_code' => 'IT'], ['name' => 'Jacksonville Beach', 'country_code' => 'US'], ['name' => 'Coronel Suarez', 'country_code' => 'AR'], ['name' => 'Acton', 'country_code' => 'US'], ['name' => 'Sehnde', 'country_code' => 'DE'], ['name' => 'Havlickuv Brod', 'country_code' => 'CZ'], ['name' => 'Herzogenaurach', 'country_code' => 'DE'], ['name' => 'Ilion', 'country_code' => 'US'], ['name' => 'Kulgam', 'country_code' => 'IN'], ['name' => 'Kato Polemidia', 'country_code' => 'CY'], ['name' => 'Macia', 'country_code' => 'MZ'], ['name' => 'Sobradinho', 'country_code' => 'BR'], ['name' => 'Vilaseca de Solcina', 'country_code' => 'ES'], ['name' => 'Seymour', 'country_code' => 'US'], ['name' => 'Oakdale', 'country_code' => 'US'], ['name' => 'Ipatovo', 'country_code' => 'RU'], ['name' => 'Bronnitsy', 'country_code' => 'RU'], ['name' => 'Severobaykalsk', 'country_code' => 'RU'], ['name' => 'Zarnesti', 'country_code' => 'RO'], ['name' => 'Xiaping', 'country_code' => 'CN'], ['name' => 'Liria', 'country_code' => 'ES'], ['name' => 'Gelnhausen', 'country_code' => 'DE'], ['name' => 'Unecha', 'country_code' => 'RU'], ['name' => 'Cacule', 'country_code' => 'BR'], ['name' => 'Madisonville', 'country_code' => 'US'], ['name' => 'Canalete', 'country_code' => 'CO'], ['name' => 'Alcala', 'country_code' => 'CO'], ['name' => 'Romulus', 'country_code' => 'US'], ['name' => 'Kefar Yona', 'country_code' => 'IL'], ['name' => 'Wallenhorst', 'country_code' => 'DE'], ['name' => 'San Ignacio de Velasco', 'country_code' => 'BO'], ['name' => 'Balete', 'country_code' => 'PH'], ['name' => 'El Paso', 'country_code' => 'CO'], ['name' => 'Alegria', 'country_code' => 'PH'], ['name' => 'Bni Frassen', 'country_code' => 'MA'], ['name' => 'Icod de los Vinos', 'country_code' => 'ES'], ['name' => 'Troyan', 'country_code' => 'BG'], ['name' => 'Floridia', 'country_code' => 'IT'], ['name' => 'Hisor', 'country_code' => 'TJ'], ['name' => 'Leland', 'country_code' => 'US'], ['name' => 'Brodosqui', 'country_code' => 'BR'], ['name' => 'Laguna de Duero', 'country_code' => 'ES'], ['name' => 'Ternate', 'country_code' => 'PH'], ['name' => 'Elektrogorsk', 'country_code' => 'RU'], ['name' => 'Ahualulco de Mercado', 'country_code' => 'MX'], ['name' => 'Cessnock', 'country_code' => 'AU'], ['name' => 'Rolling Meadows', 'country_code' => 'US'], ['name' => 'Megara', 'country_code' => 'GR'], ['name' => 'Bondo', 'country_code' => 'CD'], ['name' => 'Davlekanovo', 'country_code' => 'RU'], ['name' => 'Nijlen', 'country_code' => 'BE'], ['name' => 'Andoany', 'country_code' => 'MG'], ['name' => 'Wekiwa Springs', 'country_code' => 'US'], ['name' => 'Jieshang', 'country_code' => 'CN'], ['name' => 'Northdale', 'country_code' => 'US'], ['name' => 'Fort Hood', 'country_code' => 'US'], ['name' => 'Benbrook', 'country_code' => 'US'], ['name' => 'Nagtipunan', 'country_code' => 'PH'], ['name' => 'Medeiros Neto', 'country_code' => 'BR'], ['name' => 'Limbuhan', 'country_code' => 'PH'], ['name' => 'Tirat Karmel', 'country_code' => 'IL'], ['name' => 'Arbroath', 'country_code' => 'GB'], ['name' => 'Zion', 'country_code' => 'US'], ['name' => 'San Rafael del Sur', 'country_code' => 'NI'], ['name' => 'Lensk', 'country_code' => 'RU'], ['name' => 'Watertown', 'country_code' => 'US'], ['name' => 'Frontignan', 'country_code' => 'FR'], ['name' => 'Sederot', 'country_code' => 'IL'], ['name' => 'Montrose', 'country_code' => 'US'], ['name' => 'Neihuzhai', 'country_code' => 'CN'], ['name' => 'Columbus', 'country_code' => 'US'], ['name' => 'Conceicao de Macabu', 'country_code' => 'BR'], ['name' => 'San Feliu de Guixols', 'country_code' => 'ES'], ['name' => 'Labrador', 'country_code' => 'PH'], ['name' => 'Frascati', 'country_code' => 'IT'], ['name' => 'Brotas', 'country_code' => 'BR'], ['name' => 'Ortona', 'country_code' => 'IT'], ['name' => 'Moncada', 'country_code' => 'ES'], ['name' => 'Plainview', 'country_code' => 'US'], ['name' => 'Riehen', 'country_code' => 'CH'], ['name' => 'Ruwa', 'country_code' => 'ZW'], ['name' => 'Veinticinco de Mayo', 'country_code' => 'AR'], ['name' => 'Auburn', 'country_code' => 'US'], ['name' => 'Teorama', 'country_code' => 'CO'], ['name' => 'Arnold', 'country_code' => 'US'], ['name' => 'Cordeiropolis', 'country_code' => 'BR'], ['name' => 'Avon', 'country_code' => 'US'], ['name' => 'Tanki Leendert', 'country_code' => 'AW'], ['name' => 'Horgen', 'country_code' => 'CH'], ['name' => 'Peritoro', 'country_code' => 'BR'], ['name' => 'San Felipe', 'country_code' => 'PH'], ['name' => 'Ortigueira', 'country_code' => 'BR'], ['name' => 'San Fernando', 'country_code' => 'PH'], ['name' => 'Santo Tomas', 'country_code' => 'PH'], ['name' => 'Achkhoy-Martan', 'country_code' => 'RU'], ['name' => 'San Lorenzo de Esmeraldas', 'country_code' => 'EC'], ['name' => 'Godalming', 'country_code' => 'GB'], ['name' => 'Wilmington', 'country_code' => 'US'], ['name' => 'Tobati', 'country_code' => 'PY'], ['name' => 'Loves Park', 'country_code' => 'US'], ['name' => 'Canton', 'country_code' => 'US'], ['name' => 'Avellaneda', 'country_code' => 'AR'], ['name' => 'Dunajska Streda', 'country_code' => 'SK'], ['name' => 'Canico', 'country_code' => 'PT'], ['name' => 'Rawtenstall', 'country_code' => 'GB'], ['name' => 'Ban Bang Rin', 'country_code' => 'TH'], ['name' => 'La Prairie', 'country_code' => 'CA'], ['name' => 'Ponedera', 'country_code' => 'CO'], ['name' => 'San Fernando', 'country_code' => 'PH'], ['name' => 'Palmeiras de Goias', 'country_code' => 'BR'], ['name' => 'Thorigny-sur-Marne', 'country_code' => 'FR'], ['name' => 'Yarmouth', 'country_code' => 'US'], ['name' => 'Vero Beach South', 'country_code' => 'US'], ['name' => 'Pitogo', 'country_code' => 'PH'], ['name' => 'Lermontov', 'country_code' => 'RU'], ['name' => 'Malinao', 'country_code' => 'PH'], ['name' => 'Medford', 'country_code' => 'US'], ['name' => 'Vilnohirsk', 'country_code' => 'UA'], ['name' => 'Netphen', 'country_code' => 'DE'], ['name' => 'Alcobaca', 'country_code' => 'BR'], ['name' => 'Oliveira do Bairro', 'country_code' => 'PT'], ['name' => 'Puchheim', 'country_code' => 'DE'], ['name' => 'Jiucangzhou', 'country_code' => 'CN'], ['name' => 'Calverley', 'country_code' => 'GB'], ['name' => 'Qatana', 'country_code' => 'SY'], ['name' => 'Sheyban', 'country_code' => 'IR'], ['name' => 'Sao Joao de Pirabas', 'country_code' => 'BR'], ['name' => 'Itaocara', 'country_code' => 'BR'], ['name' => 'Shiling', 'country_code' => 'CN'], ['name' => 'Qiryat Mal akhi', 'country_code' => 'IL'], ['name' => 'Lisle', 'country_code' => 'US'], ['name' => 'Riachao das Neves', 'country_code' => 'BR'], ['name' => 'Jabonga', 'country_code' => 'PH'], ['name' => 'Oud-Zuilen', 'country_code' => 'NL'], ['name' => 'Sevan', 'country_code' => 'AM'], ['name' => 'El Tejar', 'country_code' => 'GT'], ['name' => 'Qiryat Shemona', 'country_code' => 'IL'], ['name' => 'Eschborn', 'country_code' => 'DE'], ['name' => 'Bacolod', 'country_code' => 'PH'], ['name' => 'Tambau', 'country_code' => 'BR'], ['name' => 'Kolo', 'country_code' => 'PL'], ['name' => 'Tototlan', 'country_code' => 'MX'], ['name' => 'East Retford', 'country_code' => 'GB'], ['name' => 'Senador Guiomard', 'country_code' => 'BR'], ['name' => 'Loanda', 'country_code' => 'BR'], ['name' => 'Vranov nad Topl ou', 'country_code' => 'SK'], ['name' => 'Nakashunbetsu', 'country_code' => 'JP'], ['name' => 'Devonport', 'country_code' => 'AU'], ['name' => 'Bom Jesus dos Perdoes', 'country_code' => 'BR'], ['name' => 'Tecumseh', 'country_code' => 'CA'], ['name' => 'Maibog', 'country_code' => 'PH'], ['name' => 'Itambacuri', 'country_code' => 'BR'], ['name' => 'Greenbelt', 'country_code' => 'US'], ['name' => 'Stoneham', 'country_code' => 'US'], ['name' => 'Nevyansk', 'country_code' => 'RU'], ['name' => 'Senden', 'country_code' => 'DE'], ['name' => 'Itapora', 'country_code' => 'BR'], ['name' => 'Bassar', 'country_code' => 'TG'], ['name' => 'Tadmait', 'country_code' => 'DZ'], ['name' => 'Warburg', 'country_code' => 'DE'], ['name' => 'Taquarituba', 'country_code' => 'BR'], ['name' => 'Altea', 'country_code' => 'ES'], ['name' => 'Molodohvardiisk', 'country_code' => 'UA'], ['name' => 'Kolpashevo', 'country_code' => 'RU'], ['name' => 'Linstead', 'country_code' => 'JM'], ['name' => 'Areia', 'country_code' => 'BR'], ['name' => 'Abreus', 'country_code' => 'CU'], ['name' => 'Granite Bay', 'country_code' => 'US'], ['name' => 'Fokino', 'country_code' => 'RU'], ['name' => 'Pezinok', 'country_code' => 'SK'], ['name' => 'Campia Turzii', 'country_code' => 'RO'], ['name' => 'Walsrode', 'country_code' => 'DE'], ['name' => 'Puerto Concordia', 'country_code' => 'CO'], ['name' => 'Mandelieu-la-Napoule', 'country_code' => 'FR'], ['name' => 'Assare', 'country_code' => 'BR'], ['name' => 'Tamiahua', 'country_code' => 'MX'], ['name' => 'Abu', 'country_code' => 'IN'], ['name' => 'Gersthofen', 'country_code' => 'DE'], ['name' => 'Kilkis', 'country_code' => 'GR'], ['name' => 'Dickinson', 'country_code' => 'US'], ['name' => 'Madalum', 'country_code' => 'PH'], ['name' => 'Balen', 'country_code' => 'BE'], ['name' => 'Puenteareas', 'country_code' => 'ES'], ['name' => 'Bulusan', 'country_code' => 'PH'], ['name' => 'Komlo', 'country_code' => 'HU'], ['name' => 'Esparraguera', 'country_code' => 'ES'], ['name' => 'Mandaguacu', 'country_code' => 'BR'], ['name' => 'Oxford', 'country_code' => 'US'], ['name' => 'Tashtagol', 'country_code' => 'RU'], ['name' => 'Tupiza', 'country_code' => 'BO'], ['name' => 'Ganassi', 'country_code' => 'PH'], ['name' => 'Lengir', 'country_code' => 'KZ'], ['name' => 'Capinzal', 'country_code' => 'BR'], ['name' => 'Kenmore', 'country_code' => 'US'], ['name' => 'Siwah', 'country_code' => 'EG'], ['name' => 'Allison Park', 'country_code' => 'US'], ['name' => 'Farmington', 'country_code' => 'US'], ['name' => 'Nanyangcun', 'country_code' => 'CN'], ['name' => 'Kilwinning', 'country_code' => 'GB'], ['name' => 'Gusinoozersk', 'country_code' => 'RU'], ['name' => 'Orleaes', 'country_code' => 'BR'], ['name' => 'Wandlitz', 'country_code' => 'DE'], ['name' => 'San Miguel Chicaj', 'country_code' => 'GT'], ['name' => 'Kapfenberg', 'country_code' => 'AT'], ['name' => 'Wulongpu', 'country_code' => 'CN'], ['name' => 'Strakonice', 'country_code' => 'CZ'], ['name' => 'Mercato San Severino', 'country_code' => 'IT'], ['name' => 'Cuilapan de Guerrero', 'country_code' => 'MX'], ['name' => 'Gainsborough', 'country_code' => 'GB'], ['name' => 'Wichian Buri', 'country_code' => 'TH'], ['name' => 'Achi', 'country_code' => 'CO'], ['name' => 'Calbiga', 'country_code' => 'PH'], ['name' => 'Whyalla', 'country_code' => 'AU'], ['name' => 'Princesa Isabel', 'country_code' => 'BR'], ['name' => 'Grajewo', 'country_code' => 'PL'], ['name' => 'Amoucha', 'country_code' => 'DZ'], ['name' => 'Gyegu', 'country_code' => 'CN'], ['name' => 'Hastings', 'country_code' => 'US'], ['name' => 'Montgomery', 'country_code' => 'US'], ['name' => 'Encantado', 'country_code' => 'BR'], ['name' => 'Curumani', 'country_code' => 'CO'], ['name' => 'Guanajay', 'country_code' => 'CU'], ['name' => 'Oyonnax', 'country_code' => 'FR'], ['name' => 'Orobo', 'country_code' => 'BR'], ['name' => 'Huaibaijie', 'country_code' => 'CN'], ['name' => 'Aiud', 'country_code' => 'RO'], ['name' => 'Conil de la Frontera', 'country_code' => 'ES'], ['name' => 'Makinsk', 'country_code' => 'KZ'], ['name' => 'Quarai', 'country_code' => 'BR'], ['name' => 'Plainsboro', 'country_code' => 'US'], ['name' => 'Yeadon', 'country_code' => 'GB'], ['name' => 'Yuli', 'country_code' => 'CN'], ['name' => 'Yako', 'country_code' => 'BF'], ['name' => 'Vale de Cambra', 'country_code' => 'PT'], ['name' => 'Yanshanbu', 'country_code' => 'CN'], ['name' => 'Pirenopolis', 'country_code' => 'BR'], ['name' => 'Rockingham', 'country_code' => 'US'], ['name' => 'Krasnouralsk', 'country_code' => 'RU'], ['name' => 'Zedelgem', 'country_code' => 'BE'], ['name' => 'Krasnoarmeysk', 'country_code' => 'RU'], ['name' => 'Greenfield', 'country_code' => 'US'], ['name' => 'Taxisco', 'country_code' => 'GT'], ['name' => 'West Goshen', 'country_code' => 'US'], ['name' => 'Auburn', 'country_code' => 'US'], ['name' => 'Frederickson', 'country_code' => 'US'], ['name' => 'Beixingzhuang', 'country_code' => 'CN'], ['name' => 'Zvenigorod', 'country_code' => 'RU'], ['name' => 'Steenwijk', 'country_code' => 'NL'], ['name' => 'Karlsfeld', 'country_code' => 'DE'], ['name' => 'Tighadouine', 'country_code' => 'MA'], ['name' => 'Willoughby', 'country_code' => 'US'], ['name' => 'Dabeiba', 'country_code' => 'CO'], ['name' => 'Amaraji', 'country_code' => 'BR'], ['name' => 'Wadenswil', 'country_code' => 'CH'], ['name' => 'Guadalupe', 'country_code' => 'CO'], ['name' => 'Fayid', 'country_code' => 'EG'], ['name' => 'Sidi Ifni', 'country_code' => 'MA'], ['name' => 'Conselheiro Pena', 'country_code' => 'BR'], ['name' => 'San Agustin', 'country_code' => 'PH'], ['name' => 'Manghit', 'country_code' => 'UZ'], ['name' => 'Mustang', 'country_code' => 'US'], ['name' => 'Palma di Montechiaro', 'country_code' => 'IT'], ['name' => 'Mount Pearl Park', 'country_code' => 'CA'], ['name' => 'Roxbury', 'country_code' => 'US'], ['name' => 'La Democracia', 'country_code' => 'GT'], ['name' => 'Znamianka', 'country_code' => 'UA'], ['name' => 'Haywards Heath', 'country_code' => 'GB'], ['name' => 'Wertheim', 'country_code' => 'DE'], ['name' => 'Masterton', 'country_code' => 'NZ'], ['name' => 'Cullera', 'country_code' => 'ES'], ['name' => 'Uberlingen', 'country_code' => 'DE'], ['name' => 'Maying', 'country_code' => 'CN'], ['name' => 'Neusass', 'country_code' => 'DE'], ['name' => 'Leutkirch im Allgau', 'country_code' => 'DE'], ['name' => 'Patterson', 'country_code' => 'US'], ['name' => 'Eckernforde', 'country_code' => 'DE'], ['name' => 'Manhumirim', 'country_code' => 'BR'], ['name' => 'Tervuren', 'country_code' => 'BE'], ['name' => 'Isilkul', 'country_code' => 'RU'], ['name' => 'Gallup', 'country_code' => 'US'], ['name' => 'Mutuipe', 'country_code' => 'BR'], ['name' => 'Zacualpa', 'country_code' => 'GT'], ['name' => 'Radcliff', 'country_code' => 'US'], ['name' => 'Baroy', 'country_code' => 'PH'], ['name' => 'Thebes', 'country_code' => 'GR'], ['name' => 'Westerstede', 'country_code' => 'DE'], ['name' => 'Buriti Bravo', 'country_code' => 'BR'], ['name' => 'Trezzano sul Naviglio', 'country_code' => 'IT'], ['name' => 'Patacamaya', 'country_code' => 'BO'], ['name' => 'Prieto Diaz', 'country_code' => 'PH'], ['name' => 'Crystal', 'country_code' => 'US'], ['name' => 'Olivet', 'country_code' => 'FR'], ['name' => 'Arcos de Valdevez', 'country_code' => 'PT'], ['name' => 'Kalat', 'country_code' => 'PK'], ['name' => 'San Raimundo', 'country_code' => 'GT'], ['name' => 'Guryevsk', 'country_code' => 'RU'], ['name' => 'Lengerich', 'country_code' => 'DE'], ['name' => 'Belton', 'country_code' => 'US'], ['name' => 'Nazca', 'country_code' => 'PE'], ['name' => 'Allen', 'country_code' => 'AR'], ['name' => 'Weilheim', 'country_code' => 'DE'], ['name' => 'Forbach', 'country_code' => 'FR'], ['name' => 'Glauchau', 'country_code' => 'DE'], ['name' => 'Catigbian', 'country_code' => 'PH'], ['name' => 'Montilla', 'country_code' => 'ES'], ['name' => 'Dzialdowo', 'country_code' => 'PL'], ['name' => 'Frauenfeld', 'country_code' => 'CH'], ['name' => 'Catamayo', 'country_code' => 'EC'], ['name' => 'San Cataldo', 'country_code' => 'IT'], ['name' => 'Tocantinopolis', 'country_code' => 'BR'], ['name' => 'Oteiza', 'country_code' => 'PH'], ['name' => 'Pace', 'country_code' => 'US'], ['name' => 'Naqadah', 'country_code' => 'EG'], ['name' => 'Barbasa', 'country_code' => 'PH'], ['name' => 'Coin', 'country_code' => 'ES'], ['name' => 'Rastede', 'country_code' => 'DE'], ['name' => 'Tunuyan', 'country_code' => 'AR'], ['name' => 'Losser', 'country_code' => 'NL'], ['name' => 'Naciria', 'country_code' => 'DZ'], ['name' => 'Karachayevsk', 'country_code' => 'RU'], ['name' => 'Saint-Genis-Laval', 'country_code' => 'FR'], ['name' => 'Ataco', 'country_code' => 'CO'], ['name' => 'Shaomi', 'country_code' => 'CN'], ['name' => 'Marshall', 'country_code' => 'US'], ['name' => 'Cartagena', 'country_code' => 'CL'], ['name' => 'Alnif', 'country_code' => 'MA'], ['name' => 'Selouane', 'country_code' => 'MA'], ['name' => 'Haar', 'country_code' => 'DE'], ['name' => 'Laguna Beach', 'country_code' => 'US'], ['name' => 'Goldasht', 'country_code' => 'IR'], ['name' => 'Webster Groves', 'country_code' => 'US'], ['name' => 'Acworth', 'country_code' => 'US'], ['name' => 'Le Creusot', 'country_code' => 'FR'], ['name' => 'Royken', 'country_code' => 'NO'], ['name' => 'Cinco Saltos', 'country_code' => 'AR'], ['name' => 'Griffin', 'country_code' => 'US'], ['name' => 'Santa Fe de Antioquia', 'country_code' => 'CO'], ['name' => 'Itaparica', 'country_code' => 'BR'], ['name' => 'Curchorem', 'country_code' => 'IN'], ['name' => 'Vreden', 'country_code' => 'DE'], ['name' => 'Botevgrad', 'country_code' => 'BG'], ['name' => 'Morton Grove', 'country_code' => 'US'], ['name' => 'Conceicao da Feira', 'country_code' => 'BR'], ['name' => 'Caibiran', 'country_code' => 'PH'], ['name' => 'Lysander', 'country_code' => 'US'], ['name' => 'Keene', 'country_code' => 'US'], ['name' => 'Padre Burgos', 'country_code' => 'PH'], ['name' => 'Velsk', 'country_code' => 'RU'], ['name' => 'Marina', 'country_code' => 'US'], ['name' => 'Oliveira dos Brejinhos', 'country_code' => 'BR'], ['name' => 'Solon', 'country_code' => 'US'], ['name' => 'Rixensart', 'country_code' => 'BE'], ['name' => 'Sarzana', 'country_code' => 'IT'], ['name' => 'Valasske Mezirici', 'country_code' => 'CZ'], ['name' => 'Svetlyy', 'country_code' => 'RU'], ['name' => 'Petrila', 'country_code' => 'RO'], ['name' => 'Bad Kissingen', 'country_code' => 'DE'], ['name' => 'San Agustin', 'country_code' => 'PH'], ['name' => 'Massarosa', 'country_code' => 'IT'], ['name' => 'Kaltenkirchen', 'country_code' => 'DE'], ['name' => 'San Miguel de Papasquiaro', 'country_code' => 'MX'], ['name' => 'Barnegat', 'country_code' => 'US'], ['name' => 'New Brighton', 'country_code' => 'US'], ['name' => 'Iracemapolis', 'country_code' => 'BR'], ['name' => 'Mandan', 'country_code' => 'US'], ['name' => 'Kalachinsk', 'country_code' => 'RU'], ['name' => 'Buxton', 'country_code' => 'GB'], ['name' => 'Ladyzhyn', 'country_code' => 'UA'], ['name' => 'Carmo do Cajuru', 'country_code' => 'BR'], ['name' => 'Buritis', 'country_code' => 'BR'], ['name' => 'Donaueschingen', 'country_code' => 'DE'], ['name' => 'Morrinhos', 'country_code' => 'BR'], ['name' => 'Buenavista', 'country_code' => 'CO'], ['name' => 'Winchester', 'country_code' => 'US'], ['name' => 'Amalfi', 'country_code' => 'CO'], ['name' => 'Manzanares', 'country_code' => 'CO'], ['name' => 'Salcedo', 'country_code' => 'PH'], ['name' => 'Manosque', 'country_code' => 'FR'], ['name' => 'Erval d Oeste', 'country_code' => 'BR'], ['name' => 'Seynod', 'country_code' => 'FR'], ['name' => 'Frameries', 'country_code' => 'BE'], ['name' => 'Staraya Kupavna', 'country_code' => 'RU'], ['name' => 'Beek en Donk', 'country_code' => 'NL'], ['name' => 'Lefkada', 'country_code' => 'GR'], ['name' => 'Barbate de Franco', 'country_code' => 'ES'], ['name' => 'Sal a', 'country_code' => 'SK'], ['name' => 'Tubungan', 'country_code' => 'PH'], ['name' => 'Pittsburg', 'country_code' => 'US'], ['name' => 'Elizabeth City', 'country_code' => 'US'], ['name' => 'Harriman', 'country_code' => 'US'], ['name' => 'Greenfield', 'country_code' => 'US'], ['name' => 'Mondovi', 'country_code' => 'IT'], ['name' => 'Torre del Mar', 'country_code' => 'ES'], ['name' => 'Zhengtun', 'country_code' => 'CN'], ['name' => 'Magdalena', 'country_code' => 'MX'], ['name' => 'Uenohara', 'country_code' => 'JP'], ['name' => 'Souk Tlet El Gharb', 'country_code' => 'MA'], ['name' => 'Dona Remedios Trinidad', 'country_code' => 'PH'], ['name' => 'Oytal', 'country_code' => 'KZ'], ['name' => 'Metzingen', 'country_code' => 'DE'], ['name' => 'Sondrio', 'country_code' => 'IT'], ['name' => 'Fairhope', 'country_code' => 'US'], ['name' => 'Cottage Lake', 'country_code' => 'US'], ['name' => 'Machesney Park', 'country_code' => 'US'], ['name' => 'Wettingen', 'country_code' => 'CH'], ['name' => 'Pachino', 'country_code' => 'IT'], ['name' => 'Braidwood', 'country_code' => 'US'], ['name' => 'Lochristi', 'country_code' => 'BE'], ['name' => 'Hurricane', 'country_code' => 'US'], ['name' => 'Sant Arcangelo di Romagna', 'country_code' => 'IT'], ['name' => 'Onondaga', 'country_code' => 'US'], ['name' => 'Laupheim', 'country_code' => 'DE'], ['name' => 'Sagbayan', 'country_code' => 'PH'], ['name' => 'Pogradec', 'country_code' => 'AL'], ['name' => 'Omagh', 'country_code' => 'GB'], ['name' => 'Lajas', 'country_code' => 'CU'], ['name' => 'Dunaharaszti', 'country_code' => 'HU'], ['name' => 'Annecy-le-Vieux', 'country_code' => 'FR'], ['name' => 'Nagold', 'country_code' => 'DE'], ['name' => 'Flores', 'country_code' => 'BR'], ['name' => 'Wareham', 'country_code' => 'US'], ['name' => 'Baliguian', 'country_code' => 'PH'], ['name' => 'Pudsey', 'country_code' => 'GB'], ['name' => 'Baraki Barak', 'country_code' => 'AF'], ['name' => 'Trussville', 'country_code' => 'US'], ['name' => 'Goleniow', 'country_code' => 'PL'], ['name' => 'Pilar de la Horadada', 'country_code' => 'ES'], ['name' => 'Karben', 'country_code' => 'DE'], ['name' => 'Waynesboro', 'country_code' => 'US'], ['name' => 'Yahualica de Gonzalez Gallo', 'country_code' => 'MX'], ['name' => 'Feira Grande', 'country_code' => 'BR'], ['name' => 'Cuyo', 'country_code' => 'PH'], ['name' => 'Tecali', 'country_code' => 'MX'], ['name' => 'Lempaala', 'country_code' => 'FI'], ['name' => 'Stadthagen', 'country_code' => 'DE'], ['name' => 'Huangzhai', 'country_code' => 'CN'], ['name' => 'Darton', 'country_code' => 'GB'], ['name' => 'Burg', 'country_code' => 'DE'], ['name' => 'Mako', 'country_code' => 'HU'], ['name' => 'Pushkar', 'country_code' => 'IN'], ['name' => 'Huautla', 'country_code' => 'MX'], ['name' => 'Paraopeba', 'country_code' => 'BR'], ['name' => 'Sardinata', 'country_code' => 'CO'], ['name' => 'Edewecht', 'country_code' => 'DE'], ['name' => 'Puente Nacional', 'country_code' => 'MX'], ['name' => 'Dawmat al Jandal', 'country_code' => 'SA'], ['name' => 'Burlington', 'country_code' => 'US'], ['name' => 'Buftea', 'country_code' => 'RO'], ['name' => 'Johnston', 'country_code' => 'US'], ['name' => 'Porto Torres', 'country_code' => 'IT'], ['name' => 'Corcoran', 'country_code' => 'US'], ['name' => 'Meadville', 'country_code' => 'US'], ['name' => 'Paese', 'country_code' => 'IT'], ['name' => 'Ariano Irpino', 'country_code' => 'IT'], ['name' => 'Martellago', 'country_code' => 'IT'], ['name' => 'Belabo', 'country_code' => 'CM'], ['name' => 'Kadiria', 'country_code' => 'DZ'], ['name' => 'Carrascal', 'country_code' => 'PH'], ['name' => 'Wenceslau Guimaraes', 'country_code' => 'BR'], ['name' => 'Caravelas', 'country_code' => 'BR'], ['name' => 'Happy Valley', 'country_code' => 'US'], ['name' => 'Ginosa', 'country_code' => 'IT'], ['name' => 'Friesoythe', 'country_code' => 'DE'], ['name' => 'El Progreso', 'country_code' => 'GT'], ['name' => 'East Peoria', 'country_code' => 'US'], ['name' => 'Westerly', 'country_code' => 'US'], ['name' => 'Agropoli', 'country_code' => 'IT'], ['name' => 'Heide', 'country_code' => 'DE'], ['name' => 'Bedford', 'country_code' => 'US'], ['name' => 'Santo Antonio de Posse', 'country_code' => 'BR'], ['name' => 'Hopewell', 'country_code' => 'US'], ['name' => 'Mutata', 'country_code' => 'CO'], ['name' => 'Fort Walton Beach', 'country_code' => 'US'], ['name' => 'Radevormwald', 'country_code' => 'DE'], ['name' => 'Nixa', 'country_code' => 'US'], ['name' => 'Caba', 'country_code' => 'PH'], ['name' => 'Nadvirna', 'country_code' => 'UA'], ['name' => 'Olanchito', 'country_code' => 'HN'], ['name' => 'Florsheim', 'country_code' => 'DE'], ['name' => 'Socorro', 'country_code' => 'PH'], ['name' => 'Khadyzhensk', 'country_code' => 'RU'], ['name' => 'Hythe', 'country_code' => 'GB'], ['name' => 'Santa Ana Nextlalpan', 'country_code' => 'MX'], ['name' => 'Gaoguzhuang', 'country_code' => 'CN'], ['name' => 'Clinton', 'country_code' => 'US'], ['name' => 'Apolda', 'country_code' => 'DE'], ['name' => 'Zhedao', 'country_code' => 'CN'], ['name' => 'Munster', 'country_code' => 'US'], ['name' => 'Christiansburg', 'country_code' => 'US'], ['name' => 'Gorgonzola', 'country_code' => 'IT'], ['name' => 'Anthem', 'country_code' => 'US'], ['name' => 'Roselle', 'country_code' => 'US'], ['name' => 'Saint-Louis', 'country_code' => 'FR'], ['name' => 'Amizmiz', 'country_code' => 'MA'], ['name' => 'Halluin', 'country_code' => 'FR'], ['name' => 'Garden City', 'country_code' => 'US'], ['name' => 'El Colegio', 'country_code' => 'CO'], ['name' => 'Koprivnice', 'country_code' => 'CZ'], ['name' => 'Priego de Cordoba', 'country_code' => 'ES'], ['name' => 'Tarnaveni', 'country_code' => 'RO'], ['name' => 'Gardelegen', 'country_code' => 'DE'], ['name' => 'La Jagua de Ibirico', 'country_code' => 'CO'], ['name' => 'Castelnau-le-Lez', 'country_code' => 'FR'], ['name' => 'Dianopolis', 'country_code' => 'BR'], ['name' => 'Looc', 'country_code' => 'PH'], ['name' => 'Santa Teresita', 'country_code' => 'PH'], ['name' => 'Schwetzingen', 'country_code' => 'DE'], ['name' => 'Klatovy', 'country_code' => 'CZ'], ['name' => 'Barra da Estiva', 'country_code' => 'BR'], ['name' => 'Warrensburg', 'country_code' => 'US'], ['name' => 'Sao Vicente Ferrer', 'country_code' => 'BR'], ['name' => 'Hockenheim', 'country_code' => 'DE'], ['name' => 'Daxin', 'country_code' => 'CN'], ['name' => 'Kihei', 'country_code' => 'US'], ['name' => 'Union City', 'country_code' => 'US'], ['name' => 'Casal di Principe', 'country_code' => 'IT'], ['name' => 'Acatlan', 'country_code' => 'MX'], ['name' => 'Zeewolde', 'country_code' => 'NL'], ['name' => 'Borgomanero', 'country_code' => 'IT'], ['name' => 'Lebu', 'country_code' => 'CL'], ['name' => 'Mendeleyevsk', 'country_code' => 'RU'], ['name' => 'Cornaredo', 'country_code' => 'IT'], ['name' => 'Chankou', 'country_code' => 'CN'], ['name' => 'Zhucaoying', 'country_code' => 'CN'], ['name' => 'La Cruz', 'country_code' => 'CL'], ['name' => 'Fougeres', 'country_code' => 'FR'], ['name' => 'Corinto', 'country_code' => 'NI'], ['name' => 'Florida Ridge', 'country_code' => 'US'], ['name' => 'Ar Rutbah', 'country_code' => 'IQ'], ['name' => 'Takahata', 'country_code' => 'JP'], ['name' => 'Bubong', 'country_code' => 'PH'], ['name' => 'Yahualica', 'country_code' => 'MX'], ['name' => 'Demba', 'country_code' => 'CD'], ['name' => 'Silver Firs', 'country_code' => 'US'], ['name' => 'Alvarado', 'country_code' => 'MX'], ['name' => 'Patian', 'country_code' => 'PH'], ['name' => 'Presidente Medici', 'country_code' => 'BR'], ['name' => 'Colorado', 'country_code' => 'BR'], ['name' => 'Dolton', 'country_code' => 'US'], ['name' => 'Natagaima', 'country_code' => 'CO'], ['name' => 'Duncan', 'country_code' => 'US'], ['name' => 'Chaumont', 'country_code' => 'FR'], ['name' => 'Ramain', 'country_code' => 'PH'], ['name' => 'Iraucuba', 'country_code' => 'BR'], ['name' => 'Palestrina', 'country_code' => 'IT'], ['name' => 'Brent', 'country_code' => 'US'], ['name' => 'Bacchus Marsh', 'country_code' => 'AU'], ['name' => 'Murayama', 'country_code' => 'JP'], ['name' => 'Camana', 'country_code' => 'PE'], ['name' => 'Lyman', 'country_code' => 'UA'], ['name' => 'Villeneuve-sur-Lot', 'country_code' => 'FR'], ['name' => 'San Andres Villa Seca', 'country_code' => 'GT'], ['name' => 'El Doncello', 'country_code' => 'CO'], ['name' => 'Northfield', 'country_code' => 'US'], ['name' => 'Nikolskoye', 'country_code' => 'RU'], ['name' => 'Tepexi de Rodriguez', 'country_code' => 'MX'], ['name' => 'Gata', 'country_code' => 'PH'], ['name' => 'Pingtan', 'country_code' => 'CN'], ['name' => 'Highland', 'country_code' => 'US'], ['name' => 'Nieuwerkerk aan den IJssel', 'country_code' => 'NL'], ['name' => 'Las Torres de Cotillas', 'country_code' => 'ES'], ['name' => 'Binnish', 'country_code' => 'SY'], ['name' => 'Musselburgh', 'country_code' => 'GB'], ['name' => 'Harim', 'country_code' => 'SY'], ['name' => 'Sequim', 'country_code' => 'US'], ['name' => 'Djibo', 'country_code' => 'BF'], ['name' => 'Lyndhurst', 'country_code' => 'US'], ['name' => 'Prairie Village', 'country_code' => 'US'], ['name' => 'Djinet', 'country_code' => 'DZ'], ['name' => 'Herent', 'country_code' => 'BE'], ['name' => 'Atuntaqui', 'country_code' => 'EC'], ['name' => 'Kuna', 'country_code' => 'US'], ['name' => 'Coralville', 'country_code' => 'US'], ['name' => 'Waltham Abbey', 'country_code' => 'GB'], ['name' => 'Saint-Jean-de-Braye', 'country_code' => 'FR'], ['name' => 'Popesti-Leordeni', 'country_code' => 'RO'], ['name' => 'Sao Miguel do Araguaia', 'country_code' => 'BR'], ['name' => 'Spremberg', 'country_code' => 'DE'], ['name' => 'Fort Mill', 'country_code' => 'US'], ['name' => 'Caracarai', 'country_code' => 'BR'], ['name' => 'Bad Harzburg', 'country_code' => 'DE'], ['name' => 'Mandirituba', 'country_code' => 'BR'], ['name' => 'Terenos', 'country_code' => 'BR'], ['name' => 'Ouardenine', 'country_code' => 'TN'], ['name' => 'Bressanone', 'country_code' => 'IT'], ['name' => 'Morris', 'country_code' => 'US'], ['name' => 'Niskayuna', 'country_code' => 'US'], ['name' => 'Comacchio', 'country_code' => 'IT'], ['name' => 'Moinesti', 'country_code' => 'RO'], ['name' => 'Waldkirch', 'country_code' => 'DE'], ['name' => 'Hazebrouck', 'country_code' => 'FR'], ['name' => 'Rose Hill', 'country_code' => 'US'], ['name' => 'Ban Piang Luang', 'country_code' => 'TH'], ['name' => 'Lihuzhuang', 'country_code' => 'CN'], ['name' => 'Eseka', 'country_code' => 'CM'], ['name' => 'Caojiachuan', 'country_code' => 'CN'], ['name' => 'San Rafael del Norte', 'country_code' => 'NI'], ['name' => 'Auch', 'country_code' => 'FR'], ['name' => 'Millau', 'country_code' => 'FR'], ['name' => 'Hudson', 'country_code' => 'US'], ['name' => 'Geertruidenberg', 'country_code' => 'NL'], ['name' => 'Lutz', 'country_code' => 'US'], ['name' => 'Chapa de Mota', 'country_code' => 'MX'], ['name' => 'Alhama de Murcia', 'country_code' => 'ES'], ['name' => 'Taylors', 'country_code' => 'US'], ['name' => 'Ramos', 'country_code' => 'PH'], ['name' => 'Roanoke Rapids', 'country_code' => 'US'], ['name' => 'Guilford', 'country_code' => 'US'], ['name' => 'Vernon', 'country_code' => 'US'], ['name' => 'Afourar', 'country_code' => 'MA'], ['name' => 'Vega Baja', 'country_code' => 'PR'], ['name' => 'Tangalan', 'country_code' => 'PH'], ['name' => 'Castrovillari', 'country_code' => 'IT'], ['name' => 'Raymore', 'country_code' => 'US'], ['name' => 'Ensley', 'country_code' => 'US'], ['name' => 'Fremont', 'country_code' => 'US'], ['name' => 'Colleferro', 'country_code' => 'IT'], ['name' => 'Mukwonago', 'country_code' => 'US'], ['name' => 'Diamantino', 'country_code' => 'BR'], ['name' => 'Laventille', 'country_code' => 'TT'], ['name' => 'Bavly', 'country_code' => 'RU'], ['name' => 'Watertown', 'country_code' => 'US'], ['name' => 'East Patchogue', 'country_code' => 'US'], ['name' => 'Qarazhal', 'country_code' => 'KZ'], ['name' => 'Porto Belo', 'country_code' => 'BR'], ['name' => 'Kitzingen', 'country_code' => 'DE'], ['name' => 'Lebanon', 'country_code' => 'US'], ['name' => 'Qapqal', 'country_code' => 'CN'], ['name' => 'Pickerington', 'country_code' => 'US'], ['name' => 'Binidayan', 'country_code' => 'PH'], ['name' => 'Lexington', 'country_code' => 'US'], ['name' => 'Eislingen', 'country_code' => 'DE'], ['name' => 'Silvania', 'country_code' => 'CO'], ['name' => 'Arvin', 'country_code' => 'US'], ['name' => 'Cantanhede', 'country_code' => 'BR'], ['name' => 'Bristol', 'country_code' => 'US'], ['name' => 'Schroeder', 'country_code' => 'BR'], ['name' => 'Beni Douala', 'country_code' => 'DZ'], ['name' => 'Budingen', 'country_code' => 'DE'], ['name' => 'Kommunar', 'country_code' => 'RU'], ['name' => 'Southold', 'country_code' => 'US'], ['name' => 'Palmital', 'country_code' => 'BR'], ['name' => 'Honmachi', 'country_code' => 'JP'], ['name' => 'Leczna', 'country_code' => 'PL'], ['name' => 'Raritan', 'country_code' => 'US'], ['name' => 'Manlleu', 'country_code' => 'ES'], ['name' => 'Luofa', 'country_code' => 'CN'], ['name' => 'Swiedbodzin', 'country_code' => 'PL'], ['name' => 'Pailitas', 'country_code' => 'CO'], ['name' => 'Una', 'country_code' => 'BR'], ['name' => 'Cortona', 'country_code' => 'IT'], ['name' => 'Lino Lakes', 'country_code' => 'US'], ['name' => 'Augusta', 'country_code' => 'US'], ['name' => 'Woensdrecht', 'country_code' => 'NL'], ['name' => 'Aljaraque', 'country_code' => 'ES'], ['name' => 'Busuanga', 'country_code' => 'PH'], ['name' => 'Milford', 'country_code' => 'US'], ['name' => 'Cunha', 'country_code' => 'BR'], ['name' => 'Shelbyville', 'country_code' => 'US'], ['name' => 'Corinth', 'country_code' => 'US'], ['name' => 'Sidi Rahal', 'country_code' => 'MA'], ['name' => 'Kontich', 'country_code' => 'BE'], ['name' => 'Yaojiafen', 'country_code' => 'CN'], ['name' => 'Timbiqui', 'country_code' => 'CO'], ['name' => 'Naples', 'country_code' => 'US'], ['name' => 'Bataguacu', 'country_code' => 'BR'], ['name' => 'Maghull', 'country_code' => 'GB'], ['name' => 'Pantar', 'country_code' => 'PH'], ['name' => 'Ust -Katav', 'country_code' => 'RU'], ['name' => 'Maple Heights', 'country_code' => 'US'], ['name' => 'Vanersborg', 'country_code' => 'SE'], ['name' => 'Tiquisio', 'country_code' => 'CO'], ['name' => 'Semikarakorsk', 'country_code' => 'RU'], ['name' => 'Laziska Gorne', 'country_code' => 'PL'], ['name' => 'Peshtera', 'country_code' => 'BG'], ['name' => 'Eppingen', 'country_code' => 'DE'], ['name' => 'Taminango', 'country_code' => 'CO'], ['name' => 'Lugus', 'country_code' => 'PH'], ['name' => 'Gotse Delchev', 'country_code' => 'BG'], ['name' => 'Hlohovec', 'country_code' => 'SK'], ['name' => 'Povoa de Lanhoso', 'country_code' => 'PT'], ['name' => 'Unity', 'country_code' => 'US'], ['name' => 'Jalpan', 'country_code' => 'MX'], ['name' => 'Pio XII', 'country_code' => 'BR'], ['name' => 'Kozmodemyansk', 'country_code' => 'RU'], ['name' => 'Chester', 'country_code' => 'US'], ['name' => 'Gardner', 'country_code' => 'US'], ['name' => 'San Bonifacio', 'country_code' => 'IT'], ['name' => 'Vilyuchinsk', 'country_code' => 'RU'], ['name' => 'Carutapera', 'country_code' => 'BR'], ['name' => 'Kemi', 'country_code' => 'FI'], ['name' => 'Omutninsk', 'country_code' => 'RU'], ['name' => 'Monte Azul', 'country_code' => 'BR'], ['name' => 'Sonthofen', 'country_code' => 'DE'], ['name' => 'Kotovo', 'country_code' => 'RU'], ['name' => 'Anicuns', 'country_code' => 'BR'], ['name' => 'Colonia Leopoldina', 'country_code' => 'BR'], ['name' => 'Puerto Suarez', 'country_code' => 'BO'], ['name' => 'Axapusco', 'country_code' => 'MX'], ['name' => 'Vereshchagino', 'country_code' => 'RU'], ['name' => 'Union Hill-Novelty Hill', 'country_code' => 'US'], ['name' => 'Elsdorf', 'country_code' => 'DE'], ['name' => 'Xanten', 'country_code' => 'DE'], ['name' => 'Rolleston', 'country_code' => 'NZ'], ['name' => 'Seligenstadt', 'country_code' => 'DE'], ['name' => 'Peters', 'country_code' => 'US'], ['name' => 'Kotli', 'country_code' => 'PK'], ['name' => 'Coreau', 'country_code' => 'BR'], ['name' => 'Isernia', 'country_code' => 'IT'], ['name' => 'Dumbarton', 'country_code' => 'GB'], ['name' => 'Notteroy', 'country_code' => 'NO'], ['name' => 'Siloam Springs', 'country_code' => 'US'], ['name' => 'Moguer', 'country_code' => 'ES'], ['name' => 'Thenia', 'country_code' => 'DZ'], ['name' => 'Iisalmi', 'country_code' => 'FI'], ['name' => 'Cajidiocan', 'country_code' => 'PH'], ['name' => 'Opoczno', 'country_code' => 'PL'], ['name' => 'Reigate', 'country_code' => 'GB'], ['name' => 'Palafrugell', 'country_code' => 'ES'], ['name' => 'Pedernales', 'country_code' => 'EC'], ['name' => 'Trinidad', 'country_code' => 'UY'], ['name' => 'East Hampton', 'country_code' => 'US'], ['name' => 'Banaue', 'country_code' => 'PH'], ['name' => 'Wieliczka', 'country_code' => 'PL'], ['name' => 'Guia de Isora', 'country_code' => 'ES'], ['name' => 'Tongzhou', 'country_code' => 'CN'], ['name' => 'Tornio', 'country_code' => 'FI'], ['name' => 'Osterode', 'country_code' => 'DE'], ['name' => 'Gif-sur-Yvette', 'country_code' => 'FR'], ['name' => 'Piqua', 'country_code' => 'US'], ['name' => 'Amherstburg', 'country_code' => 'CA'], ['name' => 'Chelmno', 'country_code' => 'PL'], ['name' => 'Hallein', 'country_code' => 'AT'], ['name' => 'Poortugaal', 'country_code' => 'NL'], ['name' => 'Fish Hawk', 'country_code' => 'US'], ['name' => 'Yoqne am Illit', 'country_code' => 'IL'], ['name' => 'El Ksiba', 'country_code' => 'MA'], ['name' => 'Zorgo', 'country_code' => 'BF'], ['name' => 'Port Hueneme', 'country_code' => 'US'], ['name' => 'Caxambu', 'country_code' => 'BR'], ['name' => 'Lagonglong', 'country_code' => 'PH'], ['name' => 'Lakeside', 'country_code' => 'US'], ['name' => 'Gympie', 'country_code' => 'AU'], ['name' => 'Cha Grande', 'country_code' => 'BR'], ['name' => 'Tolosa', 'country_code' => 'PH'], ['name' => 'Candoni', 'country_code' => 'PH'], ['name' => 'Sao Jose da Coroa Grande', 'country_code' => 'BR'], ['name' => 'Azambuja', 'country_code' => 'PT'], ['name' => 'Casablanca', 'country_code' => 'CL'], ['name' => 'Summit', 'country_code' => 'US'], ['name' => 'Halewood', 'country_code' => 'GB'], ['name' => 'Secaucus', 'country_code' => 'US'], ['name' => 'Potters Bar', 'country_code' => 'GB'], ['name' => 'Urucuca', 'country_code' => 'BR'], ['name' => 'Colle di Val d Elsa', 'country_code' => 'IT'], ['name' => 'Golden Valley', 'country_code' => 'US'], ['name' => 'Olho d Agua das Flores', 'country_code' => 'BR'], ['name' => 'Ginebra', 'country_code' => 'CO'], ['name' => 'Calamba', 'country_code' => 'PH'], ['name' => 'Gros Islet', 'country_code' => 'LC'], ['name' => 'Codlea', 'country_code' => 'RO'], ['name' => 'Coueron', 'country_code' => 'FR'], ['name' => 'Fukuyoshi', 'country_code' => 'JP'], ['name' => 'Alcantara', 'country_code' => 'BR'], ['name' => 'Mount Vernon', 'country_code' => 'US'], ['name' => 'Mashiko', 'country_code' => 'JP'], ['name' => 'Lisieux', 'country_code' => 'FR'], ['name' => 'Imi-n-Tanout', 'country_code' => 'MA'], ['name' => 'Banolas', 'country_code' => 'ES'], ['name' => 'Tidili Masfiywat', 'country_code' => 'MA'], ['name' => 'Ilsede', 'country_code' => 'DE'], ['name' => 'Brockville', 'country_code' => 'CA'], ['name' => 'Santa Maria das Barreiras', 'country_code' => 'BR'], ['name' => 'Ocotlan de Morelos', 'country_code' => 'MX'], ['name' => 'Bloomington', 'country_code' => 'US'], ['name' => 'Piazza Armerina', 'country_code' => 'IT'], ['name' => 'Maigo', 'country_code' => 'PH'], ['name' => 'Camanducaia', 'country_code' => 'BR'], ['name' => 'Camp Springs', 'country_code' => 'US'], ['name' => 'Siilinjarvi', 'country_code' => 'FI'], ['name' => 'New Hartford', 'country_code' => 'US'], ['name' => ' Adra', 'country_code' => 'SY'], ['name' => 'Manari', 'country_code' => 'BR'], ['name' => 'Itajuipe', 'country_code' => 'BR'], ['name' => 'Isla-Cristina', 'country_code' => 'ES'], ['name' => 'San Martin de las Piramides', 'country_code' => 'MX'], ['name' => 'Bornem', 'country_code' => 'BE'], ['name' => 'Geneva', 'country_code' => 'US'], ['name' => 'Cavinti', 'country_code' => 'PH'], ['name' => 'Sao Francisco de Paula', 'country_code' => 'BR'], ['name' => 'Burgos', 'country_code' => 'PH'], ['name' => 'Puerto Triunfo', 'country_code' => 'CO'], ['name' => 'San Bernardo', 'country_code' => 'CO'], ['name' => 'Rancho San Diego', 'country_code' => 'US'], ['name' => 'Silva Jardim', 'country_code' => 'BR'], ['name' => 'Itaiopolis', 'country_code' => 'BR'], ['name' => 'Collingwood', 'country_code' => 'CA'], ['name' => 'Alcala la Real', 'country_code' => 'ES'], ['name' => 'Quickborn', 'country_code' => 'DE'], ['name' => 'Monsummano', 'country_code' => 'IT'], ['name' => 'Zundert', 'country_code' => 'NL'], ['name' => 'Itapecerica', 'country_code' => 'BR'], ['name' => 'Coronel Vivida', 'country_code' => 'BR'], ['name' => 'Bloomingdale', 'country_code' => 'US'], ['name' => 'Pergine Valsugana', 'country_code' => 'IT'], ['name' => 'Saint Austell', 'country_code' => 'GB'], ['name' => 'Corciano', 'country_code' => 'IT'], ['name' => 'Viga', 'country_code' => 'PH'], ['name' => 'Palo del Colle', 'country_code' => 'IT'], ['name' => 'Bilohorodka', 'country_code' => 'UA'], ['name' => 'Miguelopolis', 'country_code' => 'BR'], ['name' => 'Watertown', 'country_code' => 'US'], ['name' => 'Kurikka', 'country_code' => 'FI'], ['name' => 'Sao Marcos', 'country_code' => 'BR'], ['name' => 'Darien', 'country_code' => 'US'], ['name' => 'Germersheim', 'country_code' => 'DE'], ['name' => 'Gokcebey', 'country_code' => 'TR'], ['name' => 'Dax', 'country_code' => 'FR'], ['name' => 'Shafter', 'country_code' => 'US'], ['name' => 'Eastmont', 'country_code' => 'US'], ['name' => 'Wallington', 'country_code' => 'GB'], ['name' => 'Lincoln', 'country_code' => 'US'], ['name' => 'Stadtallendorf', 'country_code' => 'DE'], ['name' => 'Katy', 'country_code' => 'US'], ['name' => 'Brownwood', 'country_code' => 'US'], ['name' => 'Chernogolovka', 'country_code' => 'RU'], ['name' => 'Versmold', 'country_code' => 'DE'], ['name' => 'Savigliano', 'country_code' => 'IT'], ['name' => 'Bato', 'country_code' => 'PH'], ['name' => 'Del City', 'country_code' => 'US'], ['name' => 'Woodlesford', 'country_code' => 'GB'], ['name' => 'Kobilo', 'country_code' => 'SN'], ['name' => 'Eyl', 'country_code' => 'SO'], ['name' => 'Almoradi', 'country_code' => 'ES'], ['name' => 'Zerbst', 'country_code' => 'DE'], ['name' => 'Montecatini Terme', 'country_code' => 'IT'], ['name' => 'Batad', 'country_code' => 'PH'], ['name' => 'Senaki', 'country_code' => 'GE'], ['name' => 'Caapora', 'country_code' => 'BR'], ['name' => 'San Jacinto', 'country_code' => 'CO'], ['name' => 'Smithfield', 'country_code' => 'US'], ['name' => 'Beaune', 'country_code' => 'FR'], ['name' => 'Sao Felipe', 'country_code' => 'BR'], ['name' => 'Cassilandia', 'country_code' => 'BR'], ['name' => 'Bad Rappenau', 'country_code' => 'DE'], ['name' => 'Nova Brasilandia d Oeste', 'country_code' => 'BR'], ['name' => 'Follonica', 'country_code' => 'IT'], ['name' => 'Wulfrath', 'country_code' => 'DE'], ['name' => 'Jacksonville', 'country_code' => 'US'], ['name' => 'Les Pennes-Mirabeau', 'country_code' => 'FR'], ['name' => 'Yenice', 'country_code' => 'TR'], ['name' => 'Entroncamento', 'country_code' => 'PT'], ['name' => 'Silverdale', 'country_code' => 'US'], ['name' => 'Allendale', 'country_code' => 'US'], ['name' => 'Kant', 'country_code' => 'KG'], ['name' => 'Nefta', 'country_code' => 'TN'], ['name' => 'Aichach', 'country_code' => 'DE'], ['name' => 'Denain', 'country_code' => 'FR'], ['name' => 'Crisopolis', 'country_code' => 'BR'], ['name' => 'Kirkintilloch', 'country_code' => 'GB'], ['name' => 'Urucui', 'country_code' => 'BR'], ['name' => 'Paraguacu', 'country_code' => 'BR'], ['name' => 'Lower', 'country_code' => 'US'], ['name' => 'San Nicolas', 'country_code' => 'CU'], ['name' => 'Lindlar', 'country_code' => 'DE'], ['name' => 'Nueva Granada', 'country_code' => 'CO'], ['name' => 'Tamgrout', 'country_code' => 'MA'], ['name' => 'La Resolana', 'country_code' => 'MX'], ['name' => 'San Justo', 'country_code' => 'AR'], ['name' => 'Leerdam', 'country_code' => 'NL'], ['name' => 'Darien', 'country_code' => 'US'], ['name' => 'Hoogstraten', 'country_code' => 'BE'], ['name' => 'Ozoir-la-Ferriere', 'country_code' => 'FR'], ['name' => 'Perrysburg', 'country_code' => 'US'], ['name' => 'Zhoucun', 'country_code' => 'CN'], ['name' => 'Coswig', 'country_code' => 'DE'], ['name' => 'Sondershausen', 'country_code' => 'DE'], ['name' => 'Scugog', 'country_code' => 'CA'], ['name' => 'Galeras', 'country_code' => 'CO'], ['name' => 'Lewistown', 'country_code' => 'US'], ['name' => 'Richmond', 'country_code' => 'GB'], ['name' => 'Allauch', 'country_code' => 'FR'], ['name' => 'Nang Rong', 'country_code' => 'TH'], ['name' => 'Piddig', 'country_code' => 'PH'], ['name' => 'Tong anyi', 'country_code' => 'CN'], ['name' => 'Anagni', 'country_code' => 'IT'], ['name' => 'Argenta', 'country_code' => 'IT'], ['name' => 'Acatic', 'country_code' => 'MX'], ['name' => 'Parelhas', 'country_code' => 'BR'], ['name' => 'Eeklo', 'country_code' => 'BE'], ['name' => 'Gardanne', 'country_code' => 'FR'], ['name' => 'Hajnowka', 'country_code' => 'PL'], ['name' => 'MacArthur', 'country_code' => 'PH'], ['name' => 'Grottaferrata', 'country_code' => 'IT'], ['name' => 'La Porte', 'country_code' => 'US'], ['name' => 'Perdoes', 'country_code' => 'BR'], ['name' => 'Geseke', 'country_code' => 'DE'], ['name' => 'Gherla', 'country_code' => 'RO'], ['name' => 'Clarksville', 'country_code' => 'US'], ['name' => 'Dayr Abu Hinnis', 'country_code' => 'EG'], ['name' => 'New Castle', 'country_code' => 'US'], ['name' => 'Buritirama', 'country_code' => 'BR'], ['name' => 'Jamsa', 'country_code' => 'FI'], ['name' => 'Murree', 'country_code' => 'PK'], ['name' => 'Kingsville', 'country_code' => 'CA'], ['name' => 'Gujan-Mestras', 'country_code' => 'FR'], ['name' => 'Monte Santo de Minas', 'country_code' => 'BR'], ['name' => 'Ano Syros', 'country_code' => 'GR'], ['name' => 'Porto Franco', 'country_code' => 'BR'], ['name' => 'Barro', 'country_code' => 'BR'], ['name' => 'Leek', 'country_code' => 'GB'], ['name' => 'Romano di Lombardia', 'country_code' => 'IT'], ['name' => 'Cajueiro', 'country_code' => 'BR'], ['name' => 'Kara-Suu', 'country_code' => 'KG'], ['name' => 'Baie-Comeau', 'country_code' => 'CA'], ['name' => 'Qia erbagecun', 'country_code' => 'CN'], ['name' => 'Harsefeld', 'country_code' => 'DE'], ['name' => 'Santa Barbara', 'country_code' => 'CO'], ['name' => 'Dean Funes', 'country_code' => 'AR'], ['name' => 'Villagarzon', 'country_code' => 'CO'], ['name' => 'Anini-y', 'country_code' => 'PH'], ['name' => 'Paraibano', 'country_code' => 'BR'], ['name' => 'Bellview', 'country_code' => 'US'], ['name' => 'Vecses', 'country_code' => 'HU'], ['name' => 'Picasent', 'country_code' => 'ES'], ['name' => 'Lagoa do Itaenga', 'country_code' => 'BR'], ['name' => 'Livadeia', 'country_code' => 'GR'], ['name' => 'Biddeford', 'country_code' => 'US'], ['name' => 'Suzzara', 'country_code' => 'IT'], ['name' => 'Moniquira', 'country_code' => 'CO'], ['name' => 'Wang Nam Yen', 'country_code' => 'TH'], ['name' => 'Juli', 'country_code' => 'PE'], ['name' => 'Somers', 'country_code' => 'US'], ['name' => 'Sarreguemines', 'country_code' => 'FR'], ['name' => 'Ryazhsk', 'country_code' => 'RU'], ['name' => 'Rosolini', 'country_code' => 'IT'], ['name' => 'Villa Park', 'country_code' => 'US'], ['name' => 'Magallanes', 'country_code' => 'PH'], ['name' => 'El Paujil', 'country_code' => 'CO'], ['name' => 'Almaguer', 'country_code' => 'CO'], ['name' => 'Fernley', 'country_code' => 'US'], ['name' => 'Xintian', 'country_code' => 'CN'], ['name' => 'Essex', 'country_code' => 'US'], ['name' => 'Prudnik', 'country_code' => 'PL'], ['name' => 'Schramberg', 'country_code' => 'DE'], ['name' => 'Khotkovo', 'country_code' => 'RU'], ['name' => 'Elkridge', 'country_code' => 'US'], ['name' => 'Kutna Hora', 'country_code' => 'CZ'], ['name' => 'Jindrichuv Hradec', 'country_code' => 'CZ'], ['name' => 'Naawan', 'country_code' => 'PH'], ['name' => 'Palatka', 'country_code' => 'RU'], ['name' => 'Antsohihy', 'country_code' => 'MG'], ['name' => 'Tarko-Sale', 'country_code' => 'RU'], ['name' => 'Sint-Katelijne-Waver', 'country_code' => 'BE'], ['name' => 'Traunreut', 'country_code' => 'DE'], ['name' => 'Mukilteo', 'country_code' => 'US'], ['name' => 'Cugir', 'country_code' => 'RO'], ['name' => 'Urussanga', 'country_code' => 'BR'], ['name' => 'East Pennsboro', 'country_code' => 'US'], ['name' => 'Atoka', 'country_code' => 'US'], ['name' => 'Prichard', 'country_code' => 'US'], ['name' => 'Le Ray', 'country_code' => 'US'], ['name' => 'Oros', 'country_code' => 'BR'], ['name' => 'Waghausel', 'country_code' => 'DE'], ['name' => 'Soltau', 'country_code' => 'DE'], ['name' => 'Hays', 'country_code' => 'US'], ['name' => 'Tubbergen', 'country_code' => 'NL'], ['name' => 'Oulad Embarek', 'country_code' => 'MA'], ['name' => 'Tizi-n-Bechar', 'country_code' => 'DZ'], ['name' => 'Gross-Umstadt', 'country_code' => 'DE'], ['name' => 'Pajara', 'country_code' => 'ES'], ['name' => 'Sanhe', 'country_code' => 'CN'], ['name' => 'Los Vilos', 'country_code' => 'CL'], ['name' => 'Nerja', 'country_code' => 'ES'], ['name' => 'Sestu', 'country_code' => 'IT'], ['name' => 'Recanati', 'country_code' => 'IT'], ['name' => 'Birmingham', 'country_code' => 'US'], ['name' => 'Paradise', 'country_code' => 'CA'], ['name' => 'Sessa Aurunca', 'country_code' => 'IT'], ['name' => 'Pompeia', 'country_code' => 'BR'], ['name' => 'Marogong', 'country_code' => 'PH'], ['name' => 'Montville', 'country_code' => 'US'], ['name' => 'Easley', 'country_code' => 'US'], ['name' => 'La Union', 'country_code' => 'ES'], ['name' => 'Brambleton', 'country_code' => 'US'], ['name' => 'Gryfino', 'country_code' => 'PL'], ['name' => 'Kaltan', 'country_code' => 'RU'], ['name' => 'Totoro', 'country_code' => 'CO'], ['name' => 'Samboan', 'country_code' => 'PH'], ['name' => 'Palmer', 'country_code' => 'US'], ['name' => 'Shisui', 'country_code' => 'JP'], ['name' => 'Jandaia do Sul', 'country_code' => 'BR'], ['name' => 'Hindang', 'country_code' => 'PH'], ['name' => 'Los Llanos de Aridane', 'country_code' => 'ES'], ['name' => 'Lyskovo', 'country_code' => 'RU'], ['name' => 'Varadero', 'country_code' => 'CU'], ['name' => 'Belovodskoe', 'country_code' => 'KG'], ['name' => 'Youganning', 'country_code' => 'CN'], ['name' => 'Barcelona', 'country_code' => 'PH'], ['name' => 'Asni', 'country_code' => 'MA'], ['name' => 'Ramona', 'country_code' => 'US'], ['name' => 'Carei', 'country_code' => 'RO'], ['name' => 'Bananeiras', 'country_code' => 'BR'], ['name' => 'Owosso', 'country_code' => 'US'], ['name' => 'King of Prussia', 'country_code' => 'US'], ['name' => 'Elverum', 'country_code' => 'NO'], ['name' => 'DeBary', 'country_code' => 'US'], ['name' => 'Araripe', 'country_code' => 'BR'], ['name' => 'Garforth', 'country_code' => 'GB'], ['name' => 'Eustis', 'country_code' => 'US'], ['name' => 'Tanhacu', 'country_code' => 'BR'], ['name' => 'South Euclid', 'country_code' => 'US'], ['name' => 'Adet', 'country_code' => 'ET'], ['name' => 'South Holland', 'country_code' => 'US'], ['name' => 'Jiangjiadong', 'country_code' => 'CN'], ['name' => 'Pushchino', 'country_code' => 'RU'], ['name' => 'Okahandja', 'country_code' => 'NA'], ['name' => 'Palm Valley', 'country_code' => 'US'], ['name' => 'Bulach', 'country_code' => 'CH'], ['name' => 'Ludlow', 'country_code' => 'US'], ['name' => 'Nerekhta', 'country_code' => 'RU'], ['name' => 'Carmo do Rio Claro', 'country_code' => 'BR'], ['name' => 'Paraisopolis', 'country_code' => 'BR'], ['name' => 'Givors', 'country_code' => 'FR'], ['name' => 'Ashland', 'country_code' => 'US'], ['name' => 'Sapulpa', 'country_code' => 'US'], ['name' => 'Santa Maria Chilchotla', 'country_code' => 'MX'], ['name' => 'Manuel Tames', 'country_code' => 'CU'], ['name' => 'Alfena', 'country_code' => 'PT'], ['name' => 'Bonito', 'country_code' => 'BR'], ['name' => 'Duarte', 'country_code' => 'US'], ['name' => 'Aguadas', 'country_code' => 'CO'], ['name' => 'Rio Maior', 'country_code' => 'PT'], ['name' => 'Marietta', 'country_code' => 'US'], ['name' => 'Lucelia', 'country_code' => 'BR'], ['name' => 'Great Linford', 'country_code' => 'GB'], ['name' => 'Griffith', 'country_code' => 'AU'], ['name' => 'Brezno', 'country_code' => 'SK'], ['name' => 'Ayamonte', 'country_code' => 'ES'], ['name' => 'Battle Ground', 'country_code' => 'US'], ['name' => 'Ferentino', 'country_code' => 'IT'], ['name' => 'Stephenville', 'country_code' => 'US'], ['name' => 'Monte Alegre de Minas', 'country_code' => 'BR'], ['name' => 'Itororo', 'country_code' => 'BR'], ['name' => 'Amsterdam', 'country_code' => 'US'], ['name' => 'Montecristo', 'country_code' => 'CO'], ['name' => 'Sandhurst', 'country_code' => 'GB'], ['name' => 'Oxford', 'country_code' => 'US'], ['name' => 'Reichenbach/Vogtland', 'country_code' => 'DE'], ['name' => 'Baixa Grande', 'country_code' => 'BR'], ['name' => 'Sadao', 'country_code' => 'TH'], ['name' => 'Park Forest', 'country_code' => 'US'], ['name' => 'San Salvo', 'country_code' => 'IT'], ['name' => 'Evans', 'country_code' => 'US'], ['name' => 'Alexandria', 'country_code' => 'US'], ['name' => 'Schenefeld', 'country_code' => 'DE'], ['name' => 'Hancha', 'country_code' => 'CN'], ['name' => 'Fort Atkinson', 'country_code' => 'US'], ['name' => 'Hazel Dell', 'country_code' => 'US'], ['name' => 'Varkaus', 'country_code' => 'FI'], ['name' => 'Bastos', 'country_code' => 'BR'], ['name' => 'Carrboro', 'country_code' => 'US'], ['name' => 'Baclayon', 'country_code' => 'PH'], ['name' => 'Seria', 'country_code' => 'BN'], ['name' => 'Agan', 'country_code' => 'CN'], ['name' => 'Bardstown', 'country_code' => 'US'], ['name' => 'East Ridge', 'country_code' => 'US'], ['name' => 'Wipperfurth', 'country_code' => 'DE'], ['name' => 'Elko', 'country_code' => 'US'], ['name' => 'Uxbridge', 'country_code' => 'CA'], ['name' => 'Covington', 'country_code' => 'US'], ['name' => 'Florencia', 'country_code' => 'CU'], ['name' => 'Suaza', 'country_code' => 'CO'], ['name' => 'Bologoye', 'country_code' => 'RU'], ['name' => 'Cabucgayan', 'country_code' => 'PH'], ['name' => 'Gaffney', 'country_code' => 'US'], ['name' => 'Quezon', 'country_code' => 'PH'], ['name' => 'Xinnongcun', 'country_code' => 'CN'], ['name' => 'Alcudia', 'country_code' => 'ES'], ['name' => 'Praia da Vitoria', 'country_code' => 'PT'], ['name' => 'Boralday', 'country_code' => 'KZ'], ['name' => 'Sun Valley', 'country_code' => 'US'], ['name' => 'Komatipoort', 'country_code' => 'ZA'], ['name' => 'Tigbao', 'country_code' => 'PH'], ['name' => 'Barroso', 'country_code' => 'BR'], ['name' => 'Anping', 'country_code' => 'CN'], ['name' => 'West Deptford', 'country_code' => 'US'], ['name' => 'Sidney', 'country_code' => 'US'], ['name' => 'Bonney Lake', 'country_code' => 'US'], ['name' => 'Urucurituba', 'country_code' => 'BR'], ['name' => 'Taperoa', 'country_code' => 'BR'], ['name' => 'Parabcan', 'country_code' => 'PH'], ['name' => 'Ecclesall', 'country_code' => 'GB'], ['name' => 'Frondenberg', 'country_code' => 'DE'], ['name' => 'Harstad', 'country_code' => 'NO'], ['name' => 'Villapinzon', 'country_code' => 'CO'], ['name' => 'El Calafate', 'country_code' => 'AR'], ['name' => 'Dickinson', 'country_code' => 'US'], ['name' => 'Martha Lake', 'country_code' => 'US'], ['name' => 'Cournon-d Auvergne', 'country_code' => 'FR'], ['name' => 'Little Egg Harbor', 'country_code' => 'US'], ['name' => 'Bad Schwartau', 'country_code' => 'DE'], ['name' => 'Faversham', 'country_code' => 'GB'], ['name' => 'Vikhorevka', 'country_code' => 'RU'], ['name' => 'Welench iti', 'country_code' => 'ET'], ['name' => 'Bothell West', 'country_code' => 'US'], ['name' => 'Bruchkobel', 'country_code' => 'DE'], ['name' => 'Jangy-Nookat', 'country_code' => 'KG'], ['name' => 'Fredonia', 'country_code' => 'CO'], ['name' => 'Werdau', 'country_code' => 'DE'], ['name' => 'Stange', 'country_code' => 'NO'], ['name' => 'Trecate', 'country_code' => 'IT'], ['name' => 'Pakil', 'country_code' => 'PH'], ['name' => 'Aspe', 'country_code' => 'ES'], ['name' => 'Pindobacu', 'country_code' => 'BR'], ['name' => 'Arroio do Meio', 'country_code' => 'BR'], ['name' => 'Imi n Oulaoun', 'country_code' => 'MA'], ['name' => 'Arnold', 'country_code' => 'US'], ['name' => 'Campestre', 'country_code' => 'BR'], ['name' => 'Can-Avid', 'country_code' => 'PH'], ['name' => 'Vyskov', 'country_code' => 'CZ'], ['name' => 'La Colonia Tovar', 'country_code' => 'VE'], ['name' => 'Essa', 'country_code' => 'CA'], ['name' => 'Santo Anastacio', 'country_code' => 'BR'], ['name' => 'Gunzburg', 'country_code' => 'DE'], ['name' => 'Ballenger Creek', 'country_code' => 'US'], ['name' => 'Bahia de Caraquez', 'country_code' => 'EC'], ['name' => 'Sotouboua', 'country_code' => 'TG'], ['name' => 'Crowborough', 'country_code' => 'GB'], ['name' => 'Toguchin', 'country_code' => 'RU'], ['name' => 'Ripley', 'country_code' => 'GB'], ['name' => 'Steinhagen', 'country_code' => 'DE'], ['name' => 'Chascomus', 'country_code' => 'AR'], ['name' => 'Elektrougli', 'country_code' => 'RU'], ['name' => 'Saka', 'country_code' => 'MA'], ['name' => 'El Reten', 'country_code' => 'CO'], ['name' => 'Rolla', 'country_code' => 'US'], ['name' => 'Sysert', 'country_code' => 'RU'], ['name' => 'West Pensacola', 'country_code' => 'US'], ['name' => 'Harvey', 'country_code' => 'US'], ['name' => 'Winschoten', 'country_code' => 'NL'], ['name' => 'Johnstown', 'country_code' => 'US'], ['name' => 'Sokal', 'country_code' => 'UA'], ['name' => 'Grand Island', 'country_code' => 'US'], ['name' => 'Candiac', 'country_code' => 'CA'], ['name' => 'Gallipoli', 'country_code' => 'IT'], ['name' => 'Zhangjiazhuang', 'country_code' => 'CN'], ['name' => 'Bni Rzine', 'country_code' => 'MA'], ['name' => 'Medina', 'country_code' => 'BR'], ['name' => 'Abano Terme', 'country_code' => 'IT'], ['name' => 'Cockeysville', 'country_code' => 'US'], ['name' => 'Zd ar nad Sazavou', 'country_code' => 'CZ'], ['name' => 'Oro-Medonte', 'country_code' => 'CA'], ['name' => 'Jefferson', 'country_code' => 'US'], ['name' => 'Pleasant Prairie', 'country_code' => 'US'], ['name' => 'Mirador', 'country_code' => 'BR'], ['name' => 'Palma del Rio', 'country_code' => 'ES'], ['name' => 'Voiron', 'country_code' => 'FR'], ['name' => 'Mitry-Mory', 'country_code' => 'FR'], ['name' => 'Liubotyn', 'country_code' => 'UA'], ['name' => 'Shelbyville', 'country_code' => 'US'], ['name' => 'Senguio', 'country_code' => 'MX'], ['name' => 'Bugalagrande', 'country_code' => 'CO'], ['name' => 'Bloomfield', 'country_code' => 'US'], ['name' => 'Tepezala', 'country_code' => 'MX'], ['name' => 'Gigaquit', 'country_code' => 'PH'], ['name' => 'Dudinka', 'country_code' => 'RU'], ['name' => 'Muhldorf', 'country_code' => 'DE'], ['name' => 'Nurota', 'country_code' => 'UZ'], ['name' => 'Comodoro', 'country_code' => 'BR'], ['name' => 'Hualqui', 'country_code' => 'CL'], ['name' => 'Lambari', 'country_code' => 'BR'], ['name' => 'Castel San Pietro Terme', 'country_code' => 'IT'], ['name' => 'Roshal', 'country_code' => 'RU'], ['name' => 'Caoayan', 'country_code' => 'PH'], ['name' => 'Varennes', 'country_code' => 'CA'], ['name' => 'St. Andrews', 'country_code' => 'US'], ['name' => 'Milwaukie', 'country_code' => 'US'], ['name' => 'Rivalta di Torino', 'country_code' => 'IT'], ['name' => 'Maribojoc', 'country_code' => 'PH'], ['name' => 'Challans', 'country_code' => 'FR'], ['name' => 'Madre de Deus', 'country_code' => 'BR'], ['name' => 'Butia', 'country_code' => 'BR'], ['name' => 'Bussolengo', 'country_code' => 'IT'], ['name' => 'Pedra', 'country_code' => 'BR'], ['name' => 'Guara', 'country_code' => 'BR'], ['name' => 'Bryant', 'country_code' => 'US'], ['name' => 'Mae Sai', 'country_code' => 'TH'], ['name' => 'Nizhniy Lomov', 'country_code' => 'RU'], ['name' => 'Urk', 'country_code' => 'NL'], ['name' => 'Purranque', 'country_code' => 'CL'], ['name' => 'Bohumin', 'country_code' => 'CZ'], ['name' => 'Luckenwalde', 'country_code' => 'DE'], ['name' => 'Guipos', 'country_code' => 'PH'], ['name' => 'Enger', 'country_code' => 'DE'], ['name' => 'Serro', 'country_code' => 'BR'], ['name' => 'Dillingen', 'country_code' => 'DE'], ['name' => 'Siquinala', 'country_code' => 'GT'], ['name' => 'Salmon Creek', 'country_code' => 'US'], ['name' => 'Hyde Park', 'country_code' => 'US'], ['name' => 'Cruzeiro do Oeste', 'country_code' => 'BR'], ['name' => 'Hernani', 'country_code' => 'ES'], ['name' => 'Kill Devil Hills', 'country_code' => 'US'], ['name' => 'Oderzo', 'country_code' => 'IT'], ['name' => 'Aracoiaba', 'country_code' => 'BR'], ['name' => 'North Salt Lake', 'country_code' => 'US'], ['name' => 'Apollo Beach', 'country_code' => 'US'], ['name' => 'Valenca do Piaui', 'country_code' => 'BR'], ['name' => 'Traunstein', 'country_code' => 'DE'], ['name' => ' Ain el Hammam', 'country_code' => 'DZ'], ['name' => 'Herborn', 'country_code' => 'DE'], ['name' => 'Al Brouj', 'country_code' => 'MA'], ['name' => 'Comala', 'country_code' => 'MX'], ['name' => 'Bombinhas', 'country_code' => 'BR'], ['name' => 'Gauting', 'country_code' => 'DE'], ['name' => 'Vico Equense', 'country_code' => 'IT'], ['name' => 'Ararat', 'country_code' => 'AM'], ['name' => 'Osa', 'country_code' => 'RU'], ['name' => 'Kurovskoye', 'country_code' => 'RU'], ['name' => 'Catarina', 'country_code' => 'BR'], ['name' => 'Kremenets', 'country_code' => 'UA'], ['name' => 'Cornelia', 'country_code' => 'US'], ['name' => 'Schifferstadt', 'country_code' => 'DE'], ['name' => 'Suwanee', 'country_code' => 'US'], ['name' => 'New Hope', 'country_code' => 'US'], ['name' => 'Ubaitaba', 'country_code' => 'BR'], ['name' => 'Gerlingen', 'country_code' => 'DE'], ['name' => 'Carmen', 'country_code' => 'PH'], ['name' => 'Wade Hampton', 'country_code' => 'US'], ['name' => 'Wuustwezel', 'country_code' => 'BE'], ['name' => 'Green Valley', 'country_code' => 'US'], ['name' => 'Mill Creek', 'country_code' => 'US'], ['name' => 'Samaca', 'country_code' => 'CO'], ['name' => 'Pallazzolo sull Oglio', 'country_code' => 'IT'], ['name' => 'Ovejas', 'country_code' => 'CO'], ['name' => 'Pico Truncado', 'country_code' => 'AR'], ['name' => 'Yangping', 'country_code' => 'CN'], ['name' => 'Universal City', 'country_code' => 'US'], ['name' => 'Mossingen', 'country_code' => 'DE'], ['name' => 'Sotomayor', 'country_code' => 'CO'], ['name' => 'Kirkby in Ashfield', 'country_code' => 'GB'], ['name' => 'Buinsk', 'country_code' => 'RU'], ['name' => 'Montclair', 'country_code' => 'US'], ['name' => 'Gamboma', 'country_code' => 'CG'], ['name' => 'Lopez', 'country_code' => 'CO'], ['name' => 'Lorton', 'country_code' => 'US'], ['name' => 'Bourg-les-Valence', 'country_code' => 'FR'], ['name' => 'Kuusankoski', 'country_code' => 'FI'], ['name' => 'Clemmons', 'country_code' => 'US'], ['name' => 'Strathroy-Caradoc', 'country_code' => 'CA'], ['name' => 'Guimar', 'country_code' => 'ES'], ['name' => 'Olenegorsk', 'country_code' => 'RU'], ['name' => 'Valkeakoski', 'country_code' => 'FI'], ['name' => 'Viesca', 'country_code' => 'MX'], ['name' => 'Hexiang', 'country_code' => 'CN'], ['name' => 'Rosamond', 'country_code' => 'US'], ['name' => 'Bear', 'country_code' => 'US'], ['name' => 'Horten', 'country_code' => 'NO'], ['name' => 'Boussu', 'country_code' => 'BE'], ['name' => 'Blieskastel', 'country_code' => 'DE'], ['name' => 'Dyersburg', 'country_code' => 'US'], ['name' => 'Blaj', 'country_code' => 'RO'], ['name' => 'Hassloch', 'country_code' => 'DE'], ['name' => 'Manor', 'country_code' => 'US'], ['name' => 'Puzol', 'country_code' => 'ES'], ['name' => 'Oneida', 'country_code' => 'US'], ['name' => 'Wachtberg', 'country_code' => 'DE'], ['name' => 'Aomar', 'country_code' => 'DZ'], ['name' => 'Hanmayingcun', 'country_code' => 'CN'], ['name' => 'Ceres', 'country_code' => 'BR'], ['name' => 'Santa Fe', 'country_code' => 'PH'], ['name' => 'Hunters Creek', 'country_code' => 'US'], ['name' => 'Holiday', 'country_code' => 'US'], ['name' => 'Louisville', 'country_code' => 'US'], ['name' => 'Feltre', 'country_code' => 'IT'], ['name' => 'Pacatu', 'country_code' => 'BR'], ['name' => 'Ubaira', 'country_code' => 'BR'], ['name' => 'Lebedinovka', 'country_code' => 'KG'], ['name' => 'Giovinazzo', 'country_code' => 'IT'], ['name' => 'Stamford', 'country_code' => 'GB'], ['name' => 'Dixon', 'country_code' => 'US'], ['name' => 'Allende', 'country_code' => 'MX'], ['name' => 'Ino', 'country_code' => 'JP'], ['name' => 'San Jose', 'country_code' => 'PH'], ['name' => 'Pontassieve', 'country_code' => 'IT'], ['name' => 'Scobinti', 'country_code' => 'RO'], ['name' => 'Mabitac', 'country_code' => 'PH'], ['name' => 'Lastra a Signa', 'country_code' => 'IT'], ['name' => 'Carcagente', 'country_code' => 'ES'], ['name' => 'Lazi', 'country_code' => 'PH'], ['name' => 'Dugulubgey', 'country_code' => 'RU'], ['name' => 'Murray', 'country_code' => 'US'], ['name' => 'Pozzallo', 'country_code' => 'IT'], ['name' => 'Inopacan', 'country_code' => 'PH'], ['name' => 'Golden', 'country_code' => 'US'], ['name' => 'Nidderau', 'country_code' => 'DE'], ['name' => 'Illapel', 'country_code' => 'CL'], ['name' => 'Bad Salzungen', 'country_code' => 'DE'], ['name' => 'Blansko', 'country_code' => 'CZ'], ['name' => 'Acquaviva delle Fonti', 'country_code' => 'IT'], ['name' => 'Nova Granada', 'country_code' => 'BR'], ['name' => 'Olean', 'country_code' => 'US'], ['name' => 'Chachahuantla', 'country_code' => 'MX'], ['name' => 'Hoddesdon', 'country_code' => 'GB'], ['name' => 'Dolyna', 'country_code' => 'UA'], ['name' => 'Na Klang', 'country_code' => 'TH'], ['name' => 'Clifton', 'country_code' => 'US'], ['name' => 'Senica', 'country_code' => 'SK'], ['name' => 'Fonte Boa', 'country_code' => 'BR'], ['name' => 'Belem de Sao Francisco', 'country_code' => 'BR'], ['name' => 'Elvas', 'country_code' => 'PT'], ['name' => 'Tala Yfassene', 'country_code' => 'DZ'], ['name' => 'Melena del Sur', 'country_code' => 'CU'], ['name' => 'Grayslake', 'country_code' => 'US'], ['name' => 'Mantsala', 'country_code' => 'FI'], ['name' => 'Tielt', 'country_code' => 'BE'], ['name' => 'Pita', 'country_code' => 'GN'], ['name' => 'Okha', 'country_code' => 'RU'], ['name' => 'Ronda', 'country_code' => 'PH'], ['name' => 'Riacho das Almas', 'country_code' => 'BR'], ['name' => 'Piratini', 'country_code' => 'BR'], ['name' => 'Cranendonck', 'country_code' => 'NL'], ['name' => 'Menaka', 'country_code' => 'ML'], ['name' => 'Andira', 'country_code' => 'BR'], ['name' => 'South Milwaukee', 'country_code' => 'US'], ['name' => 'Shimogamo', 'country_code' => 'JP'], ['name' => 'Sidi Chiker', 'country_code' => 'MA'], ['name' => 'Cittadella', 'country_code' => 'IT'], ['name' => 'Miracema do Tocantins', 'country_code' => 'BR'], ['name' => 'Clarin', 'country_code' => 'PH'], ['name' => 'Pertuis', 'country_code' => 'FR'], ['name' => 'Pandan', 'country_code' => 'PH'], ['name' => 'Gardner', 'country_code' => 'US'], ['name' => 'Nove Mesto nad Vahom', 'country_code' => 'SK'], ['name' => 'Arhavi', 'country_code' => 'TR'], ['name' => 'Senden', 'country_code' => 'DE'], ['name' => 'Duderstadt', 'country_code' => 'DE'], ['name' => 'Hailsham', 'country_code' => 'GB'], ['name' => 'Nordlingen', 'country_code' => 'DE'], ['name' => 'Sabaudia', 'country_code' => 'IT'], ['name' => 'Havelock', 'country_code' => 'US'], ['name' => 'Sao Joao do Piaui', 'country_code' => 'BR'], ['name' => 'Wasaga Beach', 'country_code' => 'CA'], ['name' => 'Neufahrn bei Freising', 'country_code' => 'DE'], ['name' => 'Lake Ronkonkoma', 'country_code' => 'US'], ['name' => 'Cirencester', 'country_code' => 'GB'], ['name' => 'Chapulhuacan', 'country_code' => 'MX'], ['name' => 'Lebanon', 'country_code' => 'US'], ['name' => 'Vazante', 'country_code' => 'BR'], ['name' => 'Ban Tha Pha', 'country_code' => 'TH'], ['name' => 'Bati', 'country_code' => 'ET'], ['name' => 'East Moline', 'country_code' => 'US'], ['name' => 'As', 'country_code' => 'NO'], ['name' => 'Baiao', 'country_code' => 'PT'], ['name' => 'Miandrivazo', 'country_code' => 'MG'], ['name' => 'Gjovik', 'country_code' => 'NO'], ['name' => 'Korntal-Munchingen', 'country_code' => 'DE'], ['name' => 'Floresti', 'country_code' => 'RO'], ['name' => 'Norwalk', 'country_code' => 'US'], ['name' => 'Beroun', 'country_code' => 'CZ'], ['name' => 'Bobrov', 'country_code' => 'RU'], ['name' => 'Itanhem', 'country_code' => 'BR'], ['name' => 'Schortens', 'country_code' => 'DE'], ['name' => 'Kawayan', 'country_code' => 'PH'], ['name' => 'Goris', 'country_code' => 'AM'], ['name' => 'Pak Phanang', 'country_code' => 'TH'], ['name' => 'Mar ina Horka', 'country_code' => 'BY'], ['name' => 'Cachoeirinha', 'country_code' => 'BR'], ['name' => 'Yorkville', 'country_code' => 'US'], ['name' => 'Archena', 'country_code' => 'ES'], ['name' => 'Mbala', 'country_code' => 'ZM'], ['name' => 'Kawambwa', 'country_code' => 'ZM'], ['name' => 'New Glasgow', 'country_code' => 'CA'], ['name' => 'Sidi Jaber', 'country_code' => 'MA'], ['name' => 'Logansport', 'country_code' => 'US'], ['name' => 'Linamon', 'country_code' => 'PH'], ['name' => 'Douar Lamrabih', 'country_code' => 'MA'], ['name' => 'Station des Essais M.V.A.', 'country_code' => 'MA'], ['name' => 'San Felipe', 'country_code' => 'MX'], ['name' => 'Chodziez', 'country_code' => 'PL'], ['name' => 'Aldan', 'country_code' => 'RU'], ['name' => 'Muzambinho', 'country_code' => 'BR'], ['name' => 'Hiddenhausen', 'country_code' => 'DE'], ['name' => 'Barehra', 'country_code' => 'IN'], ['name' => 'Casarano', 'country_code' => 'IT'], ['name' => 'Nikolsk', 'country_code' => 'RU'], ['name' => 'Veroli', 'country_code' => 'IT'], ['name' => 'Dublin', 'country_code' => 'US'], ['name' => 'Donggou', 'country_code' => 'CN'], ['name' => 'North Ogden', 'country_code' => 'US'], ['name' => 'Ain Cheggag', 'country_code' => 'MA'], ['name' => 'Bibai', 'country_code' => 'JP'], ['name' => 'Gioia Tauro', 'country_code' => 'IT'], ['name' => 'Stadtlohn', 'country_code' => 'DE'], ['name' => 'Meinerzhagen', 'country_code' => 'DE'], ['name' => 'Baden', 'country_code' => 'CH'], ['name' => 'Qagan Us', 'country_code' => 'CN'], ['name' => 'Arsk', 'country_code' => 'RU'], ['name' => 'Timana', 'country_code' => 'CO'], ['name' => 'San Mauro Torinese', 'country_code' => 'IT'], ['name' => 'Sunchales', 'country_code' => 'AR'], ['name' => 'Cambridge', 'country_code' => 'NZ'], ['name' => 'Itapiuna', 'country_code' => 'BR'], ['name' => 'Miracatu', 'country_code' => 'BR'], ['name' => 'Hem', 'country_code' => 'FR'], ['name' => 'Medina del Campo', 'country_code' => 'ES'], ['name' => 'Altonia', 'country_code' => 'BR'], ['name' => 'Gaeta', 'country_code' => 'IT'], ['name' => 'Wilmot', 'country_code' => 'CA'], ['name' => 'Acri', 'country_code' => 'IT'], ['name' => 'Mundra', 'country_code' => 'IN'], ['name' => 'Colonia General Felipe Angeles', 'country_code' => 'MX'], ['name' => 'Laboulaye', 'country_code' => 'AR'], ['name' => 'Tyrnyauz', 'country_code' => 'RU'], ['name' => 'San Pablo Tacachico', 'country_code' => 'SV'], ['name' => 'Pleszew', 'country_code' => 'PL'], ['name' => 'Lynn Haven', 'country_code' => 'US'], ['name' => 'Ferguson', 'country_code' => 'US'], ['name' => 'Khvansar', 'country_code' => 'IR'], ['name' => 'Arlington', 'country_code' => 'US'], ['name' => 'Nova Xavantina', 'country_code' => 'BR'], ['name' => 'Brunswick', 'country_code' => 'US'], ['name' => 'Sacile', 'country_code' => 'IT'], ['name' => 'Cinfaes', 'country_code' => 'PT'], ['name' => 'Agua Branca', 'country_code' => 'BR'], ['name' => 'Willmar', 'country_code' => 'US'], ['name' => 'Alice', 'country_code' => 'US'], ['name' => 'Seydi', 'country_code' => 'TM'], ['name' => 'South Ockendon', 'country_code' => 'GB'], ['name' => 'Swansboro', 'country_code' => 'US'], ['name' => 'Marblehead', 'country_code' => 'US'], ['name' => 'Murphy', 'country_code' => 'US'], ['name' => 'Gostyn', 'country_code' => 'PL'], ['name' => 'Sao Joaquim do Monte', 'country_code' => 'BR'], ['name' => 'Lannion', 'country_code' => 'FR'], ['name' => 'Bad Waldsee', 'country_code' => 'DE'], ['name' => 'Ushtobe', 'country_code' => 'KZ'], ['name' => 'Carquefou', 'country_code' => 'FR'], ['name' => 'Tobe', 'country_code' => 'JP'], ['name' => 'Takanabe', 'country_code' => 'JP'], ['name' => 'Culpeper', 'country_code' => 'US'], ['name' => 'San Lorenzo', 'country_code' => 'CO'], ['name' => 'Ocos', 'country_code' => 'GT'], ['name' => 'Berlin', 'country_code' => 'US'], ['name' => 'Ozark', 'country_code' => 'US'], ['name' => 'Cagwait', 'country_code' => 'PH'], ['name' => 'Puerto Quito', 'country_code' => 'EC'], ['name' => 'Lugait', 'country_code' => 'PH'], ['name' => 'Montalto Uffugo', 'country_code' => 'IT'], ['name' => 'Rancheria Payau', 'country_code' => 'PH'], ['name' => 'American Canyon', 'country_code' => 'US'], ['name' => 'Gaz', 'country_code' => 'IR'], ['name' => 'Annaberg-Buchholz', 'country_code' => 'DE'], ['name' => 'Papillion', 'country_code' => 'US'], ['name' => 'Baza', 'country_code' => 'ES'], ['name' => 'Loja', 'country_code' => 'ES'], ['name' => 'Kampong Thum', 'country_code' => 'KH'], ['name' => 'Rhenen', 'country_code' => 'NL'], ['name' => 'Piove di Sacco', 'country_code' => 'IT'], ['name' => 'Tenjo', 'country_code' => 'CO'], ['name' => 'Schwanewede', 'country_code' => 'DE'], ['name' => 'Ely', 'country_code' => 'GB'], ['name' => 'Belur', 'country_code' => 'IN'], ['name' => 'Moorestown', 'country_code' => 'US'], ['name' => 'Ibiruba', 'country_code' => 'BR'], ['name' => 'The Dalles', 'country_code' => 'US'], ['name' => 'Karnobat', 'country_code' => 'BG'], ['name' => 'Edam', 'country_code' => 'NL'], ['name' => 'Adel', 'country_code' => 'GB'], ['name' => 'Ostrov', 'country_code' => 'RU'], ['name' => 'Bladel', 'country_code' => 'NL'], ['name' => 'Jaboticatubas', 'country_code' => 'BR'], ['name' => 'Cabra', 'country_code' => 'ES'], ['name' => 'Requena', 'country_code' => 'ES'], ['name' => 'Essex', 'country_code' => 'CA'], ['name' => 'Villefontaine', 'country_code' => 'FR'], ['name' => 'Uetze', 'country_code' => 'DE'], ['name' => 'Porrino', 'country_code' => 'ES'], ['name' => 'La Estrada', 'country_code' => 'ES'], ['name' => 'Svilengrad', 'country_code' => 'BG'], ['name' => 'Barre', 'country_code' => 'US'], ['name' => 'Kubinka', 'country_code' => 'RU'], ['name' => 'Wittmund', 'country_code' => 'DE'], ['name' => 'Canas', 'country_code' => 'CR'], ['name' => 'Hatvan', 'country_code' => 'HU'], ['name' => 'Amherst Center', 'country_code' => 'US'], ['name' => 'Reggane', 'country_code' => 'DZ'], ['name' => 'Concordia', 'country_code' => 'CO'], ['name' => 'Melzo', 'country_code' => 'IT'], ['name' => 'Pinan', 'country_code' => 'PH'], ['name' => 'Crest Hill', 'country_code' => 'US'], ['name' => 'Zulpich', 'country_code' => 'DE'], ['name' => 'Bequimao', 'country_code' => 'BR'], ['name' => 'Punta Gorda', 'country_code' => 'US'], ['name' => 'Mayluu-Suu', 'country_code' => 'KG'], ['name' => 'Teculutan', 'country_code' => 'GT'], ['name' => 'Kloten', 'country_code' => 'CH'], ['name' => 'Wilnsdorf', 'country_code' => 'DE'], ['name' => 'Neabsco', 'country_code' => 'US'], ['name' => 'Melnik', 'country_code' => 'CZ'], ['name' => 'Newton', 'country_code' => 'US'], ['name' => 'Khowrzuq', 'country_code' => 'IR'], ['name' => 'Poplar Bluff', 'country_code' => 'US'], ['name' => 'Ennis', 'country_code' => 'US'], ['name' => 'Coolbaugh', 'country_code' => 'US'], ['name' => 'Oberkirch', 'country_code' => 'DE'], ['name' => 'Cuite', 'country_code' => 'BR'], ['name' => 'Jaguaruna', 'country_code' => 'BR'], ['name' => 'Tukwila', 'country_code' => 'US'], ['name' => 'Marneuli', 'country_code' => 'GE'], ['name' => 'Ogden', 'country_code' => 'US'], ['name' => 'Satiro Dias', 'country_code' => 'BR'], ['name' => 'Donauworth', 'country_code' => 'DE'], ['name' => 'Greiz', 'country_code' => 'DE'], ['name' => 'Sao Jose do Rio Preto', 'country_code' => 'BR'], ['name' => 'Tsotsin-Yurt', 'country_code' => 'RU'], ['name' => 'Horstel', 'country_code' => 'DE'], ['name' => 'Rumoi', 'country_code' => 'JP'], ['name' => 'Prunedale', 'country_code' => 'US'], ['name' => 'Orvieto', 'country_code' => 'IT'], ['name' => 'Santo Antonio do Sudoeste', 'country_code' => 'BR'], ['name' => 'Jirkov', 'country_code' => 'CZ'], ['name' => 'Jdour', 'country_code' => 'MA'], ['name' => 'Albertville', 'country_code' => 'FR'], ['name' => 'Mirfield', 'country_code' => 'GB'], ['name' => 'Leinefelde', 'country_code' => 'DE'], ['name' => 'Aragarcas', 'country_code' => 'BR'], ['name' => 'Payson', 'country_code' => 'US'], ['name' => 'Villa Hidalgo', 'country_code' => 'MX'], ['name' => 'Lichtenfels', 'country_code' => 'DE'], ['name' => 'Mountain Brook', 'country_code' => 'US'], ['name' => 'Sergach', 'country_code' => 'RU'], ['name' => 'Dingolfing', 'country_code' => 'DE'], ['name' => 'Padre Paraiso', 'country_code' => 'BR'], ['name' => 'Porto Real do Colegio', 'country_code' => 'BR'], ['name' => 'Glassboro', 'country_code' => 'US'], ['name' => 'Pedro Carbo', 'country_code' => 'EC'], ['name' => 'Simiti', 'country_code' => 'CO'], ['name' => 'Sandwich', 'country_code' => 'US'], ['name' => 'Neustrelitz', 'country_code' => 'DE'], ['name' => 'Ciudad Melchor de Mencos', 'country_code' => 'GT'], ['name' => 'Rovira', 'country_code' => 'CO'], ['name' => 'Bouguenais', 'country_code' => 'FR'], ['name' => 'Nachod', 'country_code' => 'CZ'], ['name' => 'Brandys nad Labem-Stara Boleslav', 'country_code' => 'CZ'], ['name' => 'Diguapo', 'country_code' => 'CN'], ['name' => 'New Canaan', 'country_code' => 'US'], ['name' => 'Hakui', 'country_code' => 'JP'], ['name' => 'Ashland', 'country_code' => 'US'], ['name' => 'Minturno', 'country_code' => 'IT'], ['name' => 'La Paz', 'country_code' => 'PH'], ['name' => 'El Viso del Alcor', 'country_code' => 'ES'], ['name' => 'Sbeitla', 'country_code' => 'TN'], ['name' => 'Lalin', 'country_code' => 'ES'], ['name' => 'Kety', 'country_code' => 'PL'], ['name' => 'Shelton', 'country_code' => 'US'], ['name' => 'San Guillermo', 'country_code' => 'PH'], ['name' => 'Torgau', 'country_code' => 'DE'], ['name' => 'Shenandoah', 'country_code' => 'US'], ['name' => 'Aracariguama', 'country_code' => 'BR'], ['name' => 'Mougins', 'country_code' => 'FR'], ['name' => 'Buckingham', 'country_code' => 'US'], ['name' => 'Major Isidoro', 'country_code' => 'BR'], ['name' => 'Tuburan', 'country_code' => 'PH'], ['name' => 'Acqui Terme', 'country_code' => 'IT'], ['name' => 'Cherry Hill', 'country_code' => 'US'], ['name' => 'Rosas', 'country_code' => 'ES'], ['name' => 'Henderson', 'country_code' => 'US'], ['name' => 'Viadana', 'country_code' => 'IT'], ['name' => 'Eastwood', 'country_code' => 'GB'], ['name' => 'Cruz Grande', 'country_code' => 'MX'], ['name' => 'Linda', 'country_code' => 'US'], ['name' => 'Yeniseysk', 'country_code' => 'RU'], ['name' => 'Skegness', 'country_code' => 'GB'], ['name' => 'Holzminden', 'country_code' => 'DE'], ['name' => 'Muhlenberg', 'country_code' => 'US'], ['name' => 'Calatayud', 'country_code' => 'ES'], ['name' => 'Agoura Hills', 'country_code' => 'US'], ['name' => 'Goole', 'country_code' => 'GB'], ['name' => 'Cahors', 'country_code' => 'FR'], ['name' => 'East Hemet', 'country_code' => 'US'], ['name' => 'Celorico de Basto', 'country_code' => 'PT'], ['name' => 'Zubia', 'country_code' => 'ES'], ['name' => 'Libertyville', 'country_code' => 'US'], ['name' => 'Dracevo', 'country_code' => 'MK'], ['name' => 'Durango', 'country_code' => 'US'], ['name' => 'Fot', 'country_code' => 'HU'], ['name' => 'Le Puy-en-Velay', 'country_code' => 'FR'], ['name' => 'Sapang Dalaga', 'country_code' => 'PH'], ['name' => 'Bad Krozingen', 'country_code' => 'DE'], ['name' => 'Snina', 'country_code' => 'SK'], ['name' => 'Pikalevo', 'country_code' => 'RU'], ['name' => 'East Northport', 'country_code' => 'US'], ['name' => 'Llorente', 'country_code' => 'PH'], ['name' => 'Ivoti', 'country_code' => 'BR'], ['name' => 'Vriezenveen', 'country_code' => 'NL'], ['name' => 'Wisch', 'country_code' => 'NL'], ['name' => 'Kotelnikovo', 'country_code' => 'RU'], ['name' => 'Bichena', 'country_code' => 'ET'], ['name' => 'Culion', 'country_code' => 'PH'], ['name' => 'Abrisham', 'country_code' => 'IR'], ['name' => 'Howard', 'country_code' => 'US'], ['name' => 'Irlam', 'country_code' => 'GB'], ['name' => 'Sao Luis Gonzaga do Maranhao', 'country_code' => 'BR'], ['name' => 'Monmouth', 'country_code' => 'US'], ['name' => 'Ypsilanti', 'country_code' => 'US'], ['name' => 'Toprakkale', 'country_code' => 'TR'], ['name' => 'Rocky Hill', 'country_code' => 'US'], ['name' => 'Mokena', 'country_code' => 'US'], ['name' => 'Fort St. John', 'country_code' => 'CA'], ['name' => 'Ebbw Vale', 'country_code' => 'GB'], ['name' => 'Wildeshausen', 'country_code' => 'DE'], ['name' => 'Sesheke', 'country_code' => 'ZM'], ['name' => 'Saint-Die-des-Vosges', 'country_code' => 'FR'], ['name' => 'Pleasantville', 'country_code' => 'US'], ['name' => 'L Isle-sur-la-Sorgue', 'country_code' => 'FR'], ['name' => 'Affton', 'country_code' => 'US'], ['name' => 'Millburn', 'country_code' => 'US'], ['name' => 'Metztitlan', 'country_code' => 'MX'], ['name' => 'Haka', 'country_code' => 'MM'], ['name' => 'Bartow', 'country_code' => 'US'], ['name' => 'Guding', 'country_code' => 'CN'], ['name' => 'Mithi', 'country_code' => 'PK'], ['name' => 'Scarborough', 'country_code' => 'US'], ['name' => 'Ashland', 'country_code' => 'US'], ['name' => 'Mead Valley', 'country_code' => 'US'], ['name' => 'Telgte', 'country_code' => 'DE'], ['name' => 'Jiangjiehe', 'country_code' => 'CN'], ['name' => 'Miamisburg', 'country_code' => 'US'], ['name' => 'Lancing', 'country_code' => 'GB'], ['name' => 'Yuancun', 'country_code' => 'CN'], ['name' => 'Qorasuv', 'country_code' => 'UZ'], ['name' => 'Araruna', 'country_code' => 'BR'], ['name' => 'Grafton', 'country_code' => 'AU'], ['name' => 'Merrick', 'country_code' => 'US'], ['name' => 'Schilde', 'country_code' => 'BE'], ['name' => ' Ali Ben Sliman', 'country_code' => 'MA'], ['name' => 'Naranjos', 'country_code' => 'MX'], ['name' => 'Mairi', 'country_code' => 'BR'], ['name' => 'Charleston', 'country_code' => 'US'], ['name' => 'Germantown', 'country_code' => 'US'], ['name' => 'Uetersen', 'country_code' => 'DE'], ['name' => 'Giengen an der Brenz', 'country_code' => 'DE'], ['name' => 'La Chapelle-sur-Erdre', 'country_code' => 'FR'], ['name' => 'Aquidaba', 'country_code' => 'BR'], ['name' => 'Icapui', 'country_code' => 'BR'], ['name' => 'Anage', 'country_code' => 'BR'], ['name' => 'Guaymango', 'country_code' => 'SV'], ['name' => 'Itarantim', 'country_code' => 'BR'], ['name' => 'Taquarana', 'country_code' => 'BR'], ['name' => 'Guapiacu', 'country_code' => 'BR'], ['name' => 'Escanaba', 'country_code' => 'US'], ['name' => 'Northwich', 'country_code' => 'GB'], ['name' => 'Selden', 'country_code' => 'US'], ['name' => 'Bayou Cane', 'country_code' => 'US'], ['name' => 'Cartaya', 'country_code' => 'ES'], ['name' => 'Mililani Mauka', 'country_code' => 'US'], ['name' => 'Jericoacoara', 'country_code' => 'BR'], ['name' => 'Glinde', 'country_code' => 'DE'], ['name' => 'Kwinana', 'country_code' => 'AU'], ['name' => 'Kasongo-Lunda', 'country_code' => 'CD'], ['name' => 'Zverevo', 'country_code' => 'RU'], ['name' => 'Cassano d Adda', 'country_code' => 'IT'], ['name' => 'Tegelen', 'country_code' => 'NL'], ['name' => 'Snellville', 'country_code' => 'US'], ['name' => 'Shirahama', 'country_code' => 'JP'], ['name' => 'Hidrolandia', 'country_code' => 'BR'], ['name' => 'Zhaodianzi', 'country_code' => 'CN'], ['name' => 'Moana', 'country_code' => 'ES'], ['name' => 'Junqueiropolis', 'country_code' => 'BR'], ['name' => 'Zhosaly', 'country_code' => 'KZ'], ['name' => 'Zwijndrecht', 'country_code' => 'BE'], ['name' => 'Kuysinjaq', 'country_code' => 'IQ'], ['name' => 'Santiago Texacuangos', 'country_code' => 'SV'], ['name' => 'Sulphur', 'country_code' => 'US'], ['name' => 'L Assomption', 'country_code' => 'CA'], ['name' => 'Alagir', 'country_code' => 'RU'], ['name' => 'Shakhunya', 'country_code' => 'RU'], ['name' => 'Kurten', 'country_code' => 'DE'], ['name' => 'South St. Paul', 'country_code' => 'US'], ['name' => 'Oregon', 'country_code' => 'US'], ['name' => 'Ban Tha Kham', 'country_code' => 'TH'], ['name' => 'Tarhzirt', 'country_code' => 'MA'], ['name' => 'Burnie', 'country_code' => 'AU'], ['name' => 'Bachi-Yurt', 'country_code' => 'RU'], ['name' => 'Ipanema', 'country_code' => 'BR'], ['name' => 'Caridade', 'country_code' => 'BR'], ['name' => 'Kyakhta', 'country_code' => 'RU'], ['name' => 'Carira', 'country_code' => 'BR'], ['name' => 'Middleton', 'country_code' => 'US'], ['name' => 'Ferndale', 'country_code' => 'US'], ['name' => 'Casamassima', 'country_code' => 'IT'], ['name' => 'Wetherby', 'country_code' => 'GB'], ['name' => 'Canto do Buriti', 'country_code' => 'BR'], ['name' => 'Yeppoon', 'country_code' => 'AU'], ['name' => 'Forest Park', 'country_code' => 'US'], ['name' => 'Deblin', 'country_code' => 'PL'], ['name' => 'Haya', 'country_code' => 'SD'], ['name' => 'El Mansouria', 'country_code' => 'MA'], ['name' => 'El Arenal', 'country_code' => 'MX'], ['name' => 'La Canada Flintridge', 'country_code' => 'US'], ['name' => 'Hauppauge', 'country_code' => 'US'], ['name' => 'Al Mijlad', 'country_code' => 'SD'], ['name' => 'Zemio', 'country_code' => 'CF'], ['name' => 'Pugo', 'country_code' => 'PH'], ['name' => 'Alpinopolis', 'country_code' => 'BR'], ['name' => 'Torokszentmiklos', 'country_code' => 'HU'], ['name' => 'Neviges', 'country_code' => 'DE'], ['name' => 'Luisiana', 'country_code' => 'PH'], ['name' => 'Ennigerloh', 'country_code' => 'DE'], ['name' => 'Safford', 'country_code' => 'US'], ['name' => 'Rocky River', 'country_code' => 'US'], ['name' => 'Sao Jose de Piranhas', 'country_code' => 'BR'], ['name' => 'Had Zraqtane', 'country_code' => 'MA'], ['name' => 'Ceglie Messapico', 'country_code' => 'IT'], ['name' => 'Usman', 'country_code' => 'RU'], ['name' => 'Concarneau', 'country_code' => 'FR'], ['name' => 'Rubiataba', 'country_code' => 'BR'], ['name' => 'Wenden', 'country_code' => 'DE'], ['name' => 'Mpwapwa', 'country_code' => 'TZ'], ['name' => 'Heusenstamm', 'country_code' => 'DE'], ['name' => 'Uruburetama', 'country_code' => 'BR'], ['name' => 'Ait Tamlil', 'country_code' => 'MA'], ['name' => 'El Reno', 'country_code' => 'US'], ['name' => 'Lajinha', 'country_code' => 'BR'], ['name' => 'Umirim', 'country_code' => 'BR'], ['name' => 'Saco', 'country_code' => 'US'], ['name' => 'Fairwood', 'country_code' => 'US'], ['name' => 'Greenwood', 'country_code' => 'US'], ['name' => 'West St. Paul', 'country_code' => 'US'], ['name' => 'Xiaqiaotou', 'country_code' => 'CN'], ['name' => 'Rovato', 'country_code' => 'IT'], ['name' => 'Liuliang', 'country_code' => 'CN'], ['name' => 'Salsomaggiore Terme', 'country_code' => 'IT'], ['name' => 'Blankenburg', 'country_code' => 'DE'], ['name' => 'Cardedeu', 'country_code' => 'ES'], ['name' => 'Spennymoor', 'country_code' => 'GB'], ['name' => 'Imouzzer Kandar', 'country_code' => 'MA'], ['name' => 'Aanekoski', 'country_code' => 'FI'], ['name' => 'Volketswil', 'country_code' => 'CH'], ['name' => 'Mapai', 'country_code' => 'MZ'], ['name' => 'Os', 'country_code' => 'NO'], ['name' => 'Schopfheim', 'country_code' => 'DE'], ['name' => 'Pradopolis', 'country_code' => 'BR'], ['name' => 'Valley', 'country_code' => 'US'], ['name' => 'Orinda', 'country_code' => 'US'], ['name' => 'Helena', 'country_code' => 'US'], ['name' => 'Henichesk', 'country_code' => 'UA'], ['name' => 'Comapa', 'country_code' => 'MX'], ['name' => 'Cullman', 'country_code' => 'US'], ['name' => 'Schmalkalden', 'country_code' => 'DE'], ['name' => 'Eschwege', 'country_code' => 'DE'], ['name' => 'Senec', 'country_code' => 'SK'], ['name' => 'Ban Na San', 'country_code' => 'TH'], ['name' => 'Alamo', 'country_code' => 'US'], ['name' => 'Signa', 'country_code' => 'IT'], ['name' => 'Sand Springs', 'country_code' => 'US'], ['name' => 'Brandsen', 'country_code' => 'AR'], ['name' => 'Spoltore', 'country_code' => 'IT'], ['name' => 'Nizhnyaya Tura', 'country_code' => 'RU'], ['name' => 'Tiverton', 'country_code' => 'GB'], ['name' => 'Hamina', 'country_code' => 'FI'], ['name' => 'Vernal', 'country_code' => 'US'], ['name' => 'Callosa de Segura', 'country_code' => 'ES'], ['name' => 'Castilho', 'country_code' => 'BR'], ['name' => 'Laurinburg', 'country_code' => 'US'], ['name' => 'Saint-Lazare', 'country_code' => 'CA'], ['name' => 'Hudson', 'country_code' => 'US'], ['name' => 'Chestermere', 'country_code' => 'CA'], ['name' => 'Painesville', 'country_code' => 'US'], ['name' => 'Poperinge', 'country_code' => 'BE'], ['name' => 'Madalena', 'country_code' => 'BR'], ['name' => 'Sherwood', 'country_code' => 'US'], ['name' => 'Santa Vitoria', 'country_code' => 'BR'], ['name' => 'Lake Zurich', 'country_code' => 'US'], ['name' => 'Ba', 'country_code' => 'FJ'], ['name' => 'El Castillo de La Concepcion', 'country_code' => 'NI'], ['name' => 'Comanesti', 'country_code' => 'RO'], ['name' => 'Gubakha', 'country_code' => 'RU'], ['name' => 'Utebo', 'country_code' => 'ES'], ['name' => 'Castellana Grotte', 'country_code' => 'IT'], ['name' => 'Ariccia', 'country_code' => 'IT'], ['name' => 'Amorebieta', 'country_code' => 'ES'], ['name' => 'Volokolamsk', 'country_code' => 'RU'], ['name' => 'Arcore', 'country_code' => 'IT'], ['name' => 'Puerto Armuelles', 'country_code' => 'PA'], ['name' => 'Waldbrol', 'country_code' => 'DE'], ['name' => 'Huanimaro', 'country_code' => 'MX'], ['name' => 'General Martin Miguel de Guemes', 'country_code' => 'AR'], ['name' => 'Riachao do Dantas', 'country_code' => 'BR'], ['name' => 'Upper Allen', 'country_code' => 'US'], ['name' => 'Saint-Lo', 'country_code' => 'FR'], ['name' => 'Hazlet', 'country_code' => 'US'], ['name' => 'Bressuire', 'country_code' => 'FR'], ['name' => 'Rosedale', 'country_code' => 'US'], ['name' => 'Silla', 'country_code' => 'ES'], ['name' => 'Ottawa', 'country_code' => 'US'], ['name' => 'Lerdo de Tejada', 'country_code' => 'MX'], ['name' => 'Sil-li', 'country_code' => 'KP'], ['name' => 'Itigi', 'country_code' => 'TZ'], ['name' => 'Pescia', 'country_code' => 'IT'], ['name' => 'Barrhead', 'country_code' => 'GB'], ['name' => 'Bourne', 'country_code' => 'US'], ['name' => 'Chipiona', 'country_code' => 'ES'], ['name' => 'Cognac', 'country_code' => 'FR'], ['name' => 'Kitatajima', 'country_code' => 'JP'], ['name' => 'Ochtrup', 'country_code' => 'DE'], ['name' => 'Busra ash Sham', 'country_code' => 'SY'], ['name' => 'Huntsville', 'country_code' => 'CA'], ['name' => 'Sulzbach-Rosenberg', 'country_code' => 'DE'], ['name' => 'Guantiankan', 'country_code' => 'CN'], ['name' => 'Meadowbrook', 'country_code' => 'US'], ['name' => 'Sarstedt', 'country_code' => 'DE'], ['name' => 'Liuguang', 'country_code' => 'CN'], ['name' => 'Corner Brook', 'country_code' => 'CA'], ['name' => 'Casa de Oro-Mount Helix', 'country_code' => 'US'], ['name' => 'Xiaba', 'country_code' => 'CN'], ['name' => 'Monroe', 'country_code' => 'US'], ['name' => 'Paulistana', 'country_code' => 'BR'], ['name' => 'Selestat', 'country_code' => 'FR'], ['name' => 'Zaouia Ait Ishak', 'country_code' => 'MA'], ['name' => 'Lake Shore', 'country_code' => 'US'], ['name' => 'Molln', 'country_code' => 'DE'], ['name' => 'Parma Heights', 'country_code' => 'US'], ['name' => 'Puerto El Triunfo', 'country_code' => 'SV'], ['name' => 'Nyandoma', 'country_code' => 'RU'], ['name' => 'Karcag', 'country_code' => 'HU'], ['name' => 'Nottuln', 'country_code' => 'DE'], ['name' => 'South Whitehall', 'country_code' => 'US'], ['name' => 'Mahmudabad Nemuneh', 'country_code' => 'IR'], ['name' => 'Old Jamestown', 'country_code' => 'US'], ['name' => 'Simonesia', 'country_code' => 'BR'], ['name' => 'Monroe', 'country_code' => 'US'], ['name' => 'Pichidegua', 'country_code' => 'CL'], ['name' => 'Selma', 'country_code' => 'US'], ['name' => 'Makakilo', 'country_code' => 'US'], ['name' => 'Karuizawa', 'country_code' => 'JP'], ['name' => 'Helden', 'country_code' => 'NL'], ['name' => 'Tahlequah', 'country_code' => 'US'], ['name' => 'Jnane Bouih', 'country_code' => 'MA'], ['name' => 'Cajari', 'country_code' => 'BR'], ['name' => 'Brockport', 'country_code' => 'US'], ['name' => 'Calvillo', 'country_code' => 'MX'], ['name' => 'Carate Brianza', 'country_code' => 'IT'], ['name' => 'Atok', 'country_code' => 'PH'], ['name' => 'Itatinga', 'country_code' => 'BR'], ['name' => 'Campina Verde', 'country_code' => 'BR'], ['name' => 'Kleppe', 'country_code' => 'NO'], ['name' => 'Arbaoun', 'country_code' => 'DZ'], ['name' => 'Luna', 'country_code' => 'PH'], ['name' => 'Marsberg', 'country_code' => 'DE'], ['name' => 'Norton', 'country_code' => 'US'], ['name' => 'Casalgrande', 'country_code' => 'IT'], ['name' => 'Rockport', 'country_code' => 'US'], ['name' => 'Tradate', 'country_code' => 'IT'], ['name' => 'Upper St. Clair', 'country_code' => 'US'], ['name' => 'Regente Feijo', 'country_code' => 'BR'], ['name' => 'Ekazhevo', 'country_code' => 'RU'], ['name' => 'Varpalota', 'country_code' => 'HU'], ['name' => 'Rio Segundo', 'country_code' => 'AR'], ['name' => 'Oschersleben', 'country_code' => 'DE'], ['name' => 'Hongshui', 'country_code' => 'CN'], ['name' => 'Pocao de Pedras', 'country_code' => 'BR'], ['name' => 'Mesquite', 'country_code' => 'US'], ['name' => 'Agryz', 'country_code' => 'RU'], ['name' => 'Rybnoye', 'country_code' => 'RU'], ['name' => 'Tash-Komur', 'country_code' => 'KG'], ['name' => 'Polonuevo', 'country_code' => 'CO'], ['name' => 'Front Royal', 'country_code' => 'US'], ['name' => 'Eupen', 'country_code' => 'BE'], ['name' => 'San Jose Ojetenam', 'country_code' => 'GT'], ['name' => 'Babanusah', 'country_code' => 'SD'], ['name' => 'Kufstein', 'country_code' => 'AT'], ['name' => 'Chopinzinho', 'country_code' => 'BR'], ['name' => 'West Mifflin', 'country_code' => 'US'], ['name' => 'Doujing', 'country_code' => 'CN'], ['name' => 'Springfield', 'country_code' => 'US'], ['name' => 'Cirie', 'country_code' => 'IT'], ['name' => 'Urumita', 'country_code' => 'CO'], ['name' => 'Jakobstad', 'country_code' => 'FI'], ['name' => 'Anguillara Sabazia', 'country_code' => 'IT'], ['name' => 'Rhar el Melah', 'country_code' => 'TN'], ['name' => 'Somerton', 'country_code' => 'US'], ['name' => 'Naklo nad Notecia', 'country_code' => 'PL'], ['name' => 'Blythe', 'country_code' => 'US'], ['name' => 'Southbury', 'country_code' => 'US'], ['name' => 'Borda da Mata', 'country_code' => 'BR'], ['name' => 'Dharmsala', 'country_code' => 'IN'], ['name' => 'Ziar nad Hronom', 'country_code' => 'SK'], ['name' => 'Porto Grande', 'country_code' => 'BR'], ['name' => 'Yuanhucun', 'country_code' => 'CN'], ['name' => 'Cugnaux', 'country_code' => 'FR'], ['name' => 'Oulad Salmane', 'country_code' => 'MA'], ['name' => 'Riverview', 'country_code' => 'CA'], ['name' => 'Bethel', 'country_code' => 'US'], ['name' => 'Sandbach', 'country_code' => 'GB'], ['name' => 'Yahotyn', 'country_code' => 'UA'], ['name' => 'Wangaratta', 'country_code' => 'AU'], ['name' => 'Momchilgrad', 'country_code' => 'BG'], ['name' => 'Malabuyoc', 'country_code' => 'PH'], ['name' => 'Barreira', 'country_code' => 'BR'], ['name' => 'Capoeiras', 'country_code' => 'BR'], ['name' => 'Weil der Stadt', 'country_code' => 'DE'], ['name' => 'Espiritu', 'country_code' => 'PH'], ['name' => 'Ait Bousarane', 'country_code' => 'MA'], ['name' => 'Lloydminster', 'country_code' => 'CA'], ['name' => 'Burghausen', 'country_code' => 'DE'], ['name' => 'Keszthely', 'country_code' => 'HU'], ['name' => 'Horizon City', 'country_code' => 'US'], ['name' => 'Levin', 'country_code' => 'NZ'], ['name' => 'Montgomery', 'country_code' => 'US'], ['name' => 'Tirmitine', 'country_code' => 'DZ'], ['name' => 'Presidente Olegario', 'country_code' => 'BR'], ['name' => 'El Arahal', 'country_code' => 'ES'], ['name' => 'Rawah', 'country_code' => 'IQ'], ['name' => 'Ban Bueng', 'country_code' => 'TH'], ['name' => 'Stillwater', 'country_code' => 'US'], ['name' => 'Cherepanovo', 'country_code' => 'RU'], ['name' => 'Eloy', 'country_code' => 'US'], ['name' => 'Artik', 'country_code' => 'AM'], ['name' => 'Utinga', 'country_code' => 'BR'], ['name' => 'Sint-Gillis-Waas', 'country_code' => 'BE'], ['name' => 'Joliette', 'country_code' => 'CA'], ['name' => 'Atasu', 'country_code' => 'KZ'], ['name' => 'Nesoddtangen', 'country_code' => 'NO'], ['name' => 'Hechingen', 'country_code' => 'DE'], ['name' => 'Tolentino', 'country_code' => 'IT'], ['name' => 'Roznava', 'country_code' => 'SK'], ['name' => 'Adria', 'country_code' => 'IT'], ['name' => 'Meerssen', 'country_code' => 'NL'], ['name' => 'Riom', 'country_code' => 'FR'], ['name' => 'Bruges', 'country_code' => 'FR'], ['name' => 'Diepenbeek', 'country_code' => 'BE'], ['name' => 'Brigham City', 'country_code' => 'US'], ['name' => 'Plaisance-du-Touch', 'country_code' => 'FR'], ['name' => 'Yershov', 'country_code' => 'RU'], ['name' => 'Hemmingen', 'country_code' => 'DE'], ['name' => 'Heinola', 'country_code' => 'FI'], ['name' => 'Capela do Alto', 'country_code' => 'BR'], ['name' => 'Gilching', 'country_code' => 'DE'], ['name' => 'Murrysville', 'country_code' => 'US'], ['name' => 'Julio de Castilhos', 'country_code' => 'BR'], ['name' => 'Candelaria', 'country_code' => 'CU'], ['name' => 'Jasien', 'country_code' => 'PL'], ['name' => 'Pidhorodne', 'country_code' => 'UA'], ['name' => 'Abare', 'country_code' => 'BR'], ['name' => 'Morros', 'country_code' => 'BR'], ['name' => 'Brainerd', 'country_code' => 'US'], ['name' => 'Rio Rico', 'country_code' => 'US'], ['name' => 'Engelskirchen', 'country_code' => 'DE'], ['name' => 'Rhede', 'country_code' => 'DE'], ['name' => 'Mazagao', 'country_code' => 'BR'], ['name' => 'Yellowknife', 'country_code' => 'CA'], ['name' => 'Ibicoara', 'country_code' => 'BR'], ['name' => 'Hoxut', 'country_code' => 'CN'], ['name' => 'Haslett', 'country_code' => 'US'], ['name' => 'Haiger', 'country_code' => 'DE'], ['name' => 'Tole Bi', 'country_code' => 'KZ'], ['name' => 'Sao Gabriel', 'country_code' => 'BR'], ['name' => 'Stowmarket', 'country_code' => 'GB'], ['name' => 'Xihuangcun', 'country_code' => 'CN'], ['name' => 'Tullahoma', 'country_code' => 'US'], ['name' => 'Baldwin', 'country_code' => 'US'], ['name' => 'San Miguel', 'country_code' => 'PH'], ['name' => 'Monkseaton', 'country_code' => 'GB'], ['name' => 'Rolante', 'country_code' => 'BR'], ['name' => 'Tapalpa', 'country_code' => 'MX'], ['name' => 'Terek', 'country_code' => 'RU'], ['name' => 'Tipo-Tipo', 'country_code' => 'PH'], ['name' => 'Someren', 'country_code' => 'NL'], ['name' => 'Monroe', 'country_code' => 'US'], ['name' => 'Aradippou', 'country_code' => 'CY'], ['name' => 'Beloyarskiy', 'country_code' => 'RU'], ['name' => 'Norak', 'country_code' => 'TJ'], ['name' => 'Anna', 'country_code' => 'US'], ['name' => 'Kos', 'country_code' => 'GR'], ['name' => 'Borna', 'country_code' => 'DE'], ['name' => 'Bad Aibling', 'country_code' => 'DE'], ['name' => 'Seesen', 'country_code' => 'DE'], ['name' => 'Danville', 'country_code' => 'US'], ['name' => 'Szigethalom', 'country_code' => 'HU'], ['name' => 'Amatan', 'country_code' => 'MX'], ['name' => 'Buckeburg', 'country_code' => 'DE'], ['name' => 'Tadian', 'country_code' => 'PH'], ['name' => 'Romsey', 'country_code' => 'GB'], ['name' => 'Rio Verde de Mato Grosso', 'country_code' => 'BR'], ['name' => 'Bad Berleburg', 'country_code' => 'DE'], ['name' => 'Capinota', 'country_code' => 'BO'], ['name' => 'Squamish', 'country_code' => 'CA'], ['name' => 'Zossen', 'country_code' => 'DE'], ['name' => 'South Burlington', 'country_code' => 'US'], ['name' => 'Kovylkino', 'country_code' => 'RU'], ['name' => 'Kempston', 'country_code' => 'GB'], ['name' => 'Traiskirchen', 'country_code' => 'AT'], ['name' => 'Reriutaba', 'country_code' => 'BR'], ['name' => 'Lichtenvoorde', 'country_code' => 'NL'], ['name' => 'Regensdorf', 'country_code' => 'CH'], ['name' => 'North Liberty', 'country_code' => 'US'], ['name' => 'Lake Butler', 'country_code' => 'US'], ['name' => 'Vincennes', 'country_code' => 'US'], ['name' => 'Heishanzuicun', 'country_code' => 'CN'], ['name' => 'Ardon', 'country_code' => 'RU'], ['name' => 'Huercal-Overa', 'country_code' => 'ES'], ['name' => 'Echt', 'country_code' => 'NL'], ['name' => 'Godo', 'country_code' => 'JP'], ['name' => 'Kantharalak', 'country_code' => 'TH'], ['name' => 'Sienna Plantation', 'country_code' => 'US'], ['name' => 'Heishuikeng', 'country_code' => 'CN'], ['name' => 'Holtsville', 'country_code' => 'US'], ['name' => 'Kapangan', 'country_code' => 'PH'], ['name' => 'East Dereham', 'country_code' => 'GB'], ['name' => 'Mayen', 'country_code' => 'DE'], ['name' => 'Magitang', 'country_code' => 'CN'], ['name' => 'Abbeville', 'country_code' => 'US'], ['name' => 'Vila Real de Santo Antonio', 'country_code' => 'PT'], ['name' => 'Tettnang', 'country_code' => 'DE'], ['name' => 'Lodeynoye Pole', 'country_code' => 'RU'], ['name' => 'Fecamp', 'country_code' => 'FR'], ['name' => 'Bourbonnais', 'country_code' => 'US'], ['name' => 'Starodub', 'country_code' => 'RU'], ['name' => 'Motru', 'country_code' => 'RO'], ['name' => 'Sipoo', 'country_code' => 'FI'], ['name' => 'Royan', 'country_code' => 'FR'], ['name' => 'Mullheim', 'country_code' => 'DE'], ['name' => 'Ramsbottom', 'country_code' => 'GB'], ['name' => 'Syosset', 'country_code' => 'US'], ['name' => 'Zola Predosa', 'country_code' => 'IT'], ['name' => 'Lancut', 'country_code' => 'PL'], ['name' => 'Matteson', 'country_code' => 'US'], ['name' => 'Papanduva', 'country_code' => 'BR'], ['name' => 'Riviere-du-Loup', 'country_code' => 'CA'], ['name' => 'Lake Forest', 'country_code' => 'US'], ['name' => 'Pariquera-Acu', 'country_code' => 'BR'], ['name' => 'Aguinaldo', 'country_code' => 'PH'], ['name' => 'Quixere', 'country_code' => 'BR'], ['name' => 'Salgado', 'country_code' => 'BR'], ['name' => 'Chiari', 'country_code' => 'IT'], ['name' => 'Cobourg', 'country_code' => 'CA'], ['name' => 'Kolbermoor', 'country_code' => 'DE'], ['name' => 'Krasnystaw', 'country_code' => 'PL'], ['name' => 'Tangbian', 'country_code' => 'CN'], ['name' => 'Dalanzadgad', 'country_code' => 'MN'], ['name' => 'Venceslau Bras', 'country_code' => 'BR'], ['name' => 'Vellmar', 'country_code' => 'DE'], ['name' => 'Angleton', 'country_code' => 'US'], ['name' => 'Ituacu', 'country_code' => 'BR'], ['name' => 'Lower Allen', 'country_code' => 'US'], ['name' => 'Scorze', 'country_code' => 'IT'], ['name' => 'Bad Tolz', 'country_code' => 'DE'], ['name' => 'Tres Barras', 'country_code' => 'BR'], ['name' => 'Pultusk', 'country_code' => 'PL'], ['name' => 'Dorchester', 'country_code' => 'GB'], ['name' => 'Dagohoy', 'country_code' => 'PH'], ['name' => 'Mingjiujie', 'country_code' => 'CN'], ['name' => 'Rayevskiy', 'country_code' => 'RU'], ['name' => 'Cabildo', 'country_code' => 'CL'], ['name' => 'Castaic', 'country_code' => 'US'], ['name' => 'Kamiichi', 'country_code' => 'JP'], ['name' => 'Senges', 'country_code' => 'BR'], ['name' => 'Bad Pyrmont', 'country_code' => 'DE'], ['name' => 'Cocos', 'country_code' => 'BR'], ['name' => 'Canby', 'country_code' => 'US'], ['name' => 'Ferguson', 'country_code' => 'US'], ['name' => 'Montemurlo', 'country_code' => 'IT'], ['name' => 'Aguas Formosas', 'country_code' => 'BR'], ['name' => 'Balta', 'country_code' => 'UA'], ['name' => 'Juquia', 'country_code' => 'BR'], ['name' => 'Wendell', 'country_code' => 'US'], ['name' => 'Marchena', 'country_code' => 'ES'], ['name' => 'San Vito dei Normanni', 'country_code' => 'IT'], ['name' => 'Wittlich', 'country_code' => 'DE'], ['name' => 'Monte Azul Paulista', 'country_code' => 'BR'], ['name' => 'Schwalmtal', 'country_code' => 'DE'], ['name' => 'Paranapanema', 'country_code' => 'BR'], ['name' => 'Ampere', 'country_code' => 'BR'], ['name' => 'Buerarema', 'country_code' => 'BR'], ['name' => 'Terzigno', 'country_code' => 'IT'], ['name' => 'Iiyama', 'country_code' => 'JP'], ['name' => 'Izra', 'country_code' => 'SY'], ['name' => 'Frankfort', 'country_code' => 'US'], ['name' => 'Mukaiengaru', 'country_code' => 'JP'], ['name' => 'Laconia', 'country_code' => 'US'], ['name' => 'Haldensleben', 'country_code' => 'DE'], ['name' => 'Sorgues', 'country_code' => 'FR'], ['name' => 'Atarfe', 'country_code' => 'ES'], ['name' => 'Bergneustadt', 'country_code' => 'DE'], ['name' => 'Butig', 'country_code' => 'PH'], ['name' => 'Lieto', 'country_code' => 'FI'], ['name' => 'Bracciano', 'country_code' => 'IT'], ['name' => 'Tibagi', 'country_code' => 'BR'], ['name' => 'Narni', 'country_code' => 'IT'], ['name' => 'San Antonio Sacatepequez', 'country_code' => 'GT'], ['name' => 'Silverthorne', 'country_code' => 'US'], ['name' => 'Alhandra', 'country_code' => 'BR'], ['name' => 'Altamont', 'country_code' => 'US'], ['name' => 'Aci Sant Antonio', 'country_code' => 'IT'], ['name' => 'Zerong', 'country_code' => 'CN'], ['name' => 'Sidi Redouane', 'country_code' => 'MA'], ['name' => 'Ayaviri', 'country_code' => 'PE'], ['name' => 'Eersel', 'country_code' => 'NL'], ['name' => 'Kralupy nad Vltavou', 'country_code' => 'CZ'], ['name' => 'Varzelandia', 'country_code' => 'BR'], ['name' => 'Korsholm', 'country_code' => 'FI'], ['name' => 'Ban Mae Hia Nai', 'country_code' => 'TH'], ['name' => 'Moncao', 'country_code' => 'PT'], ['name' => 'Sheridan', 'country_code' => 'US'], ['name' => 'Kirovgrad', 'country_code' => 'RU'], ['name' => 'Soure', 'country_code' => 'PT'], ['name' => 'Lebedyan', 'country_code' => 'RU'], ['name' => 'Durant', 'country_code' => 'US'], ['name' => 'Horizontina', 'country_code' => 'BR'], ['name' => 'Agliana', 'country_code' => 'IT'], ['name' => 'Sylvania', 'country_code' => 'US'], ['name' => 'San Miguel', 'country_code' => 'PH'], ['name' => 'Santa Marinella', 'country_code' => 'IT'], ['name' => 'Veresegyhaz', 'country_code' => 'HU'], ['name' => 'Dolynska', 'country_code' => 'UA'], ['name' => 'Lebach', 'country_code' => 'DE'], ['name' => 'Bakal', 'country_code' => 'RU'], ['name' => 'Groesbeek', 'country_code' => 'NL'], ['name' => 'Kronberg', 'country_code' => 'DE'], ['name' => 'Corning', 'country_code' => 'US'], ['name' => 'Anori', 'country_code' => 'BR'], ['name' => 'Arbutus', 'country_code' => 'US'], ['name' => 'Puttlingen', 'country_code' => 'DE'], ['name' => 'Corbetta', 'country_code' => 'IT'], ['name' => 'Milton', 'country_code' => 'US'], ['name' => 'Pfullingen', 'country_code' => 'DE'], ['name' => 'Iati', 'country_code' => 'BR'], ['name' => 'White Oak', 'country_code' => 'US'], ['name' => 'Lgov', 'country_code' => 'RU'], ['name' => 'Zatec', 'country_code' => 'CZ'], ['name' => 'Sao Francisco de Assis', 'country_code' => 'BR'], ['name' => 'Cranbrook', 'country_code' => 'CA'], ['name' => 'Lede', 'country_code' => 'BE'], ['name' => 'Aroeiras', 'country_code' => 'BR'], ['name' => 'Kabudarahang', 'country_code' => 'IR'], ['name' => 'Sommerda', 'country_code' => 'DE'], ['name' => 'Pinole', 'country_code' => 'US'], ['name' => 'Dolny Kubin', 'country_code' => 'SK'], ['name' => 'Erlanger', 'country_code' => 'US'], ['name' => 'Noci', 'country_code' => 'IT'], ['name' => 'Druten', 'country_code' => 'NL'], ['name' => 'Abdulino', 'country_code' => 'RU'], ['name' => 'Ware', 'country_code' => 'GB'], ['name' => 'Bandar-e Kong', 'country_code' => 'IR'], ['name' => 'Jamiltepec', 'country_code' => 'MX'], ['name' => 'Dillingen', 'country_code' => 'DE'], ['name' => 'Altoona', 'country_code' => 'US'], ['name' => 'Bethany', 'country_code' => 'US'], ['name' => 'Uzhur', 'country_code' => 'RU'], ['name' => 'Moreni', 'country_code' => 'RO'], ['name' => 'Buruanga', 'country_code' => 'PH'], ['name' => 'La Union', 'country_code' => 'CO'], ['name' => 'Lumphat', 'country_code' => 'KH'], ['name' => 'Mount Eliza', 'country_code' => 'AU'], ['name' => 'Albolote', 'country_code' => 'ES'], ['name' => 'Port Alfred', 'country_code' => 'ZA'], ['name' => 'Carlisle', 'country_code' => 'US'], ['name' => 'Antas', 'country_code' => 'BR'], ['name' => 'Whitpain', 'country_code' => 'US'], ['name' => 'Huehuetla', 'country_code' => 'MX'], ['name' => 'El Quetzal', 'country_code' => 'GT'], ['name' => 'Valderrama', 'country_code' => 'PH'], ['name' => 'Capanema', 'country_code' => 'BR'], ['name' => 'Valenza', 'country_code' => 'IT'], ['name' => 'Bredene', 'country_code' => 'BE'], ['name' => 'Vera', 'country_code' => 'AR'], ['name' => 'Maracacume', 'country_code' => 'BR'], ['name' => 'Palmi', 'country_code' => 'IT'], ['name' => 'Ait Ben Daoudi', 'country_code' => 'MA'], ['name' => 'Staveley', 'country_code' => 'GB'], ['name' => 'Apora', 'country_code' => 'BR'], ['name' => 'Stevenson Ranch', 'country_code' => 'US'], ['name' => 'Karia Ba Mohamed', 'country_code' => 'MA'], ['name' => 'Dadeldhura', 'country_code' => 'NP'], ['name' => 'Highland', 'country_code' => 'US'], ['name' => 'Liberal', 'country_code' => 'US'], ['name' => 'Ibirama', 'country_code' => 'BR'], ['name' => 'Sebt Gzoula', 'country_code' => 'MA'], ['name' => 'Tazishan', 'country_code' => 'CN'], ['name' => 'Cameron Park', 'country_code' => 'US'], ['name' => 'Pastavy', 'country_code' => 'BY'], ['name' => 'Tak Bai', 'country_code' => 'TH'], ['name' => 'Bad Driburg', 'country_code' => 'DE'], ['name' => 'Camacupa', 'country_code' => 'AO'], ['name' => 'Santiago', 'country_code' => 'PH'], ['name' => 'La Ligua', 'country_code' => 'CL'], ['name' => 'Dupax del Sur', 'country_code' => 'PH'], ['name' => 'Camocim de Sao Felix', 'country_code' => 'BR'], ['name' => 'Halstenbek', 'country_code' => 'DE'], ['name' => 'Castelfidardo', 'country_code' => 'IT'], ['name' => 'Jussara', 'country_code' => 'BR'], ['name' => 'Prenzlau', 'country_code' => 'DE'], ['name' => 'Pinecrest', 'country_code' => 'US'], ['name' => 'Brie-Comte-Robert', 'country_code' => 'FR'], ['name' => 'Santa Teresita', 'country_code' => 'PH'], ['name' => 'Horseheads', 'country_code' => 'US'], ['name' => 'Pirkkala', 'country_code' => 'FI'], ['name' => 'Goyty', 'country_code' => 'RU'], ['name' => 'Cerqueira Cesar', 'country_code' => 'BR'], ['name' => 'Lower Southampton', 'country_code' => 'US'], ['name' => 'Vence', 'country_code' => 'FR'], ['name' => 'Santa Ana Jilotzingo', 'country_code' => 'MX'], ['name' => 'Magsaysay', 'country_code' => 'PH'], ['name' => 'Klaeng', 'country_code' => 'TH'], ['name' => 'Shemonaikha', 'country_code' => 'KZ'], ['name' => 'Nikolayevsk-na-Amure', 'country_code' => 'RU'], ['name' => 'Oberasbach', 'country_code' => 'DE'], ['name' => 'Bruz', 'country_code' => 'FR'], ['name' => 'Moissy-Cramayel', 'country_code' => 'FR'], ['name' => 'Londerzeel', 'country_code' => 'BE'], ['name' => 'Luneville', 'country_code' => 'FR'], ['name' => 'Tiffin', 'country_code' => 'US'], ['name' => 'Ashkezar', 'country_code' => 'IR'], ['name' => 'Sudbury', 'country_code' => 'US'], ['name' => 'Amares', 'country_code' => 'PT'], ['name' => 'Mount Airy', 'country_code' => 'US'], ['name' => 'Concord', 'country_code' => 'US'], ['name' => 'Beaconsfield', 'country_code' => 'CA'], ['name' => 'Lumbatan', 'country_code' => 'PH'], ['name' => 'Ixtlahuacan del Rio', 'country_code' => 'MX'], ['name' => 'Broadview Heights', 'country_code' => 'US'], ['name' => 'Buriti dos Lopes', 'country_code' => 'BR'], ['name' => 'Targu Neamt', 'country_code' => 'RO'], ['name' => 'Gostynin', 'country_code' => 'PL'], ['name' => 'Sint-Genesius-Rode', 'country_code' => 'BE'], ['name' => 'Palma Campania', 'country_code' => 'IT'], ['name' => 'Baena', 'country_code' => 'ES'], ['name' => 'Silvania', 'country_code' => 'BR'], ['name' => 'Ban Na Yang', 'country_code' => 'TH'], ['name' => 'Luna', 'country_code' => 'PH'], ['name' => 'Guernica y Luno', 'country_code' => 'ES'], ['name' => 'Mumbwa', 'country_code' => 'ZM'], ['name' => 'Xinhua', 'country_code' => 'CN'], ['name' => 'Dormentes', 'country_code' => 'BR'], ['name' => 'Toulal', 'country_code' => 'MA'], ['name' => 'Carmo', 'country_code' => 'BR'], ['name' => 'Tlalnelhuayocan', 'country_code' => 'MX'], ['name' => 'Shimomura', 'country_code' => 'JP'], ['name' => 'Guaranesia', 'country_code' => 'BR'], ['name' => 'Radeberg', 'country_code' => 'DE'], ['name' => 'Valenzano', 'country_code' => 'IT'], ['name' => 'Westbrook', 'country_code' => 'US'], ['name' => 'Matipo', 'country_code' => 'BR'], ['name' => 'Cuquio', 'country_code' => 'MX'], ['name' => 'Komarom', 'country_code' => 'HU'], ['name' => 'Wervik', 'country_code' => 'BE'], ['name' => 'Preveza', 'country_code' => 'GR'], ['name' => 'Cabaceiras do Paraguacu', 'country_code' => 'BR'], ['name' => 'Saugerties', 'country_code' => 'US'], ['name' => 'Umburanas', 'country_code' => 'BR'], ['name' => 'Rawa Mazowiecka', 'country_code' => 'PL'], ['name' => 'Alzey', 'country_code' => 'DE'], ['name' => 'Zuidhorn', 'country_code' => 'NL'], ['name' => 'Akureyri', 'country_code' => 'IS'], ['name' => 'Springwater', 'country_code' => 'CA'], ['name' => 'Holden', 'country_code' => 'US'], ['name' => 'Nova Petropolis', 'country_code' => 'BR'], ['name' => 'Pruzhany', 'country_code' => 'BY'], ['name' => 'Caowotan', 'country_code' => 'CN'], ['name' => 'Proletarsk', 'country_code' => 'RU'], ['name' => 'Banovce nad Bebravou', 'country_code' => 'SK'], ['name' => 'Haukipudas', 'country_code' => 'FI'], ['name' => 'Red Bluff', 'country_code' => 'US'], ['name' => 'Villaquilambre', 'country_code' => 'ES'], ['name' => 'Bronte', 'country_code' => 'IT'], ['name' => 'Arcadia', 'country_code' => 'US'], ['name' => 'Westborough', 'country_code' => 'US'], ['name' => 'Dankov', 'country_code' => 'RU'], ['name' => 'God', 'country_code' => 'HU'], ['name' => 'Onega', 'country_code' => 'RU'], ['name' => 'Ghedi', 'country_code' => 'IT'], ['name' => 'Louviers', 'country_code' => 'FR'], ['name' => 'Puerto Natales', 'country_code' => 'CL'], ['name' => 'Porciuncula', 'country_code' => 'BR'], ['name' => 'Warwick', 'country_code' => 'US'], ['name' => 'White Oak', 'country_code' => 'US'], ['name' => 'Time', 'country_code' => 'NO'], ['name' => 'Caconde', 'country_code' => 'BR'], ['name' => 'Shimanovsk', 'country_code' => 'RU'], ['name' => 'La Nucia', 'country_code' => 'ES'], ['name' => 'Fox Crossing', 'country_code' => 'US'], ['name' => 'Ervalia', 'country_code' => 'BR'], ['name' => 'McKeesport', 'country_code' => 'US'], ['name' => 'Beni Zouli', 'country_code' => 'MA'], ['name' => 'Taft', 'country_code' => 'PH'], ['name' => 'Mill Hill', 'country_code' => 'GB'], ['name' => 'Salcaja', 'country_code' => 'GT'], ['name' => 'Las Terrenas', 'country_code' => 'DO'], ['name' => 'La Crau', 'country_code' => 'FR'], ['name' => 'Eitorf', 'country_code' => 'DE'], ['name' => 'Gyomro', 'country_code' => 'HU'], ['name' => 'Ribera', 'country_code' => 'IT'], ['name' => 'Atlapexco', 'country_code' => 'MX'], ['name' => 'Limerick', 'country_code' => 'US'], ['name' => 'Motomachi', 'country_code' => 'JP'], ['name' => 'La Eliana', 'country_code' => 'ES'], ['name' => 'Bideford', 'country_code' => 'GB'], ['name' => 'Qitai', 'country_code' => 'CN'], ['name' => 'Dorval', 'country_code' => 'CA'], ['name' => 'Stroud', 'country_code' => 'US'], ['name' => 'Jiaoxiyakou', 'country_code' => 'CN'], ['name' => 'Montceau-les-Mines', 'country_code' => 'FR'], ['name' => 'Murray Bridge', 'country_code' => 'AU'], ['name' => 'Antonina', 'country_code' => 'BR'], ['name' => 'Lubang', 'country_code' => 'PH'], ['name' => 'Kalynivka', 'country_code' => 'UA'], ['name' => 'Appley Bridge', 'country_code' => 'GB'], ['name' => 'Troy', 'country_code' => 'US'], ['name' => 'Naantali', 'country_code' => 'FI'], ['name' => 'Onalaska', 'country_code' => 'US'], ['name' => 'Castel Maggiore', 'country_code' => 'IT'], ['name' => 'Kapay', 'country_code' => 'PH'], ['name' => 'Pindoretama', 'country_code' => 'BR'], ['name' => 'Rutigliano', 'country_code' => 'IT'], ['name' => 'Waterford', 'country_code' => 'US'], ['name' => 'Ipaba', 'country_code' => 'BR'], ['name' => 'Uwchlan', 'country_code' => 'US'], ['name' => 'Lexington', 'country_code' => 'US'], ['name' => 'Barao do Grajau', 'country_code' => 'BR'], ['name' => 'Moosburg', 'country_code' => 'DE'], ['name' => 'Avion', 'country_code' => 'FR'], ['name' => 'Springboro', 'country_code' => 'US'], ['name' => 'Poulton le Fylde', 'country_code' => 'GB'], ['name' => 'Terra Santa', 'country_code' => 'BR'], ['name' => 'Whitehall', 'country_code' => 'US'], ['name' => 'Sartell', 'country_code' => 'US'], ['name' => 'Tado', 'country_code' => 'CO'], ['name' => 'Narangba', 'country_code' => 'AU'], ['name' => 'Contamana', 'country_code' => 'PE'], ['name' => 'Itatira', 'country_code' => 'BR'], ['name' => 'Polohy', 'country_code' => 'UA'], ['name' => 'Badger', 'country_code' => 'US'], ['name' => 'Paks', 'country_code' => 'HU'], ['name' => 'Chapada dos Guimaraes', 'country_code' => 'BR'], ['name' => 'Cofradia', 'country_code' => 'HN'], ['name' => 'Louny', 'country_code' => 'CZ'], ['name' => 'Five Corners', 'country_code' => 'US'], ['name' => 'Landa de Matamoros', 'country_code' => 'MX'], ['name' => 'Mo i Rana', 'country_code' => 'NO'], ['name' => 'Contenda', 'country_code' => 'BR'], ['name' => 'McAlester', 'country_code' => 'US'], ['name' => 'Hardinxveld-Giessendam', 'country_code' => 'NL'], ['name' => 'Nelidovo', 'country_code' => 'RU'], ['name' => 'Stord', 'country_code' => 'NO'], ['name' => 'Laukaa', 'country_code' => 'FI'], ['name' => 'Hala', 'country_code' => 'CN'], ['name' => 'Conceicao', 'country_code' => 'BR'], ['name' => 'Drunen', 'country_code' => 'NL'], ['name' => 'Szazhalombatta', 'country_code' => 'HU'], ['name' => 'Sestri Levante', 'country_code' => 'IT'], ['name' => 'Mount Isa', 'country_code' => 'AU'], ['name' => 'La Follette', 'country_code' => 'US'], ['name' => 'Velez', 'country_code' => 'CO'], ['name' => 'Alfeld', 'country_code' => 'DE'], ['name' => 'Aberystwyth', 'country_code' => 'GB'], ['name' => 'Le Pontet', 'country_code' => 'FR'], ['name' => 'Fushe-Kruje', 'country_code' => 'AL'], ['name' => 'Muttenz', 'country_code' => 'CH'], ['name' => 'Benicasim', 'country_code' => 'ES'], ['name' => 'Piatykhatky', 'country_code' => 'UA'], ['name' => 'Terrell', 'country_code' => 'US'], ['name' => 'Heanor', 'country_code' => 'GB'], ['name' => 'Tocaima', 'country_code' => 'CO'], ['name' => 'Meylan', 'country_code' => 'FR'], ['name' => 'Kara-Kol', 'country_code' => 'KG'], ['name' => 'Kalach', 'country_code' => 'RU'], ['name' => 'San Lorenzo de El Escorial', 'country_code' => 'ES'], ['name' => 'Natchitoches', 'country_code' => 'US'], ['name' => 'Oulmes', 'country_code' => 'MA'], ['name' => 'Targu Secuiesc', 'country_code' => 'RO'], ['name' => 'Twinsburg', 'country_code' => 'US'], ['name' => 'Taufkirchen', 'country_code' => 'DE'], ['name' => 'Central Point', 'country_code' => 'US'], ['name' => 'Bemmel', 'country_code' => 'NL'], ['name' => 'Esperanza', 'country_code' => 'PH'], ['name' => 'Crimmitschau', 'country_code' => 'DE'], ['name' => 'Seminole', 'country_code' => 'US'], ['name' => 'Burscheid', 'country_code' => 'DE'], ['name' => 'Kilbirnie', 'country_code' => 'GB'], ['name' => 'Dzuunharaa', 'country_code' => 'MN'], ['name' => 'Montville', 'country_code' => 'US'], ['name' => 'Coldwater', 'country_code' => 'US'], ['name' => 'Gossau', 'country_code' => 'CH'], ['name' => 'Porto Acre', 'country_code' => 'BR'], ['name' => 'Owego', 'country_code' => 'US'], ['name' => 'Starobilsk', 'country_code' => 'UA'], ['name' => 'Bareggio', 'country_code' => 'IT'], ['name' => 'Marsciano', 'country_code' => 'IT'], ['name' => 'Batalha', 'country_code' => 'BR'], ['name' => 'Peterhead', 'country_code' => 'GB'], ['name' => 'West Manchester', 'country_code' => 'US'], ['name' => 'Sortavala', 'country_code' => 'RU'], ['name' => 'Victoria', 'country_code' => 'MX'], ['name' => 'Lessines', 'country_code' => 'BE'], ['name' => 'Oirschot', 'country_code' => 'NL'], ['name' => 'Siderno Marina', 'country_code' => 'IT'], ['name' => 'Malacacheta', 'country_code' => 'BR'], ['name' => 'Thorold', 'country_code' => 'CA'], ['name' => 'Ban Mai', 'country_code' => 'TH'], ['name' => 'Santiago de Maria', 'country_code' => 'SV'], ['name' => 'Palmeiras', 'country_code' => 'BR'], ['name' => 'Costa Marques', 'country_code' => 'BR'], ['name' => 'St. John', 'country_code' => 'US'], ['name' => 'Novyy Oskol', 'country_code' => 'RU'], ['name' => 'Osny', 'country_code' => 'FR'], ['name' => 'Renningen', 'country_code' => 'DE'], ['name' => 'Cabusao', 'country_code' => 'PH'], ['name' => 'Engenheiro Coelho', 'country_code' => 'BR'], ['name' => 'Alzenau in Unterfranken', 'country_code' => 'DE'], ['name' => 'Piossasco', 'country_code' => 'IT'], ['name' => 'Middelburg', 'country_code' => 'ZA'], ['name' => 'Neopolis', 'country_code' => 'BR'], ['name' => 'Quitandinha', 'country_code' => 'BR'], ['name' => 'Rawmarsh', 'country_code' => 'GB'], ['name' => 'Grandview', 'country_code' => 'US'], ['name' => 'Huercal de Almeria', 'country_code' => 'ES'], ['name' => 'Kitcharao', 'country_code' => 'PH'], ['name' => 'Marshfield', 'country_code' => 'US'], ['name' => 'Emba', 'country_code' => 'KZ'], ['name' => 'Stekene', 'country_code' => 'BE'], ['name' => 'Vitre', 'country_code' => 'FR'], ['name' => 'Ibitita', 'country_code' => 'BR'], ['name' => 'Konz', 'country_code' => 'DE'], ['name' => 'Farias Brito', 'country_code' => 'BR'], ['name' => 'Cruz Machado', 'country_code' => 'BR'], ['name' => 'Tepetlixpa', 'country_code' => 'MX'], ['name' => 'Pirapemas', 'country_code' => 'BR'], ['name' => 'Rufino', 'country_code' => 'AR'], ['name' => 'Longjia', 'country_code' => 'CN'], ['name' => 'Villa de Leyva', 'country_code' => 'CO'], ['name' => 'Grafton', 'country_code' => 'US'], ['name' => 'Camrose', 'country_code' => 'CA'], ['name' => 'Schneverdingen', 'country_code' => 'DE'], ['name' => 'Orodara', 'country_code' => 'BF'], ['name' => 'Rajmahal', 'country_code' => 'IN'], ['name' => 'Villa Verde', 'country_code' => 'PH'], ['name' => 'Marktoberdorf', 'country_code' => 'DE'], ['name' => 'Domodossola', 'country_code' => 'IT'], ['name' => 'Jbabra', 'country_code' => 'MA'], ['name' => 'Cimarron Hills', 'country_code' => 'US'], ['name' => 'East Lyme', 'country_code' => 'US'], ['name' => 'Wassenberg', 'country_code' => 'DE'], ['name' => 'Miyatoko', 'country_code' => 'JP'], ['name' => 'Scituate', 'country_code' => 'US'], ['name' => 'Sparta', 'country_code' => 'US'], ['name' => 'Carius', 'country_code' => 'BR'], ['name' => 'Venturosa', 'country_code' => 'BR'], ['name' => 'Cafarnaum', 'country_code' => 'BR'], ['name' => 'Bad Reichenhall', 'country_code' => 'DE'], ['name' => 'Alsip', 'country_code' => 'US'], ['name' => 'Toflea', 'country_code' => 'RO'], ['name' => 'Avon', 'country_code' => 'US'], ['name' => 'Homewood', 'country_code' => 'US'], ['name' => 'Orastie', 'country_code' => 'RO'], ['name' => 'Laives', 'country_code' => 'IT'], ['name' => 'Picui', 'country_code' => 'BR'], ['name' => 'Surovikino', 'country_code' => 'RU'], ['name' => 'Or Aqiva', 'country_code' => 'IL'], ['name' => 'Lora del Rio', 'country_code' => 'ES'], ['name' => 'Sanpaicun', 'country_code' => 'CN'], ['name' => 'Auerbach', 'country_code' => 'DE'], ['name' => 'Ibipeba', 'country_code' => 'BR'], ['name' => 'Port Isabel', 'country_code' => 'US'], ['name' => 'Bacuri', 'country_code' => 'BR'], ['name' => 'Liuma', 'country_code' => 'CN'], ['name' => 'Ban Thum', 'country_code' => 'TH'], ['name' => 'Vovchansk', 'country_code' => 'UA'], ['name' => 'Marinette', 'country_code' => 'US'], ['name' => 'Bergeijk', 'country_code' => 'NL'], ['name' => 'Capua', 'country_code' => 'IT'], ['name' => 'Vlotho', 'country_code' => 'DE'], ['name' => 'Jaguaripe', 'country_code' => 'BR'], ['name' => 'Boa Vista do Tupim', 'country_code' => 'BR'], ['name' => 'Kavalerovo', 'country_code' => 'RU'], ['name' => 'Bay City', 'country_code' => 'US'], ['name' => 'Filomeno Mata', 'country_code' => 'MX'], ['name' => 'Bad Durkheim', 'country_code' => 'DE'], ['name' => 'Hochheim am Main', 'country_code' => 'DE'], ['name' => 'Bals', 'country_code' => 'RO'], ['name' => 'Ansonia', 'country_code' => 'US'], ['name' => 'Weissenburg', 'country_code' => 'DE'], ['name' => 'Chouafaa', 'country_code' => 'MA'], ['name' => 'Bremervorde', 'country_code' => 'DE'], ['name' => 'West Whiteland', 'country_code' => 'US'], ['name' => 'Malnate', 'country_code' => 'IT'], ['name' => 'Bagnols-sur-Ceze', 'country_code' => 'FR'], ['name' => 'Sao Joao dos Poleiros', 'country_code' => 'BR'], ['name' => 'Deerfield', 'country_code' => 'US'], ['name' => 'South Frontenac', 'country_code' => 'CA'], ['name' => 'Augustinopolis', 'country_code' => 'BR'], ['name' => 'Guanzhai', 'country_code' => 'CN'], ['name' => 'Maple Shade', 'country_code' => 'US'], ['name' => 'Tamri', 'country_code' => 'MA'], ['name' => 'Limay', 'country_code' => 'FR'], ['name' => 'Westminster', 'country_code' => 'US'], ['name' => 'Kulu', 'country_code' => 'IN'], ['name' => 'Melegnano', 'country_code' => 'IT'], ['name' => 'Nytva', 'country_code' => 'RU'], ['name' => 'Porto Real', 'country_code' => 'BR'], ['name' => 'Olten', 'country_code' => 'CH'], ['name' => 'Creve Coeur', 'country_code' => 'US'], ['name' => 'Cluses', 'country_code' => 'FR'], ['name' => 'Vanino', 'country_code' => 'RU'], ['name' => 'Aguas de Lindoia', 'country_code' => 'BR'], ['name' => 'Carnaiba', 'country_code' => 'BR'], ['name' => 'Brand', 'country_code' => 'DE'], ['name' => 'Tata', 'country_code' => 'MA'], ['name' => 'Jiabong', 'country_code' => 'PH'], ['name' => 'Hoppegarten', 'country_code' => 'DE'], ['name' => 'Tatsuno', 'country_code' => 'JP'], ['name' => 'Skadovsk', 'country_code' => 'UA'], ['name' => 'Shaogang', 'country_code' => 'CN'], ['name' => 'Orestiada', 'country_code' => 'GR'], ['name' => 'Berea', 'country_code' => 'US'], ['name' => 'Olho d Agua das Cunhas', 'country_code' => 'BR'], ['name' => 'Firminy', 'country_code' => 'FR'], ['name' => 'Cocoa', 'country_code' => 'US'], ['name' => 'Moultrie', 'country_code' => 'US'], ['name' => 'Timoktene', 'country_code' => 'DZ'], ['name' => 'Berkhampstead', 'country_code' => 'GB'], ['name' => 'Unquillo', 'country_code' => 'AR'], ['name' => 'Budrio', 'country_code' => 'IT'], ['name' => 'Houghton Regis', 'country_code' => 'GB'], ['name' => 'Bonen', 'country_code' => 'DE'], ['name' => 'Forest Park', 'country_code' => 'US'], ['name' => 'Marihatag', 'country_code' => 'PH'], ['name' => 'Sinacaban', 'country_code' => 'PH'], ['name' => 'Varjota', 'country_code' => 'BR'], ['name' => 'Pitt Meadows', 'country_code' => 'CA'], ['name' => 'Zagarolo', 'country_code' => 'IT'], ['name' => 'Kristiansund', 'country_code' => 'NO'], ['name' => 'Priozersk', 'country_code' => 'RU'], ['name' => 'Santa Cruz Zenzontepec', 'country_code' => 'MX'], ['name' => 'Anacortes', 'country_code' => 'US'], ['name' => 'Moloacan', 'country_code' => 'MX'], ['name' => 'Lahnstein', 'country_code' => 'DE'], ['name' => 'Sidi Allal Tazi', 'country_code' => 'MA'], ['name' => 'Matagob', 'country_code' => 'PH'], ['name' => 'Asuncion Nochixtlan', 'country_code' => 'MX'], ['name' => 'Shaoyu', 'country_code' => 'CN'], ['name' => 'Heusweiler', 'country_code' => 'DE'], ['name' => 'Borgo San Lorenzo', 'country_code' => 'IT'], ['name' => 'Miedzyrzecz', 'country_code' => 'PL'], ['name' => 'Aberdeen', 'country_code' => 'US'], ['name' => 'Tha Bo', 'country_code' => 'TH'], ['name' => 'Sam Phran', 'country_code' => 'TH'], ['name' => 'Cordenons', 'country_code' => 'IT'], ['name' => 'Fatima', 'country_code' => 'BR'], ['name' => 'Bramhall', 'country_code' => 'GB'], ['name' => 'San Blas Atempa', 'country_code' => 'MX'], ['name' => 'Campo de la Cruz', 'country_code' => 'CO'], ['name' => 'Rancho Mirage', 'country_code' => 'US'], ['name' => 'Sharon', 'country_code' => 'US'], ['name' => 'Kherameh', 'country_code' => 'IR'], ['name' => 'Littau', 'country_code' => 'CH'], ['name' => 'Garuva', 'country_code' => 'BR'], ['name' => 'Siqueira Campos', 'country_code' => 'BR'], ['name' => 'Placido de Castro', 'country_code' => 'BR'], ['name' => 'Kostrzyn nad Odra', 'country_code' => 'PL'], ['name' => 'Dniprorudne', 'country_code' => 'UA'], ['name' => 'Gibsonton', 'country_code' => 'US'], ['name' => 'Del Carmen', 'country_code' => 'PH'], ['name' => 'Taio', 'country_code' => 'BR'], ['name' => 'Viradouro', 'country_code' => 'BR'], ['name' => 'Lynden', 'country_code' => 'US'], ['name' => 'Somma Lombardo', 'country_code' => 'IT'], ['name' => 'Savignano sul Rubicone', 'country_code' => 'IT'], ['name' => 'Elst', 'country_code' => 'NL'], ['name' => 'Swellendam', 'country_code' => 'ZA'], ['name' => 'Beloozerskiy', 'country_code' => 'RU'], ['name' => 'Foum el Anser', 'country_code' => 'MA'], ['name' => 'Guadix', 'country_code' => 'ES'], ['name' => 'Gautier', 'country_code' => 'US'], ['name' => 'Otrokovice', 'country_code' => 'CZ'], ['name' => 'Nara', 'country_code' => 'ML'], ['name' => 'Mayfield Heights', 'country_code' => 'US'], ['name' => 'Piata', 'country_code' => 'BR'], ['name' => 'Breaux Bridge', 'country_code' => 'US'], ['name' => 'Tonantins', 'country_code' => 'BR'], ['name' => 'Arroio Grande', 'country_code' => 'BR'], ['name' => 'Itapaci', 'country_code' => 'BR'], ['name' => 'Almondbury', 'country_code' => 'GB'], ['name' => 'Taft', 'country_code' => 'IR'], ['name' => 'Nerviano', 'country_code' => 'IT'], ['name' => 'Torredembarra', 'country_code' => 'ES'], ['name' => 'Hopkins', 'country_code' => 'US'], ['name' => 'Bekes', 'country_code' => 'HU'], ['name' => 'Albino', 'country_code' => 'IT'], ['name' => 'Villorba', 'country_code' => 'IT'], ['name' => 'Kobylka', 'country_code' => 'PL'], ['name' => 'Wilton', 'country_code' => 'US'], ['name' => 'Lamrasla', 'country_code' => 'MA'], ['name' => 'Tingloy', 'country_code' => 'PH'], ['name' => 'Defiance', 'country_code' => 'US'], ['name' => 'Gheorgheni', 'country_code' => 'RO'], ['name' => 'Monor', 'country_code' => 'HU'], ['name' => 'Itapororoca', 'country_code' => 'BR'], ['name' => 'Madalag', 'country_code' => 'PH'], ['name' => 'Yur yev-Pol skiy', 'country_code' => 'RU'], ['name' => 'Korsun-Shevchenkivskyi', 'country_code' => 'UA'], ['name' => 'Valguarnera Caropepe', 'country_code' => 'IT'], ['name' => 'Stonington', 'country_code' => 'US'], ['name' => 'San Jose Tenango', 'country_code' => 'MX'], ['name' => 'Amvrosiivka', 'country_code' => 'UA'], ['name' => 'Svatove', 'country_code' => 'UA'], ['name' => 'Campos Belos', 'country_code' => 'BR'], ['name' => 'Panagyurishte', 'country_code' => 'BG'], ['name' => 'Iron Mountain', 'country_code' => 'US'], ['name' => 'Durlesti', 'country_code' => 'MD'], ['name' => 'Schwechat', 'country_code' => 'AT'], ['name' => 'Washington', 'country_code' => 'US'], ['name' => 'Formoso do Araguaia', 'country_code' => 'BR'], ['name' => 'Golcar', 'country_code' => 'GB'], ['name' => 'Berea', 'country_code' => 'US'], ['name' => 'Bodegraven', 'country_code' => 'NL'], ['name' => 'Altus', 'country_code' => 'US'], ['name' => 'San Celoni', 'country_code' => 'ES'], ['name' => 'Belo Campo', 'country_code' => 'BR'], ['name' => 'Harinakunda', 'country_code' => 'BD'], ['name' => 'Oroszlany', 'country_code' => 'HU'], ['name' => 'Kadan', 'country_code' => 'CZ'], ['name' => 'Santa Maria di Sala', 'country_code' => 'IT'], ['name' => 'Uvalde', 'country_code' => 'US'], ['name' => 'Nunungan', 'country_code' => 'PH'], ['name' => 'Banting', 'country_code' => 'PH'], ['name' => 'Serra Dourada', 'country_code' => 'BR'], ['name' => 'Garwolin', 'country_code' => 'PL'], ['name' => 'Brushy Creek', 'country_code' => 'US'], ['name' => 'Concepcion de Ataco', 'country_code' => 'SV'], ['name' => 'Ait Bouchta', 'country_code' => 'MA'], ['name' => 'Acatlan', 'country_code' => 'MX'], ['name' => 'Cassano al Ionio', 'country_code' => 'IT'], ['name' => 'Brook Park', 'country_code' => 'US'], ['name' => 'Yoichi', 'country_code' => 'JP'], ['name' => 'Pembroke', 'country_code' => 'US'], ['name' => 'Novopavlovka', 'country_code' => 'KG'], ['name' => 'Braniewo', 'country_code' => 'PL'], ['name' => 'Piuma', 'country_code' => 'BR'], ['name' => 'Middle', 'country_code' => 'US'], ['name' => 'Memuro-minami', 'country_code' => 'JP'], ['name' => 'Wallingford Center', 'country_code' => 'US'], ['name' => 'Grossenhain', 'country_code' => 'DE'], ['name' => 'Santander', 'country_code' => 'PH'], ['name' => 'Carire', 'country_code' => 'BR'], ['name' => 'Qishe', 'country_code' => 'CN'], ['name' => 'Sunnyside', 'country_code' => 'US'], ['name' => 'Pinabacdao', 'country_code' => 'PH'], ['name' => 'Lagoa da Canoa', 'country_code' => 'BR'], ['name' => 'Middelharnis', 'country_code' => 'NL'], ['name' => 'Sorum', 'country_code' => 'NO'], ['name' => 'Serrita', 'country_code' => 'BR'], ['name' => 'Garching bei Munchen', 'country_code' => 'DE'], ['name' => 'Bet She an', 'country_code' => 'IL'], ['name' => 'Fulwood', 'country_code' => 'GB'], ['name' => 'Dobrush', 'country_code' => 'BY'], ['name' => 'Schwalmstadt', 'country_code' => 'DE'], ['name' => 'Jucurutu', 'country_code' => 'BR'], ['name' => 'Boissy-Saint-Leger', 'country_code' => 'FR'], ['name' => 'Shaying', 'country_code' => 'CN'], ['name' => 'Towamencin', 'country_code' => 'US'], ['name' => 'Klaukkala', 'country_code' => 'FI'], ['name' => 'Forst (Lausitz)', 'country_code' => 'DE'], ['name' => 'World Golf Village', 'country_code' => 'US'], ['name' => 'Sycamore', 'country_code' => 'US'], ['name' => 'Franklin Farm', 'country_code' => 'US'], ['name' => 'Charata', 'country_code' => 'AR'], ['name' => 'Vertentes', 'country_code' => 'BR'], ['name' => 'Oyama', 'country_code' => 'JP'], ['name' => 'Avon', 'country_code' => 'US'], ['name' => 'San Gabriel', 'country_code' => 'PH'], ['name' => 'Sikhio', 'country_code' => 'TH'], ['name' => 'Chowchilla', 'country_code' => 'US'], ['name' => 'Felanitx', 'country_code' => 'ES'], ['name' => 'Ronkonkoma', 'country_code' => 'US'], ['name' => 'Polignano a Mare', 'country_code' => 'IT'], ['name' => 'Lagoa do Carro', 'country_code' => 'BR'], ['name' => 'Port Colborne', 'country_code' => 'CA'], ['name' => 'Pocinhos', 'country_code' => 'BR'], ['name' => 'Maltby', 'country_code' => 'GB'], ['name' => 'Lobos', 'country_code' => 'AR'], ['name' => 'Slyudyanka', 'country_code' => 'RU'], ['name' => 'Torrox', 'country_code' => 'ES'], ['name' => 'Buckhaven', 'country_code' => 'GB'], ['name' => 'Newburyport', 'country_code' => 'US'], ['name' => 'Kosvik', 'country_code' => 'NO'], ['name' => 'Colina', 'country_code' => 'BR'], ['name' => 'Schkeuditz', 'country_code' => 'DE'], ['name' => 'Caldas de Montbuy', 'country_code' => 'ES'], ['name' => 'Huitan', 'country_code' => 'GT'], ['name' => 'Condeuba', 'country_code' => 'BR'], ['name' => 'Hampton', 'country_code' => 'US'], ['name' => 'Hessisch Oldendorf', 'country_code' => 'DE'], ['name' => 'Malimono', 'country_code' => 'PH'], ['name' => 'Xochiatipan de Castillo', 'country_code' => 'MX'], ['name' => 'Montornes del Valles', 'country_code' => 'ES'], ['name' => 'Bouarouss', 'country_code' => 'MA'], ['name' => 'Banabuiu', 'country_code' => 'BR'], ['name' => 'Luz', 'country_code' => 'BR'], ['name' => 'Dragasani', 'country_code' => 'RO'], ['name' => 'Isfana', 'country_code' => 'KG'], ['name' => 'Werdohl', 'country_code' => 'DE'], ['name' => 'Kilgore', 'country_code' => 'US'], ['name' => 'Kishi', 'country_code' => 'JP'], ['name' => 'Worth am Rhein', 'country_code' => 'DE'], ['name' => 'Gangwuzhen', 'country_code' => 'CN'], ['name' => 'Baicoi', 'country_code' => 'RO'], ['name' => 'Sapucaia', 'country_code' => 'BR'], ['name' => 'Nigran', 'country_code' => 'ES'], ['name' => 'Bekalta', 'country_code' => 'TN'], ['name' => 'Radford', 'country_code' => 'US'], ['name' => 'Ikniwn', 'country_code' => 'MA'], ['name' => 'Sao Vicente Ferrer', 'country_code' => 'BR'], ['name' => 'Quispamsis', 'country_code' => 'CA'], ['name' => 'Texistepeque', 'country_code' => 'SV'], ['name' => 'Palestine', 'country_code' => 'US'], ['name' => 'Whitestown', 'country_code' => 'US'], ['name' => 'Crawfordsville', 'country_code' => 'US'], ['name' => 'Springfield', 'country_code' => 'US'], ['name' => 'Puchov', 'country_code' => 'SK'], ['name' => 'San Kamphaeng', 'country_code' => 'TH'], ['name' => 'Ploemeur', 'country_code' => 'FR'], ['name' => 'Arinos', 'country_code' => 'BR'], ['name' => 'Grangemouth', 'country_code' => 'GB'], ['name' => 'Boerne', 'country_code' => 'US'], ['name' => 'Rikuzen-Takata', 'country_code' => 'JP'], ['name' => 'Pieksamaki', 'country_code' => 'FI'], ['name' => 'Lake Placid', 'country_code' => 'US'], ['name' => 'Carvin', 'country_code' => 'FR'], ['name' => 'Tarifa', 'country_code' => 'ES'], ['name' => 'Lask', 'country_code' => 'PL'], ['name' => 'Dombovar', 'country_code' => 'HU'], ['name' => 'Diadi', 'country_code' => 'PH'], ['name' => 'Alpignano', 'country_code' => 'IT'], ['name' => 'Wemmel', 'country_code' => 'BE'], ['name' => 'Pastrana', 'country_code' => 'PH'], ['name' => 'Muynoq', 'country_code' => 'UZ'], ['name' => 'Rhaude', 'country_code' => 'DE'], ['name' => 'Rio Maria', 'country_code' => 'BR'], ['name' => 'St. Michael', 'country_code' => 'US'], ['name' => 'East Goshen', 'country_code' => 'US'], ['name' => 'Ilam', 'country_code' => 'NP'], ['name' => 'Mont-Saint-Hilaire', 'country_code' => 'CA'], ['name' => 'Maumelle', 'country_code' => 'US'], ['name' => 'Tremedal', 'country_code' => 'BR'], ['name' => 'Windham', 'country_code' => 'US'], ['name' => 'Santo Antonio do Leverger', 'country_code' => 'BR'], ['name' => 'Lavasan', 'country_code' => 'IR'], ['name' => 'Bad Segeberg', 'country_code' => 'DE'], ['name' => 'Parchim', 'country_code' => 'DE'], ['name' => 'Benavente', 'country_code' => 'ES'], ['name' => 'Itacarambi', 'country_code' => 'BR'], ['name' => 'Monthey', 'country_code' => 'CH'], ['name' => 'Hranice', 'country_code' => 'CZ'], ['name' => 'Niles', 'country_code' => 'US'], ['name' => 'Pratteln', 'country_code' => 'CH'], ['name' => 'Avtury', 'country_code' => 'RU'], ['name' => 'Sint-Oedenrode', 'country_code' => 'NL'], ['name' => 'Beruri', 'country_code' => 'BR'], ['name' => 'Central', 'country_code' => 'BR'], ['name' => 'Vestby', 'country_code' => 'NO'], ['name' => 'Somerset', 'country_code' => 'US'], ['name' => 'Morro da Fumaca', 'country_code' => 'BR'], ['name' => 'Menomonie', 'country_code' => 'US'], ['name' => 'Croata', 'country_code' => 'BR'], ['name' => 'Trenton', 'country_code' => 'US'], ['name' => 'Bathurst', 'country_code' => 'CA'], ['name' => 'Cuautitlan', 'country_code' => 'MX'], ['name' => 'Sao Caetano de Odivelas', 'country_code' => 'BR'], ['name' => 'Southeast', 'country_code' => 'US'], ['name' => 'Tapaua', 'country_code' => 'BR'], ['name' => 'San Jose', 'country_code' => 'PH'], ['name' => 'Paraibuna', 'country_code' => 'BR'], ['name' => 'Calenzano', 'country_code' => 'IT'], ['name' => 'Bexbach', 'country_code' => 'DE'], ['name' => 'Saint-Augustin-de-Desmaures', 'country_code' => 'CA'], ['name' => 'Wheatfield', 'country_code' => 'US'], ['name' => 'Solonopole', 'country_code' => 'BR'], ['name' => 'Rizal', 'country_code' => 'PH'], ['name' => 'Feyzabad', 'country_code' => 'IR'], ['name' => 'Matelandia', 'country_code' => 'BR'], ['name' => 'Atalaia do Norte', 'country_code' => 'BR'], ['name' => 'Lagoa Formosa', 'country_code' => 'BR'], ['name' => 'Rutland', 'country_code' => 'US'], ['name' => 'Bloemhof', 'country_code' => 'ZA'], ['name' => 'Marcon', 'country_code' => 'IT'], ['name' => 'Maranello', 'country_code' => 'IT'], ['name' => 'Coronda', 'country_code' => 'AR'], ['name' => 'Ghouazi', 'country_code' => 'MA'], ['name' => 'Sona', 'country_code' => 'IT'], ['name' => 'Imperial', 'country_code' => 'US'], ['name' => 'Orange', 'country_code' => 'US'], ['name' => 'Matigou', 'country_code' => 'CN'], ['name' => 'Mengjiacun', 'country_code' => 'CN'], ['name' => 'Otsego', 'country_code' => 'US'], ['name' => 'Madison', 'country_code' => 'US'], ['name' => 'Madeley', 'country_code' => 'GB'], ['name' => 'Pescantina', 'country_code' => 'IT'], ['name' => 'Madison', 'country_code' => 'US'], ['name' => 'St. Matthews', 'country_code' => 'US'], ['name' => 'Alton', 'country_code' => 'US'], ['name' => 'Cudahy', 'country_code' => 'US'], ['name' => 'Dizicheh', 'country_code' => 'IR'], ['name' => 'Round Lake', 'country_code' => 'US'], ['name' => 'General Juan Madariaga', 'country_code' => 'AR'], ['name' => 'Quanzhang', 'country_code' => 'CN'], ['name' => 'Oak Bay', 'country_code' => 'CA'], ['name' => 'Heidenau', 'country_code' => 'DE'], ['name' => 'Piacabucu', 'country_code' => 'BR'], ['name' => 'Freilassing', 'country_code' => 'DE'], ['name' => 'Oxon Hill', 'country_code' => 'US'], ['name' => 'Pastos Bons', 'country_code' => 'BR'], ['name' => 'Manchester', 'country_code' => 'US'], ['name' => 'Malacky', 'country_code' => 'SK'], ['name' => 'Rypin', 'country_code' => 'PL'], ['name' => 'Beeville', 'country_code' => 'US'], ['name' => 'Sebaste', 'country_code' => 'PH'], ['name' => 'Cary', 'country_code' => 'US'], ['name' => 'Tublay', 'country_code' => 'PH'], ['name' => 'North Wilkesboro', 'country_code' => 'US'], ['name' => 'Freudenberg', 'country_code' => 'DE'], ['name' => 'Yupiltepeque', 'country_code' => 'GT'], ['name' => 'Goffstown', 'country_code' => 'US'], ['name' => 'Duero', 'country_code' => 'PH'], ['name' => 'North Aurora', 'country_code' => 'US'], ['name' => 'Hijuelas', 'country_code' => 'CL'], ['name' => 'Lithia Springs', 'country_code' => 'US'], ['name' => 'Tall Aran', 'country_code' => 'SY'], ['name' => 'Northallerton', 'country_code' => 'GB'], ['name' => 'Sorrento', 'country_code' => 'IT'], ['name' => 'Bon Air', 'country_code' => 'US'], ['name' => 'Mirangaba', 'country_code' => 'BR'], ['name' => 'Almolonga', 'country_code' => 'GT'], ['name' => 'Bensenville', 'country_code' => 'US'], ['name' => 'Balilihan', 'country_code' => 'PH'], ['name' => 'Sinzig', 'country_code' => 'DE'], ['name' => 'Eastlake', 'country_code' => 'US'], ['name' => 'Beaver Dam', 'country_code' => 'US'], ['name' => 'Muhradah', 'country_code' => 'SY'], ['name' => 'Kelsterbach', 'country_code' => 'DE'], ['name' => 'Nauen', 'country_code' => 'DE'], ['name' => 'Qal ah-ye Zal', 'country_code' => 'AF'], ['name' => 'Itabera', 'country_code' => 'BR'], ['name' => 'Rio Pomba', 'country_code' => 'BR'], ['name' => 'Marcos', 'country_code' => 'PH'], ['name' => 'Safety Harbor', 'country_code' => 'US'], ['name' => 'Mattoon', 'country_code' => 'US'], ['name' => 'Port-de-Bouc', 'country_code' => 'FR'], ['name' => 'Neftegorsk', 'country_code' => 'RU'], ['name' => 'Canapi', 'country_code' => 'BR'], ['name' => 'Colne', 'country_code' => 'GB'], ['name' => 'Ginsheim-Gustavsburg', 'country_code' => 'DE'], ['name' => 'Requena', 'country_code' => 'PE'], ['name' => 'General Deheza', 'country_code' => 'AR'], ['name' => 'Waalre', 'country_code' => 'NL'], ['name' => 'Macomb', 'country_code' => 'US'], ['name' => 'Munguia', 'country_code' => 'ES'], ['name' => 'North Druid Hills', 'country_code' => 'US'], ['name' => 'Baronissi', 'country_code' => 'IT'], ['name' => 'Danao', 'country_code' => 'PH'], ['name' => 'West Columbia', 'country_code' => 'US'], ['name' => 'Arco', 'country_code' => 'IT'], ['name' => 'Oborniki', 'country_code' => 'PL'], ['name' => 'Mirante do Paranapanema', 'country_code' => 'BR'], ['name' => 'Regeneracao', 'country_code' => 'BR'], ['name' => 'Fayetteville', 'country_code' => 'US'], ['name' => 'Messias', 'country_code' => 'BR'], ['name' => 'Mosbrough', 'country_code' => 'GB'], ['name' => 'Sunland Park', 'country_code' => 'US'], ['name' => 'Sabana de Torres', 'country_code' => 'CO'], ['name' => 'Ribat Al Khayr', 'country_code' => 'MA'], ['name' => 'Chateauneuf-les-Martigues', 'country_code' => 'FR'], ['name' => 'Puurs', 'country_code' => 'BE'], ['name' => 'Kharabali', 'country_code' => 'RU'], ['name' => 'Isola Capo Rizzuto', 'country_code' => 'IT'], ['name' => 'Miedzyrzec Podlaski', 'country_code' => 'PL'], ['name' => 'Estelle', 'country_code' => 'US'], ['name' => 'Antenor Navarro', 'country_code' => 'BR'], ['name' => 'Po', 'country_code' => 'BF'], ['name' => 'Melfi', 'country_code' => 'IT'], ['name' => 'Ibirataia', 'country_code' => 'BR'], ['name' => 'Manzanares', 'country_code' => 'ES'], ['name' => 'San Carlos Park', 'country_code' => 'US'], ['name' => 'Pelaya', 'country_code' => 'CO'], ['name' => 'Daimiel', 'country_code' => 'ES'], ['name' => 'San Teodoro', 'country_code' => 'PH'], ['name' => 'Policoro', 'country_code' => 'IT'], ['name' => 'Illertissen', 'country_code' => 'DE'], ['name' => 'Al Qbab', 'country_code' => 'MA'], ['name' => 'Rockland', 'country_code' => 'US'], ['name' => 'Gaoniang', 'country_code' => 'CN'], ['name' => 'Kreuzau', 'country_code' => 'DE'], ['name' => 'Frankenberg', 'country_code' => 'DE'], ['name' => 'Zachary', 'country_code' => 'US'], ['name' => 'Kingsland', 'country_code' => 'US'], ['name' => 'Zapotlan del Rey', 'country_code' => 'MX'], ['name' => 'Marco Island', 'country_code' => 'US'], ['name' => 'L Isle-d Abeau', 'country_code' => 'FR'], ['name' => 'Huntington', 'country_code' => 'US'], ['name' => 'Union de San Antonio', 'country_code' => 'MX'], ['name' => 'Juazeirinho', 'country_code' => 'BR'], ['name' => 'Ingleside', 'country_code' => 'US'], ['name' => 'Humacao', 'country_code' => 'PR'], ['name' => 'Whitemarsh', 'country_code' => 'US'], ['name' => 'Tricase', 'country_code' => 'IT'], ['name' => 'Weilerswist', 'country_code' => 'DE'], ['name' => 'Buchen in Odenwald', 'country_code' => 'DE'], ['name' => 'Marmande', 'country_code' => 'FR'], ['name' => 'Guapiara', 'country_code' => 'BR'], ['name' => 'Monselice', 'country_code' => 'IT'], ['name' => 'Conceicao do Mato Dentro', 'country_code' => 'BR'], ['name' => 'Ustka', 'country_code' => 'PL'], ['name' => 'Wantagh', 'country_code' => 'US'], ['name' => 'Kirsanov', 'country_code' => 'RU'], ['name' => 'Sibutao', 'country_code' => 'PH'], ['name' => 'Golitsyno', 'country_code' => 'RU'], ['name' => 'Lenoir', 'country_code' => 'US'], ['name' => 'Yaguachi Nuevo', 'country_code' => 'EC'], ['name' => 'Zlotoryja', 'country_code' => 'PL'], ['name' => 'Anadia', 'country_code' => 'BR'], ['name' => 'Concord', 'country_code' => 'US'], ['name' => 'Easton', 'country_code' => 'US'], ['name' => 'Ommen', 'country_code' => 'NL'], ['name' => 'Nguigmi', 'country_code' => 'NE'], ['name' => 'Galich', 'country_code' => 'RU'], ['name' => 'New Castle', 'country_code' => 'US'], ['name' => 'Serafina Corea', 'country_code' => 'BR'], ['name' => 'Yuanquan', 'country_code' => 'CN'], ['name' => 'Upton', 'country_code' => 'GB'], ['name' => 'Porto San Giorgio', 'country_code' => 'IT'], ['name' => 'San Bartolo Tutotepec', 'country_code' => 'MX'], ['name' => 'Perry', 'country_code' => 'US'], ['name' => 'Saint Ives', 'country_code' => 'GB'], ['name' => 'Siruma', 'country_code' => 'PH'], ['name' => 'Hannibal', 'country_code' => 'US'], ['name' => 'Holzwickede', 'country_code' => 'DE'], ['name' => 'Gikongoro', 'country_code' => 'RW'], ['name' => 'Douar Oulad Mbarek', 'country_code' => 'MA'], ['name' => 'Jacupiranga', 'country_code' => 'BR'], ['name' => 'Jaguaretama', 'country_code' => 'BR'], ['name' => 'Menasha', 'country_code' => 'US'], ['name' => 'Pontalina', 'country_code' => 'BR'], ['name' => 'Oak Grove', 'country_code' => 'US'], ['name' => 'Rizal', 'country_code' => 'PH'], ['name' => 'Schwarzenbek', 'country_code' => 'DE'], ['name' => 'Scarsdale', 'country_code' => 'US'], ['name' => 'Alton', 'country_code' => 'GB'], ['name' => 'Braunstone', 'country_code' => 'GB'], ['name' => 'Brenham', 'country_code' => 'US'], ['name' => 'Ocean Springs', 'country_code' => 'US'], ['name' => 'Dallas', 'country_code' => 'US'], ['name' => 'Woodcrest', 'country_code' => 'US'], ['name' => 'Libjo', 'country_code' => 'PH'], ['name' => 'Wadgassen', 'country_code' => 'DE'], ['name' => 'Carlentini', 'country_code' => 'IT'], ['name' => 'White Settlement', 'country_code' => 'US'], ['name' => 'High Blantyre', 'country_code' => 'GB'], ['name' => 'Cesson-Sevigne', 'country_code' => 'FR'], ['name' => 'Kukmor', 'country_code' => 'RU'], ['name' => 'Nazare Paulista', 'country_code' => 'BR'], ['name' => 'Schwalbach', 'country_code' => 'DE'], ['name' => 'Rio Claro', 'country_code' => 'BR'], ['name' => 'Salgar', 'country_code' => 'CO'], ['name' => 'Cerro Azul', 'country_code' => 'BR'], ['name' => 'Kongsvinger', 'country_code' => 'NO'], ['name' => 'Mitake', 'country_code' => 'JP'], ['name' => 'Five Forks', 'country_code' => 'US'], ['name' => 'Belterra', 'country_code' => 'BR'], ['name' => 'Knightdale', 'country_code' => 'US'], ['name' => 'Orta Nova', 'country_code' => 'IT'], ['name' => 'Forio', 'country_code' => 'IT'], ['name' => 'Shenandoah', 'country_code' => 'US'], ['name' => 'Ada', 'country_code' => 'US'], ['name' => 'Salonta', 'country_code' => 'RO'], ['name' => 'Broken Hill', 'country_code' => 'AU'], ['name' => 'Miaojiaping', 'country_code' => 'CN'], ['name' => 'Madamba', 'country_code' => 'PH'], ['name' => 'Sobinka', 'country_code' => 'RU'], ['name' => 'Orsay', 'country_code' => 'FR'], ['name' => 'Longjia', 'country_code' => 'CN'], ['name' => 'Naarden', 'country_code' => 'NL'], ['name' => 'Zhongguyue', 'country_code' => 'CN'], ['name' => 'Crossville', 'country_code' => 'US'], ['name' => 'Yutz', 'country_code' => 'FR'], ['name' => 'Las Heras', 'country_code' => 'AR'], ['name' => 'Yanggezhuang', 'country_code' => 'CN'], ['name' => 'Sleaford', 'country_code' => 'GB'], ['name' => 'Bad Sackingen', 'country_code' => 'DE'], ['name' => 'Sao Benedito do Rio Preto', 'country_code' => 'BR'], ['name' => 'Oerlinghausen', 'country_code' => 'DE'], ['name' => 'Sapeacu', 'country_code' => 'BR'], ['name' => 'Pontarlier', 'country_code' => 'FR'], ['name' => 'Beltsville', 'country_code' => 'US'], ['name' => 'Hlybokaye', 'country_code' => 'BY'], ['name' => 'Sangenjo', 'country_code' => 'ES'], ['name' => 'Pirapora do Bom Jesus', 'country_code' => 'BR'], ['name' => 'San Felipe', 'country_code' => 'GT'], ['name' => 'Nao-Me-Toque', 'country_code' => 'BR'], ['name' => 'Lac', 'country_code' => 'AL'], ['name' => 'Latsia', 'country_code' => 'CY'], ['name' => 'Shangjing', 'country_code' => 'CN'], ['name' => 'Bedford', 'country_code' => 'US'], ['name' => 'Santa Elena', 'country_code' => 'AR'], ['name' => 'Colonia', 'country_code' => 'US'], ['name' => 'Outat Oulad Al Haj', 'country_code' => 'MA'], ['name' => 'Ruhango', 'country_code' => 'RW'], ['name' => 'Grenchen', 'country_code' => 'CH'], ['name' => 'Guisborough', 'country_code' => 'GB'], ['name' => 'Portchester', 'country_code' => 'GB'], ['name' => 'Presidente Getulio', 'country_code' => 'BR'], ['name' => 'Moraga', 'country_code' => 'US'], ['name' => 'Beni Fouda', 'country_code' => 'DZ'], ['name' => 'Balaguer', 'country_code' => 'ES'], ['name' => 'Minquan', 'country_code' => 'CN'], ['name' => 'Zaslawye', 'country_code' => 'BY'], ['name' => 'Cairu', 'country_code' => 'BR'], ['name' => 'San Agustin Chahal', 'country_code' => 'GT'], ['name' => 'Ban Song', 'country_code' => 'TH'], ['name' => 'Cassia', 'country_code' => 'BR'], ['name' => 'Pouso Redondo', 'country_code' => 'BR'], ['name' => 'Midway', 'country_code' => 'US'], ['name' => 'Zongo', 'country_code' => 'CD'], ['name' => 'Banora Point', 'country_code' => 'AU'], ['name' => 'Steubenville', 'country_code' => 'US'], ['name' => 'Dingjiagouxiang', 'country_code' => 'CN'], ['name' => 'Glen Parva', 'country_code' => 'GB'], ['name' => 'Fiorano Modenese', 'country_code' => 'IT'], ['name' => 'Newmarket', 'country_code' => 'GB'], ['name' => 'Tavares', 'country_code' => 'US'], ['name' => 'Duijiang', 'country_code' => 'CN'], ['name' => 'Ngara', 'country_code' => 'TZ'], ['name' => 'Concord', 'country_code' => 'US'], ['name' => 'El Roble', 'country_code' => 'CR'], ['name' => 'Belgrade', 'country_code' => 'US'], ['name' => 'Sierre', 'country_code' => 'CH'], ['name' => 'Cipo', 'country_code' => 'BR'], ['name' => 'Popovo', 'country_code' => 'BG'], ['name' => 'Ban Pong', 'country_code' => 'TH'], ['name' => 'Lousa', 'country_code' => 'PT'], ['name' => 'Thornton', 'country_code' => 'GB'], ['name' => 'Foxborough', 'country_code' => 'US'], ['name' => 'Bilar', 'country_code' => 'PH'], ['name' => 'Tanque Novo', 'country_code' => 'BR'], ['name' => 'Laatatra', 'country_code' => 'MA'], ['name' => 'Lackawanna', 'country_code' => 'US'], ['name' => 'Tizi Rached', 'country_code' => 'DZ'], ['name' => 'Melville', 'country_code' => 'US'], ['name' => 'Verdun', 'country_code' => 'FR'], ['name' => 'Boqueirao', 'country_code' => 'BR'], ['name' => 'Ashland', 'country_code' => 'US'], ['name' => 'Wailuku', 'country_code' => 'US'], ['name' => 'Buckhall', 'country_code' => 'US'], ['name' => 'El Dorado', 'country_code' => 'US'], ['name' => 'Salmon Arm', 'country_code' => 'CA'], ['name' => 'Alcochete', 'country_code' => 'PT'], ['name' => 'South Hadley', 'country_code' => 'US'], ['name' => 'Ashton', 'country_code' => 'NZ'], ['name' => 'Tlahuelilpan', 'country_code' => 'MX'], ['name' => 'Fleron', 'country_code' => 'BE'], ['name' => 'Bailen', 'country_code' => 'ES'], ['name' => 'Preganziol', 'country_code' => 'IT'], ['name' => 'Port Alberni', 'country_code' => 'CA'], ['name' => 'Pisticci', 'country_code' => 'IT'], ['name' => 'Verneuil-sur-Seine', 'country_code' => 'FR'], ['name' => 'Santos Reyes Nopala', 'country_code' => 'MX'], ['name' => 'Novo Airao', 'country_code' => 'BR'], ['name' => 'Ribeirao Branco', 'country_code' => 'BR'], ['name' => 'Ban Phe', 'country_code' => 'TH'], ['name' => 'Greene', 'country_code' => 'US'], ['name' => 'Pianoro', 'country_code' => 'IT'], ['name' => 'Sipacapa', 'country_code' => 'GT'], ['name' => 'Nerang', 'country_code' => 'AU'], ['name' => 'Valle Vista', 'country_code' => 'US'], ['name' => 'Bitam', 'country_code' => 'GA'], ['name' => 'Qal at Mgouna', 'country_code' => 'MA'], ['name' => 'Ait Majdane', 'country_code' => 'MA'], ['name' => 'San Alejo', 'country_code' => 'SV'], ['name' => 'Albert Lea', 'country_code' => 'US'], ['name' => 'Polyarnyy', 'country_code' => 'RU'], ['name' => 'Madison', 'country_code' => 'US'], ['name' => 'Sao Paulo do Potengi', 'country_code' => 'BR'], ['name' => 'Maitland', 'country_code' => 'US'], ['name' => 'Osuna', 'country_code' => 'ES'], ['name' => 'Guidan Roumdji', 'country_code' => 'NE'], ['name' => 'Agua Branca', 'country_code' => 'BR'], ['name' => 'Gretna', 'country_code' => 'US'], ['name' => 'Inza', 'country_code' => 'RU'], ['name' => 'Hatfield', 'country_code' => 'US'], ['name' => 'Arauco', 'country_code' => 'CL'], ['name' => 'Totutla', 'country_code' => 'MX'], ['name' => 'Bendorf', 'country_code' => 'DE'], ['name' => 'Tarrega', 'country_code' => 'ES'], ['name' => 'Milanowek', 'country_code' => 'PL'], ['name' => 'Sinnai', 'country_code' => 'IT'], ['name' => 'Chedaopo', 'country_code' => 'CN'], ['name' => 'Hinsdale', 'country_code' => 'US'], ['name' => 'Rocca di Papa', 'country_code' => 'IT'], ['name' => 'Ain Zaouia', 'country_code' => 'DZ'], ['name' => 'Tougan', 'country_code' => 'BF'], ['name' => 'Seara', 'country_code' => 'BR'], ['name' => 'Santa Fe Springs', 'country_code' => 'US'], ['name' => 'Bilina', 'country_code' => 'CZ'], ['name' => 'Magalhaes de Almeida', 'country_code' => 'BR'], ['name' => 'Bad Munder am Deister', 'country_code' => 'DE'], ['name' => 'Franklin Park', 'country_code' => 'US'], ['name' => 'Bethpage', 'country_code' => 'US'], ['name' => 'La Primavera', 'country_code' => 'CO'], ['name' => 'Awlouz', 'country_code' => 'MA'], ['name' => 'East Massapequa', 'country_code' => 'US'], ['name' => 'Belem', 'country_code' => 'BR'], ['name' => 'Plainville', 'country_code' => 'US'], ['name' => 'Amarante', 'country_code' => 'BR'], ['name' => 'Same', 'country_code' => 'TZ'], ['name' => 'Scordia', 'country_code' => 'IT'], ['name' => 'Filadelfia', 'country_code' => 'BR'], ['name' => 'Brignoles', 'country_code' => 'FR'], ['name' => 'Catriel', 'country_code' => 'AR'], ['name' => 'Wendlingen am Neckar', 'country_code' => 'DE'], ['name' => 'Blooming Grove', 'country_code' => 'US'], ['name' => 'Tabernes de Valldigna', 'country_code' => 'ES'], ['name' => 'Zaysan', 'country_code' => 'KZ'], ['name' => 'Kirksville', 'country_code' => 'US'], ['name' => 'Nipomo', 'country_code' => 'US'], ['name' => 'Nova Era', 'country_code' => 'BR'], ['name' => 'Hopkinton', 'country_code' => 'US'], ['name' => 'Afranio', 'country_code' => 'BR'], ['name' => 'As Suqaylibiyah', 'country_code' => 'SY'], ['name' => 'San Giovanni Valdarno', 'country_code' => 'IT'], ['name' => 'Centerville', 'country_code' => 'US'], ['name' => 'Bad Langensalza', 'country_code' => 'DE'], ['name' => 'Plymouth', 'country_code' => 'US'], ['name' => 'Gorham', 'country_code' => 'US'], ['name' => 'Rubano', 'country_code' => 'IT'], ['name' => 'Raunheim', 'country_code' => 'DE'], ['name' => 'Neerpelt', 'country_code' => 'BE'], ['name' => 'Butner', 'country_code' => 'US'], ['name' => 'Cortes', 'country_code' => 'PH'], ['name' => 'Boulsa', 'country_code' => 'BF'], ['name' => 'Feilding', 'country_code' => 'NZ'], ['name' => 'Sahel', 'country_code' => 'MA'], ['name' => 'Poyo', 'country_code' => 'ES'], ['name' => 'Salem', 'country_code' => 'US'], ['name' => 'Thale', 'country_code' => 'DE'], ['name' => 'Mayorga', 'country_code' => 'PH'], ['name' => 'Marktredwitz', 'country_code' => 'DE'], ['name' => 'Sanary-sur-Mer', 'country_code' => 'FR'], ['name' => 'Chirpan', 'country_code' => 'BG'], ['name' => 'Tillmans Corner', 'country_code' => 'US'], ['name' => 'Sedeh Lanjan', 'country_code' => 'IR'], ['name' => 'Tabarka', 'country_code' => 'TN'], ['name' => 'Fanipal ', 'country_code' => 'BY'], ['name' => 'Pecanha', 'country_code' => 'BR'], ['name' => 'La Garriga', 'country_code' => 'ES'], ['name' => 'Alotenango', 'country_code' => 'GT'], ['name' => 'Upper Grand Lagoon', 'country_code' => 'US'], ['name' => 'Haslemere', 'country_code' => 'GB'], ['name' => 'Anoka', 'country_code' => 'US'], ['name' => 'Ismaning', 'country_code' => 'DE'], ['name' => 'Remagen', 'country_code' => 'DE'], ['name' => 'Hoganas', 'country_code' => 'SE'], ['name' => 'Terra Roxa d Oeste', 'country_code' => 'BR'], ['name' => 'Castelfiorentino', 'country_code' => 'IT'], ['name' => 'Bobingen', 'country_code' => 'DE'], ['name' => 'Bailesti', 'country_code' => 'RO'], ['name' => 'Miramichi', 'country_code' => 'CA'], ['name' => 'Laurel', 'country_code' => 'US'], ['name' => 'Adelfia', 'country_code' => 'IT'], ['name' => 'Amesbury', 'country_code' => 'US'], ['name' => 'Plast', 'country_code' => 'RU'], ['name' => 'Dar Chaifat', 'country_code' => 'MA'], ['name' => 'Agourai', 'country_code' => 'MA'], ['name' => 'Trossingen', 'country_code' => 'DE'], ['name' => 'Windlesham', 'country_code' => 'GB'], ['name' => 'Marion', 'country_code' => 'US'], ['name' => 'Karukh', 'country_code' => 'AF'], ['name' => 'Tallmadge', 'country_code' => 'US'], ['name' => 'Cafelandia', 'country_code' => 'BR'], ['name' => 'Nanuet', 'country_code' => 'US'], ['name' => 'Negrar', 'country_code' => 'IT'], ['name' => 'Balma', 'country_code' => 'FR'], ['name' => 'Maryland City', 'country_code' => 'US'], ['name' => 'Ketama', 'country_code' => 'MA'], ['name' => 'Son en Breugel', 'country_code' => 'NL'], ['name' => 'Niagara-on-the-Lake', 'country_code' => 'CA'], ['name' => 'Shorewood', 'country_code' => 'US'], ['name' => 'Krasnokumskoye', 'country_code' => 'RU'], ['name' => 'Vero Beach', 'country_code' => 'US'], ['name' => 'Ziracuaretiro', 'country_code' => 'MX'], ['name' => 'Berga', 'country_code' => 'ES'], ['name' => 'Clemson', 'country_code' => 'US'], ['name' => 'Pinili', 'country_code' => 'PH'], ['name' => 'Sulzbach', 'country_code' => 'DE'], ['name' => 'Forssa', 'country_code' => 'FI'], ['name' => 'Karachev', 'country_code' => 'RU'], ['name' => 'Pomaz', 'country_code' => 'HU'], ['name' => 'Spanish Lake', 'country_code' => 'US'], ['name' => 'Kadogawa', 'country_code' => 'JP'], ['name' => 'Suvorov', 'country_code' => 'RU'], ['name' => 'Lewes', 'country_code' => 'GB'], ['name' => 'Sant Elpidio a Mare', 'country_code' => 'IT'], ['name' => 'Lara', 'country_code' => 'AU'], ['name' => 'Concorezzo', 'country_code' => 'IT'], ['name' => 'Pavullo nel Frignano', 'country_code' => 'IT'], ['name' => 'Sao Raimundo das Mangabeiras', 'country_code' => 'BR'], ['name' => 'Lake Mary', 'country_code' => 'US'], ['name' => 'Vechelde', 'country_code' => 'DE'], ['name' => 'Jovellar', 'country_code' => 'PH'], ['name' => 'Horsham', 'country_code' => 'AU'], ['name' => 'Guaranda', 'country_code' => 'CO'], ['name' => 'Calafat', 'country_code' => 'RO'], ['name' => 'Volgorechensk', 'country_code' => 'RU'], ['name' => 'Lakeport', 'country_code' => 'US'], ['name' => 'Sigmaringen', 'country_code' => 'DE'], ['name' => 'Malhada', 'country_code' => 'BR'], ['name' => 'Saint-Lin--Laurentides', 'country_code' => 'CA'], ['name' => 'Mori', 'country_code' => 'JP'], ['name' => 'Knik-Fairview', 'country_code' => 'US'], ['name' => 'Galaz', 'country_code' => 'MA'], ['name' => 'Maruim', 'country_code' => 'BR'], ['name' => 'Martinsburg', 'country_code' => 'US'], ['name' => 'El Rosal', 'country_code' => 'CO'], ['name' => 'Bolhrad', 'country_code' => 'UA'], ['name' => 'Montemor-o-Novo', 'country_code' => 'PT'], ['name' => 'Tinton Falls', 'country_code' => 'US'], ['name' => 'Pedra Preta', 'country_code' => 'BR'], ['name' => 'Freienbach', 'country_code' => 'CH'], ['name' => 'Flora', 'country_code' => 'PH'], ['name' => 'Conchas', 'country_code' => 'BR'], ['name' => 'Puerto Aysen', 'country_code' => 'CL'], ['name' => 'Stowbtsy', 'country_code' => 'BY'], ['name' => 'Capela', 'country_code' => 'BR'], ['name' => 'Nidda', 'country_code' => 'DE'], ['name' => 'Doylestown', 'country_code' => 'US'], ['name' => 'Jenison', 'country_code' => 'US'], ['name' => 'Veinticinco de Mayo', 'country_code' => 'AR'], ['name' => 'Cadoneghe', 'country_code' => 'IT'], ['name' => 'Tapiramuta', 'country_code' => 'BR'], ['name' => 'Dijiasuoxiang', 'country_code' => 'CN'], ['name' => 'La Algaba', 'country_code' => 'ES'], ['name' => 'Los Alcazares', 'country_code' => 'ES'], ['name' => 'Gescher', 'country_code' => 'DE'], ['name' => 'Raychikhinsk', 'country_code' => 'RU'], ['name' => 'Hidrolandia', 'country_code' => 'BR'], ['name' => 'Suesca', 'country_code' => 'CO'], ['name' => 'Montalvania', 'country_code' => 'BR'], ['name' => 'Redland', 'country_code' => 'US'], ['name' => 'Bad Munstereifel', 'country_code' => 'DE'], ['name' => 'Eldorado', 'country_code' => 'AR'], ['name' => 'Gennep', 'country_code' => 'NL'], ['name' => 'Springfield', 'country_code' => 'US'], ['name' => 'Mayoyao', 'country_code' => 'PH'], ['name' => 'Nizhnyaya Salda', 'country_code' => 'RU'], ['name' => 'Burlington', 'country_code' => 'US'], ['name' => 'Godfrey', 'country_code' => 'US'], ['name' => 'Fairview', 'country_code' => 'US'], ['name' => 'Pendleton', 'country_code' => 'US'], ['name' => 'Kafr Zayta', 'country_code' => 'SY'], ['name' => 'Beaumont', 'country_code' => 'CA'], ['name' => 'Zandvoort', 'country_code' => 'NL'], ['name' => 'Betulia', 'country_code' => 'CO'], ['name' => 'Taylor', 'country_code' => 'US'], ['name' => 'Rattaphum', 'country_code' => 'TH'], ['name' => 'Eutin', 'country_code' => 'DE'], ['name' => 'Santo Antonio do Amparo', 'country_code' => 'BR'], ['name' => 'Sao Domingos do Prata', 'country_code' => 'BR'], ['name' => 'Pecan Grove', 'country_code' => 'US'], ['name' => 'Heilbad Heiligenstadt', 'country_code' => 'DE'], ['name' => 'Biggleswade', 'country_code' => 'GB'], ['name' => 'Milla ab', 'country_code' => 'MA'], ['name' => 'Ripon', 'country_code' => 'GB'], ['name' => 'Dazhangzi', 'country_code' => 'CN'], ['name' => 'Nederland', 'country_code' => 'US'], ['name' => 'Colonial Heights', 'country_code' => 'US'], ['name' => 'Horn-Bad Meinberg', 'country_code' => 'DE'], ['name' => 'Stockerau', 'country_code' => 'AT'], ['name' => 'Ayacucho', 'country_code' => 'AR'], ['name' => 'Wohlen', 'country_code' => 'CH'], ['name' => 'Morriston', 'country_code' => 'GB'], ['name' => 'Porto Empedocle', 'country_code' => 'IT'], ['name' => 'Portsmouth', 'country_code' => 'US'], ['name' => 'Stafford', 'country_code' => 'US'], ['name' => 'Stockach', 'country_code' => 'DE'], ['name' => 'Krasnoslobodsk', 'country_code' => 'RU'], ['name' => 'Bermeo', 'country_code' => 'ES'], ['name' => 'Willimantic', 'country_code' => 'US'], ['name' => 'G uzor', 'country_code' => 'UZ'], ['name' => 'Guryevsk', 'country_code' => 'RU'], ['name' => 'Mount Barker', 'country_code' => 'AU'], ['name' => 'Wittenberge', 'country_code' => 'DE'], ['name' => 'Hatfield', 'country_code' => 'GB'], ['name' => 'Saviano', 'country_code' => 'IT'], ['name' => 'Souto Soares', 'country_code' => 'BR'], ['name' => 'Ban Thung Tam Sao', 'country_code' => 'TH'], ['name' => 'Shumikha', 'country_code' => 'RU'], ['name' => 'Gussago', 'country_code' => 'IT'], ['name' => 'Harborcreek', 'country_code' => 'US'], ['name' => 'Silver Spring', 'country_code' => 'US'], ['name' => 'Finnentrop', 'country_code' => 'DE'], ['name' => 'Barbastro', 'country_code' => 'ES'], ['name' => 'Schrobenhausen', 'country_code' => 'DE'], ['name' => 'Ocean Acres', 'country_code' => 'US'], ['name' => 'Tapes', 'country_code' => 'BR'], ['name' => 'San Casciano in Val di Pesa', 'country_code' => 'IT'], ['name' => 'Burgdorf', 'country_code' => 'CH'], ['name' => 'Leczyca', 'country_code' => 'PL'], ['name' => 'Tumbao', 'country_code' => 'PH'], ['name' => 'Pisaflores', 'country_code' => 'MX'], ['name' => 'Faxinal', 'country_code' => 'BR'], ['name' => 'Urandi', 'country_code' => 'BR'], ['name' => 'Guben', 'country_code' => 'DE'], ['name' => 'Handlova', 'country_code' => 'SK'], ['name' => 'La Marque', 'country_code' => 'US'], ['name' => 'Svalyava', 'country_code' => 'UA'], ['name' => 'Peso da Regua', 'country_code' => 'PT'], ['name' => 'Konigstein im Taunus', 'country_code' => 'DE'], ['name' => 'Lattes', 'country_code' => 'FR'], ['name' => 'Sawankhalok', 'country_code' => 'TH'], ['name' => 'Cosautlan', 'country_code' => 'MX'], ['name' => 'Carmopolis', 'country_code' => 'BR'], ['name' => 'Braunau am Inn', 'country_code' => 'AT'], ['name' => 'Altena', 'country_code' => 'DE'], ['name' => 'Colchester', 'country_code' => 'US'], ['name' => 'Heckmondwike', 'country_code' => 'GB'], ['name' => 'Baliangao', 'country_code' => 'PH'], ['name' => 'Heysham', 'country_code' => 'GB'], ['name' => 'Porto Murtinho', 'country_code' => 'BR'], ['name' => 'Aubange', 'country_code' => 'BE'], ['name' => 'Versailles', 'country_code' => 'US'], ['name' => 'Morris', 'country_code' => 'US'], ['name' => 'Campagna', 'country_code' => 'IT'], ['name' => 'Kamenz', 'country_code' => 'DE'], ['name' => 'Zarumilla', 'country_code' => 'PE'], ['name' => 'Damme', 'country_code' => 'DE'], ['name' => 'Lemont', 'country_code' => 'US'], ['name' => 'Vera', 'country_code' => 'ES'], ['name' => 'Gainesville', 'country_code' => 'US'], ['name' => 'Cervantes', 'country_code' => 'PH'], ['name' => 'Bucay', 'country_code' => 'PH'], ['name' => 'Kangaba', 'country_code' => 'ML'], ['name' => 'Sayre', 'country_code' => 'US'], ['name' => 'Carovigno', 'country_code' => 'IT'], ['name' => 'Giffnock', 'country_code' => 'GB'], ['name' => 'Bad Wildungen', 'country_code' => 'DE'], ['name' => 'Palanan', 'country_code' => 'PH'], ['name' => 'Podporozhye', 'country_code' => 'RU'], ['name' => 'East Finchley', 'country_code' => 'GB'], ['name' => 'Chertsey', 'country_code' => 'GB'], ['name' => 'Rojales', 'country_code' => 'ES'], ['name' => 'Navalmoral de la Mata', 'country_code' => 'ES'], ['name' => 'Domont', 'country_code' => 'FR'], ['name' => 'Monsenhor Tabosa', 'country_code' => 'BR'], ['name' => 'Portland', 'country_code' => 'US'], ['name' => 'Bom Sucesso', 'country_code' => 'BR'], ['name' => 'Clevelandia', 'country_code' => 'BR'], ['name' => 'Baymak', 'country_code' => 'RU'], ['name' => 'Lindenwold', 'country_code' => 'US'], ['name' => 'Eggenstein-Leopoldshafen', 'country_code' => 'DE'], ['name' => 'Middlesex Centre', 'country_code' => 'CA'], ['name' => 'Pozoblanco', 'country_code' => 'ES'], ['name' => 'Oswestry', 'country_code' => 'GB'], ['name' => 'San Jorge', 'country_code' => 'PH'], ['name' => 'Alcoy', 'country_code' => 'PH'], ['name' => 'Saint-Egreve', 'country_code' => 'FR'], ['name' => 'Calnali', 'country_code' => 'MX'], ['name' => 'Cesario Lange', 'country_code' => 'BR'], ['name' => 'Xintangcun', 'country_code' => 'CN'], ['name' => 'Almeria', 'country_code' => 'PH'], ['name' => 'Clive', 'country_code' => 'US'], ['name' => 'Cumaru', 'country_code' => 'BR'], ['name' => 'Mohacs', 'country_code' => 'HU'], ['name' => 'Ribeiropolis', 'country_code' => 'BR'], ['name' => 'Oneonta', 'country_code' => 'US'], ['name' => 'Santa Magdalena', 'country_code' => 'PH'], ['name' => 'Inverness', 'country_code' => 'CA'], ['name' => 'Shippensburg', 'country_code' => 'US'], ['name' => 'Ambares-et-Lagrave', 'country_code' => 'FR'], ['name' => 'Killingly', 'country_code' => 'US'], ['name' => 'Sudipen', 'country_code' => 'PH'], ['name' => 'Penzberg', 'country_code' => 'DE'], ['name' => 'Pampa', 'country_code' => 'US'], ['name' => 'Stockelsdorf', 'country_code' => 'DE'], ['name' => 'Numbrecht', 'country_code' => 'DE'], ['name' => 'Kempele', 'country_code' => 'FI'], ['name' => 'Dour', 'country_code' => 'BE'], ['name' => 'Cajola', 'country_code' => 'GT'], ['name' => 'Jicin', 'country_code' => 'CZ'], ['name' => 'Marienberg', 'country_code' => 'DE'], ['name' => 'McKinleyville', 'country_code' => 'US'], ['name' => 'Ferndale', 'country_code' => 'US'], ['name' => 'Kozienice', 'country_code' => 'PL'], ['name' => 'Condeixa-a-Nova', 'country_code' => 'PT'], ['name' => 'Fuente-Alamo de Murcia', 'country_code' => 'ES'], ['name' => 'South Ogden', 'country_code' => 'US'], ['name' => 'Elbeuf', 'country_code' => 'FR'], ['name' => 'Aracagi', 'country_code' => 'BR'], ['name' => 'Santana do Cariri', 'country_code' => 'BR'], ['name' => 'Balmazujvaros', 'country_code' => 'HU'], ['name' => 'Itirapina', 'country_code' => 'BR'], ['name' => 'Hayange', 'country_code' => 'FR'], ['name' => 'Stony Plain', 'country_code' => 'CA'], ['name' => 'Poing', 'country_code' => 'DE'], ['name' => 'Sedan', 'country_code' => 'FR'], ['name' => 'Petawawa', 'country_code' => 'CA'], ['name' => 'Albemarle', 'country_code' => 'US'], ['name' => 'Canudos', 'country_code' => 'BR'], ['name' => 'Urucuia', 'country_code' => 'BR'], ['name' => 'Brzesko', 'country_code' => 'PL'], ['name' => 'Adustina', 'country_code' => 'BR'], ['name' => 'Saluzzo', 'country_code' => 'IT'], ['name' => 'Coalinga', 'country_code' => 'US'], ['name' => 'General Luna', 'country_code' => 'PH'], ['name' => 'North Canton', 'country_code' => 'US'], ['name' => 'Saran', 'country_code' => 'FR'], ['name' => 'Saint-Cyr-sur-Loire', 'country_code' => 'FR'], ['name' => 'Konstantinovsk', 'country_code' => 'RU'], ['name' => 'Itaquitinga', 'country_code' => 'BR'], ['name' => 'La Vista', 'country_code' => 'US'], ['name' => 'Elias Fausto', 'country_code' => 'BR'], ['name' => 'Saint-Pierre-des-Corps', 'country_code' => 'FR'], ['name' => 'Urucara', 'country_code' => 'BR'], ['name' => 'Benesov', 'country_code' => 'CZ'], ['name' => 'Ashwaubenon', 'country_code' => 'US'], ['name' => 'Freiberg am Neckar', 'country_code' => 'DE'], ['name' => 'Gubin', 'country_code' => 'PL'], ['name' => 'Dickson', 'country_code' => 'US'], ['name' => 'Kusa', 'country_code' => 'RU'], ['name' => 'Codru', 'country_code' => 'MD'], ['name' => 'North Adams', 'country_code' => 'US'], ['name' => 'Torre Maggiore', 'country_code' => 'IT'], ['name' => 'Capistrano', 'country_code' => 'BR'], ['name' => 'Corbelia', 'country_code' => 'BR'], ['name' => 'Sidi Yakoub', 'country_code' => 'MA'], ['name' => 'Ignacio de la Llave', 'country_code' => 'MX'], ['name' => 'Waxhaw', 'country_code' => 'US'], ['name' => 'San Juan del Sur', 'country_code' => 'NI'], ['name' => 'Kezmarok', 'country_code' => 'SK'], ['name' => 'Lam Luk Ka', 'country_code' => 'TH'], ['name' => 'Ajacuba', 'country_code' => 'MX'], ['name' => 'Saint Andrews', 'country_code' => 'GB'], ['name' => 'Castellaneta', 'country_code' => 'IT'], ['name' => 'Manlin', 'country_code' => 'CN'], ['name' => 'Xinlong', 'country_code' => 'CN'], ['name' => 'Zvenyhorodka', 'country_code' => 'UA'], ['name' => 'Sidi Daoud', 'country_code' => 'DZ'], ['name' => 'North Babylon', 'country_code' => 'US'], ['name' => 'Pinas', 'country_code' => 'EC'], ['name' => 'Long e', 'country_code' => 'CN'], ['name' => 'Kiangan', 'country_code' => 'PH'], ['name' => 'Svitavy', 'country_code' => 'CZ'], ['name' => 'Kunzell', 'country_code' => 'DE'], ['name' => 'Palestina de los Altos', 'country_code' => 'GT'], ['name' => 'Xixinzhuangzhen', 'country_code' => 'CN'], ['name' => 'Bargteheide', 'country_code' => 'DE'], ['name' => 'Kronach', 'country_code' => 'DE'], ['name' => 'Dabas', 'country_code' => 'HU'], ['name' => 'Staphorst', 'country_code' => 'NL'], ['name' => 'Bethlehem', 'country_code' => 'ZA'], ['name' => 'Biliran', 'country_code' => 'PH'], ['name' => 'Eppelborn', 'country_code' => 'DE'], ['name' => 'Rotselaar', 'country_code' => 'BE'], ['name' => 'Wadi Halfa ', 'country_code' => 'SD'], ['name' => 'Landerneau', 'country_code' => 'FR'], ['name' => 'Bastrop', 'country_code' => 'US'], ['name' => 'San Giovanni in Fiore', 'country_code' => 'IT'], ['name' => 'Abelardo Luz', 'country_code' => 'BR'], ['name' => 'Cham', 'country_code' => 'DE'], ['name' => 'Ammon', 'country_code' => 'US'], ['name' => 'Tagounite', 'country_code' => 'MA'], ['name' => 'Rizal', 'country_code' => 'PH'], ['name' => 'Catarman', 'country_code' => 'PH'], ['name' => 'Pelham', 'country_code' => 'CA'], ['name' => 'Tijucas do Sul', 'country_code' => 'BR'], ['name' => 'Bellingham', 'country_code' => 'US'], ['name' => 'Knemis Dades', 'country_code' => 'MA'], ['name' => 'Cestas', 'country_code' => 'FR'], ['name' => 'Tamallalt', 'country_code' => 'MA'], ['name' => 'Resplendor', 'country_code' => 'BR'], ['name' => 'Nova Canaa', 'country_code' => 'BR'], ['name' => 'Yelm', 'country_code' => 'US'], ['name' => 'Yabuki', 'country_code' => 'JP'], ['name' => 'Toijala', 'country_code' => 'FI'], ['name' => 'Xinying', 'country_code' => 'CN'], ['name' => 'Girua', 'country_code' => 'BR'], ['name' => 'Carmopolis de Minas', 'country_code' => 'BR'], ['name' => 'Tolanaro', 'country_code' => 'MG'], ['name' => 'Macatuba', 'country_code' => 'BR'], ['name' => 'Bombon', 'country_code' => 'PH'], ['name' => 'Babenhausen', 'country_code' => 'DE'], ['name' => 'Schwarzenberg', 'country_code' => 'DE'], ['name' => 'Fundao', 'country_code' => 'BR'], ['name' => 'Martinsicuro', 'country_code' => 'IT'], ['name' => 'Marabut', 'country_code' => 'PH'], ['name' => 'Gavrilov-Yam', 'country_code' => 'RU'], ['name' => 'Zafra', 'country_code' => 'ES'], ['name' => 'Parole', 'country_code' => 'US'], ['name' => 'Ban Cho Ho', 'country_code' => 'TH'], ['name' => 'Mauguio', 'country_code' => 'FR'], ['name' => 'Menzelinsk', 'country_code' => 'RU'], ['name' => 'Oulad Amrane', 'country_code' => 'MA'], ['name' => 'Filiasi', 'country_code' => 'RO'], ['name' => 'Agua Fria', 'country_code' => 'BR'], ['name' => 'Itapiranga', 'country_code' => 'BR'], ['name' => 'Preetz', 'country_code' => 'DE'], ['name' => 'Glenvar Heights', 'country_code' => 'US'], ['name' => 'Grottammare', 'country_code' => 'IT'], ['name' => 'Pokrov', 'country_code' => 'RU'], ['name' => 'Mangueirinha', 'country_code' => 'BR'], ['name' => 'Turinsk', 'country_code' => 'RU'], ['name' => 'Palos Hills', 'country_code' => 'US'], ['name' => 'Selwyn', 'country_code' => 'CA'], ['name' => 'Talsint', 'country_code' => 'MA'], ['name' => 'Annonay', 'country_code' => 'FR'], ['name' => 'Povorino', 'country_code' => 'RU'], ['name' => 'Rosario Oeste', 'country_code' => 'BR'], ['name' => 'Seltso', 'country_code' => 'RU'], ['name' => 'Vedelago', 'country_code' => 'IT'], ['name' => 'Khed', 'country_code' => 'IN'], ['name' => 'Mula', 'country_code' => 'ES'], ['name' => 'Sint-Kruis', 'country_code' => 'BE'], ['name' => 'Crixas', 'country_code' => 'BR'], ['name' => 'Brixham', 'country_code' => 'GB'], ['name' => 'Diepholz', 'country_code' => 'DE'], ['name' => 'Camano', 'country_code' => 'US'], ['name' => 'Dongjiangshui', 'country_code' => 'CN'], ['name' => 'Loay', 'country_code' => 'PH'], ['name' => 'Retiro', 'country_code' => 'CO'], ['name' => 'Liuchuan', 'country_code' => 'CN'], ['name' => 'Cernavoda', 'country_code' => 'RO'], ['name' => 'Santa Maria', 'country_code' => 'AR'], ['name' => 'Valencia', 'country_code' => 'EC'], ['name' => 'Dacaozhuang', 'country_code' => 'CN'], ['name' => 'Streator', 'country_code' => 'US'], ['name' => 'Bytow', 'country_code' => 'PL'], ['name' => 'Samarate', 'country_code' => 'IT'], ['name' => 'Wyckoff', 'country_code' => 'US'], ['name' => 'Brookfield', 'country_code' => 'US'], ['name' => 'Lentate sul Seveso', 'country_code' => 'IT'], ['name' => 'Ihosy', 'country_code' => 'MG'], ['name' => 'Liuguoju', 'country_code' => 'CN'], ['name' => 'San Juan Lalana', 'country_code' => 'MX'], ['name' => 'Penamiller', 'country_code' => 'MX'], ['name' => 'Ambriz', 'country_code' => 'AO'], ['name' => 'Aiuaba', 'country_code' => 'BR'], ['name' => 'Steffisburg', 'country_code' => 'CH'], ['name' => 'Realeza', 'country_code' => 'BR'], ['name' => 'Seeheim-Jugenheim', 'country_code' => 'DE'], ['name' => 'East Lampeter', 'country_code' => 'US'], ['name' => 'Osowa', 'country_code' => 'PL'], ['name' => 'Guadalupe Victoria', 'country_code' => 'MX'], ['name' => 'Buffalo', 'country_code' => 'US'], ['name' => 'Lincoln', 'country_code' => 'US'], ['name' => 'Ashmyany', 'country_code' => 'BY'], ['name' => 'Bagnacavallo', 'country_code' => 'IT'], ['name' => 'Al Kilabiyah', 'country_code' => 'SA'], ['name' => 'Sparti', 'country_code' => 'GR'], ['name' => 'Sylacauga', 'country_code' => 'US'], ['name' => 'Oconomowoc', 'country_code' => 'US'], ['name' => 'Giaveno', 'country_code' => 'IT'], ['name' => 'Azeffoun', 'country_code' => 'DZ'], ['name' => 'Jilotepec', 'country_code' => 'MX'], ['name' => 'Grojec', 'country_code' => 'PL'], ['name' => 'Saint-Julien-en-Genevois', 'country_code' => 'FR'], ['name' => 'Tourlaville', 'country_code' => 'FR'], ['name' => 'Webster', 'country_code' => 'US'], ['name' => 'Fort Hunt', 'country_code' => 'US'], ['name' => 'Mateszalka', 'country_code' => 'HU'], ['name' => 'Loyalist', 'country_code' => 'CA'], ['name' => 'Phoenixville', 'country_code' => 'US'], ['name' => 'Batuco', 'country_code' => 'CL'], ['name' => 'Krapkowice', 'country_code' => 'PL'], ['name' => 'Riemst', 'country_code' => 'BE'], ['name' => 'San Jacinto Amilpas', 'country_code' => 'MX'], ['name' => 'Vatutine', 'country_code' => 'UA'], ['name' => 'Pran Buri', 'country_code' => 'TH'], ['name' => 'Terra Rica', 'country_code' => 'BR'], ['name' => 'Brunico', 'country_code' => 'IT'], ['name' => 'America Dourada', 'country_code' => 'BR'], ['name' => 'Mountain Home', 'country_code' => 'US'], ['name' => 'Neratovice', 'country_code' => 'CZ'], ['name' => 'San Jose de Chiquitos', 'country_code' => 'BO'], ['name' => 'Didam', 'country_code' => 'NL'], ['name' => 'Asten', 'country_code' => 'NL'], ['name' => 'Palagonia', 'country_code' => 'IT'], ['name' => 'Findikli', 'country_code' => 'TR'], ['name' => 'Americus', 'country_code' => 'US'], ['name' => 'Cubellas', 'country_code' => 'ES'], ['name' => 'Republic', 'country_code' => 'US'], ['name' => 'Iziaslav', 'country_code' => 'UA'], ['name' => 'Reinheim', 'country_code' => 'DE'], ['name' => 'Santa Cecilia', 'country_code' => 'BR'], ['name' => 'Kelheim', 'country_code' => 'DE'], ['name' => 'Upper Chichester', 'country_code' => 'US'], ['name' => 'Severinia', 'country_code' => 'BR'], ['name' => 'Agrate Brianza', 'country_code' => 'IT'], ['name' => 'Rio Bueno', 'country_code' => 'CL'], ['name' => 'Holzkirchen', 'country_code' => 'DE'], ['name' => 'Dehaqan', 'country_code' => 'IR'], ['name' => 'Lemay', 'country_code' => 'US'], ['name' => 'Ratba', 'country_code' => 'MA'], ['name' => 'Zhukovka', 'country_code' => 'RU'], ['name' => 'Manilva', 'country_code' => 'ES'], ['name' => 'Alvorada D Oeste', 'country_code' => 'BR'], ['name' => 'Buda', 'country_code' => 'US'], ['name' => 'Tomas Oppus', 'country_code' => 'PH'], ['name' => 'Rakovski', 'country_code' => 'BG'], ['name' => 'Katsuura', 'country_code' => 'JP'], ['name' => 'Shahba', 'country_code' => 'SY'], ['name' => 'Famy', 'country_code' => 'PH'], ['name' => 'Sao Pedro do Sul', 'country_code' => 'PT'], ['name' => 'Guarei', 'country_code' => 'BR'], ['name' => 'Alfajayucan', 'country_code' => 'MX'], ['name' => 'Cutlerville', 'country_code' => 'US'], ['name' => 'Marbach am Neckar', 'country_code' => 'DE'], ['name' => 'Chalchihuitan', 'country_code' => 'MX'], ['name' => 'Port Lincoln', 'country_code' => 'AU'], ['name' => 'Hajdunanas', 'country_code' => 'HU'], ['name' => 'Alto Santo', 'country_code' => 'BR'], ['name' => 'Calverton', 'country_code' => 'US'], ['name' => 'Gainesville', 'country_code' => 'US'], ['name' => 'Karratha', 'country_code' => 'AU'], ['name' => 'Heumen', 'country_code' => 'NL'], ['name' => 'Janakkala', 'country_code' => 'FI'], ['name' => 'Poco Fundo', 'country_code' => 'BR'], ['name' => ' Ain Abessa', 'country_code' => 'DZ'], ['name' => 'Leini', 'country_code' => 'IT'], ['name' => 'Stara L ubovna', 'country_code' => 'SK'], ['name' => 'Southbridge', 'country_code' => 'US'], ['name' => 'Wilton', 'country_code' => 'US'], ['name' => 'Bonito', 'country_code' => 'BR'], ['name' => 'Hohenems', 'country_code' => 'AT'], ['name' => 'Tichi', 'country_code' => 'DZ'], ['name' => 'Cagdianao', 'country_code' => 'PH'], ['name' => 'Nova Resende', 'country_code' => 'BR'], ['name' => 'Myrtle Grove', 'country_code' => 'US'], ['name' => 'Burstadt', 'country_code' => 'DE'], ['name' => 'Medicina', 'country_code' => 'IT'], ['name' => 'Sin-le-Noble', 'country_code' => 'FR'], ['name' => 'Montagu', 'country_code' => 'ZA'], ['name' => 'Nova Ipixuna', 'country_code' => 'BR'], ['name' => 'Lake St. Louis', 'country_code' => 'US'], ['name' => 'Midland', 'country_code' => 'CA'], ['name' => 'Bruckmuhl', 'country_code' => 'DE'], ['name' => 'Este', 'country_code' => 'IT'], ['name' => 'Seagoville', 'country_code' => 'US'], ['name' => 'Colwood', 'country_code' => 'CA'], ['name' => 'Bella Vista', 'country_code' => 'PY'], ['name' => 'Guadarrama', 'country_code' => 'ES'], ['name' => 'Chinampa de Gorostiza', 'country_code' => 'MX'], ['name' => 'Westervoort', 'country_code' => 'NL'], ['name' => 'Tejucuoca', 'country_code' => 'BR'], ['name' => 'Crescent City', 'country_code' => 'US'], ['name' => 'Ouaouzgane', 'country_code' => 'MA'], ['name' => 'Colle Salvetti', 'country_code' => 'IT'], ['name' => 'Escoublac', 'country_code' => 'FR'], ['name' => 'Locarno', 'country_code' => 'CH'], ['name' => 'Vallegrande', 'country_code' => 'BO'], ['name' => 'Lille', 'country_code' => 'BE'], ['name' => 'Saalfelden am Steinernen Meer', 'country_code' => 'AT'], ['name' => 'Ubrique', 'country_code' => 'ES'], ['name' => 'Strzegom', 'country_code' => 'PL'], ['name' => 'Campulung Moldovenesc', 'country_code' => 'RO'], ['name' => 'Sidi Lamine', 'country_code' => 'MA'], ['name' => 'Saint-Maximin-la-Sainte-Baume', 'country_code' => 'FR'], ['name' => 'Picayune', 'country_code' => 'US'], ['name' => 'Taguatinga', 'country_code' => 'BR'], ['name' => 'Iglino', 'country_code' => 'RU'], ['name' => 'Pindai', 'country_code' => 'BR'], ['name' => 'Fuying', 'country_code' => 'CN'], ['name' => 'Itariri', 'country_code' => 'BR'], ['name' => 'Rosedale', 'country_code' => 'US'], ['name' => 'North Myrtle Beach', 'country_code' => 'US'], ['name' => 'Ostrov', 'country_code' => 'CZ'], ['name' => 'Gunzenhausen', 'country_code' => 'DE'], ['name' => 'Wayne', 'country_code' => 'US'], ['name' => 'Central Saanich', 'country_code' => 'CA'], ['name' => 'Campanha', 'country_code' => 'BR'], ['name' => 'Tocantins', 'country_code' => 'BR'], ['name' => 'Vendome', 'country_code' => 'FR'], ['name' => 'Bemidji', 'country_code' => 'US'], ['name' => 'Sidi el Mokhfi', 'country_code' => 'MA'], ['name' => 'Sume', 'country_code' => 'BR'], ['name' => 'Calayan', 'country_code' => 'PH'], ['name' => 'Chestnuthill', 'country_code' => 'US'], ['name' => 'Sudak', 'country_code' => 'UA'], ['name' => 'Kushima', 'country_code' => 'JP'], ['name' => 'Lonigo', 'country_code' => 'IT'], ['name' => 'Goodlettsville', 'country_code' => 'US'], ['name' => 'Pajapita', 'country_code' => 'GT'], ['name' => 'Kauhava', 'country_code' => 'FI'], ['name' => 'Mikumi', 'country_code' => 'TZ'], ['name' => 'Ricany', 'country_code' => 'CZ'], ['name' => 'Carnaubal', 'country_code' => 'BR'], ['name' => 'Grossostheim', 'country_code' => 'DE'], ['name' => 'Ham Lake', 'country_code' => 'US'], ['name' => 'El Pinon', 'country_code' => 'CO'], ['name' => 'Cabeceiras de Basto', 'country_code' => 'PT'], ['name' => 'San Rafael', 'country_code' => 'PH'], ['name' => 'Aue', 'country_code' => 'DE'], ['name' => 'Liangyi', 'country_code' => 'CN'], ['name' => 'Sada', 'country_code' => 'ES'], ['name' => 'Fairburn', 'country_code' => 'US'], ['name' => 'Pollensa', 'country_code' => 'ES'], ['name' => 'Kaiwen', 'country_code' => 'CN'], ['name' => 'Ceadir-Lunga', 'country_code' => 'MD'], ['name' => 'Bristol', 'country_code' => 'US'], ['name' => 'Sainte-Catherine', 'country_code' => 'CA'], ['name' => 'Neston', 'country_code' => 'GB'], ['name' => 'Lake Wales', 'country_code' => 'US'], ['name' => 'Sallanches', 'country_code' => 'FR'], ['name' => 'Potirendaba', 'country_code' => 'BR'], ['name' => 'Brasilandia', 'country_code' => 'BR'], ['name' => 'Agudo', 'country_code' => 'BR'], ['name' => 'Port Hope', 'country_code' => 'CA'], ['name' => 'Cerea', 'country_code' => 'IT'], ['name' => 'Gitagum', 'country_code' => 'PH'], ['name' => 'Caravaggio', 'country_code' => 'IT'], ['name' => 'Anamoros', 'country_code' => 'SV'], ['name' => 'Machelen', 'country_code' => 'BE'], ['name' => 'Ponte de Sor', 'country_code' => 'PT'], ['name' => 'Singleton', 'country_code' => 'AU'], ['name' => 'Novomichurinsk', 'country_code' => 'RU'], ['name' => 'Douar Tabouda', 'country_code' => 'MA'], ['name' => 'New Port Richey', 'country_code' => 'US'], ['name' => 'Upper Saucon', 'country_code' => 'US'], ['name' => 'Saint-Basile-le-Grand', 'country_code' => 'CA'], ['name' => 'Morombe', 'country_code' => 'MG'], ['name' => 'Truckee', 'country_code' => 'US'], ['name' => 'Chorfa', 'country_code' => 'DZ'], ['name' => 'Anda', 'country_code' => 'PH'], ['name' => 'Sidi Ettiji', 'country_code' => 'MA'], ['name' => 'Uhersky Brod', 'country_code' => 'CZ'], ['name' => 'Wimborne Minster', 'country_code' => 'GB'], ['name' => 'Leopoldshohe', 'country_code' => 'DE'], ['name' => 'Sunagawa', 'country_code' => 'JP'], ['name' => 'Zirara', 'country_code' => 'MA'], ['name' => 'Capurso', 'country_code' => 'IT'], ['name' => 'Zumarraga', 'country_code' => 'PH'], ['name' => 'Cerro Maggiore', 'country_code' => 'IT'], ['name' => 'Lindsay', 'country_code' => 'US'], ['name' => 'Illingen', 'country_code' => 'DE'], ['name' => 'Hennebont', 'country_code' => 'FR'], ['name' => 'Seacombe', 'country_code' => 'GB'], ['name' => 'Louth', 'country_code' => 'GB'], ['name' => 'Vammala', 'country_code' => 'FI'], ['name' => 'Ansfelden', 'country_code' => 'AT'], ['name' => 'Ibicui', 'country_code' => 'BR'], ['name' => 'Pochep', 'country_code' => 'RU'], ['name' => 'Ibitiara', 'country_code' => 'BR'], ['name' => 'Salesopolis', 'country_code' => 'BR'], ['name' => 'Aston', 'country_code' => 'US'], ['name' => 'Chelmza', 'country_code' => 'PL'], ['name' => 'North Decatur', 'country_code' => 'US'], ['name' => 'Wentang', 'country_code' => 'CN'], ['name' => 'Roznov pod Radhostem', 'country_code' => 'CZ'], ['name' => 'Zequ', 'country_code' => 'CN'], ['name' => 'Cohoes', 'country_code' => 'US'], ['name' => 'Beek', 'country_code' => 'NL'], ['name' => 'Auburn', 'country_code' => 'US'], ['name' => 'Monesiglio', 'country_code' => 'IT'], ['name' => 'Todi', 'country_code' => 'IT'], ['name' => 'Zeulenroda', 'country_code' => 'DE'], ['name' => 'Reggello', 'country_code' => 'IT'], ['name' => 'Federacion', 'country_code' => 'AR'], ['name' => 'Anisoc', 'country_code' => 'GQ'], ['name' => 'McComb', 'country_code' => 'US'], ['name' => 'Highland Village', 'country_code' => 'US'], ['name' => 'Noale', 'country_code' => 'IT'], ['name' => 'Jinji', 'country_code' => 'CN'], ['name' => 'Codogno', 'country_code' => 'IT'], ['name' => 'Miyazu', 'country_code' => 'JP'], ['name' => 'Raposos', 'country_code' => 'BR'], ['name' => 'Athens', 'country_code' => 'US'], ['name' => 'Dilijan', 'country_code' => 'AM'], ['name' => 'Auburndale', 'country_code' => 'US'], ['name' => 'Hunfeld', 'country_code' => 'DE'], ['name' => 'Jiblah', 'country_code' => 'YE'], ['name' => 'Pote', 'country_code' => 'BR'], ['name' => 'Tagana-an', 'country_code' => 'PH'], ['name' => 'Carapebus', 'country_code' => 'BR'], ['name' => 'Santomera', 'country_code' => 'ES'], ['name' => 'Illzach', 'country_code' => 'FR'], ['name' => 'Mifune', 'country_code' => 'JP'], ['name' => 'Ad Dis ash Sharqiyah', 'country_code' => 'YE'], ['name' => 'Santa Maria Petapa', 'country_code' => 'MX'], ['name' => 'Banbridge', 'country_code' => 'GB'], ['name' => 'Denby Dale', 'country_code' => 'GB'], ['name' => 'Tinoc', 'country_code' => 'PH'], ['name' => 'Kovdor', 'country_code' => 'RU'], ['name' => 'Lanquin', 'country_code' => 'GT'], ['name' => 'Scott', 'country_code' => 'US'], ['name' => 'Vesoul', 'country_code' => 'FR'], ['name' => 'Alcantara', 'country_code' => 'PH'], ['name' => 'Zapotlan de Juarez', 'country_code' => 'MX'], ['name' => 'Corabia', 'country_code' => 'RO'], ['name' => 'Gryfice', 'country_code' => 'PL'], ['name' => 'Wolcott', 'country_code' => 'US'], ['name' => 'Montbrison', 'country_code' => 'FR'], ['name' => 'Al Lataminah', 'country_code' => 'SY'], ['name' => 'Umbertide', 'country_code' => 'IT'], ['name' => 'El Segundo', 'country_code' => 'US'], ['name' => 'Holmdel', 'country_code' => 'US'], ['name' => 'Denville', 'country_code' => 'US'], ['name' => 'Xinyuan', 'country_code' => 'CN'], ['name' => 'Mercedes', 'country_code' => 'US'], ['name' => 'Swift Current', 'country_code' => 'CA'], ['name' => 'Pardes Hanna Karkur', 'country_code' => 'IL'], ['name' => 'Macetown', 'country_code' => 'NZ'], ['name' => 'Libertad', 'country_code' => 'PH'], ['name' => 'Centre de Flacq', 'country_code' => 'MU'], ['name' => 'Olecko', 'country_code' => 'PL'], ['name' => 'Norcross', 'country_code' => 'US'], ['name' => 'Burrillville', 'country_code' => 'US'], ['name' => 'Buritama', 'country_code' => 'BR'], ['name' => 'Kurtamysh', 'country_code' => 'RU'], ['name' => 'Jutai', 'country_code' => 'BR'], ['name' => 'Villeneuve-Loubet', 'country_code' => 'FR'], ['name' => 'Tredegar', 'country_code' => 'GB'], ['name' => 'Northbridge', 'country_code' => 'US'], ['name' => 'Batavia', 'country_code' => 'US'], ['name' => 'Edmundston', 'country_code' => 'CA'], ['name' => 'Chinde', 'country_code' => 'MZ'], ['name' => 'Morganton', 'country_code' => 'US'], ['name' => 'Harrisburg', 'country_code' => 'US'], ['name' => 'Weybridge', 'country_code' => 'GB'], ['name' => 'Sainte-Luce-sur-Loire', 'country_code' => 'FR'], ['name' => 'Swansea', 'country_code' => 'US'], ['name' => 'Keflavik', 'country_code' => 'IS'], ['name' => 'Besana in Brianza', 'country_code' => 'IT'], ['name' => 'Berezan', 'country_code' => 'UA'], ['name' => 'Quarteira', 'country_code' => 'PT'], ['name' => 'Delran', 'country_code' => 'US'], ['name' => 'Langenthal', 'country_code' => 'CH'], ['name' => 'West Hempfield', 'country_code' => 'US'], ['name' => 'Uchkeken', 'country_code' => 'RU'], ['name' => 'Bayat', 'country_code' => 'TR'], ['name' => 'Ban Lam Narai', 'country_code' => 'TH'], ['name' => 'Murraysville', 'country_code' => 'US'], ['name' => 'Pedregulho', 'country_code' => 'BR'], ['name' => 'Donaldsonville', 'country_code' => 'US'], ['name' => 'Solvang', 'country_code' => 'US'], ['name' => 'Charqueada', 'country_code' => 'BR'], ['name' => 'Los Osos', 'country_code' => 'US'], ['name' => 'Kisvarda', 'country_code' => 'HU'], ['name' => 'Mapiri', 'country_code' => 'BO'], ['name' => 'Horodok', 'country_code' => 'UA'], ['name' => 'Gardhabaer', 'country_code' => 'IS'], ['name' => 'Saint-Amand-les-Eaux', 'country_code' => 'FR'], ['name' => 'Hovelhof', 'country_code' => 'DE'], ['name' => 'Huissen', 'country_code' => 'NL'], ['name' => 'Ivanava', 'country_code' => 'BY'], ['name' => 'Russell', 'country_code' => 'CA'], ['name' => 'Tururu', 'country_code' => 'BR'], ['name' => 'Groveton', 'country_code' => 'US'], ['name' => 'Washington', 'country_code' => 'US'], ['name' => 'Espartinas', 'country_code' => 'ES'], ['name' => 'Bady Bassitt', 'country_code' => 'BR'], ['name' => 'Seymour', 'country_code' => 'US'], ['name' => 'Longchang', 'country_code' => 'CN'], ['name' => 'Changji', 'country_code' => 'CN'], ['name' => 'Kirchlengern', 'country_code' => 'DE'], ['name' => 'Yaypan', 'country_code' => 'UZ'], ['name' => 'Zhongzai', 'country_code' => 'CN'], ['name' => 'Regenstauf', 'country_code' => 'DE'], ['name' => 'Live Oak', 'country_code' => 'US'], ['name' => 'Rakovnik', 'country_code' => 'CZ'], ['name' => 'Wyke', 'country_code' => 'GB'], ['name' => 'Geddes', 'country_code' => 'US'], ['name' => 'Karema', 'country_code' => 'TZ'], ['name' => 'Lock Haven', 'country_code' => 'US'], ['name' => 'Colon', 'country_code' => 'CR'], ['name' => 'Loimaa', 'country_code' => 'FI'], ['name' => 'Vienna', 'country_code' => 'US'], ['name' => 'Boljoon', 'country_code' => 'PH'], ['name' => 'Country Club Hills', 'country_code' => 'US'], ['name' => 'Durham', 'country_code' => 'US'], ['name' => 'Streetsboro', 'country_code' => 'US'], ['name' => 'Kirchhain', 'country_code' => 'DE'], ['name' => 'Jasper', 'country_code' => 'US'], ['name' => 'Eden', 'country_code' => 'US'], ['name' => 'Pearl River', 'country_code' => 'US'], ['name' => 'Harenkarspel', 'country_code' => 'NL'], ['name' => 'Digne-les-Bains', 'country_code' => 'FR'], ['name' => 'Yunshan', 'country_code' => 'CN'], ['name' => 'Chateaurenard', 'country_code' => 'FR'], ['name' => 'Kozelsk', 'country_code' => 'RU'], ['name' => 'Morretes', 'country_code' => 'BR'], ['name' => 'Silvi Paese', 'country_code' => 'IT'], ['name' => 'Hammam al Alil', 'country_code' => 'IQ'], ['name' => 'Douglas', 'country_code' => 'US'], ['name' => 'Bovolone', 'country_code' => 'IT'], ['name' => 'Slany', 'country_code' => 'CZ'], ['name' => 'Valmontone', 'country_code' => 'IT'], ['name' => 'Bilohirsk', 'country_code' => 'UA'], ['name' => 'Crowley', 'country_code' => 'US'], ['name' => 'Itaete', 'country_code' => 'BR'], ['name' => 'Highland Springs', 'country_code' => 'US'], ['name' => 'Anori', 'country_code' => 'CO'], ['name' => 'Brackenheim', 'country_code' => 'DE'], ['name' => 'Civita Castellana', 'country_code' => 'IT'], ['name' => 'Harlingen', 'country_code' => 'NL'], ['name' => 'Passa Quatro', 'country_code' => 'BR'], ['name' => 'Taohongpozhen', 'country_code' => 'CN'], ['name' => 'North Grenville', 'country_code' => 'CA'], ['name' => 'Ispica', 'country_code' => 'IT'], ['name' => 'Bruntal', 'country_code' => 'CZ'], ['name' => 'Verrieres-le-Buisson', 'country_code' => 'FR'], ['name' => 'Francheville', 'country_code' => 'FR'], ['name' => 'Sertanopolis', 'country_code' => 'BR'], ['name' => 'Hayes', 'country_code' => 'GB'], ['name' => 'Eibergen', 'country_code' => 'NL'], ['name' => 'Franklin', 'country_code' => 'US'], ['name' => 'Bordj Mokhtar', 'country_code' => 'DZ'], ['name' => 'Cinco Ranch', 'country_code' => 'US'], ['name' => 'Sava', 'country_code' => 'IT'], ['name' => 'San Cristobal Cucho', 'country_code' => 'GT'], ['name' => 'Vlijmen', 'country_code' => 'NL'], ['name' => 'Wolf Trap', 'country_code' => 'US'], ['name' => 'Abington', 'country_code' => 'US'], ['name' => 'Lymington', 'country_code' => 'GB'], ['name' => 'Chickasha', 'country_code' => 'US'], ['name' => 'Finsterwalde', 'country_code' => 'DE'], ['name' => 'Pindorama', 'country_code' => 'BR'], ['name' => 'Las Cabezas de San Juan', 'country_code' => 'ES'], ['name' => 'Verkhivtseve', 'country_code' => 'UA'], ['name' => 'Curacautin', 'country_code' => 'CL'], ['name' => 'Przeworsk', 'country_code' => 'PL'], ['name' => 'Lumbayanague', 'country_code' => 'PH'], ['name' => 'Al Hibah', 'country_code' => 'EG'], ['name' => 'Uckfield', 'country_code' => 'GB'], ['name' => 'Portachuelo', 'country_code' => 'BO'], ['name' => 'Kings Park', 'country_code' => 'US'], ['name' => 'Groveland', 'country_code' => 'US'], ['name' => 'Tirhassaline', 'country_code' => 'MA'], ['name' => 'Manturovo', 'country_code' => 'RU'], ['name' => 'Bangor', 'country_code' => 'GB'], ['name' => 'Piera', 'country_code' => 'ES'], ['name' => 'Cinnaminson', 'country_code' => 'US'], ['name' => 'Bituruna', 'country_code' => 'BR'], ['name' => 'La Falda', 'country_code' => 'AR'], ['name' => 'Mount Pleasant', 'country_code' => 'US'], ['name' => 'Collipulli', 'country_code' => 'CL'], ['name' => 'Herisau', 'country_code' => 'CH'], ['name' => 'Aveiro', 'country_code' => 'BR'], ['name' => 'Bad Lippspringe', 'country_code' => 'DE'], ['name' => 'Shiraoi', 'country_code' => 'JP'], ['name' => 'River Falls', 'country_code' => 'US'], ['name' => 'Hernando', 'country_code' => 'US'], ['name' => 'Copparo', 'country_code' => 'IT'], ['name' => 'Acarape', 'country_code' => 'BR'], ['name' => 'Baipingshan', 'country_code' => 'CN'], ['name' => 'Carcarana', 'country_code' => 'AR'], ['name' => 'Wurzen', 'country_code' => 'DE'], ['name' => 'Sao Pedro do Sul', 'country_code' => 'BR'], ['name' => 'Ripon', 'country_code' => 'US'], ['name' => 'Weisswasser/Oberlausitz', 'country_code' => 'DE'], ['name' => 'Penicuik', 'country_code' => 'GB'], ['name' => 'Divrigi', 'country_code' => 'TR'], ['name' => 'Monroe', 'country_code' => 'US'], ['name' => 'Codroipo', 'country_code' => 'IT'], ['name' => 'Montivilliers', 'country_code' => 'FR'], ['name' => 'Hude', 'country_code' => 'DE'], ['name' => 'Petersberg', 'country_code' => 'DE'], ['name' => 'Penn', 'country_code' => 'US'], ['name' => 'Brakel', 'country_code' => 'DE'], ['name' => 'Bang Phae', 'country_code' => 'TH'], ['name' => 'Kierspe', 'country_code' => 'DE'], ['name' => 'Assai', 'country_code' => 'BR'], ['name' => 'Saguday', 'country_code' => 'PH'], ['name' => 'Rio Linda', 'country_code' => 'US'], ['name' => 'Bluffdale', 'country_code' => 'US'], ['name' => 'Dieburg', 'country_code' => 'DE'], ['name' => 'Otacilio Costa', 'country_code' => 'BR'], ['name' => 'Rygge', 'country_code' => 'NO'], ['name' => 'Pecel', 'country_code' => 'HU'], ['name' => 'Oarai', 'country_code' => 'JP'], ['name' => 'East Greenbush', 'country_code' => 'US'], ['name' => 'Storrs', 'country_code' => 'US'], ['name' => 'Santa Fe', 'country_code' => 'PH'], ['name' => 'Tapejara', 'country_code' => 'BR'], ['name' => 'Havelock North', 'country_code' => 'NZ'], ['name' => 'Orimattila', 'country_code' => 'FI'], ['name' => 'Yorkton', 'country_code' => 'CA'], ['name' => 'Schmelz', 'country_code' => 'DE'], ['name' => 'Burley', 'country_code' => 'US'], ['name' => 'Aurora', 'country_code' => 'US'], ['name' => 'Donna', 'country_code' => 'US'], ['name' => 'Ustron', 'country_code' => 'PL'], ['name' => 'Michelstadt', 'country_code' => 'DE'], ['name' => 'Palagiano', 'country_code' => 'IT'], ['name' => 'Straelen', 'country_code' => 'DE'], ['name' => 'Shahriston', 'country_code' => 'TJ'], ['name' => 'Aranyaprathet', 'country_code' => 'TH'], ['name' => 'Douar Azla', 'country_code' => 'MA'], ['name' => 'Loxstedt', 'country_code' => 'DE'], ['name' => 'Tarquinia', 'country_code' => 'IT'], ['name' => 'Schiffweiler', 'country_code' => 'DE'], ['name' => 'Ostashkov', 'country_code' => 'RU'], ['name' => 'Queensbury', 'country_code' => 'GB'], ['name' => 'Ponsacco', 'country_code' => 'IT'], ['name' => 'Red Wing', 'country_code' => 'US'], ['name' => 'Les Herbiers', 'country_code' => 'FR'], ['name' => 'Adjud', 'country_code' => 'RO'], ['name' => 'Halver', 'country_code' => 'DE'], ['name' => 'Walldorf', 'country_code' => 'DE'], ['name' => 'Fallon', 'country_code' => 'US'], ['name' => 'Lyss', 'country_code' => 'CH'], ['name' => 'Chamgardan', 'country_code' => 'IR'], ['name' => 'Novoanninskiy', 'country_code' => 'RU'], ['name' => 'Guerande', 'country_code' => 'FR'], ['name' => 'Itau de Minas', 'country_code' => 'BR'], ['name' => 'Fairview Heights', 'country_code' => 'US'], ['name' => 'Celina', 'country_code' => 'US'], ['name' => 'Timezgana', 'country_code' => 'MA'], ['name' => 'Bikou', 'country_code' => 'CN'], ['name' => 'Ospitaletto', 'country_code' => 'IT'], ['name' => 'Guardamar del Segura', 'country_code' => 'ES'], ['name' => ' Ayn Bni Mathar', 'country_code' => 'MA'], ['name' => 'Gun Barrel City', 'country_code' => 'US'], ['name' => 'Thermi', 'country_code' => 'GR'], ['name' => 'Chaona', 'country_code' => 'CN'], ['name' => 'Kabo', 'country_code' => 'CF'], ['name' => 'Rumilly', 'country_code' => 'FR'], ['name' => 'Arzua', 'country_code' => 'ES'], ['name' => 'Chateau-Thierry', 'country_code' => 'FR'], ['name' => 'North Whitehall', 'country_code' => 'US'], ['name' => 'Cacu', 'country_code' => 'BR'], ['name' => 'Morton', 'country_code' => 'US'], ['name' => 'Port Jervis', 'country_code' => 'US'], ['name' => 'Red Hill', 'country_code' => 'US'], ['name' => 'Vila Bela da Santissima Trindade', 'country_code' => 'BR'], ['name' => 'Petrovsk-Zabaykal skiy', 'country_code' => 'RU'], ['name' => 'Loboc', 'country_code' => 'PH'], ['name' => 'Kaukauna', 'country_code' => 'US'], ['name' => 'San Antonio Oeste', 'country_code' => 'AR'], ['name' => 'Mezokovesd', 'country_code' => 'HU'], ['name' => 'Adwick le Street', 'country_code' => 'GB'], ['name' => 'Addison', 'country_code' => 'US'], ['name' => 'Fort Thomas', 'country_code' => 'US'], ['name' => 'Erwitte', 'country_code' => 'DE'], ['name' => 'Mebane', 'country_code' => 'US'], ['name' => 'Guanagazapa', 'country_code' => 'GT'], ['name' => 'Capinopolis', 'country_code' => 'BR'], ['name' => 'Zegzel', 'country_code' => 'MA'], ['name' => 'Mount Holly', 'country_code' => 'US'], ['name' => 'Alegria', 'country_code' => 'PH'], ['name' => 'Landen', 'country_code' => 'BE'], ['name' => 'Conyers', 'country_code' => 'US'], ['name' => 'Nanzuo', 'country_code' => 'CN'], ['name' => 'Clausthal-Zellerfeld', 'country_code' => 'DE'], ['name' => 'Bruck an der Mur', 'country_code' => 'AT'], ['name' => 'Xiaozhengzhuang', 'country_code' => 'CN'], ['name' => 'Nonantola', 'country_code' => 'IT'], ['name' => 'Igapora', 'country_code' => 'BR'], ['name' => 'Centerton', 'country_code' => 'US'], ['name' => 'Yaojia', 'country_code' => 'CN'], ['name' => 'Sered ', 'country_code' => 'SK'], ['name' => 'East Longmeadow', 'country_code' => 'US'], ['name' => 'Perchtoldsdorf', 'country_code' => 'AT'], ['name' => 'Leixlip', 'country_code' => 'IE'], ['name' => 'Bad Worishofen', 'country_code' => 'DE'], ['name' => 'Merate', 'country_code' => 'IT'], ['name' => 'Stuart', 'country_code' => 'US'], ['name' => 'Sikeston', 'country_code' => 'US'], ['name' => 'Pianezza', 'country_code' => 'IT'], ['name' => 'Sulphur Springs', 'country_code' => 'US'], ['name' => 'Araputanga', 'country_code' => 'BR'], ['name' => 'Breaza', 'country_code' => 'RO'], ['name' => 'San Pedro de Lloc', 'country_code' => 'PE'], ['name' => 'Santa Fe', 'country_code' => 'PH'], ['name' => 'Galliate', 'country_code' => 'IT'], ['name' => 'Ouadhia', 'country_code' => 'DZ'], ['name' => 'Ait Yaazem', 'country_code' => 'MA'], ['name' => 'Poxoreo', 'country_code' => 'BR'], ['name' => 'Bouchabel', 'country_code' => 'MA'], ['name' => 'San Cesareo', 'country_code' => 'IT'], ['name' => 'San Gabriel', 'country_code' => 'EC'], ['name' => 'Boulder City', 'country_code' => 'US'], ['name' => 'Buadiposo-Buntong', 'country_code' => 'PH'], ['name' => 'Centralia', 'country_code' => 'US'], ['name' => 'Palmitos', 'country_code' => 'BR'], ['name' => 'Puerto Pimentel', 'country_code' => 'PE'], ['name' => 'Masmouda', 'country_code' => 'MA'], ['name' => 'Pocking', 'country_code' => 'DE'], ['name' => 'Altinopolis', 'country_code' => 'BR'], ['name' => 'Dixon', 'country_code' => 'US'], ['name' => 'Chai Prakan', 'country_code' => 'TH'], ['name' => 'Horqueta', 'country_code' => 'PY'], ['name' => 'Getulio Vargas', 'country_code' => 'BR'], ['name' => 'Mujui dos Campos', 'country_code' => 'BR'], ['name' => 'Barra de Santo Antonio', 'country_code' => 'BR'], ['name' => 'Bar', 'country_code' => 'UA'], ['name' => 'Troutdale', 'country_code' => 'US'], ['name' => 'Zevenbergen', 'country_code' => 'NL'], ['name' => 'Paulino Neves', 'country_code' => 'BR'], ['name' => 'Iguatemi', 'country_code' => 'BR'], ['name' => 'Wiefelstede', 'country_code' => 'DE'], ['name' => 'Babayurt', 'country_code' => 'RU'], ['name' => 'Huarmey', 'country_code' => 'PE'], ['name' => 'Pelhrimov', 'country_code' => 'CZ'], ['name' => 'San Tomas', 'country_code' => 'PH'], ['name' => 'Quixelo', 'country_code' => 'BR'], ['name' => 'As Sukhnah', 'country_code' => 'SY'], ['name' => 'Iraci', 'country_code' => 'BR'], ['name' => 'Ellington', 'country_code' => 'US'], ['name' => 'Rylsk', 'country_code' => 'RU'], ['name' => 'Conwy', 'country_code' => 'GB'], ['name' => 'Mount Clemens', 'country_code' => 'US'], ['name' => 'Fairview Park', 'country_code' => 'US'], ['name' => 'Discovery Bay', 'country_code' => 'US'], ['name' => 'Evans', 'country_code' => 'US'], ['name' => 'Sukth', 'country_code' => 'AL'], ['name' => 'Ukrainka', 'country_code' => 'UA'], ['name' => 'Potenza Picena', 'country_code' => 'IT'], ['name' => 'Bni Tajjit', 'country_code' => 'MA'], ['name' => 'Wardenburg', 'country_code' => 'DE'], ['name' => 'Corupa', 'country_code' => 'BR'], ['name' => 'Ginatilan', 'country_code' => 'PH'], ['name' => 'Bni Quolla', 'country_code' => 'MA'], ['name' => 'Stallings', 'country_code' => 'US'], ['name' => 'Wendelstein', 'country_code' => 'DE'], ['name' => 'Cambridge', 'country_code' => 'US'], ['name' => 'Joaquim Nabuco', 'country_code' => 'BR'], ['name' => 'Sandhausen', 'country_code' => 'DE'], ['name' => 'Mezotur', 'country_code' => 'HU'], ['name' => 'Minster', 'country_code' => 'GB'], ['name' => 'Baleyara', 'country_code' => 'NE'], ['name' => 'Taucha', 'country_code' => 'DE'], ['name' => 'Lubbenau/Spreewald', 'country_code' => 'DE'], ['name' => 'Frankfort', 'country_code' => 'US'], ['name' => 'Westwood', 'country_code' => 'US'], ['name' => 'Chenove', 'country_code' => 'FR'], ['name' => 'Barrington', 'country_code' => 'US'], ['name' => 'Hongsi', 'country_code' => 'CN'], ['name' => 'Ebersbach an der Fils', 'country_code' => 'DE'], ['name' => 'Chinggil', 'country_code' => 'CN'], ['name' => 'Arteche', 'country_code' => 'PH'], ['name' => 'Csongrad', 'country_code' => 'HU'], ['name' => 'Westchester', 'country_code' => 'US'], ['name' => 'Altopascio', 'country_code' => 'IT'], ['name' => 'Kodinsk', 'country_code' => 'RU'], ['name' => 'Tracadie', 'country_code' => 'CA'], ['name' => 'Alsfeld', 'country_code' => 'DE'], ['name' => 'Whittlesey', 'country_code' => 'GB'], ['name' => 'Dalachi', 'country_code' => 'CN'], ['name' => 'Center Point', 'country_code' => 'US'], ['name' => 'Canyon', 'country_code' => 'US'], ['name' => 'West Haven', 'country_code' => 'US'], ['name' => 'Coulommiers', 'country_code' => 'FR'], ['name' => 'Washougal', 'country_code' => 'US'], ['name' => 'Degtyarsk', 'country_code' => 'RU'], ['name' => 'Aquitania', 'country_code' => 'CO'], ['name' => 'Sassenheim', 'country_code' => 'NL'], ['name' => 'Mulundo', 'country_code' => 'PH'], ['name' => 'Saint-Avertin', 'country_code' => 'FR'], ['name' => 'Ilave', 'country_code' => 'PE'], ['name' => 'Bridgeview', 'country_code' => 'US'], ['name' => 'Telfs', 'country_code' => 'AT'], ['name' => 'Khat Azakane', 'country_code' => 'MA'], ['name' => 'Nyahanga', 'country_code' => 'TZ'], ['name' => 'Troy', 'country_code' => 'US'], ['name' => 'Horodok', 'country_code' => 'UA'], ['name' => 'Nagasu', 'country_code' => 'JP'], ['name' => 'Certaldo', 'country_code' => 'IT'], ['name' => 'Fiano Romano', 'country_code' => 'IT'], ['name' => 'Skhour Rehamna', 'country_code' => 'MA'], ['name' => 'Boudjima', 'country_code' => 'DZ'], ['name' => 'Frogn', 'country_code' => 'NO'], ['name' => 'Lebanon', 'country_code' => 'US'], ['name' => 'Stafa', 'country_code' => 'CH'], ['name' => 'Candoi', 'country_code' => 'BR'], ['name' => 'L Oulja', 'country_code' => 'MA'], ['name' => 'Griffith', 'country_code' => 'US'], ['name' => 'Villa Rica', 'country_code' => 'US'], ['name' => 'Santa Cruz de la Palma', 'country_code' => 'ES'], ['name' => 'Schluchtern', 'country_code' => 'DE'], ['name' => 'Paluan', 'country_code' => 'PH'], ['name' => 'Atescatempa', 'country_code' => 'GT'], ['name' => 'Azzano Decimo', 'country_code' => 'IT'], ['name' => 'Sansepolcro', 'country_code' => 'IT'], ['name' => 'Bassum', 'country_code' => 'DE'], ['name' => 'Fairhaven', 'country_code' => 'US'], ['name' => 'Tizi-n-Tleta', 'country_code' => 'DZ'], ['name' => 'Cortes', 'country_code' => 'PH'], ['name' => 'Weener', 'country_code' => 'DE'], ['name' => 'Alma', 'country_code' => 'US'], ['name' => 'Dianga', 'country_code' => 'CN'], ['name' => 'Bragadiru', 'country_code' => 'RO'], ['name' => 'Fort Leonard Wood', 'country_code' => 'US'], ['name' => 'Chislehurst', 'country_code' => 'GB'], ['name' => 'Kasli', 'country_code' => 'RU'], ['name' => 'Guamare', 'country_code' => 'BR'], ['name' => 'Long Beach', 'country_code' => 'US'], ['name' => 'Villers-les-Nancy', 'country_code' => 'FR'], ['name' => 'Shchigry', 'country_code' => 'RU'], ['name' => 'Lady Lake', 'country_code' => 'US'], ['name' => 'Todmorden', 'country_code' => 'GB'], ['name' => 'Aberdeen', 'country_code' => 'US'], ['name' => 'Welby', 'country_code' => 'US'], ['name' => 'Middletown', 'country_code' => 'US'], ['name' => 'Indianola', 'country_code' => 'US'], ['name' => 'Washington', 'country_code' => 'US'], ['name' => 'Pianco', 'country_code' => 'BR'], ['name' => 'Ban Dung', 'country_code' => 'TH'], ['name' => 'Bracebridge', 'country_code' => 'CA'], ['name' => 'Paglat', 'country_code' => 'PH'], ['name' => 'Seven Pagodas', 'country_code' => 'IN'], ['name' => 'Mennecy', 'country_code' => 'FR'], ['name' => 'Kamyzyak', 'country_code' => 'RU'], ['name' => 'Caetano', 'country_code' => 'BR'], ['name' => 'Fartura', 'country_code' => 'BR'], ['name' => 'Yaransk', 'country_code' => 'RU'], ['name' => 'Barysh', 'country_code' => 'RU'], ['name' => 'Phelan', 'country_code' => 'US'], ['name' => 'Issoire', 'country_code' => 'FR'], ['name' => 'Bastogne', 'country_code' => 'BE'], ['name' => 'Chivolo', 'country_code' => 'CO'], ['name' => 'Santa Maria de Jesus', 'country_code' => 'GT'], ['name' => 'Lakeway', 'country_code' => 'US'], ['name' => 'Alcaniz', 'country_code' => 'ES'], ['name' => 'Ghomrassen', 'country_code' => 'TN'], ['name' => 'Knaresborough', 'country_code' => 'GB'], ['name' => 'Dyer', 'country_code' => 'US'], ['name' => 'Toul', 'country_code' => 'FR'], ['name' => 'Archer Lodge', 'country_code' => 'US'], ['name' => 'Niceville', 'country_code' => 'US'], ['name' => 'Bocsa', 'country_code' => 'RO'], ['name' => 'Blanquefort', 'country_code' => 'FR'], ['name' => 'Middletown', 'country_code' => 'US'], ['name' => 'Trelaze', 'country_code' => 'FR'], ['name' => 'Haddada', 'country_code' => 'MA'], ['name' => 'Calbuco', 'country_code' => 'CL'], ['name' => 'Fussen', 'country_code' => 'DE'], ['name' => 'Bruggen', 'country_code' => 'DE'], ['name' => 'Clearlake', 'country_code' => 'US'], ['name' => 'Dehaq', 'country_code' => 'IR'], ['name' => 'Thundersley', 'country_code' => 'GB'], ['name' => 'Marghita', 'country_code' => 'RO'], ['name' => 'Fillmore', 'country_code' => 'US'], ['name' => 'Yorito', 'country_code' => 'HN'], ['name' => 'Talitsa', 'country_code' => 'RU'], ['name' => 'Rescaldina', 'country_code' => 'IT'], ['name' => 'San Julian', 'country_code' => 'MX'], ['name' => 'Hood River', 'country_code' => 'US'], ['name' => 'Plavsk', 'country_code' => 'RU'], ['name' => 'Bellevue', 'country_code' => 'US'], ['name' => 'Pamiers', 'country_code' => 'FR'], ['name' => 'Xixucun', 'country_code' => 'CN'], ['name' => 'Spanish Springs', 'country_code' => 'US'], ['name' => 'Bikin', 'country_code' => 'RU'], ['name' => 'Maardu', 'country_code' => 'EE'], ['name' => 'Aramil', 'country_code' => 'RU'], ['name' => 'Boskoop', 'country_code' => 'NL'], ['name' => 'Ain Mediouna', 'country_code' => 'MA'], ['name' => 'Port Glasgow', 'country_code' => 'GB'], ['name' => 'Volpiano', 'country_code' => 'IT'], ['name' => 'San Martino Buon Albergo', 'country_code' => 'IT'], ['name' => 'Luzhou', 'country_code' => 'CN'], ['name' => 'Bois-Guillaume', 'country_code' => 'FR'], ['name' => 'Westport', 'country_code' => 'US'], ['name' => 'Comarapa', 'country_code' => 'BO'], ['name' => 'Tabatinga', 'country_code' => 'BR'], ['name' => 'Dinan', 'country_code' => 'FR'], ['name' => 'New Haven', 'country_code' => 'US'], ['name' => 'Oyten', 'country_code' => 'DE'], ['name' => 'Mottola', 'country_code' => 'IT'], ['name' => 'Eilenburg', 'country_code' => 'DE'], ['name' => 'Serta', 'country_code' => 'PT'], ['name' => 'Chiconquiaco', 'country_code' => 'MX'], ['name' => 'Monte Plata', 'country_code' => 'DO'], ['name' => 'Cardonal', 'country_code' => 'MX'], ['name' => 'New River', 'country_code' => 'US'], ['name' => 'Sayville', 'country_code' => 'US'], ['name' => 'Patos', 'country_code' => 'AL'], ['name' => 'Malta', 'country_code' => 'US'], ['name' => 'Dvur Kralove nad Labem', 'country_code' => 'CZ'], ['name' => 'Warwick', 'country_code' => 'AU'], ['name' => 'Alabat', 'country_code' => 'PH'], ['name' => 'Beaucaire', 'country_code' => 'FR'], ['name' => 'Readington', 'country_code' => 'US'], ['name' => 'Tamazouzt', 'country_code' => 'MA'], ['name' => 'Millbrook', 'country_code' => 'US'], ['name' => 'Sidi Allal el Bahraoui', 'country_code' => 'MA'], ['name' => 'Grao Mogol', 'country_code' => 'BR'], ['name' => 'Carthage', 'country_code' => 'US'], ['name' => 'Greater Napanee', 'country_code' => 'CA'], ['name' => 'Breisach am Rhein', 'country_code' => 'DE'], ['name' => 'Skvyra', 'country_code' => 'UA'], ['name' => 'Yuvileine', 'country_code' => 'UA'], ['name' => 'Ras El Oued', 'country_code' => 'MA'], ['name' => 'Ivdel', 'country_code' => 'RU'], ['name' => 'West Lampeter', 'country_code' => 'US'], ['name' => 'Puquio', 'country_code' => 'PE'], ['name' => 'Prospect Heights', 'country_code' => 'US'], ['name' => 'King City', 'country_code' => 'US'], ['name' => 'Opa-locka', 'country_code' => 'US'], ['name' => 'Dilasag', 'country_code' => 'PH'], ['name' => 'Markranstadt', 'country_code' => 'DE'], ['name' => 'Pataskala', 'country_code' => 'US'], ['name' => 'Hedongcun', 'country_code' => 'CN'], ['name' => 'Katav-Ivanovsk', 'country_code' => 'RU'], ['name' => 'Indiaroba', 'country_code' => 'BR'], ['name' => 'Mozarlandia', 'country_code' => 'BR'], ['name' => 'Casalpusterlengo', 'country_code' => 'IT'], ['name' => 'Leso', 'country_code' => 'PH'], ['name' => 'Galatone', 'country_code' => 'IT'], ['name' => 'Rumst', 'country_code' => 'BE'], ['name' => 'Baeza', 'country_code' => 'ES'], ['name' => 'Tillsonburg', 'country_code' => 'CA'], ['name' => 'Sunset', 'country_code' => 'US'], ['name' => 'Machang', 'country_code' => 'CN'], ['name' => 'Wadern', 'country_code' => 'DE'], ['name' => 'Saint-Avold', 'country_code' => 'FR'], ['name' => 'Tenango de Doria', 'country_code' => 'MX'], ['name' => 'Ince-in-Makerfield', 'country_code' => 'GB'], ['name' => 'Restinga Seca', 'country_code' => 'BR'], ['name' => 'Tsukumiura', 'country_code' => 'JP'], ['name' => 'Colchester', 'country_code' => 'US'], ['name' => 'Neustadt in Holstein', 'country_code' => 'DE'], ['name' => 'Grandville', 'country_code' => 'US'], ['name' => 'Jussara', 'country_code' => 'BR'], ['name' => 'Ixhuatlan del Sureste', 'country_code' => 'MX'], ['name' => 'Hibbing', 'country_code' => 'US'], ['name' => 'Sarasota Springs', 'country_code' => 'US'], ['name' => 'Barrocas', 'country_code' => 'BR'], ['name' => 'Laguna Woods', 'country_code' => 'US'], ['name' => 'Derzhavinsk', 'country_code' => 'KZ'], ['name' => 'Hope Mills', 'country_code' => 'US'], ['name' => 'Kumano', 'country_code' => 'JP'], ['name' => 'Ibateguara', 'country_code' => 'BR'], ['name' => 'El Estor', 'country_code' => 'GT'], ['name' => 'Chenlu', 'country_code' => 'CN'], ['name' => 'Surbo', 'country_code' => 'IT'], ['name' => 'Jatauba', 'country_code' => 'BR'], ['name' => 'Sierra Vista Southeast', 'country_code' => 'US'], ['name' => 'Nymburk', 'country_code' => 'CZ'], ['name' => 'Templin', 'country_code' => 'DE'], ['name' => 'Wilmington Island', 'country_code' => 'US'], ['name' => 'Upper Gwynedd', 'country_code' => 'US'], ['name' => 'Kalininsk', 'country_code' => 'RU'], ['name' => 'Lewiston', 'country_code' => 'US'], ['name' => 'Easthampton', 'country_code' => 'US'], ['name' => 'Steinbach', 'country_code' => 'CA'], ['name' => 'Bad Neustadt', 'country_code' => 'DE'], ['name' => 'Papagaios', 'country_code' => 'BR'], ['name' => 'Patton', 'country_code' => 'US'], ['name' => 'Biritinga', 'country_code' => 'BR'], ['name' => 'Lumbreras', 'country_code' => 'ES'], ['name' => 'Naivasha', 'country_code' => 'KE'], ['name' => 'Grossenkneten', 'country_code' => 'DE'], ['name' => 'Humble', 'country_code' => 'US'], ['name' => 'Mamadysh', 'country_code' => 'RU'], ['name' => 'Konigslutter am Elm', 'country_code' => 'DE'], ['name' => 'Echuca', 'country_code' => 'AU'], ['name' => 'Taurianova', 'country_code' => 'IT'], ['name' => 'Lagoa Real', 'country_code' => 'BR'], ['name' => 'Ovruch', 'country_code' => 'UA'], ['name' => 'Carterton', 'country_code' => 'GB'], ['name' => 'Payson', 'country_code' => 'US'], ['name' => 'Bredasdorp', 'country_code' => 'ZA'], ['name' => 'Duxbury', 'country_code' => 'US'], ['name' => 'Port Washington', 'country_code' => 'US'], ['name' => 'Yasnyy', 'country_code' => 'RU'], ['name' => 'Putyvl', 'country_code' => 'UA'], ['name' => 'Nova Ponte', 'country_code' => 'BR'], ['name' => 'Shahr-e Jadid-e Hashtgerd', 'country_code' => 'IR'], ['name' => 'Sopelana', 'country_code' => 'ES'], ['name' => 'Sao Joao Evangelista', 'country_code' => 'BR'], ['name' => 'Macedo de Cavaleiros', 'country_code' => 'PT'], ['name' => 'Bad Essen', 'country_code' => 'DE'], ['name' => 'Pereiro', 'country_code' => 'BR'], ['name' => 'Castenaso', 'country_code' => 'IT'], ['name' => 'Circleville', 'country_code' => 'US'], ['name' => 'Hautmont', 'country_code' => 'FR'], ['name' => 'Longmeadow', 'country_code' => 'US'], ['name' => 'Ulladulla', 'country_code' => 'AU'], ['name' => 'Plochingen', 'country_code' => 'DE'], ['name' => 'Omegna', 'country_code' => 'IT'], ['name' => 'Fullerton', 'country_code' => 'US'], ['name' => 'Itajiba', 'country_code' => 'BR'], ['name' => 'Bengonbeyene', 'country_code' => 'GQ'], ['name' => 'Juma Shahri', 'country_code' => 'UZ'], ['name' => 'Niederkruchten', 'country_code' => 'DE'], ['name' => 'Totteridge', 'country_code' => 'GB'], ['name' => 'Kalocsa', 'country_code' => 'HU'], ['name' => 'Kempsey', 'country_code' => 'AU'], ['name' => 'Kafr Nubl', 'country_code' => 'SY'], ['name' => 'Sterling', 'country_code' => 'US'], ['name' => 'Agua Clara', 'country_code' => 'BR'], ['name' => 'Acajutiba', 'country_code' => 'BR'], ['name' => 'Tiverton', 'country_code' => 'US'], ['name' => 'Sakha', 'country_code' => 'EG'], ['name' => 'White', 'country_code' => 'US'], ['name' => 'Guasca', 'country_code' => 'CO'], ['name' => 'Abadiania', 'country_code' => 'BR'], ['name' => 'Fos-sur-Mer', 'country_code' => 'FR'], ['name' => 'Cassina de Pecchi', 'country_code' => 'IT'], ['name' => 'Molinella', 'country_code' => 'IT'], ['name' => 'Saboeiro', 'country_code' => 'BR'], ['name' => 'Punta Umbria', 'country_code' => 'ES'], ['name' => 'Powder Springs', 'country_code' => 'US'], ['name' => 'Ershui', 'country_code' => 'TW'], ['name' => 'Flowing Wells', 'country_code' => 'US'], ['name' => 'Jiaojiazhuang', 'country_code' => 'CN'], ['name' => 'Wenwu', 'country_code' => 'CN'], ['name' => 'Itamonte', 'country_code' => 'BR'], ['name' => 'San Miguel', 'country_code' => 'PH'], ['name' => 'Clark', 'country_code' => 'US'], ['name' => 'Voss', 'country_code' => 'NO'], ['name' => 'San Giorgio Ionico', 'country_code' => 'IT'], ['name' => 'Purcellville', 'country_code' => 'US'], ['name' => 'Nova Olinda', 'country_code' => 'BR'], ['name' => 'Si Satchanalai', 'country_code' => 'TH'], ['name' => 'La Paz', 'country_code' => 'PH'], ['name' => 'Pornic', 'country_code' => 'FR'], ['name' => 'Greenwood Village', 'country_code' => 'US'], ['name' => 'Hanover', 'country_code' => 'CA'], ['name' => 'Milford', 'country_code' => 'US'], ['name' => 'Spittal an der Drau', 'country_code' => 'AT'], ['name' => 'Finale Emilia', 'country_code' => 'IT'], ['name' => 'Despujols', 'country_code' => 'PH'], ['name' => 'Ulverstone', 'country_code' => 'AU'], ['name' => 'Middle Smithfield', 'country_code' => 'US'], ['name' => 'Riposto', 'country_code' => 'IT'], ['name' => 'Terrace', 'country_code' => 'CA'], ['name' => 'Sabinopolis', 'country_code' => 'BR'], ['name' => 'Warren', 'country_code' => 'US'], ['name' => 'Yasnogorsk', 'country_code' => 'RU'], ['name' => 'Paola', 'country_code' => 'IT'], ['name' => 'Tiran', 'country_code' => 'IR'], ['name' => 'Farmingville', 'country_code' => 'US'], ['name' => 'Andrews', 'country_code' => 'US'], ['name' => 'Sumidouro', 'country_code' => 'BR'], ['name' => 'Castelnuovo Rangone', 'country_code' => 'IT'], ['name' => 'Kysucke Nove Mesto', 'country_code' => 'SK'], ['name' => 'Tiszaujvaros', 'country_code' => 'HU'], ['name' => 'Crepy-en-Valois', 'country_code' => 'FR'], ['name' => 'Ostroh', 'country_code' => 'UA'], ['name' => 'Newberry', 'country_code' => 'US'], ['name' => 'Erlensee', 'country_code' => 'DE'], ['name' => 'Parma', 'country_code' => 'US'], ['name' => 'Zhirnovsk', 'country_code' => 'RU'], ['name' => 'Varnsdorf', 'country_code' => 'CZ'], ['name' => 'Blytheville', 'country_code' => 'US'], ['name' => 'Ben Taieb', 'country_code' => 'MA'], ['name' => 'Winkfield', 'country_code' => 'GB'], ['name' => 'Einsiedeln', 'country_code' => 'CH'], ['name' => 'Corbera de Llobregat', 'country_code' => 'ES'], ['name' => 'Kuusamo', 'country_code' => 'FI'], ['name' => 'Midar', 'country_code' => 'MA'], ['name' => 'Shively', 'country_code' => 'US'], ['name' => 'Bruhl', 'country_code' => 'DE'], ['name' => 'Suffield', 'country_code' => 'US'], ['name' => 'Drensteinfurt', 'country_code' => 'DE'], ['name' => 'Featherstone', 'country_code' => 'GB'], ['name' => 'Lagoa dos Gatos', 'country_code' => 'BR'], ['name' => 'Mitchell', 'country_code' => 'US'], ['name' => 'Opera', 'country_code' => 'IT'], ['name' => 'Rakhiv', 'country_code' => 'UA'], ['name' => 'Ipanguacu', 'country_code' => 'BR'], ['name' => 'Kasagi', 'country_code' => 'JP'], ['name' => 'Ac-cahrij', 'country_code' => 'MA'], ['name' => 'Valeggio sul Mincio', 'country_code' => 'IT'], ['name' => 'Casalmaggiore', 'country_code' => 'IT'], ['name' => 'Schonefeld', 'country_code' => 'DE'], ['name' => 'Szarvas', 'country_code' => 'HU'], ['name' => 'West Norriton', 'country_code' => 'US'], ['name' => 'Mortara', 'country_code' => 'IT'], ['name' => 'Tobetsu', 'country_code' => 'JP'], ['name' => 'Helensburgh', 'country_code' => 'GB'], ['name' => 'Atacames', 'country_code' => 'EC'], ['name' => 'Gaillac', 'country_code' => 'FR'], ['name' => 'Graham', 'country_code' => 'US'], ['name' => 'Rio do Antonio', 'country_code' => 'BR'], ['name' => 'Bad Bentheim', 'country_code' => 'DE'], ['name' => 'Lindas', 'country_code' => 'NO'], ['name' => 'Dolo', 'country_code' => 'IT'], ['name' => 'Ceska Trebova', 'country_code' => 'CZ'], ['name' => 'Tanque Verde', 'country_code' => 'US'], ['name' => 'Bolotnoye', 'country_code' => 'RU'], ['name' => 'Serpa', 'country_code' => 'PT'], ['name' => 'Baia-Sprie', 'country_code' => 'RO'], ['name' => 'Alvinopolis', 'country_code' => 'BR'], ['name' => 'Miguelturra', 'country_code' => 'ES'], ['name' => 'Saint-Omer', 'country_code' => 'FR'], ['name' => 'Elkton', 'country_code' => 'US'], ['name' => 'Kinna', 'country_code' => 'SE'], ['name' => 'Santa Ursula', 'country_code' => 'ES'], ['name' => 'Shizukuishi', 'country_code' => 'JP'], ['name' => 'Three Lakes', 'country_code' => 'US'], ['name' => 'South Fayette', 'country_code' => 'US'], ['name' => 'Mangqu', 'country_code' => 'CN'], ['name' => 'Jedrzejow', 'country_code' => 'PL'], ['name' => 'Loncoche', 'country_code' => 'CL'], ['name' => 'Espumoso', 'country_code' => 'BR'], ['name' => 'Bohodukhiv', 'country_code' => 'UA'], ['name' => 'Corridonia', 'country_code' => 'IT'], ['name' => 'Agios Athanasios', 'country_code' => 'CY'], ['name' => 'Caudry', 'country_code' => 'FR'], ['name' => 'At-Bashy', 'country_code' => 'KG'], ['name' => 'Kuala Lipis', 'country_code' => 'MY'], ['name' => 'Fate', 'country_code' => 'US'], ['name' => 'Ipua', 'country_code' => 'BR'], ['name' => 'Poco Branco', 'country_code' => 'BR'], ['name' => 'Ban Na Kham', 'country_code' => 'TH'], ['name' => 'Borborema', 'country_code' => 'BR'], ['name' => 'Najasa', 'country_code' => 'CU'], ['name' => 'Bunnik', 'country_code' => 'NL'], ['name' => 'Soliera', 'country_code' => 'IT'], ['name' => 'Mandal', 'country_code' => 'NO'], ['name' => 'Kunzelsau', 'country_code' => 'DE'], ['name' => 'Hille', 'country_code' => 'DE'], ['name' => 'Riverdale', 'country_code' => 'US'], ['name' => 'Fort Mohave', 'country_code' => 'US'], ['name' => 'Ban Duea', 'country_code' => 'TH'], ['name' => 'Alcantara', 'country_code' => 'PH'], ['name' => 'Castellarano', 'country_code' => 'IT'], ['name' => 'Bonito', 'country_code' => 'BR'], ['name' => 'Chubbuck', 'country_code' => 'US'], ['name' => 'Siemiatycze', 'country_code' => 'PL'], ['name' => 'Dionisio Cerqueira', 'country_code' => 'BR'], ['name' => 'Campos Altos', 'country_code' => 'BR'], ['name' => 'Dastgerd', 'country_code' => 'IR'], ['name' => 'Urziceni', 'country_code' => 'RO'], ['name' => 'Weston', 'country_code' => 'GB'], ['name' => 'North Reading', 'country_code' => 'US'], ['name' => 'Newton', 'country_code' => 'US'], ['name' => 'Banqiao', 'country_code' => 'CN'], ['name' => 'La Grange', 'country_code' => 'US'], ['name' => 'Antrim', 'country_code' => 'US'], ['name' => 'Svetogorsk', 'country_code' => 'RU'], ['name' => 'Hemsworth', 'country_code' => 'GB'], ['name' => 'Burbage', 'country_code' => 'GB'], ['name' => 'Privolzhsk', 'country_code' => 'RU'], ['name' => 'Miami', 'country_code' => 'US'], ['name' => 'Chiaravalle', 'country_code' => 'IT'], ['name' => 'McMinnville', 'country_code' => 'US'], ['name' => 'La Roda', 'country_code' => 'ES'], ['name' => 'Potsdam', 'country_code' => 'US'], ['name' => 'Khamir', 'country_code' => 'YE'], ['name' => 'Parvomay', 'country_code' => 'BG'], ['name' => 'Frei Miguelinho', 'country_code' => 'BR'], ['name' => 'Longwood', 'country_code' => 'US'], ['name' => 'Ipecaeta', 'country_code' => 'BR'], ['name' => 'Baiceng', 'country_code' => 'CN'], ['name' => 'Sayo', 'country_code' => 'JP'], ['name' => 'Wawizaght', 'country_code' => 'MA'], ['name' => 'Schriesheim', 'country_code' => 'DE'], ['name' => 'Ludus', 'country_code' => 'RO'], ['name' => 'Castiglione del Lago', 'country_code' => 'IT'], ['name' => 'Stahnsdorf', 'country_code' => 'DE'], ['name' => 'Rahden', 'country_code' => 'DE'], ['name' => 'Kawasaki', 'country_code' => 'JP'], ['name' => 'Overland', 'country_code' => 'US'], ['name' => 'Dunn', 'country_code' => 'US'], ['name' => 'Sovetsk', 'country_code' => 'RU'], ['name' => 'Alvaraes', 'country_code' => 'BR'], ['name' => 'Khao Yoi', 'country_code' => 'TH'], ['name' => 'Houghton', 'country_code' => 'US'], ['name' => 'Uusikaupunki', 'country_code' => 'FI'], ['name' => 'Cambuci', 'country_code' => 'BR'], ['name' => 'Ladson', 'country_code' => 'US'], ['name' => 'Daigo', 'country_code' => 'JP'], ['name' => 'Nova Timboteua', 'country_code' => 'BR'], ['name' => 'Jurema', 'country_code' => 'BR'], ['name' => 'La Solana', 'country_code' => 'ES'], ['name' => 'Zelenogradsk', 'country_code' => 'RU'], ['name' => 'Abaza', 'country_code' => 'RU'], ['name' => 'Vieiro', 'country_code' => 'ES'], ['name' => 'Fiorenzuola d Arda', 'country_code' => 'IT'], ['name' => 'Itanhandu', 'country_code' => 'BR'], ['name' => 'Boppard', 'country_code' => 'DE'], ['name' => 'Limanowa', 'country_code' => 'PL'], ['name' => 'Blackfoot', 'country_code' => 'US'], ['name' => 'Ifrane', 'country_code' => 'MA'], ['name' => 'Buford', 'country_code' => 'US'], ['name' => 'Tasquillo', 'country_code' => 'MX'], ['name' => 'Lake Geneva', 'country_code' => 'US'], ['name' => 'Harrison', 'country_code' => 'US'], ['name' => 'Ascheberg', 'country_code' => 'DE'], ['name' => 'Simmerath', 'country_code' => 'DE'], ['name' => 'La Grande', 'country_code' => 'US'], ['name' => 'Genappe', 'country_code' => 'BE'], ['name' => 'Balassagyarmat', 'country_code' => 'HU'], ['name' => 'Senlis', 'country_code' => 'FR'], ['name' => 'Barwon Heads', 'country_code' => 'AU'], ['name' => 'Cruzilia', 'country_code' => 'BR'], ['name' => 'Neustadt bei Coburg', 'country_code' => 'DE'], ['name' => 'Panorama', 'country_code' => 'BR'], ['name' => 'Passo de Camarajibe', 'country_code' => 'BR'], ['name' => 'Chiva', 'country_code' => 'ES'], ['name' => 'Narragansett', 'country_code' => 'US'], ['name' => 'Broxbourne', 'country_code' => 'GB'], ['name' => 'Dom Feliciano', 'country_code' => 'BR'], ['name' => 'East Highland Park', 'country_code' => 'US'], ['name' => 'Linguere', 'country_code' => 'SN'], ['name' => 'Fontainebleau', 'country_code' => 'FR'], ['name' => 'Piquet Carneiro', 'country_code' => 'BR'], ['name' => 'Hilvarenbeek', 'country_code' => 'NL'], ['name' => 'Ober-Ramstadt', 'country_code' => 'DE'], ['name' => 'Castanet-Tolosan', 'country_code' => 'FR'], ['name' => 'Australind', 'country_code' => 'AU'], ['name' => 'Outreau', 'country_code' => 'FR'], ['name' => 'Mirandiba', 'country_code' => 'BR'], ['name' => 'Salinas da Margarida', 'country_code' => 'BR'], ['name' => 'Pontivy', 'country_code' => 'FR'], ['name' => 'Mainburg', 'country_code' => 'DE'], ['name' => 'Glen Allen', 'country_code' => 'US'], ['name' => 'Riegelsberg', 'country_code' => 'DE'], ['name' => 'Ratekau', 'country_code' => 'DE'], ['name' => 'Seven Oaks', 'country_code' => 'US'], ['name' => 'Taphan Hin', 'country_code' => 'TH'], ['name' => 'Santa', 'country_code' => 'PH'], ['name' => 'Jelcz-Laskowice', 'country_code' => 'PL'], ['name' => 'Groves', 'country_code' => 'US'], ['name' => 'Pargas', 'country_code' => 'FI'], ['name' => 'Flers', 'country_code' => 'FR'], ['name' => 'Mastic', 'country_code' => 'US'], ['name' => 'Galanta', 'country_code' => 'SK'], ['name' => 'Hofgeismar', 'country_code' => 'DE'], ['name' => 'Hermitage', 'country_code' => 'US'], ['name' => 'Madagh', 'country_code' => 'MA'], ['name' => 'Salitre', 'country_code' => 'BR'], ['name' => 'Forks', 'country_code' => 'US'], ['name' => 'Churumuco de Morelos', 'country_code' => 'MX'], ['name' => 'Petersfield', 'country_code' => 'GB'], ['name' => 'Sulat', 'country_code' => 'PH'], ['name' => 'Hampton', 'country_code' => 'US'], ['name' => 'Sale', 'country_code' => 'AU'], ['name' => 'Torello', 'country_code' => 'ES'], ['name' => 'Cloverly', 'country_code' => 'US'], ['name' => 'Bouc-Bel-Air', 'country_code' => 'FR'], ['name' => 'San Rafael Pie de la Cuesta', 'country_code' => 'GT'], ['name' => 'Ezzhiliga', 'country_code' => 'MA'], ['name' => 'Talladega', 'country_code' => 'US'], ['name' => 'Anazzou', 'country_code' => 'MA'], ['name' => 'Erjie', 'country_code' => 'CN'], ['name' => 'Langenau', 'country_code' => 'DE'], ['name' => 'Coremas', 'country_code' => 'BR'], ['name' => 'Hartford', 'country_code' => 'US'], ['name' => 'Felixlandia', 'country_code' => 'BR'], ['name' => 'Holly Springs', 'country_code' => 'US'], ['name' => 'Quezon', 'country_code' => 'PH'], ['name' => 'Belvedere Park', 'country_code' => 'US'], ['name' => 'Seekonk', 'country_code' => 'US'], ['name' => 'Glucholazy', 'country_code' => 'PL'], ['name' => 'Kerouane', 'country_code' => 'GN'], ['name' => 'Hayden', 'country_code' => 'US'], ['name' => 'Moul El Bergui', 'country_code' => 'MA'], ['name' => 'Middleburg Heights', 'country_code' => 'US'], ['name' => 'Ait Yazza', 'country_code' => 'MA'], ['name' => 'Rellingen', 'country_code' => 'DE'], ['name' => 'Mount Vernon', 'country_code' => 'US'], ['name' => 'Konarka', 'country_code' => 'IN'], ['name' => 'Klimavichy', 'country_code' => 'BY'], ['name' => 'Hilltown', 'country_code' => 'US'], ['name' => 'Huohua', 'country_code' => 'CN'], ['name' => 'Grenzach-Wyhlen', 'country_code' => 'DE'], ['name' => 'Kanegasaki', 'country_code' => 'JP'], ['name' => 'Rubiera', 'country_code' => 'IT'], ['name' => 'Jacaraci', 'country_code' => 'BR'], ['name' => 'Edingen-Neckarhausen', 'country_code' => 'DE'], ['name' => 'Landazuri', 'country_code' => 'CO'], ['name' => 'Amatitan', 'country_code' => 'MX'], ['name' => 'Daisen', 'country_code' => 'JP'], ['name' => 'Villa del Rosario', 'country_code' => 'AR'], ['name' => 'Conguaco', 'country_code' => 'GT'], ['name' => 'Cumru', 'country_code' => 'US'], ['name' => 'Entre Rios de Minas', 'country_code' => 'BR'], ['name' => 'Barro Alto', 'country_code' => 'BR'], ['name' => 'Mendrisio', 'country_code' => 'CH'], ['name' => 'Nyunzu', 'country_code' => 'CD'], ['name' => 'Bakun', 'country_code' => 'PH'], ['name' => 'Pulaski', 'country_code' => 'US'], ['name' => 'Mian Sahib', 'country_code' => 'PK'], ['name' => 'Saint-Rambert', 'country_code' => 'FR'], ['name' => 'Kusnacht', 'country_code' => 'CH'], ['name' => 'Calolziocorte', 'country_code' => 'IT'], ['name' => 'Tarascon', 'country_code' => 'FR'], ['name' => 'Julita', 'country_code' => 'PH'], ['name' => 'Waikanae', 'country_code' => 'NZ'], ['name' => 'Odenthal', 'country_code' => 'DE'], ['name' => 'Campina da Lagoa', 'country_code' => 'BR'], ['name' => 'Grafelfing', 'country_code' => 'DE'], ['name' => 'Northview', 'country_code' => 'US'], ['name' => 'Hohenstein-Ernstthal', 'country_code' => 'DE'], ['name' => 'South Middleton', 'country_code' => 'US'], ['name' => 'Thoen', 'country_code' => 'TH'], ['name' => 'Rochedale', 'country_code' => 'AU'], ['name' => 'Ashtead', 'country_code' => 'GB'], ['name' => 'Olonne-sur-Mer', 'country_code' => 'FR'], ['name' => 'Tendrara', 'country_code' => 'MA'], ['name' => 'Moreau', 'country_code' => 'US'], ['name' => 'Bom Jesus do Galho', 'country_code' => 'BR'], ['name' => 'Feucht', 'country_code' => 'DE'], ['name' => 'Fraga', 'country_code' => 'ES'], ['name' => 'Itapagipe', 'country_code' => 'BR'], ['name' => 'Agidel', 'country_code' => 'RU'], ['name' => 'Fameck', 'country_code' => 'FR'], ['name' => 'Santa Catalina', 'country_code' => 'PH'], ['name' => 'Serra Preta', 'country_code' => 'BR'], ['name' => 'Castro Daire', 'country_code' => 'PT'], ['name' => 'Chaltyr', 'country_code' => 'RU'], ['name' => 'Munster', 'country_code' => 'DE'], ['name' => 'Bingawan', 'country_code' => 'PH'], ['name' => 'Targuist', 'country_code' => 'MA'], ['name' => 'Pedara', 'country_code' => 'IT'], ['name' => 'Saloa', 'country_code' => 'BR'], ['name' => 'Blaydon', 'country_code' => 'GB'], ['name' => 'Silvino Lobos', 'country_code' => 'PH'], ['name' => 'Bailleul', 'country_code' => 'FR'], ['name' => 'Swallownest', 'country_code' => 'GB'], ['name' => 'Lower Salford', 'country_code' => 'US'], ['name' => 'Den Ham', 'country_code' => 'NL'], ['name' => 'Wakuya', 'country_code' => 'JP'], ['name' => 'Oulad Bou Rahmoun', 'country_code' => 'MA'], ['name' => 'Krasnovishersk', 'country_code' => 'RU'], ['name' => 'Huckeswagen', 'country_code' => 'DE'], ['name' => 'Washington', 'country_code' => 'US'], ['name' => 'Bar-le-Duc', 'country_code' => 'FR'], ['name' => 'Brake', 'country_code' => 'DE'], ['name' => 'Batuan', 'country_code' => 'PH'], ['name' => 'Stony Point', 'country_code' => 'US'], ['name' => 'Italva', 'country_code' => 'BR'], ['name' => 'Horw', 'country_code' => 'CH'], ['name' => 'Chilcuautla', 'country_code' => 'MX'], ['name' => 'Lahoysk', 'country_code' => 'BY'], ['name' => 'Poynton', 'country_code' => 'GB'], ['name' => 'Eldorado', 'country_code' => 'BR'], ['name' => 'Ambaguio', 'country_code' => 'PH'], ['name' => 'Alta', 'country_code' => 'NO'], ['name' => 'Liangwancun', 'country_code' => 'CN'], ['name' => 'Springfield', 'country_code' => 'CA'], ['name' => 'Nazare', 'country_code' => 'PT'], ['name' => 'Chipurupalle', 'country_code' => 'IN'], ['name' => 'Grosse Pointe Woods', 'country_code' => 'US'], ['name' => 'Junin', 'country_code' => 'PE'], ['name' => 'Loviisa', 'country_code' => 'FI'], ['name' => 'Capitao Eneas', 'country_code' => 'BR'], ['name' => 'Castellammare del Golfo', 'country_code' => 'IT'], ['name' => 'Belokurikha', 'country_code' => 'RU'], ['name' => 'Villa Paranacito', 'country_code' => 'AR'], ['name' => 'Azpeitia', 'country_code' => 'ES'], ['name' => 'Kabayan', 'country_code' => 'PH'], ['name' => 'Libagon', 'country_code' => 'PH'], ['name' => 'Triunfo', 'country_code' => 'BR'], ['name' => 'Morlaix', 'country_code' => 'FR'], ['name' => 'Zevio', 'country_code' => 'IT'], ['name' => 'Hueytown', 'country_code' => 'US'], ['name' => 'Penacova', 'country_code' => 'PT'], ['name' => 'Ain Jemaa', 'country_code' => 'MA'], ['name' => 'Kawaminami', 'country_code' => 'JP'], ['name' => 'Port Pirie', 'country_code' => 'AU'], ['name' => 'Aldine', 'country_code' => 'US'], ['name' => 'Tazert', 'country_code' => 'MA'], ['name' => 'Guastalla', 'country_code' => 'IT'], ['name' => 'Chitila', 'country_code' => 'RO'], ['name' => 'Bradley', 'country_code' => 'US'], ['name' => 'Southchase', 'country_code' => 'US'], ['name' => 'Poronaysk', 'country_code' => 'RU'], ['name' => 'Ibipitanga', 'country_code' => 'BR'], ['name' => 'Sannicandro Garganico', 'country_code' => 'IT'], ['name' => 'Santa Luzia', 'country_code' => 'BR'], ['name' => 'San Vito al Tagliamento', 'country_code' => 'IT'], ['name' => 'Markgroningen', 'country_code' => 'DE'], ['name' => 'Tapolca', 'country_code' => 'HU'], ['name' => 'Pendencias', 'country_code' => 'BR'], ['name' => 'Blomberg', 'country_code' => 'DE'], ['name' => 'Tulle', 'country_code' => 'FR'], ['name' => 'Pineto', 'country_code' => 'IT'], ['name' => 'Wittenheim', 'country_code' => 'FR'], ['name' => 'Sarvar', 'country_code' => 'HU'], ['name' => 'Selb', 'country_code' => 'DE'], ['name' => 'Mackworth', 'country_code' => 'GB'], ['name' => 'Santa Maria a Vico', 'country_code' => 'IT'], ['name' => 'Chellaston', 'country_code' => 'GB'], ['name' => 'IJsselmuiden', 'country_code' => 'NL'], ['name' => 'Wentorf bei Hamburg', 'country_code' => 'DE'], ['name' => 'Ribeiro do Amparo', 'country_code' => 'BR'], ['name' => 'Ribnitz-Damgarten', 'country_code' => 'DE'], ['name' => 'Witzenhausen', 'country_code' => 'DE'], ['name' => 'Mexborough', 'country_code' => 'GB'], ['name' => 'Kerman', 'country_code' => 'US'], ['name' => 'Grefrath', 'country_code' => 'DE'], ['name' => 'Xihuangni', 'country_code' => 'CN'], ['name' => 'Pestovo', 'country_code' => 'RU'], ['name' => 'Citta Sant Angelo', 'country_code' => 'IT'], ['name' => 'Tamesis', 'country_code' => 'CO'], ['name' => 'Yinhua', 'country_code' => 'CN'], ['name' => 'Mindelheim', 'country_code' => 'DE'], ['name' => 'Hugo', 'country_code' => 'US'], ['name' => 'Tankal', 'country_code' => 'PH'], ['name' => 'Laterza', 'country_code' => 'IT'], ['name' => 'Sao Joao do Triunfo', 'country_code' => 'BR'], ['name' => 'Sabbah', 'country_code' => 'MA'], ['name' => 'Fray Luis A. Beltran', 'country_code' => 'AR'], ['name' => 'Sao Lourenco da Serra', 'country_code' => 'BR'], ['name' => 'Paralimni', 'country_code' => 'CY'], ['name' => 'Boksitogorsk', 'country_code' => 'RU'], ['name' => 'Humayingcun', 'country_code' => 'CN'], ['name' => 'Jayaque', 'country_code' => 'SV'], ['name' => 'Buttelborn', 'country_code' => 'DE'], ['name' => 'Kingersheim', 'country_code' => 'FR'], ['name' => 'Damascus', 'country_code' => 'US'], ['name' => 'Bilopillya', 'country_code' => 'UA'], ['name' => 'Gross-Zimmern', 'country_code' => 'DE'], ['name' => 'Meru', 'country_code' => 'FR'], ['name' => 'Guiratinga', 'country_code' => 'BR'], ['name' => 'Beckingen', 'country_code' => 'DE'], ['name' => 'Brejoes', 'country_code' => 'BR'], ['name' => 'Campodarsego', 'country_code' => 'IT'], ['name' => 'Sao Felix', 'country_code' => 'BR'], ['name' => 'Motiong', 'country_code' => 'PH'], ['name' => 'Uchiko', 'country_code' => 'JP'], ['name' => 'Berlare', 'country_code' => 'BE'], ['name' => 'Primavera', 'country_code' => 'BR'], ['name' => 'Nampicuan', 'country_code' => 'PH'], ['name' => 'Salyan', 'country_code' => 'NP'], ['name' => 'La Carolina', 'country_code' => 'ES'], ['name' => 'Areado', 'country_code' => 'BR'], ['name' => 'Vergara', 'country_code' => 'ES'], ['name' => 'San Carlos de la Rapita', 'country_code' => 'ES'], ['name' => 'Teolandia', 'country_code' => 'BR'], ['name' => 'Andoain', 'country_code' => 'ES'], ['name' => 'Santa Adelia', 'country_code' => 'BR'], ['name' => 'Curiuva', 'country_code' => 'BR'], ['name' => 'Nakanojomachi', 'country_code' => 'JP'], ['name' => 'Masty', 'country_code' => 'BY'], ['name' => 'Bitburg', 'country_code' => 'DE'], ['name' => 'Skalica', 'country_code' => 'SK'], ['name' => 'Tupi Paulista', 'country_code' => 'BR'], ['name' => 'San Antonio La Paz', 'country_code' => 'GT'], ['name' => 'Tartarugalzinho', 'country_code' => 'BR'], ['name' => 'Tokoroa', 'country_code' => 'NZ'], ['name' => 'Mineral Wells', 'country_code' => 'US'], ['name' => 'Monte Alegre de Sergipe', 'country_code' => 'BR'], ['name' => 'Penrith', 'country_code' => 'GB'], ['name' => 'Neutraubling', 'country_code' => 'DE'], ['name' => 'Majiagoucha', 'country_code' => 'CN'], ['name' => 'Gehrden', 'country_code' => 'DE'], ['name' => 'Samobor', 'country_code' => 'HR'], ['name' => 'Itajobi', 'country_code' => 'BR'], ['name' => 'Huasca de Ocampo', 'country_code' => 'MX'], ['name' => 'Choszczno', 'country_code' => 'PL'], ['name' => 'Laxou', 'country_code' => 'FR'], ['name' => 'Bay Village', 'country_code' => 'US'], ['name' => 'Huchuan', 'country_code' => 'CN'], ['name' => 'Tazarine', 'country_code' => 'MA'], ['name' => 'Candelaria', 'country_code' => 'PR'], ['name' => 'Pequannock', 'country_code' => 'US'], ['name' => 'Arnedo', 'country_code' => 'ES'], ['name' => 'San Juan', 'country_code' => 'PH'], ['name' => 'Gardabani', 'country_code' => 'GE'], ['name' => 'Richterswil', 'country_code' => 'CH'], ['name' => 'Niedernhausen', 'country_code' => 'DE'], ['name' => 'Moura', 'country_code' => 'PT'], ['name' => 'Kutchan', 'country_code' => 'JP'], ['name' => 'Garrel', 'country_code' => 'DE'], ['name' => 'San Pedro Tapanatepec', 'country_code' => 'MX'], ['name' => 'Oroco', 'country_code' => 'BR'], ['name' => 'Ilha de Mocambique', 'country_code' => 'MZ'], ['name' => 'Guipavas', 'country_code' => 'FR'], ['name' => 'Mata Roma', 'country_code' => 'BR'], ['name' => 'Landsberg', 'country_code' => 'DE'], ['name' => 'North Hykeham', 'country_code' => 'GB'], ['name' => 'Meilen', 'country_code' => 'CH'], ['name' => 'Sullivan', 'country_code' => 'US'], ['name' => 'Elk Plain', 'country_code' => 'US'], ['name' => 'Weston', 'country_code' => 'US'], ['name' => 'Cadereyta', 'country_code' => 'MX'], ['name' => 'Sommacampagna', 'country_code' => 'IT'], ['name' => 'Hereford', 'country_code' => 'US'], ['name' => 'Barra de Santa Rosa', 'country_code' => 'BR'], ['name' => 'Gaspe', 'country_code' => 'CA'], ['name' => 'Galion', 'country_code' => 'US'], ['name' => 'Cossato', 'country_code' => 'IT'], ['name' => 'College Park', 'country_code' => 'US'], ['name' => 'El Arenal', 'country_code' => 'MX'], ['name' => 'Dentsville', 'country_code' => 'US'], ['name' => 'Grovetown', 'country_code' => 'US'], ['name' => 'Amlash', 'country_code' => 'IR'], ['name' => 'Rosarno', 'country_code' => 'IT'], ['name' => 'Ciro Marina', 'country_code' => 'IT'], ['name' => 'Pleasanton', 'country_code' => 'US'], ['name' => 'Driouch', 'country_code' => 'MA'], ['name' => 'Nopala de Villagran', 'country_code' => 'MX'], ['name' => 'Great Bend', 'country_code' => 'US'], ['name' => 'Provadia', 'country_code' => 'BG'], ['name' => 'Luino', 'country_code' => 'IT'], ['name' => 'Bela Vista do Paraiso', 'country_code' => 'BR'], ['name' => 'Gualdo Tadino', 'country_code' => 'IT'], ['name' => 'Gantt', 'country_code' => 'US'], ['name' => 'Ratzeburg', 'country_code' => 'DE'], ['name' => 'Oued Jdida', 'country_code' => 'MA'], ['name' => 'Ritterhude', 'country_code' => 'DE'], ['name' => 'Ramechhap', 'country_code' => 'NP'], ['name' => 'Trepuzzi', 'country_code' => 'IT'], ['name' => 'Canutama', 'country_code' => 'BR'], ['name' => 'Porteiras', 'country_code' => 'BR'], ['name' => 'Burshtyn', 'country_code' => 'UA'], ['name' => 'Teignmouth', 'country_code' => 'GB'], ['name' => 'Bhimphedi', 'country_code' => 'NP'], ['name' => 'Rossville', 'country_code' => 'US'], ['name' => 'San Miguel', 'country_code' => 'PH'], ['name' => 'Fortuna', 'country_code' => 'BR'], ['name' => 'Santa Brigida', 'country_code' => 'BR'], ['name' => 'Ban Bang Muang', 'country_code' => 'TH'], ['name' => 'Rasnov', 'country_code' => 'RO'], ['name' => 'Kulunda', 'country_code' => 'RU'], ['name' => 'Sultandagi', 'country_code' => 'TR'], ['name' => 'Plainfield', 'country_code' => 'US'], ['name' => 'Teixeira', 'country_code' => 'BR'], ['name' => 'La Fleche', 'country_code' => 'FR'], ['name' => 'Graca', 'country_code' => 'BR'], ['name' => 'Pont-a-Mousson', 'country_code' => 'FR'], ['name' => 'Tulchyn', 'country_code' => 'UA'], ['name' => 'Kochkor-Ata', 'country_code' => 'KG'], ['name' => 'Bennington', 'country_code' => 'US'], ['name' => 'Burbach', 'country_code' => 'DE'], ['name' => 'Jiquirica', 'country_code' => 'BR'], ['name' => 'Kenora', 'country_code' => 'CA'], ['name' => 'Rosa', 'country_code' => 'IT'], ['name' => 'Englewood', 'country_code' => 'US'], ['name' => 'Kok-Janggak', 'country_code' => 'KG'], ['name' => 'Qantir', 'country_code' => 'EG'], ['name' => 'Hilchenbach', 'country_code' => 'DE'], ['name' => 'Mering', 'country_code' => 'DE'], ['name' => 'Meco', 'country_code' => 'ES'], ['name' => 'Punata', 'country_code' => 'BO'], ['name' => 'Skipton', 'country_code' => 'GB'], ['name' => 'Vil nyans k', 'country_code' => 'UA'], ['name' => 'Thouars', 'country_code' => 'FR'], ['name' => 'Jamestown', 'country_code' => 'US'], ['name' => 'Horta', 'country_code' => 'PT'], ['name' => 'Exeter', 'country_code' => 'US'], ['name' => 'Cowdenbeath', 'country_code' => 'GB'], ['name' => 'Leninsk', 'country_code' => 'RU'], ['name' => 'West Richland', 'country_code' => 'US'], ['name' => 'Alexandreia', 'country_code' => 'GR'], ['name' => 'Viseu de Sus', 'country_code' => 'RO'], ['name' => 'Salkhad', 'country_code' => 'SY'], ['name' => 'Chepica', 'country_code' => 'CL'], ['name' => 'Ylivieska', 'country_code' => 'FI'], ['name' => 'Park City', 'country_code' => 'US'], ['name' => 'Oldsmar', 'country_code' => 'US'], ['name' => 'Spitak', 'country_code' => 'AM'], ['name' => 'Lohfelden', 'country_code' => 'DE'], ['name' => 'Washington Court House', 'country_code' => 'US'], ['name' => 'Sasso Marconi', 'country_code' => 'IT'], ['name' => 'Northborough', 'country_code' => 'US'], ['name' => 'Coto de Caza', 'country_code' => 'US'], ['name' => 'Whitman', 'country_code' => 'US'], ['name' => 'Clifton', 'country_code' => 'GB'], ['name' => 'Mizil', 'country_code' => 'RO'], ['name' => 'Canteleu', 'country_code' => 'FR'], ['name' => 'Obando', 'country_code' => 'CO'], ['name' => 'Tamarana', 'country_code' => 'BR'], ['name' => 'Pontinia', 'country_code' => 'IT'], ['name' => 'Sorso', 'country_code' => 'IT'], ['name' => 'Carmignano', 'country_code' => 'IT'], ['name' => 'Esbiaat', 'country_code' => 'MA'], ['name' => 'Zapolyarnyy', 'country_code' => 'RU'], ['name' => 'Breukelen', 'country_code' => 'NL'], ['name' => 'Morwell', 'country_code' => 'AU'], ['name' => 'Uhingen', 'country_code' => 'DE'], ['name' => 'Tierra Blanca', 'country_code' => 'MX'], ['name' => 'Berkovitsa', 'country_code' => 'BG'], ['name' => 'Bludenz', 'country_code' => 'AT'], ['name' => 'Turnov', 'country_code' => 'CZ'], ['name' => 'Douar Souk L qolla', 'country_code' => 'MA'], ['name' => 'Neu-Anspach', 'country_code' => 'DE'], ['name' => 'Upper Southampton', 'country_code' => 'US'], ['name' => 'Qiaoyang', 'country_code' => 'CN'], ['name' => 'Bad Bramstedt', 'country_code' => 'DE'], ['name' => 'Bonanza', 'country_code' => 'NI'], ['name' => 'Massalubrense', 'country_code' => 'IT'], ['name' => 'San Juan', 'country_code' => 'PH'], ['name' => 'Depew', 'country_code' => 'US'], ['name' => 'Susanville', 'country_code' => 'US'], ['name' => 'Chaguarama', 'country_code' => 'VE'], ['name' => 'Mariestad', 'country_code' => 'SE'], ['name' => 'Aghbal', 'country_code' => 'MA'], ['name' => 'Belchertown', 'country_code' => 'US'], ['name' => 'Mittweida', 'country_code' => 'DE'], ['name' => 'Swampscott', 'country_code' => 'US'], ['name' => 'Iharana', 'country_code' => 'MG'], ['name' => 'Vandalia', 'country_code' => 'US'], ['name' => 'Auriflama', 'country_code' => 'BR'], ['name' => 'Botelhos', 'country_code' => 'BR'], ['name' => 'Carmo de Minas', 'country_code' => 'BR'], ['name' => 'Tabant', 'country_code' => 'MA'], ['name' => 'Willow Grove', 'country_code' => 'US'], ['name' => 'Shlisselburg', 'country_code' => 'RU'], ['name' => 'Jardim de Piranhas', 'country_code' => 'BR'], ['name' => 'Brasil Novo', 'country_code' => 'BR'], ['name' => 'Ipora', 'country_code' => 'BR'], ['name' => 'Drahichyn', 'country_code' => 'BY'], ['name' => 'Araceli', 'country_code' => 'PH'], ['name' => 'Coribe', 'country_code' => 'BR'], ['name' => 'Czluchow', 'country_code' => 'PL'], ['name' => 'Malo', 'country_code' => 'IT'], ['name' => 'Jinta', 'country_code' => 'CN'], ['name' => 'Reboucas', 'country_code' => 'BR'], ['name' => 'Verdal', 'country_code' => 'NO'], ['name' => 'Andresy', 'country_code' => 'FR'], ['name' => 'Detva', 'country_code' => 'SK'], ['name' => 'Tsumeb', 'country_code' => 'NA'], ['name' => 'Pudtol', 'country_code' => 'PH'], ['name' => 'Serhetabat', 'country_code' => 'TM'], ['name' => 'Gourrama', 'country_code' => 'MA'], ['name' => 'Cold Lake', 'country_code' => 'CA'], ['name' => 'Saint-Fargeau', 'country_code' => 'FR'], ['name' => 'Sarmin', 'country_code' => 'SY'], ['name' => 'Woippy', 'country_code' => 'FR'], ['name' => 'Novi Pazar', 'country_code' => 'BG'], ['name' => 'Quinapundan', 'country_code' => 'PH'], ['name' => 'Bni Darkoul', 'country_code' => 'MA'], ['name' => 'Cuarte de Huerva', 'country_code' => 'ES'], ['name' => 'Avrille', 'country_code' => 'FR'], ['name' => 'Fort Carson', 'country_code' => 'US'], ['name' => 'Tall Abyad', 'country_code' => 'SY'], ['name' => 'Pallasovka', 'country_code' => 'RU'], ['name' => 'Saint-Jean-de-Luz', 'country_code' => 'FR'], ['name' => 'Nobres', 'country_code' => 'BR'], ['name' => 'Mantua', 'country_code' => 'US'], ['name' => 'Beech Grove', 'country_code' => 'US'], ['name' => 'Hewitt', 'country_code' => 'US'], ['name' => 'Nastola', 'country_code' => 'FI'], ['name' => 'Thompson', 'country_code' => 'US'], ['name' => 'Levoca', 'country_code' => 'SK'], ['name' => 'Magione', 'country_code' => 'IT'], ['name' => 'Cassano delle Murge', 'country_code' => 'IT'], ['name' => 'Cunit', 'country_code' => 'ES'], ['name' => 'Tehachapi', 'country_code' => 'US'], ['name' => 'Buhusi', 'country_code' => 'RO'], ['name' => 'Meerane', 'country_code' => 'DE'], ['name' => 'Cabanas', 'country_code' => 'GT'], ['name' => 'Nyzhnia Krynka', 'country_code' => 'UA'], ['name' => 'Sisian', 'country_code' => 'AM'], ['name' => 'Nerchinsk', 'country_code' => 'RU'], ['name' => 'Pugachev', 'country_code' => 'RU'], ['name' => 'Gryazovets', 'country_code' => 'RU'], ['name' => 'Sukhinichi', 'country_code' => 'RU'], ['name' => 'Pedro Velho', 'country_code' => 'BR'], ['name' => 'Vinci', 'country_code' => 'IT'], ['name' => 'Impruneta', 'country_code' => 'IT'], ['name' => 'Radomir', 'country_code' => 'BG'], ['name' => 'Busto Garolfo', 'country_code' => 'IT'], ['name' => 'Astoria', 'country_code' => 'US'], ['name' => 'Shuichecun', 'country_code' => 'CN'], ['name' => 'Fritzlar', 'country_code' => 'DE'], ['name' => 'Lons', 'country_code' => 'FR'], ['name' => 'Candeias', 'country_code' => 'BR'], ['name' => 'Alamo', 'country_code' => 'US'], ['name' => 'Paiania', 'country_code' => 'GR'], ['name' => 'Santa Croce sull Arno', 'country_code' => 'IT'], ['name' => 'Gidole', 'country_code' => 'ET'], ['name' => 'Kondrovo', 'country_code' => 'RU'], ['name' => 'Kizel', 'country_code' => 'RU'], ['name' => 'Zmiiv', 'country_code' => 'UA'], ['name' => 'Gondomar', 'country_code' => 'ES'], ['name' => 'Podebrady', 'country_code' => 'CZ'], ['name' => 'Jisr ez Zarqa', 'country_code' => 'IL'], ['name' => 'Mascote', 'country_code' => 'BR'], ['name' => 'Taft', 'country_code' => 'US'], ['name' => 'Amersham', 'country_code' => 'GB'], ['name' => 'Ferndale', 'country_code' => 'US'], ['name' => 'Victoria', 'country_code' => 'PH'], ['name' => 'Namanga', 'country_code' => 'KE'], ['name' => 'Livingston', 'country_code' => 'US'], ['name' => 'Whitewater', 'country_code' => 'US'], ['name' => 'Clarksdale', 'country_code' => 'US'], ['name' => 'Romilly-sur-Seine', 'country_code' => 'FR'], ['name' => 'West Lealman', 'country_code' => 'US'], ['name' => 'Mondolfo', 'country_code' => 'IT'], ['name' => 'Vrbovec', 'country_code' => 'HR'], ['name' => 'Arona', 'country_code' => 'IT'], ['name' => 'Warragul', 'country_code' => 'AU'], ['name' => 'Franklin Park', 'country_code' => 'US'], ['name' => 'Ramsey', 'country_code' => 'US'], ['name' => 'Palmital', 'country_code' => 'BR'], ['name' => 'Collecchio', 'country_code' => 'IT'], ['name' => 'New Freedom', 'country_code' => 'US'], ['name' => 'Alpine', 'country_code' => 'US'], ['name' => 'Victor', 'country_code' => 'US'], ['name' => 'San Policarpo', 'country_code' => 'PH'], ['name' => 'Gafanha da Nazare', 'country_code' => 'PT'], ['name' => 'Chateau-d Olonne', 'country_code' => 'FR'], ['name' => 'Phra Samut Chedi', 'country_code' => 'TH'], ['name' => 'Great Falls', 'country_code' => 'US'], ['name' => 'Yankton', 'country_code' => 'US'], ['name' => 'Nzalat Laadam', 'country_code' => 'MA'], ['name' => 'London', 'country_code' => 'US'], ['name' => 'Fujisaki', 'country_code' => 'JP'], ['name' => 'Oftringen', 'country_code' => 'CH'], ['name' => 'Rotenburg an der Fulda', 'country_code' => 'DE'], ['name' => 'Audincourt', 'country_code' => 'FR'], ['name' => 'Markt Schwaben', 'country_code' => 'DE'], ['name' => 'Ternitz', 'country_code' => 'AT'], ['name' => 'Chegdomyn', 'country_code' => 'RU'], ['name' => 'Pattensen', 'country_code' => 'DE'], ['name' => 'Nioro', 'country_code' => 'ML'], ['name' => 'Salem Lakes', 'country_code' => 'US'], ['name' => 'Bayeux', 'country_code' => 'FR'], ['name' => 'Petrolandia', 'country_code' => 'BR'], ['name' => 'Brooklyn Park', 'country_code' => 'US'], ['name' => 'Saint-Brevin-les-Pins', 'country_code' => 'FR'], ['name' => 'Navashino', 'country_code' => 'RU'], ['name' => 'Hampton Bays', 'country_code' => 'US'], ['name' => 'Mions', 'country_code' => 'FR'], ['name' => 'Spenge', 'country_code' => 'DE'], ['name' => 'Grodzisk Wielkopolski', 'country_code' => 'PL'], ['name' => 'Kontiolahti', 'country_code' => 'FI'], ['name' => 'Betsukai', 'country_code' => 'JP'], ['name' => 'Huasuo', 'country_code' => 'CN'], ['name' => 'Ighrem n Ougdal', 'country_code' => 'MA'], ['name' => 'Jackson', 'country_code' => 'US'], ['name' => 'Sai Buri', 'country_code' => 'TH'], ['name' => 'Uryzhar', 'country_code' => 'KZ'], ['name' => 'Nevel', 'country_code' => 'RU'], ['name' => 'Summerside', 'country_code' => 'CA'], ['name' => 'Lobau', 'country_code' => 'DE'], ['name' => 'Comox', 'country_code' => 'CA'], ['name' => 'Bom Lugar', 'country_code' => 'BR'], ['name' => 'Karabanovo', 'country_code' => 'RU'], ['name' => 'Fortim', 'country_code' => 'BR'], ['name' => 'Wombourn', 'country_code' => 'GB'], ['name' => 'Montelupo Fiorentino', 'country_code' => 'IT'], ['name' => 'Amay', 'country_code' => 'BE'], ['name' => 'Maglie', 'country_code' => 'IT'], ['name' => 'El Paisnal', 'country_code' => 'SV'], ['name' => 'Cehegin', 'country_code' => 'ES'], ['name' => 'Katyr-Yurt', 'country_code' => 'RU'], ['name' => 'Nova Trento', 'country_code' => 'BR'], ['name' => 'Yazoo City', 'country_code' => 'US'], ['name' => 'Mount Washington', 'country_code' => 'US'], ['name' => 'Upanema', 'country_code' => 'BR'], ['name' => 'Sylvan Lake', 'country_code' => 'CA'], ['name' => 'Jacksonville', 'country_code' => 'US'], ['name' => 'California', 'country_code' => 'US'], ['name' => 'Vennesla', 'country_code' => 'NO'], ['name' => 'Orbetello', 'country_code' => 'IT'], ['name' => 'Anao-aon', 'country_code' => 'PH'], ['name' => 'Guilford', 'country_code' => 'US'], ['name' => 'Ivanic-Grad', 'country_code' => 'HR'], ['name' => 'Bissendorf', 'country_code' => 'DE'], ['name' => 'Grimes', 'country_code' => 'US'], ['name' => 'Andorinha', 'country_code' => 'BR'], ['name' => 'Tabuse', 'country_code' => 'JP'], ['name' => 'Buritirama', 'country_code' => 'BR'], ['name' => 'Presidente Dutra', 'country_code' => 'BR'], ['name' => 'Bangui', 'country_code' => 'PH'], ['name' => 'Huizucar', 'country_code' => 'SV'], ['name' => 'Tepetzintla', 'country_code' => 'MX'], ['name' => 'Bellair-Meadowbrook Terrace', 'country_code' => 'US'], ['name' => 'Obanazawa', 'country_code' => 'JP'], ['name' => 'Lamont', 'country_code' => 'US'], ['name' => 'Castel San Giorgio', 'country_code' => 'IT'], ['name' => 'Lebanon', 'country_code' => 'US'], ['name' => 'Dorfen', 'country_code' => 'DE'], ['name' => 'Roncade', 'country_code' => 'IT'], ['name' => 'Lalibela', 'country_code' => 'ET'], ['name' => 'Morpeth', 'country_code' => 'GB'], ['name' => 'Ait Yaich', 'country_code' => 'DZ'], ['name' => 'Ekenas', 'country_code' => 'FI'], ['name' => 'Rixheim', 'country_code' => 'FR'], ['name' => 'Villa San Giovanni', 'country_code' => 'IT'], ['name' => 'Correia Pinto', 'country_code' => 'BR'], ['name' => 'Shimubi', 'country_code' => 'CN'], ['name' => 'Cidelandia', 'country_code' => 'BR'], ['name' => 'Lauchhammer', 'country_code' => 'DE'], ['name' => 'Saint Joseph', 'country_code' => 'TT'], ['name' => 'Sidmant al Jabal', 'country_code' => 'EG'], ['name' => 'Tubaran', 'country_code' => 'PH'], ['name' => 'Bhalil', 'country_code' => 'MA'], ['name' => 'Amberieu-en-Bugey', 'country_code' => 'FR'], ['name' => 'Novi Iskar', 'country_code' => 'BG'], ['name' => 'Piano di Sorrento', 'country_code' => 'IT'], ['name' => 'Maydolong', 'country_code' => 'PH'], ['name' => 'Rokycany', 'country_code' => 'CZ'], ['name' => 'Hot Springs Village', 'country_code' => 'US'], ['name' => 'St. Simons', 'country_code' => 'US'], ['name' => 'Berettyoujfalu', 'country_code' => 'HU'], ['name' => 'Campbellsville', 'country_code' => 'US'], ['name' => 'Muri', 'country_code' => 'CH'], ['name' => 'Kushimoto', 'country_code' => 'JP'], ['name' => 'Xexeu', 'country_code' => 'BR'], ['name' => 'Nishinoomote', 'country_code' => 'JP'], ['name' => 'Usingen', 'country_code' => 'DE'], ['name' => 'Malsch', 'country_code' => 'DE'], ['name' => 'Broome', 'country_code' => 'AU'], ['name' => 'Roquebrune-sur-Argens', 'country_code' => 'FR'], ['name' => 'Tsivilsk', 'country_code' => 'RU'], ['name' => 'Ledyard', 'country_code' => 'US'], ['name' => 'Danilov', 'country_code' => 'RU'], ['name' => 'Maqat', 'country_code' => 'KZ'], ['name' => 'Vargem da Roca', 'country_code' => 'BR'], ['name' => 'Monteroni di Lecce', 'country_code' => 'IT'], ['name' => 'San Ramon', 'country_code' => 'PE'], ['name' => 'Cicekdagi', 'country_code' => 'TR'], ['name' => 'Bedford', 'country_code' => 'US'], ['name' => 'Oulad Driss', 'country_code' => 'MA'], ['name' => 'Trinitapoli', 'country_code' => 'IT'], ['name' => 'Nocatee', 'country_code' => 'US'], ['name' => 'Tonawanda', 'country_code' => 'US'], ['name' => 'Soledade', 'country_code' => 'BR'], ['name' => 'Lope de Vega', 'country_code' => 'PH'], ['name' => 'Bang Racham', 'country_code' => 'TH'], ['name' => 'Cambridge', 'country_code' => 'US'], ['name' => 'Angical', 'country_code' => 'BR'], ['name' => 'Bad Wurzach', 'country_code' => 'DE'], ['name' => 'Governador Celso Ramos', 'country_code' => 'BR'], ['name' => 'Pilisvorosvar', 'country_code' => 'HU'], ['name' => 'Wymondham', 'country_code' => 'GB'], ['name' => 'Arzgir', 'country_code' => 'RU'], ['name' => 'Xincun', 'country_code' => 'CN'], ['name' => 'Kinogitan', 'country_code' => 'PH'], ['name' => 'Ashiya', 'country_code' => 'JP'], ['name' => 'Holliston', 'country_code' => 'US'], ['name' => 'Montataire', 'country_code' => 'FR'], ['name' => 'Wschowa', 'country_code' => 'PL'], ['name' => 'Great Baddow', 'country_code' => 'GB'], ['name' => 'Berck-sur-Mer', 'country_code' => 'FR'], ['name' => 'Calera', 'country_code' => 'US'], ['name' => 'Ochakiv', 'country_code' => 'UA'], ['name' => 'Budakeszi', 'country_code' => 'HU'], ['name' => 'Travagliato', 'country_code' => 'IT'], ['name' => 'Sanjiang Nongchang', 'country_code' => 'CN'], ['name' => 'Massaranduba', 'country_code' => 'BR'], ['name' => 'Tolland', 'country_code' => 'US'], ['name' => 'Stein bei Nurnberg', 'country_code' => 'DE'], ['name' => 'Patnanungan', 'country_code' => 'PH'], ['name' => 'Askim', 'country_code' => 'NO'], ['name' => 'Raamsdonk', 'country_code' => 'NL'], ['name' => 'Port Augusta', 'country_code' => 'AU'], ['name' => 'Carmen de Areco', 'country_code' => 'AR'], ['name' => 'Rehlingen-Siersburg', 'country_code' => 'DE'], ['name' => 'Lubbeek', 'country_code' => 'BE'], ['name' => 'Youngsville', 'country_code' => 'US'], ['name' => 'Tayum', 'country_code' => 'PH'], ['name' => 'Candiba', 'country_code' => 'BR'], ['name' => 'Royse City', 'country_code' => 'US'], ['name' => 'Brazopolis', 'country_code' => 'BR'], ['name' => 'Ardestan', 'country_code' => 'IR'], ['name' => 'Farnborough', 'country_code' => 'GB'], ['name' => 'Azalea Park', 'country_code' => 'US'], ['name' => 'Versoix', 'country_code' => 'CH'], ['name' => 'Hulyaypole', 'country_code' => 'UA'], ['name' => 'Pomorie', 'country_code' => 'BG'], ['name' => 'Lauda-Konigshofen', 'country_code' => 'DE'], ['name' => 'Bischofsheim', 'country_code' => 'DE'], ['name' => 'Hartsville', 'country_code' => 'US'], ['name' => 'Worthington', 'country_code' => 'US'], ['name' => 'Zontecomatlan de Lopez y Fuentes', 'country_code' => 'MX'], ['name' => 'Penrith', 'country_code' => 'AU'], ['name' => 'North Fayette', 'country_code' => 'US'], ['name' => 'Gland', 'country_code' => 'CH'], ['name' => 'Ihtiman', 'country_code' => 'BG'], ['name' => ' Alavicheh', 'country_code' => 'IR'], ['name' => 'Troon', 'country_code' => 'GB'], ['name' => 'Mascali', 'country_code' => 'IT'], ['name' => 'Nyagatare', 'country_code' => 'RW'], ['name' => 'Cafelandia', 'country_code' => 'BR'], ['name' => 'Saint-Jacques-de-la-Lande', 'country_code' => 'FR'], ['name' => 'Condoto', 'country_code' => 'CO'], ['name' => 'Brad', 'country_code' => 'RO'], ['name' => 'Bollullos par del Condado', 'country_code' => 'ES'], ['name' => 'General MacArthur', 'country_code' => 'PH'], ['name' => 'Ottweiler', 'country_code' => 'DE'], ['name' => 'Sanderstead', 'country_code' => 'GB'], ['name' => 'Baiersbronn', 'country_code' => 'DE'], ['name' => 'Plerin', 'country_code' => 'FR'], ['name' => 'Abong Mbang', 'country_code' => 'CM'], ['name' => 'Latiano', 'country_code' => 'IT'], ['name' => 'Zollikon', 'country_code' => 'CH'], ['name' => 'Simoes', 'country_code' => 'BR'], ['name' => 'Las Vegas', 'country_code' => 'US'], ['name' => 'Ban Kaeng', 'country_code' => 'TH'], ['name' => 'Alfredo Chaves', 'country_code' => 'BR'], ['name' => 'Bicas', 'country_code' => 'BR'], ['name' => 'Noya', 'country_code' => 'ES'], ['name' => 'Southern Pines', 'country_code' => 'US'], ['name' => 'Goure', 'country_code' => 'NE'], ['name' => 'Cicciano', 'country_code' => 'IT'], ['name' => 'Lopik', 'country_code' => 'NL'], ['name' => 'Djanet', 'country_code' => 'DZ'], ['name' => 'Forster', 'country_code' => 'AU'], ['name' => 'Hershey', 'country_code' => 'US'], ['name' => 'Tepecoyo', 'country_code' => 'SV'], ['name' => 'Berea', 'country_code' => 'US'], ['name' => 'Saraland', 'country_code' => 'US'], ['name' => 'Ipaucu', 'country_code' => 'BR'], ['name' => 'Kuurne', 'country_code' => 'BE'], ['name' => 'El Dorado', 'country_code' => 'US'], ['name' => 'Darlowo', 'country_code' => 'PL'], ['name' => 'Manor', 'country_code' => 'US'], ['name' => 'Williamstown', 'country_code' => 'US'], ['name' => 'Matias Barbosa', 'country_code' => 'BR'], ['name' => 'Chelsfield', 'country_code' => 'GB'], ['name' => 'Jever', 'country_code' => 'DE'], ['name' => 'Eberbach', 'country_code' => 'DE'], ['name' => 'Wilbraham', 'country_code' => 'US'], ['name' => 'Bacuag', 'country_code' => 'PH'], ['name' => 'Paradise Valley', 'country_code' => 'US'], ['name' => 'Radomyshl', 'country_code' => 'UA'], ['name' => 'Santa Maria do Suacui', 'country_code' => 'BR'], ['name' => 'Alzano Lombardo', 'country_code' => 'IT'], ['name' => 'Pastores', 'country_code' => 'GT'], ['name' => 'Klasterec nad Ohri', 'country_code' => 'CZ'], ['name' => 'Pewaukee', 'country_code' => 'US'], ['name' => 'Lapua', 'country_code' => 'FI'], ['name' => 'Washington', 'country_code' => 'US'], ['name' => 'Nafplio', 'country_code' => 'GR'], ['name' => 'Heswall', 'country_code' => 'GB'], ['name' => 'Roncq', 'country_code' => 'FR'], ['name' => 'Urbino', 'country_code' => 'IT'], ['name' => 'Ayt Attou ou L Arbi', 'country_code' => 'MA'], ['name' => 'Priverno', 'country_code' => 'IT'], ['name' => 'Mocha', 'country_code' => 'YE'], ['name' => 'Langwedel', 'country_code' => 'DE'], ['name' => 'Warwick', 'country_code' => 'US'], ['name' => 'Olsberg', 'country_code' => 'DE'], ['name' => 'Windham', 'country_code' => 'US'], ['name' => 'Cadaval', 'country_code' => 'PT'], ['name' => 'Nea Alikarnassos', 'country_code' => 'GR'], ['name' => 'Oschatz', 'country_code' => 'DE'], ['name' => 'Villa Yapacani', 'country_code' => 'BO'], ['name' => 'Rio Branco', 'country_code' => 'UY'], ['name' => 'Majia', 'country_code' => 'CN'], ['name' => 'Bezou', 'country_code' => 'MA'], ['name' => 'Boninal', 'country_code' => 'BR'], ['name' => 'Usti nad Orlici', 'country_code' => 'CZ'], ['name' => 'Saint-Genis-Pouilly', 'country_code' => 'FR'], ['name' => 'Boula wane', 'country_code' => 'MA'], ['name' => 'Gonzalez', 'country_code' => 'US'], ['name' => 'Curua', 'country_code' => 'BR'], ['name' => 'Port Orchard', 'country_code' => 'US'], ['name' => 'Yanhewan', 'country_code' => 'CN'], ['name' => 'San Julian', 'country_code' => 'PH'], ['name' => 'Boa Nova', 'country_code' => 'BR'], ['name' => 'Guaraniacu', 'country_code' => 'BR'], ['name' => 'Forest City', 'country_code' => 'US'], ['name' => 'Apuiares', 'country_code' => 'BR'], ['name' => 'Qazyqurt', 'country_code' => 'KZ'], ['name' => 'Pucioasa', 'country_code' => 'RO'], ['name' => 'Zemamra', 'country_code' => 'MA'], ['name' => 'Santa Branca', 'country_code' => 'BR'], ['name' => 'Breza', 'country_code' => 'BA'], ['name' => 'Tibau do Sul', 'country_code' => 'BR'], ['name' => 'Bosobolo', 'country_code' => 'CD'], ['name' => 'Douarnenez', 'country_code' => 'FR'], ['name' => 'Santa Filomena', 'country_code' => 'BR'], ['name' => 'Muscle Shoals', 'country_code' => 'US'], ['name' => 'Jennings', 'country_code' => 'US'], ['name' => 'Tlayacapan', 'country_code' => 'MX'], ['name' => 'Henderson', 'country_code' => 'US'], ['name' => 'Stanytsia Luhanska', 'country_code' => 'UA'], ['name' => 'Boa Esperanca do Sul', 'country_code' => 'BR'], ['name' => 'Leno', 'country_code' => 'IT'], ['name' => 'Connersville', 'country_code' => 'US'], ['name' => 'Royal Kunia', 'country_code' => 'US'], ['name' => 'Neustadt an der Donau', 'country_code' => 'DE'], ['name' => 'Maxcanu', 'country_code' => 'MX'], ['name' => 'Caldas', 'country_code' => 'BR'], ['name' => 'Much', 'country_code' => 'DE'], ['name' => 'Goonellabah', 'country_code' => 'AU'], ['name' => 'Antequera', 'country_code' => 'PH'], ['name' => 'Tsimlyansk', 'country_code' => 'RU'], ['name' => 'Ust -Ordynskiy', 'country_code' => 'RU'], ['name' => 'Metuchen', 'country_code' => 'US'], ['name' => 'Barra do Mendes', 'country_code' => 'BR'], ['name' => 'Agua Boa', 'country_code' => 'BR'], ['name' => 'Lieusaint', 'country_code' => 'FR'], ['name' => 'Vatra Dornei', 'country_code' => 'RO'], ['name' => 'Kearsley', 'country_code' => 'GB'], ['name' => 'Alterosa', 'country_code' => 'BR'], ['name' => 'Grain Valley', 'country_code' => 'US'], ['name' => 'Milnrow', 'country_code' => 'GB'], ['name' => 'Bad Camberg', 'country_code' => 'DE'], ['name' => 'Villaviciosa', 'country_code' => 'ES'], ['name' => 'Iflissen', 'country_code' => 'DZ'], ['name' => 'Tubod', 'country_code' => 'PH'], ['name' => 'Sopetran', 'country_code' => 'CO'], ['name' => 'Pinhalzinho', 'country_code' => 'BR'], ['name' => 'Mount Dora', 'country_code' => 'US'], ['name' => 'Cefalu', 'country_code' => 'IT'], ['name' => 'Barroquinha', 'country_code' => 'BR'], ['name' => 'Skippack', 'country_code' => 'US'], ['name' => 'Stezzano', 'country_code' => 'IT'], ['name' => 'Langenselbold', 'country_code' => 'DE'], ['name' => 'Worgl', 'country_code' => 'AT'], ['name' => 'Cuevas del Almanzora', 'country_code' => 'ES'], ['name' => 'Uibai', 'country_code' => 'BR'], ['name' => 'Oleggio', 'country_code' => 'IT'], ['name' => 'San Juan', 'country_code' => 'TT'], ['name' => 'Scheemda', 'country_code' => 'NL'], ['name' => 'Orikhiv', 'country_code' => 'UA'], ['name' => 'Lotte', 'country_code' => 'DE'], ['name' => 'Abony', 'country_code' => 'HU'], ['name' => 'Ceres', 'country_code' => 'AR'], ['name' => 'Hola Prystan', 'country_code' => 'UA'], ['name' => 'Squinzano', 'country_code' => 'IT'], ['name' => 'Progreso', 'country_code' => 'MX'], ['name' => 'West Lincoln', 'country_code' => 'CA'], ['name' => 'Dryden', 'country_code' => 'US'], ['name' => 'Liedekerke', 'country_code' => 'BE'], ['name' => 'Krasnyy Kut', 'country_code' => 'RU'], ['name' => 'Pe de Serra', 'country_code' => 'BR'], ['name' => 'Manoel Vitorino', 'country_code' => 'BR'], ['name' => 'Dueville', 'country_code' => 'IT'], ['name' => 'Alausi', 'country_code' => 'EC'], ['name' => 'Wangjiaxian', 'country_code' => 'CN'], ['name' => 'Bo ness', 'country_code' => 'GB'], ['name' => 'Schneeberg', 'country_code' => 'DE'], ['name' => 'Torrijos', 'country_code' => 'ES'], ['name' => 'Fiesole', 'country_code' => 'IT'], ['name' => 'Argentan', 'country_code' => 'FR'], ['name' => 'Glasgow', 'country_code' => 'US'], ['name' => 'Locorotondo', 'country_code' => 'IT'], ['name' => 'Little Falls', 'country_code' => 'US'], ['name' => 'Casinhas', 'country_code' => 'BR'], ['name' => 'Branchburg', 'country_code' => 'US'], ['name' => 'Fraser', 'country_code' => 'US'], ['name' => 'Riedisheim', 'country_code' => 'FR'], ['name' => 'Ourtzagh', 'country_code' => 'MA'], ['name' => 'Rovinj', 'country_code' => 'HR'], ['name' => 'Sun Lakes', 'country_code' => 'US'], ['name' => 'Sidi Azzouz', 'country_code' => 'MA'], ['name' => 'Wilsdruff', 'country_code' => 'DE'], ['name' => 'Corinth', 'country_code' => 'US'], ['name' => 'Ulchin', 'country_code' => 'KR'], ['name' => 'Gernsbach', 'country_code' => 'DE'], ['name' => 'Dimiao', 'country_code' => 'PH'], ['name' => 'Mahinog', 'country_code' => 'PH'], ['name' => 'Hartselle', 'country_code' => 'US'], ['name' => 'East Bridgewater', 'country_code' => 'US'], ['name' => 'Ollioules', 'country_code' => 'FR'], ['name' => 'Matane', 'country_code' => 'CA'], ['name' => 'Arroio dos Ratos', 'country_code' => 'BR'], ['name' => 'Shamalgan', 'country_code' => 'KZ'], ['name' => 'Thonotosassa', 'country_code' => 'US'], ['name' => 'Hanover', 'country_code' => 'US'], ['name' => 'Tagalft', 'country_code' => 'MA'], ['name' => 'Munsingen', 'country_code' => 'DE'], ['name' => 'Zemrane', 'country_code' => 'MA'], ['name' => 'Hlucin', 'country_code' => 'CZ'], ['name' => 'Fostoria', 'country_code' => 'US'], ['name' => 'Tenafly', 'country_code' => 'US'], ['name' => 'Brooks', 'country_code' => 'CA'], ['name' => 'Taggia', 'country_code' => 'IT'], ['name' => 'Amantea', 'country_code' => 'IT'], ['name' => 'Tornesch', 'country_code' => 'DE'], ['name' => 'Immenstadt im Allgau', 'country_code' => 'DE'], ['name' => 'Gargzdai', 'country_code' => 'LT'], ['name' => 'Maisach', 'country_code' => 'DE'], ['name' => 'Caselle Torinese', 'country_code' => 'IT'], ['name' => 'Beekman', 'country_code' => 'US'], ['name' => 'Yamada', 'country_code' => 'JP'], ['name' => 'Sassenberg', 'country_code' => 'DE'], ['name' => 'Zaouiat Moulay Bouchta El Khammar', 'country_code' => 'MA'], ['name' => 'North Strabane', 'country_code' => 'US'], ['name' => 'Chaparral', 'country_code' => 'US'], ['name' => 'Gorssel', 'country_code' => 'NL'], ['name' => 'Polyarnyye Zori', 'country_code' => 'RU'], ['name' => 'Scottsboro', 'country_code' => 'US'], ['name' => 'Cliftonville', 'country_code' => 'GB'], ['name' => 'Ascension', 'country_code' => 'BO'], ['name' => 'Shirebrook', 'country_code' => 'GB'], ['name' => 'Leverano', 'country_code' => 'IT'], ['name' => 'Dippoldiswalde', 'country_code' => 'DE'], ['name' => 'Lockhart', 'country_code' => 'US'], ['name' => 'Middlewich', 'country_code' => 'GB'], ['name' => 'Geldagana', 'country_code' => 'RU'], ['name' => 'Haaren', 'country_code' => 'NL'], ['name' => 'Thibodaux', 'country_code' => 'US'], ['name' => 'Marmeleiro', 'country_code' => 'BR'], ['name' => 'Marostica', 'country_code' => 'IT'], ['name' => 'Igrapiuna', 'country_code' => 'BR'], ['name' => 'Sanpozhen', 'country_code' => 'CN'], ['name' => 'Sainte-Anne-des-Plaines', 'country_code' => 'CA'], ['name' => 'Washington', 'country_code' => 'US'], ['name' => 'Bom Principio', 'country_code' => 'BR'], ['name' => 'Itinga', 'country_code' => 'BR'], ['name' => 'Ilhota', 'country_code' => 'BR'], ['name' => 'Paranhos', 'country_code' => 'BR'], ['name' => 'San Andres Timilpan', 'country_code' => 'MX'], ['name' => 'Sainte-Maxime', 'country_code' => 'FR'], ['name' => 'Port Hedland', 'country_code' => 'AU'], ['name' => 'Fisciano', 'country_code' => 'IT'], ['name' => 'Cotegipe', 'country_code' => 'BR'], ['name' => 'Peumo', 'country_code' => 'CL'], ['name' => 'Taglio', 'country_code' => 'IT'], ['name' => 'Chudovo', 'country_code' => 'RU'], ['name' => 'Hettstedt', 'country_code' => 'DE'], ['name' => 'Beasain', 'country_code' => 'ES'], ['name' => 'Pazar', 'country_code' => 'TR'], ['name' => 'Alginet', 'country_code' => 'ES'], ['name' => 'Bradley Gardens', 'country_code' => 'US'], ['name' => 'Schiffdorf', 'country_code' => 'DE'], ['name' => 'Hanover', 'country_code' => 'US'], ['name' => 'Det Udom', 'country_code' => 'TH'], ['name' => 'Lagangilang', 'country_code' => 'PH'], ['name' => 'San Cristobal', 'country_code' => 'AR'], ['name' => 'Greenlawn', 'country_code' => 'US'], ['name' => 'Wulong', 'country_code' => 'CN'], ['name' => 'Robbinsdale', 'country_code' => 'US'], ['name' => 'Valday', 'country_code' => 'RU'], ['name' => 'Pak Thong Chai', 'country_code' => 'TH'], ['name' => 'Carlopolis', 'country_code' => 'BR'], ['name' => 'Yanshuiguan', 'country_code' => 'CN'], ['name' => 'Eching', 'country_code' => 'DE'], ['name' => 'Tafrant', 'country_code' => 'MA'], ['name' => 'Clewiston', 'country_code' => 'US'], ['name' => 'Feldkirchen', 'country_code' => 'AT'], ['name' => 'Zolote', 'country_code' => 'UA'], ['name' => 'Tounfit', 'country_code' => 'MA'], ['name' => 'Furukawamen', 'country_code' => 'JP'], ['name' => 'Markdorf', 'country_code' => 'DE'], ['name' => 'Rio Piracicaba', 'country_code' => 'BR'], ['name' => 'Abadla', 'country_code' => 'DZ'], ['name' => 'Warren', 'country_code' => 'US'], ['name' => 'Chippewa Falls', 'country_code' => 'US'], ['name' => 'Lakinsk', 'country_code' => 'RU'], ['name' => 'Robbinsville', 'country_code' => 'US'], ['name' => 'Artena', 'country_code' => 'IT'], ['name' => 'West Nipissing / Nipissing Ouest', 'country_code' => 'CA'], ['name' => 'Maurilandia', 'country_code' => 'BR'], ['name' => 'Uslar', 'country_code' => 'DE'], ['name' => 'Ocean View', 'country_code' => 'US'], ['name' => 'Astolfo Dutra', 'country_code' => 'BR'], ['name' => 'Cienega de Flores', 'country_code' => 'MX'], ['name' => 'Glasgow', 'country_code' => 'US'], ['name' => 'Langerwehe', 'country_code' => 'DE'], ['name' => 'Cervignano del Friuli', 'country_code' => 'IT'], ['name' => 'Ostwald', 'country_code' => 'FR'], ['name' => 'Tsukawaki', 'country_code' => 'JP'], ['name' => 'Bridgetown', 'country_code' => 'US'], ['name' => 'Warrington', 'country_code' => 'US'], ['name' => 'Carballino', 'country_code' => 'ES'], ['name' => 'Temsamane', 'country_code' => 'MA'], ['name' => 'Yakhroma', 'country_code' => 'RU'], ['name' => 'Midlothian', 'country_code' => 'US'], ['name' => 'Estremoz', 'country_code' => 'PT'], ['name' => 'Denzlingen', 'country_code' => 'DE'], ['name' => 'Summerfield', 'country_code' => 'US'], ['name' => 'Medvezhyegorsk', 'country_code' => 'RU'], ['name' => 'Koundara', 'country_code' => 'GN'], ['name' => 'Tenerife', 'country_code' => 'CO'], ['name' => 'Eski Ikan', 'country_code' => 'KZ'], ['name' => 'Coronel Bogado', 'country_code' => 'PY'], ['name' => 'El Barrio de la Soledad', 'country_code' => 'MX'], ['name' => 'Bua Yai', 'country_code' => 'TH'], ['name' => 'Cisnadie', 'country_code' => 'RO'], ['name' => 'Hollins', 'country_code' => 'US'], ['name' => 'Schwabmunchen', 'country_code' => 'DE'], ['name' => 'Lebedyn', 'country_code' => 'UA'], ['name' => 'Ban Mae Kaluang', 'country_code' => 'TH'], ['name' => 'Tarumirim', 'country_code' => 'BR'], ['name' => 'Rezzato', 'country_code' => 'IT'], ['name' => 'Takerbouzt', 'country_code' => 'DZ'], ['name' => 'Cristopolis', 'country_code' => 'BR'], ['name' => 'Mountain Home', 'country_code' => 'US'], ['name' => 'Alexander City', 'country_code' => 'US'], ['name' => 'Korneuburg', 'country_code' => 'AT'], ['name' => 'Svetlogorsk', 'country_code' => 'RU'], ['name' => 'Wang anzhen', 'country_code' => 'CN'], ['name' => 'Marechal Floriano', 'country_code' => 'BR'], ['name' => 'Sines', 'country_code' => 'PT'], ['name' => 'Santo Antonio dos Lopes', 'country_code' => 'BR'], ['name' => 'Cambados', 'country_code' => 'ES'], ['name' => 'Frankenberg', 'country_code' => 'DE'], ['name' => 'Camden', 'country_code' => 'US'], ['name' => 'Kashin', 'country_code' => 'RU'], ['name' => 'Tergnier', 'country_code' => 'FR'], ['name' => 'San Marcos', 'country_code' => 'HN'], ['name' => 'Bondeno', 'country_code' => 'IT'], ['name' => 'Matican', 'country_code' => 'XK'], ['name' => 'Dayr al Barsha', 'country_code' => 'EG'], ['name' => 'Otopeni', 'country_code' => 'RO'], ['name' => 'Rosemere', 'country_code' => 'CA'], ['name' => 'Corat', 'country_code' => 'AZ'], ['name' => 'Hooksett', 'country_code' => 'US'], ['name' => 'Maria da Fe', 'country_code' => 'BR'], ['name' => 'Lubsko', 'country_code' => 'PL'], ['name' => 'Toppenish', 'country_code' => 'US'], ['name' => 'Ozark', 'country_code' => 'US'], ['name' => 'Kouroussa', 'country_code' => 'GN'], ['name' => 'Douglas', 'country_code' => 'US'], ['name' => 'Magdiwang', 'country_code' => 'PH'], ['name' => 'Raydah', 'country_code' => 'YE'], ['name' => 'Kawaii', 'country_code' => 'JP'], ['name' => 'Almoloya de Alquisiras', 'country_code' => 'MX'], ['name' => 'Matungao', 'country_code' => 'PH'], ['name' => 'Eastham', 'country_code' => 'GB'], ['name' => 'Santiago Ixtayutla', 'country_code' => 'MX'], ['name' => 'Malone', 'country_code' => 'US'], ['name' => 'Santa Juliana', 'country_code' => 'BR'], ['name' => 'Guape', 'country_code' => 'BR'], ['name' => 'Vinto', 'country_code' => 'BO'], ['name' => 'Sankt Leon-Rot', 'country_code' => 'DE'], ['name' => 'North Auburn', 'country_code' => 'US'], ['name' => 'Hard', 'country_code' => 'AT'], ['name' => 'Juan de Acosta', 'country_code' => 'CO'], ['name' => 'Douar Hammadi', 'country_code' => 'MA'], ['name' => 'Germasogeia', 'country_code' => 'CY'], ['name' => 'Shichinohe', 'country_code' => 'JP'], ['name' => 'Mill Valley', 'country_code' => 'US'], ['name' => 'La Carlota', 'country_code' => 'ES'], ['name' => 'Chalfont Saint Peter', 'country_code' => 'GB'], ['name' => 'Wennigsen', 'country_code' => 'DE'], ['name' => 'Niederzier', 'country_code' => 'DE'], ['name' => 'Pilas', 'country_code' => 'ES'], ['name' => 'Quakenbruck', 'country_code' => 'DE'], ['name' => 'Tamaqua', 'country_code' => 'US'], ['name' => 'Taruma', 'country_code' => 'BR'], ['name' => 'Bickley', 'country_code' => 'GB'], ['name' => 'Mistassini', 'country_code' => 'CA'], ['name' => 'Bou Izakarn', 'country_code' => 'MA'], ['name' => 'Valenca', 'country_code' => 'PT'], ['name' => 'Hatten', 'country_code' => 'DE'], ['name' => 'Destin', 'country_code' => 'US'], ['name' => 'Amriswil', 'country_code' => 'CH'], ['name' => 'Ocher', 'country_code' => 'RU'], ['name' => 'Kivertsi', 'country_code' => 'UA'], ['name' => 'Maridi', 'country_code' => 'SS'], ['name' => 'El Porvenir de Velasco Suarez', 'country_code' => 'MX'], ['name' => 'Zherdevka', 'country_code' => 'RU'], ['name' => 'Hayashima', 'country_code' => 'JP'], ['name' => 'Wittstock', 'country_code' => 'DE'], ['name' => 'Venev', 'country_code' => 'RU'], ['name' => 'Murrhardt', 'country_code' => 'DE'], ['name' => 'West Boldon', 'country_code' => 'GB'], ['name' => 'Ad Dab ah', 'country_code' => 'EG'], ['name' => 'Puspokladany', 'country_code' => 'HU'], ['name' => 'Salida', 'country_code' => 'US'], ['name' => 'Torquay', 'country_code' => 'AU'], ['name' => 'Lewisville', 'country_code' => 'US'], ['name' => 'Sakaki', 'country_code' => 'JP'], ['name' => 'Kings Park West', 'country_code' => 'US'], ['name' => 'Nilo Pecanha', 'country_code' => 'BR'], ['name' => 'Belison', 'country_code' => 'PH'], ['name' => 'Malvik', 'country_code' => 'NO'], ['name' => 'Guia', 'country_code' => 'ES'], ['name' => 'Kaoma', 'country_code' => 'ZM'], ['name' => 'Caln', 'country_code' => 'US'], ['name' => 'Mirinzal', 'country_code' => 'BR'], ['name' => 'Bad Ischl', 'country_code' => 'AT'], ['name' => 'Torre del Campo', 'country_code' => 'ES'], ['name' => 'Eppstein', 'country_code' => 'DE'], ['name' => 'East Wenatchee', 'country_code' => 'US'], ['name' => 'Golub-Dobrzyn', 'country_code' => 'PL'], ['name' => 'Lindenhurst', 'country_code' => 'US'], ['name' => 'Phillipsburg', 'country_code' => 'US'], ['name' => 'Biatorbagy', 'country_code' => 'HU'], ['name' => 'Rio Casca', 'country_code' => 'BR'], ['name' => 'Covington', 'country_code' => 'US'], ['name' => 'Jefferson Valley-Yorktown', 'country_code' => 'US'], ['name' => 'Piquete', 'country_code' => 'BR'], ['name' => 'Rincon', 'country_code' => 'US'], ['name' => 'Baianopolis', 'country_code' => 'BR'], ['name' => 'California City', 'country_code' => 'US'], ['name' => 'Maasbracht', 'country_code' => 'NL'], ['name' => 'Rizal', 'country_code' => 'PH'], ['name' => 'Taos', 'country_code' => 'US'], ['name' => 'Raynham', 'country_code' => 'US'], ['name' => 'Neuenkirchen', 'country_code' => 'DE'], ['name' => 'Marchtrenk', 'country_code' => 'AT'], ['name' => 'Titiribi', 'country_code' => 'CO'], ['name' => 'North Branford', 'country_code' => 'US'], ['name' => 'Porecatu', 'country_code' => 'BR'], ['name' => 'Beilen', 'country_code' => 'NL'], ['name' => 'Hopatcong', 'country_code' => 'US'], ['name' => 'Puerto Deseado', 'country_code' => 'AR'], ['name' => 'Nafpaktos', 'country_code' => 'GR'], ['name' => 'Hidalgo', 'country_code' => 'US'], ['name' => 'Isny im Allgau', 'country_code' => 'DE'], ['name' => 'Kadena', 'country_code' => 'JP'], ['name' => 'Nannestad', 'country_code' => 'NO'], ['name' => 'Fokino', 'country_code' => 'RU'], ['name' => 'Cambridge', 'country_code' => 'US'], ['name' => 'Abensberg', 'country_code' => 'DE'], ['name' => 'Gardendale', 'country_code' => 'US'], ['name' => 'Mucambo', 'country_code' => 'BR'], ['name' => 'Antioch', 'country_code' => 'US'], ['name' => 'Uitgeest', 'country_code' => 'NL'], ['name' => 'Veglie', 'country_code' => 'IT'], ['name' => 'Engenheiro Paulo de Frontin', 'country_code' => 'BR'], ['name' => 'Bou Fekrane', 'country_code' => 'MA'], ['name' => 'Grand Falls', 'country_code' => 'CA'], ['name' => 'Rheinfelden', 'country_code' => 'CH'], ['name' => 'Olgiate Olona', 'country_code' => 'IT'], ['name' => 'Kerben', 'country_code' => 'KG'], ['name' => 'Lakoucun', 'country_code' => 'CN'], ['name' => 'Nioaque', 'country_code' => 'BR'], ['name' => 'Ipiranga', 'country_code' => 'BR'], ['name' => 'Zimnicea', 'country_code' => 'RO'], ['name' => 'Kakunodatemachi', 'country_code' => 'JP'], ['name' => 'Grunstadt', 'country_code' => 'DE'], ['name' => 'Santa Luzia do Itanhy', 'country_code' => 'BR'], ['name' => 'San Ferdinando di Puglia', 'country_code' => 'IT'], ['name' => 'Knottingley', 'country_code' => 'GB'], ['name' => 'Satoraljaujhely', 'country_code' => 'HU'], ['name' => 'New Paltz', 'country_code' => 'US'], ['name' => 'Astravyets', 'country_code' => 'BY'], ['name' => 'Johnson City', 'country_code' => 'US'], ['name' => 'Itaguacu', 'country_code' => 'BR'], ['name' => 'Novoulyanovsk', 'country_code' => 'RU'], ['name' => 'Kisanuki', 'country_code' => 'JP'], ['name' => 'Balangiga', 'country_code' => 'PH'], ['name' => 'Narvik', 'country_code' => 'NO'], ['name' => 'Fara in Sabina', 'country_code' => 'IT'], ['name' => 'Hendersonville', 'country_code' => 'US'], ['name' => 'Clearview', 'country_code' => 'CA'], ['name' => 'Seabrook', 'country_code' => 'US'], ['name' => 'Nelas', 'country_code' => 'PT'], ['name' => 'Mashpee', 'country_code' => 'US'], ['name' => 'Eynesil', 'country_code' => 'TR'], ['name' => 'Crowley', 'country_code' => 'US'], ['name' => 'Sidi Abdelkarim', 'country_code' => 'MA'], ['name' => 'Sauk Rapids', 'country_code' => 'US'], ['name' => 'Mapanas', 'country_code' => 'PH'], ['name' => 'Boutilimit', 'country_code' => 'MR'], ['name' => 'Vetralla', 'country_code' => 'IT'], ['name' => 'Greendale', 'country_code' => 'US'], ['name' => 'Bedford', 'country_code' => 'US'], ['name' => 'Mayrtup', 'country_code' => 'RU'], ['name' => 'Lubben (Spreewald)', 'country_code' => 'DE'], ['name' => 'Anatuya', 'country_code' => 'AR'], ['name' => 'Emerald', 'country_code' => 'AU'], ['name' => 'Canals', 'country_code' => 'ES'], ['name' => 'Lockhart', 'country_code' => 'US'], ['name' => 'New Franklin', 'country_code' => 'US'], ['name' => 'Tamm', 'country_code' => 'DE'], ['name' => 'Vohringen', 'country_code' => 'DE'], ['name' => 'Leuna', 'country_code' => 'DE'], ['name' => 'Chelsea', 'country_code' => 'US'], ['name' => 'Larena', 'country_code' => 'PH'], ['name' => 'Crissiumal', 'country_code' => 'BR'], ['name' => 'Ionia', 'country_code' => 'US'], ['name' => 'Pineville', 'country_code' => 'US'], ['name' => 'Grafing bei Munchen', 'country_code' => 'DE'], ['name' => 'Suluktu', 'country_code' => 'KG'], ['name' => 'Lukoyanov', 'country_code' => 'RU'], ['name' => 'Torokbalint', 'country_code' => 'HU'], ['name' => 'Aldenhoven', 'country_code' => 'DE'], ['name' => 'Cheadle', 'country_code' => 'GB'], ['name' => 'Tostedt', 'country_code' => 'DE'], ['name' => 'Tempio Pausania', 'country_code' => 'IT'], ['name' => 'Iona', 'country_code' => 'US'], ['name' => 'Ystrad Mynach', 'country_code' => 'GB'], ['name' => 'Patrocinio Paulista', 'country_code' => 'BR'], ['name' => 'Villalba', 'country_code' => 'ES'], ['name' => 'Castelsarrasin', 'country_code' => 'FR'], ['name' => 'Cleveland', 'country_code' => 'US'], ['name' => 'Cabo Verde', 'country_code' => 'BR'], ['name' => 'Greensburg', 'country_code' => 'US'], ['name' => 'Bebra', 'country_code' => 'DE'], ['name' => 'Middleburg', 'country_code' => 'US'], ['name' => 'Santiago de Anaya', 'country_code' => 'MX'], ['name' => 'Bamble', 'country_code' => 'NO'], ['name' => 'Zhipingxiang', 'country_code' => 'CN'], ['name' => 'Montabaur', 'country_code' => 'DE'], ['name' => 'Aracatu', 'country_code' => 'BR'], ['name' => 'Harrison', 'country_code' => 'US'], ['name' => 'Villacidro', 'country_code' => 'IT'], ['name' => 'Bergschenhoek', 'country_code' => 'NL'], ['name' => 'Gouveia', 'country_code' => 'PT'], ['name' => 'Paraiso do Norte', 'country_code' => 'BR'], ['name' => 'Sarezzo', 'country_code' => 'IT'], ['name' => 'Mjolby', 'country_code' => 'SE'], ['name' => 'Chesterton', 'country_code' => 'US'], ['name' => 'Maria', 'country_code' => 'PH'], ['name' => 'Steamboat Springs', 'country_code' => 'US'], ['name' => 'St. Clair', 'country_code' => 'CA'], ['name' => 'Talwat', 'country_code' => 'MA'], ['name' => 'Holzgerlingen', 'country_code' => 'DE'], ['name' => 'Sweden', 'country_code' => 'US'], ['name' => 'Black Forest', 'country_code' => 'US'], ['name' => 'Lomas de Sargentillo', 'country_code' => 'EC'], ['name' => 'Fort Payne', 'country_code' => 'US'], ['name' => 'Casatenovo', 'country_code' => 'IT'], ['name' => 'Moudjbara', 'country_code' => 'DZ'], ['name' => 'Schmolln', 'country_code' => 'DE'], ['name' => 'Oberhaching', 'country_code' => 'DE'], ['name' => 'Montepulciano', 'country_code' => 'IT'], ['name' => 'Castel San Giovanni', 'country_code' => 'IT'], ['name' => 'Aleksandrow Kujawski', 'country_code' => 'PL'], ['name' => 'Cherry Hill Mall', 'country_code' => 'US'], ['name' => 'Fruitville', 'country_code' => 'US'], ['name' => 'Mor', 'country_code' => 'HU'], ['name' => 'Wanding', 'country_code' => 'CN'], ['name' => 'Lakewood Park', 'country_code' => 'US'], ['name' => 'Rio de Oro', 'country_code' => 'CO'], ['name' => 'El Carmen de Atrato', 'country_code' => 'CO'], ['name' => 'Sao Joao do Araguaia', 'country_code' => 'BR'], ['name' => 'Guazacapan', 'country_code' => 'GT'], ['name' => 'Galmi', 'country_code' => 'NE'], ['name' => 'Callaway', 'country_code' => 'US'], ['name' => 'Oatfield', 'country_code' => 'US'], ['name' => 'Phalaborwa', 'country_code' => 'ZA'], ['name' => 'Kalkar', 'country_code' => 'DE'], ['name' => 'Beylul', 'country_code' => 'ER'], ['name' => 'Muggia', 'country_code' => 'IT'], ['name' => 'Pomfret', 'country_code' => 'US'], ['name' => 'Cordoba', 'country_code' => 'CO'], ['name' => 'Waunakee', 'country_code' => 'US'], ['name' => 'Famenin', 'country_code' => 'IR'], ['name' => 'Wixom', 'country_code' => 'US'], ['name' => 'Luling', 'country_code' => 'US'], ['name' => 'Canton', 'country_code' => 'US'], ['name' => 'La Puebla', 'country_code' => 'ES'], ['name' => 'Chumpak', 'country_code' => 'CN'], ['name' => 'Sanlucar la Mayor', 'country_code' => 'ES'], ['name' => 'Eggenfelden', 'country_code' => 'DE'], ['name' => 'Genthin', 'country_code' => 'DE'], ['name' => 'Pell City', 'country_code' => 'US'], ['name' => 'Lariano', 'country_code' => 'IT'], ['name' => 'Belm', 'country_code' => 'DE'], ['name' => 'Pecos', 'country_code' => 'US'], ['name' => 'Sampaloc', 'country_code' => 'PH'], ['name' => 'Taiyong', 'country_code' => 'CN'], ['name' => 'Peabiru', 'country_code' => 'BR'], ['name' => 'Bay St. Louis', 'country_code' => 'US'], ['name' => 'Biscarrosse', 'country_code' => 'FR'], ['name' => 'Huangyadong', 'country_code' => 'CN'], ['name' => 'Gisborne', 'country_code' => 'AU'], ['name' => 'La Entrada', 'country_code' => 'HN'], ['name' => 'Vieste', 'country_code' => 'IT'], ['name' => 'Mittegrossefehn', 'country_code' => 'DE'], ['name' => 'Belle Chasse', 'country_code' => 'US'], ['name' => 'Trubchevsk', 'country_code' => 'RU'], ['name' => 'Thala', 'country_code' => 'TN'], ['name' => 'Havre de Grace', 'country_code' => 'US'], ['name' => 'Montesarchio', 'country_code' => 'IT'], ['name' => 'Taishi', 'country_code' => 'JP'], ['name' => 'Monroe', 'country_code' => 'US'], ['name' => 'East Norriton', 'country_code' => 'US'], ['name' => 'Ovidiu', 'country_code' => 'RO'], ['name' => 'Statte', 'country_code' => 'IT'], ['name' => 'D Iberville', 'country_code' => 'US'], ['name' => 'Ibiraci', 'country_code' => 'BR'], ['name' => 'Cayce', 'country_code' => 'US'], ['name' => 'Chodov', 'country_code' => 'CZ'], ['name' => 'Effingham', 'country_code' => 'US'], ['name' => 'Santaquin', 'country_code' => 'US'], ['name' => 'Guapo', 'country_code' => 'BR'], ['name' => 'Hobe Sound', 'country_code' => 'US'], ['name' => 'Misano Adriatico', 'country_code' => 'IT'], ['name' => 'Dubovka', 'country_code' => 'RU'], ['name' => 'Santo Augusto', 'country_code' => 'BR'], ['name' => 'Alto Alegre dos Parecis', 'country_code' => 'BR'], ['name' => 'Zeven', 'country_code' => 'DE'], ['name' => 'Acala', 'country_code' => 'MX'], ['name' => 'Tako', 'country_code' => 'JP'], ['name' => 'Uxbridge', 'country_code' => 'US'], ['name' => 'Wauchula', 'country_code' => 'US'], ['name' => 'Colesville', 'country_code' => 'US'], ['name' => 'Canmore', 'country_code' => 'CA'], ['name' => 'Vianopolis', 'country_code' => 'BR'], ['name' => 'Goshen', 'country_code' => 'US'], ['name' => 'Ivai', 'country_code' => 'BR'], ['name' => 'Dayton', 'country_code' => 'US'], ['name' => 'Reidsville', 'country_code' => 'US'], ['name' => 'Ban Bang Non', 'country_code' => 'TH'], ['name' => 'Engenheiro Beltrao', 'country_code' => 'BR'], ['name' => 'Hutchinson', 'country_code' => 'US'], ['name' => 'Beesel', 'country_code' => 'NL'], ['name' => 'Dallas', 'country_code' => 'US'], ['name' => 'Plumstead', 'country_code' => 'US'], ['name' => 'Mambore', 'country_code' => 'BR'], ['name' => 'Wanzleben', 'country_code' => 'DE'], ['name' => 'Spiesen-Elversberg', 'country_code' => 'DE'], ['name' => 'Oxford', 'country_code' => 'US'], ['name' => 'Noyon', 'country_code' => 'FR'], ['name' => 'Toplita', 'country_code' => 'RO'], ['name' => 'Pacaembu', 'country_code' => 'BR'], ['name' => 'Asslar', 'country_code' => 'DE'], ['name' => 'Kiskoros', 'country_code' => 'HU'], ['name' => 'Beacon', 'country_code' => 'US'], ['name' => 'Primeira Cruz', 'country_code' => 'BR'], ['name' => 'Ipswich', 'country_code' => 'US'], ['name' => 'Dumas', 'country_code' => 'US'], ['name' => 'Raymondville', 'country_code' => 'US'], ['name' => 'Anapurus', 'country_code' => 'BR'], ['name' => 'Frederick', 'country_code' => 'US'], ['name' => 'Novellara', 'country_code' => 'IT'], ['name' => 'Artesia', 'country_code' => 'US'], ['name' => 'Valbonne', 'country_code' => 'FR'], ['name' => 'Polotitlan de la Ilustracion', 'country_code' => 'MX'], ['name' => 'New Fairfield', 'country_code' => 'US'], ['name' => 'Ban Bang Sai', 'country_code' => 'TH'], ['name' => 'Soller', 'country_code' => 'ES'], ['name' => 'Fagnano Olona', 'country_code' => 'IT'], ['name' => 'Ping anbao', 'country_code' => 'CN'], ['name' => 'North Mankato', 'country_code' => 'US'], ['name' => 'Tucacas', 'country_code' => 'VE'], ['name' => 'Ielmo Marinho', 'country_code' => 'BR'], ['name' => 'Lithgow', 'country_code' => 'AU'], ['name' => 'Meckenbeuren', 'country_code' => 'DE'], ['name' => 'Shawangunk', 'country_code' => 'US'], ['name' => 'Mar de Ajo', 'country_code' => 'AR'], ['name' => 'Maracai', 'country_code' => 'BR'], ['name' => 'Dennis', 'country_code' => 'US'], ['name' => 'Glenpool', 'country_code' => 'US'], ['name' => 'Oil City', 'country_code' => 'US'], ['name' => 'Clinton', 'country_code' => 'US'], ['name' => 'Brejo do Cruz', 'country_code' => 'BR'], ['name' => 'Gien', 'country_code' => 'FR'], ['name' => 'Hammonton', 'country_code' => 'US'], ['name' => 'Orange', 'country_code' => 'US'], ['name' => 'New Kingman-Butler', 'country_code' => 'US'], ['name' => 'Tracunhaem', 'country_code' => 'BR'], ['name' => 'Newhaven', 'country_code' => 'GB'], ['name' => 'Nidzica', 'country_code' => 'PL'], ['name' => 'Dalkeith', 'country_code' => 'GB'], ['name' => 'Kamigori', 'country_code' => 'JP'], ['name' => 'Diego de Almagro', 'country_code' => 'CL'], ['name' => 'Deming', 'country_code' => 'US'], ['name' => 'Oulad Chikh', 'country_code' => 'MA'], ['name' => 'Big Rapids', 'country_code' => 'US'], ['name' => 'Zhovkva', 'country_code' => 'UA'], ['name' => 'Miami Springs', 'country_code' => 'US'], ['name' => 'San Prisco', 'country_code' => 'IT'], ['name' => 'Itapetim', 'country_code' => 'BR'], ['name' => 'Pirallahi', 'country_code' => 'AZ'], ['name' => 'Fulshear', 'country_code' => 'US'], ['name' => 'Miraima', 'country_code' => 'BR'], ['name' => 'Cromwell', 'country_code' => 'US'], ['name' => 'South Venice', 'country_code' => 'US'], ['name' => 'Khmis Sidi al Aydi', 'country_code' => 'MA'], ['name' => 'Ataleia', 'country_code' => 'BR'], ['name' => 'Demerval Lobao', 'country_code' => 'BR'], ['name' => 'Chaoyangdicun', 'country_code' => 'CN'], ['name' => 'Gaesti', 'country_code' => 'RO'], ['name' => 'Douar Lehgagcha', 'country_code' => 'MA'], ['name' => 'Allouez', 'country_code' => 'US'], ['name' => 'Princeton', 'country_code' => 'US'], ['name' => 'Valburg', 'country_code' => 'NL'], ['name' => 'Baraboo', 'country_code' => 'US'], ['name' => 'Gura Humorului', 'country_code' => 'RO'], ['name' => 'Zhashkiv', 'country_code' => 'UA'], ['name' => 'Lanuvio', 'country_code' => 'IT'], ['name' => 'Cavarzere', 'country_code' => 'IT'], ['name' => 'Jericho', 'country_code' => 'US'], ['name' => 'North Battleford', 'country_code' => 'CA'], ['name' => 'Salisbury', 'country_code' => 'US'], ['name' => 'Kauhajoki', 'country_code' => 'FI'], ['name' => 'Wanze', 'country_code' => 'BE'], ['name' => 'Philippsburg', 'country_code' => 'DE'], ['name' => 'Erbach', 'country_code' => 'DE'], ['name' => 'Rustington', 'country_code' => 'GB'], ['name' => 'Pembroke', 'country_code' => 'CA'], ['name' => 'Jinmingsi', 'country_code' => 'CN'], ['name' => 'El Sobrante', 'country_code' => 'US'], ['name' => 'Schwaz', 'country_code' => 'AT'], ['name' => 'Cahokia', 'country_code' => 'US'], ['name' => 'Niquinohomo', 'country_code' => 'NI'], ['name' => 'Springdale', 'country_code' => 'US'], ['name' => 'Oak Island', 'country_code' => 'US'], ['name' => 'Saint-Gilles', 'country_code' => 'FR'], ['name' => 'Melsungen', 'country_code' => 'DE'], ['name' => 'Gramercy', 'country_code' => 'US'], ['name' => 'Atlantic Beach', 'country_code' => 'US'], ['name' => 'Zabreh', 'country_code' => 'CZ'], ['name' => 'Hassfurt', 'country_code' => 'DE'], ['name' => 'Guapi', 'country_code' => 'CO'], ['name' => 'Teays Valley', 'country_code' => 'US'], ['name' => 'Ephrata', 'country_code' => 'US'], ['name' => 'Sant Angelo Lodigiano', 'country_code' => 'IT'], ['name' => 'Oosterzele', 'country_code' => 'BE'], ['name' => 'Oak Park', 'country_code' => 'US'], ['name' => 'Uruana', 'country_code' => 'BR'], ['name' => 'Ban Tha Luang Lang', 'country_code' => 'TH'], ['name' => 'Arcozelo', 'country_code' => 'PT'], ['name' => 'Santa Cruz de Bezana', 'country_code' => 'ES'], ['name' => 'Couvin', 'country_code' => 'BE'], ['name' => 'Zacualpan', 'country_code' => 'MX'], ['name' => 'Saddle Brook', 'country_code' => 'US'], ['name' => 'Horodyshche', 'country_code' => 'UA'], ['name' => 'San Pietro Vernotico', 'country_code' => 'IT'], ['name' => 'Apostolove', 'country_code' => 'UA'], ['name' => 'Richmond Hill', 'country_code' => 'US'], ['name' => 'Forlimpopoli', 'country_code' => 'IT'], ['name' => 'Peri-Mirim', 'country_code' => 'BR'], ['name' => 'Granville', 'country_code' => 'FR'], ['name' => 'Brandermill', 'country_code' => 'US'], ['name' => 'Sao Jose do Cedro', 'country_code' => 'BR'], ['name' => 'Joaquim Pires', 'country_code' => 'BR'], ['name' => 'Machados', 'country_code' => 'BR'], ['name' => 'Latisana', 'country_code' => 'IT'], ['name' => 'Yamanobe', 'country_code' => 'JP'], ['name' => 'Berre-l Etang', 'country_code' => 'FR'], ['name' => 'Alagoinha', 'country_code' => 'BR'], ['name' => 'Jupi', 'country_code' => 'BR'], ['name' => 'Lamas', 'country_code' => 'PE'], ['name' => 'Sedriano', 'country_code' => 'IT'], ['name' => 'Ak-Dovurak', 'country_code' => 'RU'], ['name' => 'Lich', 'country_code' => 'DE'], ['name' => 'Great Driffield', 'country_code' => 'GB'], ['name' => 'Rutherford', 'country_code' => 'AU'], ['name' => 'Llanera', 'country_code' => 'ES'], ['name' => 'Calanogas', 'country_code' => 'PH'], ['name' => 'Forrest City', 'country_code' => 'US'], ['name' => 'Sun Village', 'country_code' => 'US'], ['name' => 'Vilanova del Cami', 'country_code' => 'ES'], ['name' => 'Santana do Matos', 'country_code' => 'BR'], ['name' => 'San Agustin de Guadalix', 'country_code' => 'ES'], ['name' => 'Arzachena', 'country_code' => 'IT'], ['name' => 'Crispiano', 'country_code' => 'IT'], ['name' => 'Jardin', 'country_code' => 'CO'], ['name' => 'Eichstatt', 'country_code' => 'DE'], ['name' => 'Bokod', 'country_code' => 'PH'], ['name' => 'Moorestown-Lenola', 'country_code' => 'US'], ['name' => 'Melenki', 'country_code' => 'RU'], ['name' => 'Mwinilunga', 'country_code' => 'ZM'], ['name' => 'Heliopolis', 'country_code' => 'BR'], ['name' => 'Wayland', 'country_code' => 'US'], ['name' => 'Neckargemund', 'country_code' => 'DE'], ['name' => 'Zarghun Shahr', 'country_code' => 'AF'], ['name' => 'Bovenden', 'country_code' => 'DE'], ['name' => 'Jindayris', 'country_code' => 'SY'], ['name' => 'Marienheide', 'country_code' => 'DE'], ['name' => 'Lauterbach', 'country_code' => 'DE'], ['name' => 'Pelham', 'country_code' => 'US'], ['name' => 'Fergus Falls', 'country_code' => 'US'], ['name' => 'Passa e Fica', 'country_code' => 'BR'], ['name' => 'Wlodawa', 'country_code' => 'PL'], ['name' => 'Verin', 'country_code' => 'ES'], ['name' => 'Spaichingen', 'country_code' => 'DE'], ['name' => 'Dores do Indaia', 'country_code' => 'BR'], ['name' => 'Angermunde', 'country_code' => 'DE'], ['name' => 'Ampthill', 'country_code' => 'GB'], ['name' => 'Selston', 'country_code' => 'GB'], ['name' => 'Feliz', 'country_code' => 'BR'], ['name' => 'Aurora', 'country_code' => 'US'], ['name' => 'Kupino', 'country_code' => 'RU'], ['name' => 'Ponduru', 'country_code' => 'IN'], ['name' => 'Chiran', 'country_code' => 'JP'], ['name' => 'Pedro Afonso', 'country_code' => 'BR'], ['name' => 'Mont-Laurier', 'country_code' => 'CA'], ['name' => 'Munchenstein', 'country_code' => 'CH'], ['name' => 'Ahrensfelde', 'country_code' => 'DE'], ['name' => 'Forres', 'country_code' => 'GB'], ['name' => 'Goldap', 'country_code' => 'PL'], ['name' => 'Hilpoltstein', 'country_code' => 'DE'], ['name' => 'San Vicente', 'country_code' => 'PH'], ['name' => 'La Quiaca', 'country_code' => 'AR'], ['name' => 'Conneaut', 'country_code' => 'US'], ['name' => 'Nether Providence', 'country_code' => 'US'], ['name' => 'Mansidao', 'country_code' => 'BR'], ['name' => 'Biedenkopf', 'country_code' => 'DE'], ['name' => 'Chalette-sur-Loing', 'country_code' => 'FR'], ['name' => 'Sao Ludgero', 'country_code' => 'BR'], ['name' => 'Tenente Portela', 'country_code' => 'BR'], ['name' => 'Bollene', 'country_code' => 'FR'], ['name' => 'Thomaston', 'country_code' => 'US'], ['name' => 'Otley', 'country_code' => 'GB'], ['name' => 'Strathmore', 'country_code' => 'CA'], ['name' => 'Virgem da Lapa', 'country_code' => 'BR'], ['name' => 'Abre Campo', 'country_code' => 'BR'], ['name' => 'Levelland', 'country_code' => 'US'], ['name' => 'Bandarbeyla', 'country_code' => 'SO'], ['name' => 'Filandia', 'country_code' => 'CO'], ['name' => 'Mbulu', 'country_code' => 'TZ'], ['name' => 'Grunberg', 'country_code' => 'DE'], ['name' => 'Jaguapita', 'country_code' => 'BR'], ['name' => 'Palmetto', 'country_code' => 'US'], ['name' => 'Neunkirchen', 'country_code' => 'DE'], ['name' => 'Puxinana', 'country_code' => 'BR'], ['name' => 'Piney Green', 'country_code' => 'US'], ['name' => 'Caledon', 'country_code' => 'ZA'], ['name' => 'Xireg', 'country_code' => 'CN'], ['name' => 'Fort Campbell North', 'country_code' => 'US'], ['name' => 'Schoonhoven', 'country_code' => 'NL'], ['name' => 'Camponogara', 'country_code' => 'IT'], ['name' => 'Millbury', 'country_code' => 'US'], ['name' => 'Mangha', 'country_code' => 'CN'], ['name' => 'Andarai', 'country_code' => 'BR'], ['name' => 'Motupe', 'country_code' => 'PE'], ['name' => 'Cumnock', 'country_code' => 'GB'], ['name' => 'Cobh', 'country_code' => 'IE'], ['name' => 'Kuleshovka', 'country_code' => 'RU'], ['name' => 'Altos del Rosario', 'country_code' => 'CO'], ['name' => 'Pierrelatte', 'country_code' => 'FR'], ['name' => 'Jimbolia', 'country_code' => 'RO'], ['name' => 'Alleroy', 'country_code' => 'RU'], ['name' => 'Schermbeck', 'country_code' => 'DE'], ['name' => 'Bergen', 'country_code' => 'DE'], ['name' => 'Conceicao do Rio Verde', 'country_code' => 'BR'], ['name' => 'Massaranduba', 'country_code' => 'BR'], ['name' => 'Blegny', 'country_code' => 'BE'], ['name' => 'Torredonjimeno', 'country_code' => 'ES'], ['name' => 'Tamsaout', 'country_code' => 'MA'], ['name' => 'San Pedro Pochutla', 'country_code' => 'MX'], ['name' => 'Vedi', 'country_code' => 'AM'], ['name' => 'Saugeen Shores', 'country_code' => 'CA'], ['name' => 'Camapua', 'country_code' => 'BR'], ['name' => 'Quatipuru', 'country_code' => 'BR'], ['name' => 'Margraten', 'country_code' => 'NL'], ['name' => 'Wells', 'country_code' => 'GB'], ['name' => 'Hickory Hills', 'country_code' => 'US'], ['name' => 'Quartucciu', 'country_code' => 'IT'], ['name' => 'Khomam', 'country_code' => 'IR'], ['name' => 'Meruoca', 'country_code' => 'BR'], ['name' => 'Quata', 'country_code' => 'BR'], ['name' => 'Robinson', 'country_code' => 'US'], ['name' => 'Hinabangan', 'country_code' => 'PH'], ['name' => 'Beach Park', 'country_code' => 'US'], ['name' => 'Burglengenfeld', 'country_code' => 'DE'], ['name' => 'Bully-les-Mines', 'country_code' => 'FR'], ['name' => 'General Carneiro', 'country_code' => 'BR'], ['name' => 'Winsum', 'country_code' => 'NL'], ['name' => 'East Milton', 'country_code' => 'US'], ['name' => 'Satuba', 'country_code' => 'BR'], ['name' => 'Grammichele', 'country_code' => 'IT'], ['name' => 'Hunxe', 'country_code' => 'DE'], ['name' => 'Tomino', 'country_code' => 'ES'], ['name' => 'Fontenay-le-Comte', 'country_code' => 'FR'], ['name' => 'Weissenhorn', 'country_code' => 'DE'], ['name' => 'Dishashah', 'country_code' => 'EG'], ['name' => 'Sharonville', 'country_code' => 'US'], ['name' => 'Lappersdorf', 'country_code' => 'DE'], ['name' => 'Santa Marcela', 'country_code' => 'PH'], ['name' => 'Cacequi', 'country_code' => 'BR'], ['name' => 'West Freehold', 'country_code' => 'US'], ['name' => 'Middlesex', 'country_code' => 'US'], ['name' => 'Thompson', 'country_code' => 'CA'], ['name' => 'Lagoa da Confusao', 'country_code' => 'BR'], ['name' => 'Quierschied', 'country_code' => 'DE'], ['name' => 'San Jorge', 'country_code' => 'GT'], ['name' => 'Castelfranco di Sotto', 'country_code' => 'IT'], ['name' => 'Spring Creek', 'country_code' => 'US'], ['name' => 'St. James', 'country_code' => 'US'], ['name' => 'Vigodarzere', 'country_code' => 'IT'], ['name' => 'Nikolayevsk', 'country_code' => 'RU'], ['name' => 'Maumee', 'country_code' => 'US'], ['name' => 'Caldeirao Grande', 'country_code' => 'BR'], ['name' => 'Alto Parana', 'country_code' => 'BR'], ['name' => 'Lawrenceburg', 'country_code' => 'US'], ['name' => 'Brevard', 'country_code' => 'US'], ['name' => 'Saint-Paul-les-Dax', 'country_code' => 'FR'], ['name' => 'Erbach', 'country_code' => 'DE'], ['name' => 'Sao Pedro do Piaui', 'country_code' => 'BR'], ['name' => 'Bad Laasphe', 'country_code' => 'DE'], ['name' => 'Salzano', 'country_code' => 'IT'], ['name' => 'Sternberk', 'country_code' => 'CZ'], ['name' => 'Beyne-Heusay', 'country_code' => 'BE'], ['name' => 'Ad Duraykish', 'country_code' => 'SY'], ['name' => 'Rio Vermelho', 'country_code' => 'BR'], ['name' => 'Lavaltrie', 'country_code' => 'CA'], ['name' => 'Bowral', 'country_code' => 'AU'], ['name' => 'Lengede', 'country_code' => 'DE'], ['name' => 'Rottingdean', 'country_code' => 'GB'], ['name' => 'Glubczyce', 'country_code' => 'PL'], ['name' => 'Ixcatepec', 'country_code' => 'MX'], ['name' => 'Nicosia', 'country_code' => 'IT'], ['name' => 'Gran', 'country_code' => 'NO'], ['name' => 'Arcadia', 'country_code' => 'US'], ['name' => 'Sunjiayan', 'country_code' => 'CN'], ['name' => 'Lorsch', 'country_code' => 'DE'], ['name' => 'Bridport', 'country_code' => 'GB'], ['name' => 'Hosbach', 'country_code' => 'DE'], ['name' => 'San Martino di Lupari', 'country_code' => 'IT'], ['name' => 'Santa Luzia', 'country_code' => 'BR'], ['name' => 'Adams', 'country_code' => 'US'], ['name' => 'Talne', 'country_code' => 'UA'], ['name' => 'San Marco in Lamis', 'country_code' => 'IT'], ['name' => 'Cajabamba', 'country_code' => 'PE'], ['name' => 'Mirabela', 'country_code' => 'BR'], ['name' => 'Trogir', 'country_code' => 'HR'], ['name' => 'Crevalcore', 'country_code' => 'IT'], ['name' => 'Kirchheim bei Munchen', 'country_code' => 'DE'], ['name' => 'Afir', 'country_code' => 'DZ'], ['name' => 'Rio de Contas', 'country_code' => 'BR'], ['name' => 'Broxburn', 'country_code' => 'GB'], ['name' => 'Montefiascone', 'country_code' => 'IT'], ['name' => 'Zelzate', 'country_code' => 'BE'], ['name' => 'Vicovu de Sus', 'country_code' => 'RO'], ['name' => 'Samorin', 'country_code' => 'SK'], ['name' => 'Beverstedt', 'country_code' => 'DE'], ['name' => 'Saint-Martin-de-Crau', 'country_code' => 'FR'], ['name' => 'Kastoria', 'country_code' => 'GR'], ['name' => 'Hersham', 'country_code' => 'GB'], ['name' => 'Soddy-Daisy', 'country_code' => 'US'], ['name' => 'Melilli', 'country_code' => 'IT'], ['name' => 'Terra Boa', 'country_code' => 'BR'], ['name' => 'Moberly', 'country_code' => 'US'], ['name' => 'Plougastel-Daoulas', 'country_code' => 'FR'], ['name' => 'Bacup', 'country_code' => 'GB'], ['name' => 'Port Clinton', 'country_code' => 'US'], ['name' => 'Zhukovo', 'country_code' => 'RU'], ['name' => 'Hochstadt an der Aisch', 'country_code' => 'DE'], ['name' => 'Canton', 'country_code' => 'US'], ['name' => 'Agua Blanca', 'country_code' => 'GT'], ['name' => 'San Javier', 'country_code' => 'AR'], ['name' => 'Aguas Vermelhas', 'country_code' => 'BR'], ['name' => 'Grez-Doiceau', 'country_code' => 'BE'], ['name' => 'San Gennaro Vesuviano', 'country_code' => 'IT'], ['name' => 'Waianae', 'country_code' => 'US'], ['name' => 'Qingxicun', 'country_code' => 'CN'], ['name' => 'Vadnais Heights', 'country_code' => 'US'], ['name' => 'Wood Dale', 'country_code' => 'US'], ['name' => 'Panukulan', 'country_code' => 'PH'], ['name' => 'Montespertoli', 'country_code' => 'IT'], ['name' => 'Haaren', 'country_code' => 'DE'], ['name' => 'Brecksville', 'country_code' => 'US'], ['name' => 'Wolsztyn', 'country_code' => 'PL'], ['name' => 'Frias', 'country_code' => 'AR'], ['name' => 'Bad Soden-Salmunster', 'country_code' => 'DE'], ['name' => 'Eichenau', 'country_code' => 'DE'], ['name' => 'Saarwellingen', 'country_code' => 'DE'], ['name' => 'Aghbala', 'country_code' => 'MA'], ['name' => 'Dakit', 'country_code' => 'PH'], ['name' => 'New Providence', 'country_code' => 'US'], ['name' => 'Maribondo', 'country_code' => 'BR'], ['name' => 'Radnevo', 'country_code' => 'BG'], ['name' => 'Betanzos', 'country_code' => 'ES'], ['name' => 'Quatis', 'country_code' => 'BR'], ['name' => 'Krumbach', 'country_code' => 'DE'], ['name' => 'Ettenheim', 'country_code' => 'DE'], ['name' => 'Alexandria', 'country_code' => 'BR'], ['name' => 'Kaharlyk', 'country_code' => 'UA'], ['name' => 'El Barco de Valdeorras', 'country_code' => 'ES'], ['name' => 'Shiloh', 'country_code' => 'US'], ['name' => 'Pfullendorf', 'country_code' => 'DE'], ['name' => 'Shangping', 'country_code' => 'CN'], ['name' => 'Rantoul', 'country_code' => 'US'], ['name' => 'High River', 'country_code' => 'CA'], ['name' => 'Colonial Park', 'country_code' => 'US'], ['name' => 'Serra Branca', 'country_code' => 'BR'], ['name' => 'Tomar do Geru', 'country_code' => 'BR'], ['name' => 'Bagulin', 'country_code' => 'PH'], ['name' => 'Drobak', 'country_code' => 'NO'], ['name' => 'Manerbio', 'country_code' => 'IT'], ['name' => 'Tianguistengo', 'country_code' => 'MX'], ['name' => 'Spiez', 'country_code' => 'CH'], ['name' => 'Broadlands', 'country_code' => 'US'], ['name' => 'Marly', 'country_code' => 'FR'], ['name' => 'Shepshed', 'country_code' => 'GB'], ['name' => 'Barra do Ribeiro', 'country_code' => 'BR'], ['name' => 'Presidente Bernardes', 'country_code' => 'BR'], ['name' => 'Boston', 'country_code' => 'PH'], ['name' => 'Cha da Alegria', 'country_code' => 'BR'], ['name' => 'Mqam at Tolba', 'country_code' => 'MA'], ['name' => 'Feldbach', 'country_code' => 'AT'], ['name' => 'Genas', 'country_code' => 'FR'], ['name' => 'Lourdes', 'country_code' => 'FR'], ['name' => 'Mario Campos', 'country_code' => 'BR'], ['name' => 'Kingston', 'country_code' => 'US'], ['name' => 'Talanga', 'country_code' => 'HN'], ['name' => 'Washington', 'country_code' => 'US'], ['name' => 'Hazel Crest', 'country_code' => 'US'], ['name' => 'Price', 'country_code' => 'US'], ['name' => 'Vitry-le-Francois', 'country_code' => 'FR'], ['name' => 'LaBelle', 'country_code' => 'US'], ['name' => 'Arruda dos Vinhos', 'country_code' => 'PT'], ['name' => 'Reeuwijk', 'country_code' => 'NL'], ['name' => 'Trebur', 'country_code' => 'DE'], ['name' => 'Creutzwald', 'country_code' => 'FR'], ['name' => 'Nesebar', 'country_code' => 'BG'], ['name' => 'Panchgani', 'country_code' => 'IN'], ['name' => 'Vernouillet', 'country_code' => 'FR'], ['name' => 'Santa Coloma de Farnes', 'country_code' => 'ES'], ['name' => 'Eloxochitlan', 'country_code' => 'MX'], ['name' => 'Charlton', 'country_code' => 'US'], ['name' => 'Landau an der Isar', 'country_code' => 'DE'], ['name' => 'Carluke', 'country_code' => 'GB'], ['name' => 'Urupes', 'country_code' => 'BR'], ['name' => 'Ilamatlan', 'country_code' => 'MX'], ['name' => 'Chanaral', 'country_code' => 'CL'], ['name' => 'Calderara di Reno', 'country_code' => 'IT'], ['name' => 'Alpena', 'country_code' => 'US'], ['name' => 'Halsteren', 'country_code' => 'NL'], ['name' => 'Knittelfeld', 'country_code' => 'AT'], ['name' => 'Flint', 'country_code' => 'GB'], ['name' => 'Chateaudun', 'country_code' => 'FR'], ['name' => 'Roudnice nad Labem', 'country_code' => 'CZ'], ['name' => 'Loningen', 'country_code' => 'DE'], ['name' => 'Ketsch', 'country_code' => 'DE'], ['name' => 'Manuel Ribas', 'country_code' => 'BR'], ['name' => 'Tezze sul Brenta', 'country_code' => 'IT'], ['name' => 'Patti', 'country_code' => 'IT'], ['name' => 'Ribeirao do Pinhal', 'country_code' => 'BR'], ['name' => 'Busra al Harir', 'country_code' => 'SY'], ['name' => 'Kussnacht', 'country_code' => 'CH'], ['name' => 'Dok Kham Tai', 'country_code' => 'TH'], ['name' => 'Gricignano d Aversa', 'country_code' => 'IT'], ['name' => 'Conway', 'country_code' => 'US'], ['name' => 'Kettering', 'country_code' => 'US'], ['name' => 'Woudenberg', 'country_code' => 'NL'], ['name' => 'Llanes', 'country_code' => 'ES'], ['name' => 'Mayenne', 'country_code' => 'FR'], ['name' => 'Manati', 'country_code' => 'CO'], ['name' => 'Rocky Point', 'country_code' => 'US'], ['name' => 'Ainsdale', 'country_code' => 'GB'], ['name' => 'Kissane Ltouqi', 'country_code' => 'MA'], ['name' => 'Castelnuovo di Verona', 'country_code' => 'IT'], ['name' => 'Loreto', 'country_code' => 'IT'], ['name' => 'Sant Sadurni d Anoia', 'country_code' => 'ES'], ['name' => 'Casale sul Sile', 'country_code' => 'IT'], ['name' => 'Neunkirchen', 'country_code' => 'AT'], ['name' => 'Pervomaysk', 'country_code' => 'RU'], ['name' => 'Lavello', 'country_code' => 'IT'], ['name' => 'Elizabethton', 'country_code' => 'US'], ['name' => 'Ficarazzi', 'country_code' => 'IT'], ['name' => 'Miranorte', 'country_code' => 'BR'], ['name' => 'Wauconda', 'country_code' => 'US'], ['name' => 'Lake Forest Park', 'country_code' => 'US'], ['name' => 'Aconibe', 'country_code' => 'GQ'], ['name' => 'Quattro Castella', 'country_code' => 'IT'], ['name' => 'Gex', 'country_code' => 'FR'], ['name' => 'Ban Chorakhe Samphan', 'country_code' => 'TH'], ['name' => 'Nules', 'country_code' => 'ES'], ['name' => 'Vicuna', 'country_code' => 'CL'], ['name' => 'Schuttorf', 'country_code' => 'DE'], ['name' => 'Brunn am Gebirge', 'country_code' => 'AT'], ['name' => 'Zehdenick', 'country_code' => 'DE'], ['name' => 'Avenal', 'country_code' => 'US'], ['name' => 'Buchloe', 'country_code' => 'DE'], ['name' => 'Fereydunshahr', 'country_code' => 'IR'], ['name' => 'Rogers', 'country_code' => 'US'], ['name' => 'Formello', 'country_code' => 'IT'], ['name' => 'Maasbree', 'country_code' => 'NL'], ['name' => 'Kaspi', 'country_code' => 'GE'], ['name' => 'Marshall', 'country_code' => 'US'], ['name' => 'Mechtras', 'country_code' => 'DZ'], ['name' => 'Rionero in Vulture', 'country_code' => 'IT'], ['name' => 'Champasak', 'country_code' => 'LA'], ['name' => 'Standish', 'country_code' => 'GB'], ['name' => 'Varzea Nova', 'country_code' => 'BR'], ['name' => 'Saint-Orens-de-Gameville', 'country_code' => 'FR'], ['name' => 'Jensen Beach', 'country_code' => 'US'], ['name' => 'Jimboomba', 'country_code' => 'AU'], ['name' => 'Uttoxeter', 'country_code' => 'GB'], ['name' => 'Fruita', 'country_code' => 'US'], ['name' => 'Homosassa Springs', 'country_code' => 'US'], ['name' => 'Severn', 'country_code' => 'CA'], ['name' => 'Paripueira', 'country_code' => 'BR'], ['name' => 'Mutterstadt', 'country_code' => 'DE'], ['name' => 'Friedland', 'country_code' => 'DE'], ['name' => 'Middlesborough', 'country_code' => 'US'], ['name' => 'Bad Durrheim', 'country_code' => 'DE'], ['name' => 'Tahannawt', 'country_code' => 'MA'], ['name' => 'Harnes', 'country_code' => 'FR'], ['name' => 'Costessey', 'country_code' => 'GB'], ['name' => 'Itaguara', 'country_code' => 'BR'], ['name' => 'Les Ponts-de-Ce', 'country_code' => 'FR'], ['name' => 'Wake', 'country_code' => 'JP'], ['name' => 'Wehr', 'country_code' => 'DE'], ['name' => 'Red Oak', 'country_code' => 'US'], ['name' => 'Olivehurst', 'country_code' => 'US'], ['name' => 'Big Bear City', 'country_code' => 'US'], ['name' => 'Aguilar', 'country_code' => 'ES'], ['name' => 'Martinho Campos', 'country_code' => 'BR'], ['name' => 'Pont-Sainte-Maxence', 'country_code' => 'FR'], ['name' => 'Brig-Glis', 'country_code' => 'CH'], ['name' => 'Marion', 'country_code' => 'US'], ['name' => 'Wernau', 'country_code' => 'DE'], ['name' => 'Muisne', 'country_code' => 'EC'], ['name' => 'Rommerskirchen', 'country_code' => 'DE'], ['name' => 'San Jacinto del Cauca', 'country_code' => 'CO'], ['name' => 'Alexandria', 'country_code' => 'GB'], ['name' => 'Khoyniki', 'country_code' => 'BY'], ['name' => 'Fortuna', 'country_code' => 'US'], ['name' => 'Santa Fe', 'country_code' => 'US'], ['name' => 'North Valley', 'country_code' => 'US'], ['name' => 'Chiampo', 'country_code' => 'IT'], ['name' => 'Schinnen', 'country_code' => 'NL'], ['name' => 'Ruza', 'country_code' => 'RU'], ['name' => 'Giporlos', 'country_code' => 'PH'], ['name' => 'Tagoloan', 'country_code' => 'PH'], ['name' => 'Lindale', 'country_code' => 'US'], ['name' => 'Oboyan', 'country_code' => 'RU'], ['name' => 'Verona', 'country_code' => 'US'], ['name' => 'Capaci', 'country_code' => 'IT'], ['name' => 'Akhty', 'country_code' => 'RU'], ['name' => 'Keerbergen', 'country_code' => 'BE'], ['name' => 'Englewood', 'country_code' => 'US'], ['name' => 'Lakeland South', 'country_code' => 'US'], ['name' => 'Washington', 'country_code' => 'US'], ['name' => 'Le Relecq-Kerhuon', 'country_code' => 'FR'], ['name' => 'Jasper', 'country_code' => 'US'], ['name' => 'Golyshmanovo', 'country_code' => 'RU'], ['name' => 'Balchik', 'country_code' => 'BG'], ['name' => 'Short Hills', 'country_code' => 'US'], ['name' => 'Calcinaia', 'country_code' => 'IT'], ['name' => 'Huron', 'country_code' => 'US'], ['name' => 'Arroio do Tigre', 'country_code' => 'BR'], ['name' => 'Amilly', 'country_code' => 'FR'], ['name' => 'Itapui', 'country_code' => 'BR'], ['name' => 'Tauberbischofsheim', 'country_code' => 'DE'], ['name' => 'El Tabo', 'country_code' => 'CL'], ['name' => 'Sault Ste. Marie', 'country_code' => 'US'], ['name' => 'Nemours', 'country_code' => 'FR'], ['name' => 'Bollnas', 'country_code' => 'SE'], ['name' => 'Te Awamutu', 'country_code' => 'NZ'], ['name' => 'Saka', 'country_code' => 'JP'], ['name' => 'Serrolandia', 'country_code' => 'BR'], ['name' => 'Espita', 'country_code' => 'MX'], ['name' => 'Qigexingcun', 'country_code' => 'CN'], ['name' => 'Plattling', 'country_code' => 'DE'], ['name' => 'Colac', 'country_code' => 'AU'], ['name' => 'Mijdrecht', 'country_code' => 'NL'], ['name' => 'Paso de los Toros', 'country_code' => 'UY'], ['name' => 'Andover', 'country_code' => 'US'], ['name' => 'Rosas', 'country_code' => 'CO'], ['name' => 'Santa Maria a Monte', 'country_code' => 'IT'], ['name' => 'Buchs', 'country_code' => 'CH'], ['name' => 'Luis Antonio', 'country_code' => 'BR'], ['name' => 'Dossenheim', 'country_code' => 'DE'], ['name' => 'Gmunden', 'country_code' => 'AT'], ['name' => 'Zelenodolsk', 'country_code' => 'UA'], ['name' => 'Matsushima', 'country_code' => 'JP'], ['name' => 'Brookside', 'country_code' => 'US'], ['name' => 'Sison', 'country_code' => 'PH'], ['name' => 'Veyrier', 'country_code' => 'CH'], ['name' => 'South Park Township', 'country_code' => 'US'], ['name' => 'South Park', 'country_code' => 'US'], ['name' => 'Arara', 'country_code' => 'BR'], ['name' => 'Tachov', 'country_code' => 'CZ'], ['name' => 'Mountain Park', 'country_code' => 'US'], ['name' => 'Carpenedolo', 'country_code' => 'IT'], ['name' => 'Ubstadt-Weiher', 'country_code' => 'DE'], ['name' => 'Varazze', 'country_code' => 'IT'], ['name' => 'Gourock', 'country_code' => 'GB'], ['name' => 'Shanyincun', 'country_code' => 'CN'], ['name' => 'Carpinteria', 'country_code' => 'US'], ['name' => 'Grimstad', 'country_code' => 'NO'], ['name' => 'Gueret', 'country_code' => 'FR'], ['name' => 'Mogeiro', 'country_code' => 'BR'], ['name' => 'Joaquin V. Gonzalez', 'country_code' => 'AR'], ['name' => 'San Jose de Maipo', 'country_code' => 'CL'], ['name' => 'Besigheim', 'country_code' => 'DE'], ['name' => 'Glenn Heights', 'country_code' => 'US'], ['name' => 'Pegnitz', 'country_code' => 'DE'], ['name' => 'Ribeira Brava', 'country_code' => 'PT'], ['name' => 'Powell', 'country_code' => 'US'], ['name' => 'Sainte-Sophie', 'country_code' => 'CA'], ['name' => 'Itagi', 'country_code' => 'BR'], ['name' => 'Palombara Sabina', 'country_code' => 'IT'], ['name' => 'Cavallino', 'country_code' => 'IT'], ['name' => 'Autun', 'country_code' => 'FR'], ['name' => 'Plouzane', 'country_code' => 'FR'], ['name' => 'Friesenheim', 'country_code' => 'DE'], ['name' => 'Rodental', 'country_code' => 'DE'], ['name' => 'Wasserburg am Inn', 'country_code' => 'DE'], ['name' => 'Lyndhurst', 'country_code' => 'US'], ['name' => 'North Walsham', 'country_code' => 'GB'], ['name' => 'Cesky Krumlov', 'country_code' => 'CZ'], ['name' => 'Artondale', 'country_code' => 'US'], ['name' => 'Yakage', 'country_code' => 'JP'], ['name' => 'Glenn Dale', 'country_code' => 'US'], ['name' => 'Western Springs', 'country_code' => 'US'], ['name' => 'Okmulgee', 'country_code' => 'US'], ['name' => 'Luderitz', 'country_code' => 'NA'], ['name' => 'Campo de Criptana', 'country_code' => 'ES'], ['name' => 'DeRidder', 'country_code' => 'US'], ['name' => 'Sarria', 'country_code' => 'ES'], ['name' => 'Azle', 'country_code' => 'US'], ['name' => 'Newtown', 'country_code' => 'US'], ['name' => 'Bugugoucun', 'country_code' => 'CN'], ['name' => 'Vidalia', 'country_code' => 'US'], ['name' => 'Swansea', 'country_code' => 'US'], ['name' => 'Moss Point', 'country_code' => 'US'], ['name' => 'Nordestina', 'country_code' => 'BR'], ['name' => 'Fort Morgan', 'country_code' => 'US'], ['name' => 'Moissac', 'country_code' => 'FR'], ['name' => 'Itirucu', 'country_code' => 'BR'], ['name' => 'Dardenne Prairie', 'country_code' => 'US'], ['name' => 'Sudbury', 'country_code' => 'GB'], ['name' => 'Tanagura', 'country_code' => 'JP'], ['name' => 'Castiglion Fiorentino', 'country_code' => 'IT'], ['name' => 'Bischwiller', 'country_code' => 'FR'], ['name' => 'Bad Salzdetfurth', 'country_code' => 'DE'], ['name' => 'Moorreesburg', 'country_code' => 'ZA'], ['name' => 'Porto Recanati', 'country_code' => 'IT'], ['name' => 'Jitauna', 'country_code' => 'BR'], ['name' => 'As', 'country_code' => 'CZ'], ['name' => 'Ubach over Worms', 'country_code' => 'NL'], ['name' => 'Trebaseleghe', 'country_code' => 'IT'], ['name' => 'River Ridge', 'country_code' => 'US'], ['name' => 'Neustadt', 'country_code' => 'DE'], ['name' => 'Kasumkent', 'country_code' => 'RU'], ['name' => 'Newark', 'country_code' => 'US'], ['name' => 'Cremlingen', 'country_code' => 'DE'], ['name' => 'Dinklage', 'country_code' => 'DE'], ['name' => 'Aubergenville', 'country_code' => 'FR'], ['name' => 'Van Buren', 'country_code' => 'US'], ['name' => 'Sitio do Mato', 'country_code' => 'BR'], ['name' => 'Retirolandia', 'country_code' => 'BR'], ['name' => 'Puerto San Martin', 'country_code' => 'AR'], ['name' => 'Buenos Aires', 'country_code' => 'BR'], ['name' => 'Nong Khae', 'country_code' => 'TH'], ['name' => 'Tocumbo', 'country_code' => 'MX'], ['name' => 'Medway', 'country_code' => 'US'], ['name' => 'Reggada', 'country_code' => 'MA'], ['name' => 'Mounds View', 'country_code' => 'US'], ['name' => 'Dalby', 'country_code' => 'AU'], ['name' => 'Boudenib', 'country_code' => 'MA'], ['name' => 'Chiroqchi', 'country_code' => 'UZ'], ['name' => 'Imbau', 'country_code' => 'BR'], ['name' => 'Jefferson', 'country_code' => 'US'], ['name' => 'Saint-Charles-Borromee', 'country_code' => 'CA'], ['name' => 'Zella-Mehlis', 'country_code' => 'DE'], ['name' => 'Kerepestarcsa', 'country_code' => 'HU'], ['name' => 'Capo d Orlando', 'country_code' => 'IT'], ['name' => 'Hullhorst', 'country_code' => 'DE'], ['name' => 'Velen', 'country_code' => 'DE'], ['name' => 'Carros', 'country_code' => 'FR'], ['name' => 'Nosivka', 'country_code' => 'UA'], ['name' => 'Berkeley Heights', 'country_code' => 'US'], ['name' => 'Portage La Prairie', 'country_code' => 'CA'], ['name' => 'Cocotitlan', 'country_code' => 'MX'], ['name' => 'Ruti', 'country_code' => 'CH'], ['name' => 'Wiesmoor', 'country_code' => 'DE'], ['name' => 'Santo Nino', 'country_code' => 'PH'], ['name' => 'Usumatlan', 'country_code' => 'GT'], ['name' => 'Rochester', 'country_code' => 'US'], ['name' => 'Solana Beach', 'country_code' => 'US'], ['name' => 'Borodyanka', 'country_code' => 'UA'], ['name' => 'Kiiminki', 'country_code' => 'FI'], ['name' => 'Sendenhorst', 'country_code' => 'DE'], ['name' => 'Nesconset', 'country_code' => 'US'], ['name' => 'Richton Park', 'country_code' => 'US'], ['name' => 'Franconia', 'country_code' => 'US'], ['name' => 'Seravezza', 'country_code' => 'IT'], ['name' => 'Mogocha', 'country_code' => 'RU'], ['name' => 'Montegranaro', 'country_code' => 'IT'], ['name' => 'Slobozhanske', 'country_code' => 'UA'], ['name' => 'Beyla', 'country_code' => 'GN'], ['name' => 'Calcinato', 'country_code' => 'IT'], ['name' => 'Svirsk', 'country_code' => 'RU'], ['name' => 'Trzebnica', 'country_code' => 'PL'], ['name' => 'Comines', 'country_code' => 'FR'], ['name' => 'Cairo Montenotte', 'country_code' => 'IT'], ['name' => 'Herbrechtingen', 'country_code' => 'DE'], ['name' => 'Mahao', 'country_code' => 'CN'], ['name' => 'Palos Verdes Estates', 'country_code' => 'US'], ['name' => 'Pontecorvo', 'country_code' => 'IT'], ['name' => 'Manching', 'country_code' => 'DE'], ['name' => 'Chulumani', 'country_code' => 'BO'], ['name' => 'Ulvila', 'country_code' => 'FI'], ['name' => 'Novouzensk', 'country_code' => 'RU'], ['name' => 'Esneux', 'country_code' => 'BE'], ['name' => 'Gvardeysk', 'country_code' => 'RU'], ['name' => 'El Kansera', 'country_code' => 'MA'], ['name' => 'Richland', 'country_code' => 'US'], ['name' => 'San Biagio di Callalta', 'country_code' => 'IT'], ['name' => 'Woodinville', 'country_code' => 'US'], ['name' => 'Serra Azul', 'country_code' => 'BR'], ['name' => 'Leonforte', 'country_code' => 'IT'], ['name' => 'Bergen', 'country_code' => 'NL'], ['name' => 'Sillamae', 'country_code' => 'EE'], ['name' => 'Ostringen', 'country_code' => 'DE'], ['name' => 'Agdangan', 'country_code' => 'PH'], ['name' => 'Manorville', 'country_code' => 'US'], ['name' => 'Damaishan', 'country_code' => 'CN'], ['name' => 'Tamahu', 'country_code' => 'GT'], ['name' => 'Apricena', 'country_code' => 'IT'], ['name' => 'Beverungen', 'country_code' => 'DE'], ['name' => 'Bellefontaine', 'country_code' => 'US'], ['name' => 'Andkhoy', 'country_code' => 'AF'], ['name' => 'Lapinig', 'country_code' => 'PH'], ['name' => 'Timberlake', 'country_code' => 'US'], ['name' => 'Kent', 'country_code' => 'US'], ['name' => 'Morbegno', 'country_code' => 'IT'], ['name' => 'Chigwell', 'country_code' => 'GB'], ['name' => 'Sabinov', 'country_code' => 'SK'], ['name' => 'Ban Tat', 'country_code' => 'TH'], ['name' => 'Al Muzayrib', 'country_code' => 'SY'], ['name' => 'Picana', 'country_code' => 'ES'], ['name' => 'Channahon', 'country_code' => 'US'], ['name' => 'Port Royal', 'country_code' => 'US'], ['name' => 'Verona', 'country_code' => 'US'], ['name' => 'Ceyu', 'country_code' => 'CN'], ['name' => 'Plaza Huincul', 'country_code' => 'AR'], ['name' => 'Bensville', 'country_code' => 'US'], ['name' => 'Ocna Mures', 'country_code' => 'RO'], ['name' => 'Bolintin Vale', 'country_code' => 'RO'], ['name' => 'Rossdorf', 'country_code' => 'DE'], ['name' => 'Clayton', 'country_code' => 'US'], ['name' => 'East Islip', 'country_code' => 'US'], ['name' => 'Affoltern am Albis', 'country_code' => 'CH'], ['name' => 'Odoorn', 'country_code' => 'NL'], ['name' => 'Razlog', 'country_code' => 'BG'], ['name' => 'Raffadali', 'country_code' => 'IT'], ['name' => 'Vila Pouca de Aguiar', 'country_code' => 'PT'], ['name' => 'Weilburg', 'country_code' => 'DE'], ['name' => 'Vasylivka', 'country_code' => 'UA'], ['name' => 'Uropa', 'country_code' => 'BR'], ['name' => 'Stamboliyski', 'country_code' => 'BG'], ['name' => 'Asjen', 'country_code' => 'MA'], ['name' => 'New Ulm', 'country_code' => 'US'], ['name' => 'La Queue-en-Brie', 'country_code' => 'FR'], ['name' => 'Farmington', 'country_code' => 'US'], ['name' => 'Harrow on the Hill', 'country_code' => 'GB'], ['name' => 'Nova Londrina', 'country_code' => 'BR'], ['name' => 'Monteux', 'country_code' => 'FR'], ['name' => 'Somain', 'country_code' => 'FR'], ['name' => 'Barsbuttel', 'country_code' => 'DE'], ['name' => 'Ansiao', 'country_code' => 'PT'], ['name' => 'Bridgnorth', 'country_code' => 'GB'], ['name' => 'Miranda do Corvo', 'country_code' => 'PT'], ['name' => 'Barrafranca', 'country_code' => 'IT'], ['name' => 'Balatonfured', 'country_code' => 'HU'], ['name' => 'Oncativo', 'country_code' => 'AR'], ['name' => 'Tatarikan', 'country_code' => 'PH'], ['name' => 'Jurua', 'country_code' => 'BR'], ['name' => 'Huguan Nongchang', 'country_code' => 'CN'], ['name' => 'Yzeure', 'country_code' => 'FR'], ['name' => 'Belev', 'country_code' => 'RU'], ['name' => 'Newington', 'country_code' => 'US'], ['name' => 'Spilamberto', 'country_code' => 'IT'], ['name' => 'Baker', 'country_code' => 'US'], ['name' => 'Mazatlan Villa de Flores', 'country_code' => 'MX'], ['name' => 'Thames Centre', 'country_code' => 'CA'], ['name' => 'Alora', 'country_code' => 'ES'], ['name' => 'Presidente Janio Quadros', 'country_code' => 'BR'], ['name' => 'Krasnozavodsk', 'country_code' => 'RU'], ['name' => 'Ceuti', 'country_code' => 'ES'], ['name' => 'Yvetot', 'country_code' => 'FR'], ['name' => 'Monte Belo', 'country_code' => 'BR'], ['name' => 'Cedar Lake', 'country_code' => 'US'], ['name' => 'Singuilucan', 'country_code' => 'MX'], ['name' => 'Globe', 'country_code' => 'US'], ['name' => 'Newton', 'country_code' => 'US'], ['name' => 'Uyar', 'country_code' => 'RU'], ['name' => 'Wolfhagen', 'country_code' => 'DE'], ['name' => 'Sankt Georgen im Schwarzwald', 'country_code' => 'DE'], ['name' => 'Campiglia Marittima', 'country_code' => 'IT'], ['name' => 'Warrenville', 'country_code' => 'US'], ['name' => 'Banos', 'country_code' => 'EC'], ['name' => 'Barentin', 'country_code' => 'FR'], ['name' => 'Abrera', 'country_code' => 'ES'], ['name' => 'Lower Moreland', 'country_code' => 'US'], ['name' => 'Terrasini Favarotta', 'country_code' => 'IT'], ['name' => 'Mississippi Mills', 'country_code' => 'CA'], ['name' => 'Bonyhad', 'country_code' => 'HU'], ['name' => 'Schleiden', 'country_code' => 'DE'], ['name' => 'Spreitenbach', 'country_code' => 'CH'], ['name' => 'Monteprandone', 'country_code' => 'IT'], ['name' => 'Zabaykalsk', 'country_code' => 'RU'], ['name' => 'Luis Alves', 'country_code' => 'BR'], ['name' => 'Hockessin', 'country_code' => 'US'], ['name' => 'Powell River', 'country_code' => 'CA'], ['name' => 'Sete Barras', 'country_code' => 'BR'], ['name' => 'Waltershausen', 'country_code' => 'DE'], ['name' => 'Velykodolynske', 'country_code' => 'UA'], ['name' => 'Petushki', 'country_code' => 'RU'], ['name' => 'L Union', 'country_code' => 'FR'], ['name' => 'Rendon', 'country_code' => 'US'], ['name' => 'South Glengarry', 'country_code' => 'CA'], ['name' => 'Adygeysk', 'country_code' => 'RU'], ['name' => 'Noeux-les-Mines', 'country_code' => 'FR'], ['name' => 'Sidi Yahia', 'country_code' => 'MA'], ['name' => 'Hajdusamson', 'country_code' => 'HU'], ['name' => 'Balneario do Rincao', 'country_code' => 'BR'], ['name' => 'Adi Keyh', 'country_code' => 'ER'], ['name' => 'Sandpoint', 'country_code' => 'US'], ['name' => 'Loveland', 'country_code' => 'US'], ['name' => 'Missoes', 'country_code' => 'BR'], ['name' => 'Bedburg', 'country_code' => 'DE'], ['name' => 'Yavoriv', 'country_code' => 'UA'], ['name' => 'Raymond Terrace', 'country_code' => 'AU'], ['name' => 'Bolsover', 'country_code' => 'GB'], ['name' => 'Avigliana', 'country_code' => 'IT'], ['name' => 'Trenton', 'country_code' => 'US'], ['name' => 'Sali', 'country_code' => 'DZ'], ['name' => 'Izium', 'country_code' => 'UA'], ['name' => 'Tapiratiba', 'country_code' => 'BR'], ['name' => 'Qulan', 'country_code' => 'KZ'], ['name' => 'Abaran', 'country_code' => 'ES'], ['name' => 'Strunino', 'country_code' => 'RU'], ['name' => 'Coolidge', 'country_code' => 'US'], ['name' => 'North Perth', 'country_code' => 'CA'], ['name' => 'Kaspiyskiy', 'country_code' => 'RU'], ['name' => 'North Palm Beach', 'country_code' => 'US'], ['name' => 'Piratininga', 'country_code' => 'BR'], ['name' => 'Schodack', 'country_code' => 'US'], ['name' => 'Balsa Nova', 'country_code' => 'BR'], ['name' => 'Seclin', 'country_code' => 'FR'], ['name' => 'Pine', 'country_code' => 'US'], ['name' => 'Mercier', 'country_code' => 'CA'], ['name' => 'Stoughton', 'country_code' => 'US'], ['name' => 'Mount Vernon', 'country_code' => 'US'], ['name' => 'Milha', 'country_code' => 'BR'], ['name' => 'South Stormont', 'country_code' => 'CA'], ['name' => 'Aubenas', 'country_code' => 'FR'], ['name' => 'Warrensville Heights', 'country_code' => 'US'], ['name' => 'Nossa Senhora do Livramento', 'country_code' => 'BR'], ['name' => 'Olen', 'country_code' => 'BE'], ['name' => 'Scheessel', 'country_code' => 'DE'], ['name' => 'Barssel', 'country_code' => 'DE'], ['name' => 'Worthington', 'country_code' => 'US'], ['name' => 'Plover', 'country_code' => 'US'], ['name' => 'Villecresnes', 'country_code' => 'FR'], ['name' => 'Goiatins', 'country_code' => 'BR'], ['name' => 'Arcachon', 'country_code' => 'FR'], ['name' => 'Martinsville', 'country_code' => 'US'], ['name' => 'Ksar Sghir', 'country_code' => 'MA'], ['name' => 'Honggu', 'country_code' => 'CN'], ['name' => 'Chos Malal', 'country_code' => 'AR'], ['name' => 'Wickede', 'country_code' => 'DE'], ['name' => 'Song Phi Nong', 'country_code' => 'TH'], ['name' => 'Ciudad Insurgentes', 'country_code' => 'MX'], ['name' => 'Mahomet', 'country_code' => 'US'], ['name' => 'Oftersheim', 'country_code' => 'DE'], ['name' => 'Olfen', 'country_code' => 'DE'], ['name' => 'Lagoa Dourada', 'country_code' => 'BR'], ['name' => 'Tonosho', 'country_code' => 'JP'], ['name' => 'Governador Dix-Sept Rosado', 'country_code' => 'BR'], ['name' => 'Superior', 'country_code' => 'US'], ['name' => 'Oxford', 'country_code' => 'US'], ['name' => 'Sarrebourg', 'country_code' => 'FR'], ['name' => 'Antonio Prado', 'country_code' => 'BR'], ['name' => 'Cusset', 'country_code' => 'FR'], ['name' => 'Noceto', 'country_code' => 'IT'], ['name' => 'Lone Tree', 'country_code' => 'US'], ['name' => 'Montgomeryville', 'country_code' => 'US'], ['name' => 'Bagnolo Mella', 'country_code' => 'IT'], ['name' => 'East Greenwich', 'country_code' => 'US'], ['name' => 'South Daytona', 'country_code' => 'US'], ['name' => 'Saint-Colomban', 'country_code' => 'CA'], ['name' => 'Macara', 'country_code' => 'EC'], ['name' => 'Claye-Souilly', 'country_code' => 'FR'], ['name' => 'Riverdale', 'country_code' => 'US'], ['name' => 'Pingtiancun', 'country_code' => 'CN'], ['name' => 'Lumberton', 'country_code' => 'US'], ['name' => 'Villas', 'country_code' => 'US'], ['name' => 'York', 'country_code' => 'US'], ['name' => 'Brenes', 'country_code' => 'ES'], ['name' => 'Herzberg am Harz', 'country_code' => 'DE'], ['name' => 'Sebt Bni Garfett', 'country_code' => 'MA'], ['name' => 'Celakovice', 'country_code' => 'CZ'], ['name' => 'Treuchtlingen', 'country_code' => 'DE'], ['name' => 'Moody', 'country_code' => 'US'], ['name' => 'Chernigovka', 'country_code' => 'RU'], ['name' => 'Notodden', 'country_code' => 'NO'], ['name' => 'Frecheirinha', 'country_code' => 'BR'], ['name' => 'McPherson', 'country_code' => 'US'], ['name' => 'Stolin', 'country_code' => 'BY'], ['name' => 'Alaverdi', 'country_code' => 'AM'], ['name' => 'Tetiiv', 'country_code' => 'UA'], ['name' => 'Hersbruck', 'country_code' => 'DE'], ['name' => 'Auriol', 'country_code' => 'FR'], ['name' => 'Vieira do Minho', 'country_code' => 'PT'], ['name' => 'Rothenbach an der Pegnitz', 'country_code' => 'DE'], ['name' => 'Lacombe', 'country_code' => 'CA'], ['name' => 'Honiton', 'country_code' => 'GB'], ['name' => 'Alcacer do Sal', 'country_code' => 'PT'], ['name' => 'Fort Lewis', 'country_code' => 'US'], ['name' => 'Davidson', 'country_code' => 'US'], ['name' => 'Edgewood', 'country_code' => 'US'], ['name' => 'Kaji', 'country_code' => 'CN'], ['name' => 'Suamico', 'country_code' => 'US'], ['name' => 'Borgo San Dalmazzo', 'country_code' => 'IT'], ['name' => 'La Chapelle-Saint-Luc', 'country_code' => 'FR'], ['name' => 'San Marino', 'country_code' => 'US'], ['name' => 'Spring Garden', 'country_code' => 'US'], ['name' => 'Senador Jose Porfirio', 'country_code' => 'BR'], ['name' => 'Esperance', 'country_code' => 'AU'], ['name' => 'Turvo', 'country_code' => 'BR'], ['name' => 'Santo Stino di Livenza', 'country_code' => 'IT'], ['name' => 'Parigi', 'country_code' => 'IN'], ['name' => 'Muswellbrook', 'country_code' => 'AU'], ['name' => 'Carnaubeira da Penha', 'country_code' => 'BR'], ['name' => 'Capul', 'country_code' => 'PH'], ['name' => 'Tabocas do Brejo Velho', 'country_code' => 'BR'], ['name' => 'Gartringen', 'country_code' => 'DE'], ['name' => 'Solofra', 'country_code' => 'IT'], ['name' => 'Trentham', 'country_code' => 'GB'], ['name' => 'Portland', 'country_code' => 'US'], ['name' => 'Argentona', 'country_code' => 'ES'], ['name' => 'Bou Adel', 'country_code' => 'MA'], ['name' => 'Maktar', 'country_code' => 'TN'], ['name' => 'Shiwan', 'country_code' => 'CN'], ['name' => 'Anolaima', 'country_code' => 'CO'], ['name' => 'Strand', 'country_code' => 'NO'], ['name' => 'Palleja', 'country_code' => 'ES'], ['name' => 'Morungaba', 'country_code' => 'BR'], ['name' => 'Huai Yot', 'country_code' => 'TH'], ['name' => 'Fort Drum', 'country_code' => 'US'], ['name' => 'Bonneville', 'country_code' => 'FR'], ['name' => 'Colesberg', 'country_code' => 'ZA'], ['name' => 'Trezzo sull Adda', 'country_code' => 'IT'], ['name' => 'West Bradford', 'country_code' => 'US'], ['name' => 'Graulhet', 'country_code' => 'FR'], ['name' => 'Bni Khloug', 'country_code' => 'MA'], ['name' => 'Wanderley', 'country_code' => 'BR'], ['name' => 'Teror', 'country_code' => 'ES'], ['name' => 'Chatham', 'country_code' => 'US'], ['name' => 'Divnoye', 'country_code' => 'RU'], ['name' => 'Oulad Rahmoun', 'country_code' => 'MA'], ['name' => 'Amity', 'country_code' => 'US'], ['name' => 'Chaiyo', 'country_code' => 'TH'], ['name' => 'Amboise', 'country_code' => 'FR'], ['name' => 'Flexeiras', 'country_code' => 'BR'], ['name' => 'Kanel', 'country_code' => 'SN'], ['name' => 'Lakeland Village', 'country_code' => 'US'], ['name' => 'Sooke', 'country_code' => 'CA'], ['name' => 'Bruay-sur-l Escaut', 'country_code' => 'FR'], ['name' => 'Borgaro Torinese', 'country_code' => 'IT'], ['name' => 'Marianske Lazne', 'country_code' => 'CZ'], ['name' => 'Bellefonte', 'country_code' => 'US'], ['name' => 'Kaufungen', 'country_code' => 'DE'], ['name' => 'Rozhyshche', 'country_code' => 'UA'], ['name' => 'Haselunne', 'country_code' => 'DE'], ['name' => 'Wolverton', 'country_code' => 'GB'], ['name' => 'Teutschenthal', 'country_code' => 'DE'], ['name' => 'Brzeg Dolny', 'country_code' => 'PL'], ['name' => 'Mercogliano', 'country_code' => 'IT'], ['name' => 'Fene', 'country_code' => 'ES'], ['name' => 'Tapilula', 'country_code' => 'MX'], ['name' => 'Forest Hill', 'country_code' => 'US'], ['name' => 'Piketberg', 'country_code' => 'ZA'], ['name' => 'Borgosesia', 'country_code' => 'IT'], ['name' => 'Itayanagi', 'country_code' => 'JP'], ['name' => 'Gornyak', 'country_code' => 'RU'], ['name' => 'Franeker', 'country_code' => 'NL'], ['name' => 'Montecorvino Rovella', 'country_code' => 'IT'], ['name' => 'Vail', 'country_code' => 'US'], ['name' => 'Licinio de Almeida', 'country_code' => 'BR'], ['name' => 'Peissenberg', 'country_code' => 'DE'], ['name' => 'Pola de Laviana', 'country_code' => 'ES'], ['name' => 'Pianiga', 'country_code' => 'IT'], ['name' => 'Cypress Lake', 'country_code' => 'US'], ['name' => 'Dawson Creek', 'country_code' => 'CA'], ['name' => 'Gladeview', 'country_code' => 'US'], ['name' => 'Schongau', 'country_code' => 'DE'], ['name' => 'Maravilla Tenejapa', 'country_code' => 'MX'], ['name' => 'Tarnos', 'country_code' => 'FR'], ['name' => 'Arrigorriaga', 'country_code' => 'ES'], ['name' => 'Tashi', 'country_code' => 'CN'], ['name' => 'Ulubey', 'country_code' => 'TR'], ['name' => 'Arluno', 'country_code' => 'IT'], ['name' => 'Triel-sur-Seine', 'country_code' => 'FR'], ['name' => 'Byala Slatina', 'country_code' => 'BG'], ['name' => 'Monte San Giovanni Campano', 'country_code' => 'IT'], ['name' => 'Baras', 'country_code' => 'PH'], ['name' => 'Borger', 'country_code' => 'NL'], ['name' => 'Grave', 'country_code' => 'NL'], ['name' => 'Monfort Heights', 'country_code' => 'US'], ['name' => 'Lipari', 'country_code' => 'IT'], ['name' => 'Braselton', 'country_code' => 'US'], ['name' => 'Syston', 'country_code' => 'GB'], ['name' => 'Lapeer', 'country_code' => 'US'], ['name' => 'Sulingen', 'country_code' => 'DE'], ['name' => 'Yuza', 'country_code' => 'JP'], ['name' => 'Herk-de-Stad', 'country_code' => 'BE'], ['name' => 'Oulad Ouchchih', 'country_code' => 'MA'], ['name' => 'Dunmore', 'country_code' => 'US'], ['name' => 'Crayford', 'country_code' => 'GB'], ['name' => 'Cristais', 'country_code' => 'BR'], ['name' => 'Georgetown', 'country_code' => 'US'], ['name' => 'Flitwick', 'country_code' => 'GB'], ['name' => 'Kittanning', 'country_code' => 'US'], ['name' => 'Lucena', 'country_code' => 'BR'], ['name' => 'Kushk', 'country_code' => 'IR'], ['name' => 'Nova Crixas', 'country_code' => 'BR'], ['name' => 'Santa Margarita', 'country_code' => 'ES'], ['name' => 'Clinton', 'country_code' => 'US'], ['name' => 'Castellbisbal', 'country_code' => 'ES'], ['name' => 'Vocklabruck', 'country_code' => 'AT'], ['name' => 'Ibaretama', 'country_code' => 'BR'], ['name' => 'Ribeirao Bonito', 'country_code' => 'BR'], ['name' => 'Pualas', 'country_code' => 'PH'], ['name' => 'Mar de Espanha', 'country_code' => 'BR'], ['name' => 'Kapelle', 'country_code' => 'NL'], ['name' => 'De Haan', 'country_code' => 'BE'], ['name' => 'Vinings', 'country_code' => 'US'], ['name' => 'Sharon', 'country_code' => 'US'], ['name' => 'Pien', 'country_code' => 'BR'], ['name' => 'Claremont', 'country_code' => 'US'], ['name' => 'Castel Goffredo', 'country_code' => 'IT'], ['name' => 'El Qaa', 'country_code' => 'LB'], ['name' => 'Gerpinnes', 'country_code' => 'BE'], ['name' => 'Batuan', 'country_code' => 'PH'], ['name' => 'Rivarolo Canavese', 'country_code' => 'IT'], ['name' => 'Oakland', 'country_code' => 'US'], ['name' => 'Zhongling', 'country_code' => 'CN'], ['name' => 'Fallsburg', 'country_code' => 'US'], ['name' => 'Brzeziny', 'country_code' => 'PL'], ['name' => 'Lake Country', 'country_code' => 'CA'], ['name' => 'Vel ky Krtis', 'country_code' => 'SK'], ['name' => 'Pfarrkirchen', 'country_code' => 'DE'], ['name' => 'Sao Jose do Campestre', 'country_code' => 'BR'], ['name' => 'Chilca', 'country_code' => 'PE'], ['name' => 'Governador Lindenberg', 'country_code' => 'BR'], ['name' => 'Sim', 'country_code' => 'RU'], ['name' => 'Tinglayan', 'country_code' => 'PH'], ['name' => 'Staryye Atagi', 'country_code' => 'RU'], ['name' => 'Sagay', 'country_code' => 'PH'], ['name' => 'Dorog', 'country_code' => 'HU'], ['name' => 'San Clemente', 'country_code' => 'PH'], ['name' => 'Michendorf', 'country_code' => 'DE'], ['name' => 'Avrig', 'country_code' => 'RO'], ['name' => 'Ergolding', 'country_code' => 'DE'], ['name' => 'Chiatura', 'country_code' => 'GE'], ['name' => 'Frutillar', 'country_code' => 'CL'], ['name' => 'Ban Laem', 'country_code' => 'TH'], ['name' => 'Libertad', 'country_code' => 'PH'], ['name' => 'Verde Village', 'country_code' => 'US'], ['name' => 'Uruoca', 'country_code' => 'BR'], ['name' => 'Malaryta', 'country_code' => 'BY'], ['name' => 'Trent Hills', 'country_code' => 'CA'], ['name' => 'Mockern', 'country_code' => 'DE'], ['name' => 'Sidmouth', 'country_code' => 'GB'], ['name' => 'Lubaczow', 'country_code' => 'PL'], ['name' => 'Kaeng Khoi', 'country_code' => 'TH'], ['name' => 'Le Chambon-Feugerolles', 'country_code' => 'FR'], ['name' => 'Puren', 'country_code' => 'CL'], ['name' => 'Vyazemskiy', 'country_code' => 'RU'], ['name' => 'Lynnfield', 'country_code' => 'US'], ['name' => 'Irondale', 'country_code' => 'US'], ['name' => 'Maglod', 'country_code' => 'HU'], ['name' => 'Tizgane', 'country_code' => 'MA'], ['name' => 'Weinsberg', 'country_code' => 'DE'], ['name' => 'Tierra Amarilla', 'country_code' => 'CL'], ['name' => 'Sainte-Marie', 'country_code' => 'CA'], ['name' => 'Dorking', 'country_code' => 'GB'], ['name' => 'Surkhakhi', 'country_code' => 'RU'], ['name' => 'Kasba Tanora', 'country_code' => 'MA'], ['name' => 'Lake Wylie', 'country_code' => 'US'], ['name' => 'Agutaya', 'country_code' => 'PH'], ['name' => 'Sturgis', 'country_code' => 'US'], ['name' => 'Loganville', 'country_code' => 'US'], ['name' => 'Brugg', 'country_code' => 'CH'], ['name' => 'Bassersdorf', 'country_code' => 'CH'], ['name' => 'Hemsbach', 'country_code' => 'DE'], ['name' => 'San Bartolo', 'country_code' => 'GT'], ['name' => 'Novhorod-Siverskyi', 'country_code' => 'UA'], ['name' => 'Jequeri', 'country_code' => 'BR'], ['name' => 'Salobrena', 'country_code' => 'ES'], ['name' => 'Lawrenceburg', 'country_code' => 'US'], ['name' => 'Sacacoyo', 'country_code' => 'SV'], ['name' => 'Choro', 'country_code' => 'BR'], ['name' => 'Chiquimulilla', 'country_code' => 'GT'], ['name' => 'Lakeland North', 'country_code' => 'US'], ['name' => 'Grumo Appula', 'country_code' => 'IT'], ['name' => 'Cambuquira', 'country_code' => 'BR'], ['name' => 'West Carrollton', 'country_code' => 'US'], ['name' => 'Itaipe', 'country_code' => 'BR'], ['name' => 'Kilindoni', 'country_code' => 'TZ'], ['name' => 'Chorleywood', 'country_code' => 'GB'], ['name' => 'Oxapampa', 'country_code' => 'PE'], ['name' => 'Costa de Caparica', 'country_code' => 'PT'], ['name' => 'Finneytown', 'country_code' => 'US'], ['name' => 'Camabatela', 'country_code' => 'AO'], ['name' => 'Ridge', 'country_code' => 'US'], ['name' => 'Guelph/Eramosa', 'country_code' => 'CA'], ['name' => 'Mostardas', 'country_code' => 'BR'], ['name' => 'Mericourt', 'country_code' => 'FR'], ['name' => 'Glen Carbon', 'country_code' => 'US'], ['name' => 'Arhribs', 'country_code' => 'DZ'], ['name' => 'Sala Consilina', 'country_code' => 'IT'], ['name' => 'Mutia', 'country_code' => 'PH'], ['name' => 'Locri', 'country_code' => 'IT'], ['name' => 'Neuhausen auf den Fildern', 'country_code' => 'DE'], ['name' => 'Bretzfeld', 'country_code' => 'DE'], ['name' => 'Cuisnahuat', 'country_code' => 'SV'], ['name' => 'Ifs', 'country_code' => 'FR'], ['name' => 'Kriftel', 'country_code' => 'DE'], ['name' => 'Bershad', 'country_code' => 'UA'], ['name' => 'Raismes', 'country_code' => 'FR'], ['name' => 'New Hanover', 'country_code' => 'US'], ['name' => 'Marshall', 'country_code' => 'US'], ['name' => 'Medfield', 'country_code' => 'US'], ['name' => 'Berwick-Upon-Tweed', 'country_code' => 'GB'], ['name' => 'Jaromer', 'country_code' => 'CZ'], ['name' => 'Syasstroy', 'country_code' => 'RU'], ['name' => 'Lake Tapps', 'country_code' => 'US'], ['name' => 'Samashki', 'country_code' => 'RU'], ['name' => 'Spearfish', 'country_code' => 'US'], ['name' => 'Silago', 'country_code' => 'PH'], ['name' => 'Mora', 'country_code' => 'SE'], ['name' => 'Limburgerhof', 'country_code' => 'DE'], ['name' => 'Francofonte', 'country_code' => 'IT'], ['name' => 'Plan-de-Cuques', 'country_code' => 'FR'], ['name' => 'East Hampton', 'country_code' => 'US'], ['name' => 'Ujfeherto', 'country_code' => 'HU'], ['name' => 'Gyomaendrod', 'country_code' => 'HU'], ['name' => 'Los Lagos', 'country_code' => 'CL'], ['name' => 'Brignais', 'country_code' => 'FR'], ['name' => 'Truro', 'country_code' => 'CA'], ['name' => 'Steinheim', 'country_code' => 'DE'], ['name' => 'Amos', 'country_code' => 'CA'], ['name' => 'Figline Valdarno', 'country_code' => 'IT'], ['name' => 'Lawaan', 'country_code' => 'PH'], ['name' => 'Souakene', 'country_code' => 'MA'], ['name' => 'Cedartown', 'country_code' => 'US'], ['name' => 'Ban Tom Klang', 'country_code' => 'TH'], ['name' => 'Diebougou', 'country_code' => 'BF'], ['name' => 'Perehinske', 'country_code' => 'UA'], ['name' => 'Dubak', 'country_code' => 'IN'], ['name' => 'Krupka', 'country_code' => 'CZ'], ['name' => 'Pecica', 'country_code' => 'RO'], ['name' => 'Zawiat Moulay Brahim', 'country_code' => 'MA'], ['name' => 'Teroual', 'country_code' => 'MA'], ['name' => 'Provins', 'country_code' => 'FR'], ['name' => 'Gorokhovets', 'country_code' => 'RU'], ['name' => 'Hajduhadhaz', 'country_code' => 'HU'], ['name' => 'Cloquet', 'country_code' => 'US'], ['name' => 'Weigelstown', 'country_code' => 'US'], ['name' => 'Rosario del Tala', 'country_code' => 'AR'], ['name' => 'Betma', 'country_code' => 'IN'], ['name' => 'Lilburn', 'country_code' => 'US'], ['name' => 'South Sioux City', 'country_code' => 'US'], ['name' => 'Simeria', 'country_code' => 'RO'], ['name' => 'Valverde del Camino', 'country_code' => 'ES'], ['name' => 'Maryville', 'country_code' => 'US'], ['name' => 'The Nation / La Nation', 'country_code' => 'CA'], ['name' => 'Taldom', 'country_code' => 'RU'], ['name' => 'Bohmte', 'country_code' => 'DE'], ['name' => 'Franklin', 'country_code' => 'US'], ['name' => 'Churchdown', 'country_code' => 'GB'], ['name' => 'Cidade Gaucha', 'country_code' => 'BR'], ['name' => 'Olintla', 'country_code' => 'MX'], ['name' => 'Wawarsing', 'country_code' => 'US'], ['name' => 'Pichilemu', 'country_code' => 'CL'], ['name' => 'Mikashevichy', 'country_code' => 'BY'], ['name' => 'Bamber Bridge', 'country_code' => 'GB'], ['name' => 'Brunswick', 'country_code' => 'US'], ['name' => 'Villafranca de los Barros', 'country_code' => 'ES'], ['name' => 'Iferhounene', 'country_code' => 'DZ'], ['name' => 'Sankt Veit an der Glan', 'country_code' => 'AT'], ['name' => 'Maizieres-les-Metz', 'country_code' => 'FR'], ['name' => 'College', 'country_code' => 'US'], ['name' => 'Fontanafredda', 'country_code' => 'IT'], ['name' => 'Ascot', 'country_code' => 'GB'], ['name' => 'Ashibetsu', 'country_code' => 'JP'], ['name' => 'Wachtersbach', 'country_code' => 'DE'], ['name' => 'L Isle-Adam', 'country_code' => 'FR'], ['name' => 'Clinton', 'country_code' => 'US'], ['name' => 'Pinheiro Machado', 'country_code' => 'BR'], ['name' => 'Linnich', 'country_code' => 'DE'], ['name' => 'Kalyazin', 'country_code' => 'RU'], ['name' => 'Hadamar', 'country_code' => 'DE'], ['name' => 'Santa Ana de Yacuma', 'country_code' => 'BO'], ['name' => 'Laamarna', 'country_code' => 'MA'], ['name' => 'Areal', 'country_code' => 'BR'], ['name' => 'Sao Sebastiao do Uatuma', 'country_code' => 'BR'], ['name' => 'Burj al Arab', 'country_code' => 'EG'], ['name' => 'Lahaina', 'country_code' => 'US'], ['name' => 'Gibraleon', 'country_code' => 'ES'], ['name' => 'San Francisco de Mostazal', 'country_code' => 'CL'], ['name' => 'Rognac', 'country_code' => 'FR'], ['name' => 'Santiago Amoltepec', 'country_code' => 'MX'], ['name' => 'Peligros', 'country_code' => 'ES'], ['name' => 'Saint-Jean', 'country_code' => 'FR'], ['name' => 'Glendale', 'country_code' => 'US'], ['name' => 'Si Mustapha', 'country_code' => 'DZ'], ['name' => 'Florange', 'country_code' => 'FR'], ['name' => 'Lauria Inferiore', 'country_code' => 'IT'], ['name' => 'Warsop', 'country_code' => 'GB'], ['name' => 'Saude', 'country_code' => 'BR'], ['name' => 'Zag', 'country_code' => 'MA'], ['name' => 'Terryville', 'country_code' => 'US'], ['name' => 'Othello', 'country_code' => 'US'], ['name' => 'Santa Cruz da Baixa Verde', 'country_code' => 'BR'], ['name' => 'Mineiros do Tiete', 'country_code' => 'BR'], ['name' => 'Joanopolis', 'country_code' => 'BR'], ['name' => 'Sant Agata di Militello', 'country_code' => 'IT'], ['name' => 'Gulf Shores', 'country_code' => 'US'], ['name' => 'Ingersoll', 'country_code' => 'CA'], ['name' => 'Dorridge', 'country_code' => 'GB'], ['name' => 'Avanhandava', 'country_code' => 'BR'], ['name' => 'Khasanya', 'country_code' => 'RU'], ['name' => 'Simplicio Mendes', 'country_code' => 'BR'], ['name' => 'Yulee', 'country_code' => 'US'], ['name' => 'Athens', 'country_code' => 'US'], ['name' => 'Jupiter Farms', 'country_code' => 'US'], ['name' => 'Tarboro', 'country_code' => 'US'], ['name' => 'Steinheim am der Murr', 'country_code' => 'DE'], ['name' => 'San Salvador', 'country_code' => 'AR'], ['name' => 'Brunsbuttel', 'country_code' => 'DE'], ['name' => 'Wickliffe', 'country_code' => 'US'], ['name' => 'Lamballe', 'country_code' => 'FR'], ['name' => 'Ban Muang Ngam', 'country_code' => 'TH'], ['name' => 'Jilava', 'country_code' => 'RO'], ['name' => 'Snezhnogorsk', 'country_code' => 'RU'], ['name' => 'Qiaotouba', 'country_code' => 'CN'], ['name' => 'Librazhd-Qender', 'country_code' => 'AL'], ['name' => 'Vrchlabi', 'country_code' => 'CZ'], ['name' => 'Kucove', 'country_code' => 'AL'], ['name' => 'Elgin', 'country_code' => 'US'], ['name' => 'Sinalunga', 'country_code' => 'IT'], ['name' => 'Altavilla Vicentina', 'country_code' => 'IT'], ['name' => 'Canet-en-Roussillon', 'country_code' => 'FR'], ['name' => 'Croxley Green', 'country_code' => 'GB'], ['name' => 'Mercerville', 'country_code' => 'US'], ['name' => 'Tacaimbo', 'country_code' => 'BR'], ['name' => 'La Homa', 'country_code' => 'US'], ['name' => 'Paullo', 'country_code' => 'IT'], ['name' => 'Dover', 'country_code' => 'US'], ['name' => 'Spondon', 'country_code' => 'GB'], ['name' => 'Dongyuancun', 'country_code' => 'CN'], ['name' => 'Greenville', 'country_code' => 'US'], ['name' => 'Neuenburg am Rhein', 'country_code' => 'DE'], ['name' => 'Borger', 'country_code' => 'US'], ['name' => 'Alat', 'country_code' => 'AZ'], ['name' => 'Mato Verde', 'country_code' => 'BR'], ['name' => 'Zofingen', 'country_code' => 'CH'], ['name' => 'Bonita', 'country_code' => 'US'], ['name' => 'Derventa', 'country_code' => 'BA'], ['name' => 'Albertirsa', 'country_code' => 'HU'], ['name' => 'Charlotte', 'country_code' => 'US'], ['name' => 'Chok Chai', 'country_code' => 'TH'], ['name' => 'Gangelt', 'country_code' => 'DE'], ['name' => 'Andernos-les-Bains', 'country_code' => 'FR'], ['name' => 'Broussard', 'country_code' => 'US'], ['name' => 'Saint-Esteve', 'country_code' => 'FR'], ['name' => 'Los Santos', 'country_code' => 'CO'], ['name' => 'Bad Urach', 'country_code' => 'DE'], ['name' => 'Winterberg', 'country_code' => 'DE'], ['name' => 'Beaconsfield', 'country_code' => 'GB'], ['name' => 'Dorado', 'country_code' => 'PR'], ['name' => 'Olgiate Comasco', 'country_code' => 'IT'], ['name' => 'Leibnitz', 'country_code' => 'AT'], ['name' => 'Horndean', 'country_code' => 'GB'], ['name' => 'Pieve di Soligo', 'country_code' => 'IT'], ['name' => 'Ait Youssef Ou Ali', 'country_code' => 'MA'], ['name' => 'Gaimersheim', 'country_code' => 'DE'], ['name' => 'Herrin', 'country_code' => 'US'], ['name' => 'Hungen', 'country_code' => 'DE'], ['name' => 'Milovice', 'country_code' => 'CZ'], ['name' => 'Kamianka-Dniprovska', 'country_code' => 'UA'], ['name' => 'Blaubeuren', 'country_code' => 'DE'], ['name' => 'Orzinuovi', 'country_code' => 'IT'], ['name' => 'San Miguel de Salcedo', 'country_code' => 'EC'], ['name' => 'Amesbury', 'country_code' => 'GB'], ['name' => 'Hattem', 'country_code' => 'NL'], ['name' => 'Pionerskiy', 'country_code' => 'RU'], ['name' => 'Kasaishi', 'country_code' => 'JP'], ['name' => 'Choctaw', 'country_code' => 'US'], ['name' => 'Tepetzintla', 'country_code' => 'MX'], ['name' => 'Vejer de la Frontera', 'country_code' => 'ES'], ['name' => 'Alpen', 'country_code' => 'DE'], ['name' => 'Manvel', 'country_code' => 'US'], ['name' => 'Windsor Locks', 'country_code' => 'US'], ['name' => 'Ronchi dei Legionari', 'country_code' => 'IT'], ['name' => 'Shilka', 'country_code' => 'RU'], ['name' => 'Fonsorbes', 'country_code' => 'FR'], ['name' => 'Chaval', 'country_code' => 'BR'], ['name' => 'Kantang', 'country_code' => 'TH'], ['name' => 'Los Alamos', 'country_code' => 'US'], ['name' => 'Oregon', 'country_code' => 'US'], ['name' => 'Candelaria', 'country_code' => 'CO'], ['name' => 'Albatera', 'country_code' => 'ES'], ['name' => 'Barbosa Ferraz', 'country_code' => 'BR'], ['name' => 'Commerce', 'country_code' => 'US'], ['name' => 'Winkler', 'country_code' => 'CA'], ['name' => 'Fehmarnsund', 'country_code' => 'DE'], ['name' => 'Chauny', 'country_code' => 'FR'], ['name' => 'Taylorville', 'country_code' => 'US'], ['name' => 'Ibicuitinga', 'country_code' => 'BR'], ['name' => 'Riviera Beach', 'country_code' => 'US'], ['name' => 'Porto', 'country_code' => 'BR'], ['name' => 'Port Neches', 'country_code' => 'US'], ['name' => 'Wetaskiwin', 'country_code' => 'CA'], ['name' => 'Shchastia', 'country_code' => 'UA'], ['name' => 'Jataizinho', 'country_code' => 'BR'], ['name' => 'Emiliano Zapata', 'country_code' => 'MX'], ['name' => 'Ounagha', 'country_code' => 'MA'], ['name' => 'Prineville', 'country_code' => 'US'], ['name' => 'Oissel', 'country_code' => 'FR'], ['name' => 'Anzola dell Emilia', 'country_code' => 'IT'], ['name' => 'El Adjiba', 'country_code' => 'DZ'], ['name' => 'Sao Goncalo do Para', 'country_code' => 'BR'], ['name' => 'Baykalsk', 'country_code' => 'RU'], ['name' => 'Lakeland', 'country_code' => 'US'], ['name' => 'Peru', 'country_code' => 'US'], ['name' => 'Lauenburg', 'country_code' => 'DE'], ['name' => 'Vakhrusheve', 'country_code' => 'UA'], ['name' => 'Maxaranguape', 'country_code' => 'BR'], ['name' => 'Dalmatovo', 'country_code' => 'RU'], ['name' => 'White House', 'country_code' => 'US'], ['name' => 'Niefern-Oschelbronn', 'country_code' => 'DE'], ['name' => 'Santa Barbara de Pinto', 'country_code' => 'CO'], ['name' => 'Keokuk', 'country_code' => 'US'], ['name' => 'Kalajoki', 'country_code' => 'FI'], ['name' => 'Xiaping', 'country_code' => 'CN'], ['name' => 'Greetland', 'country_code' => 'GB'], ['name' => 'Yemva', 'country_code' => 'RU'], ['name' => 'Junin de los Andes', 'country_code' => 'AR'], ['name' => 'Sao Geraldo', 'country_code' => 'BR'], ['name' => 'St. Ann', 'country_code' => 'US'], ['name' => 'Monte Compatri', 'country_code' => 'IT'], ['name' => 'Jaciara', 'country_code' => 'BR'], ['name' => 'Mablethorpe', 'country_code' => 'GB'], ['name' => 'Lana', 'country_code' => 'IT'], ['name' => 'Hirschaid', 'country_code' => 'DE'], ['name' => 'Durmersheim', 'country_code' => 'DE'], ['name' => 'Cardoso Moreira', 'country_code' => 'BR'], ['name' => 'Oshikango', 'country_code' => 'NA'], ['name' => 'Wadhraf', 'country_code' => 'TN'], ['name' => 'Newtown', 'country_code' => 'GB'], ['name' => 'Itiquira', 'country_code' => 'BR'], ['name' => 'Brandfort', 'country_code' => 'ZA'], ['name' => 'Berja', 'country_code' => 'ES'], ['name' => 'Seringueiras', 'country_code' => 'BR'], ['name' => 'Cinisi', 'country_code' => 'IT'], ['name' => 'Darfield', 'country_code' => 'GB'], ['name' => 'San Mauro Pascoli', 'country_code' => 'IT'], ['name' => 'Alcudia de Carlet', 'country_code' => 'ES'], ['name' => 'Lavagna', 'country_code' => 'IT'], ['name' => 'Wieringerwerf', 'country_code' => 'NL'], ['name' => 'Duartina', 'country_code' => 'BR'], ['name' => 'Cananeia', 'country_code' => 'BR'], ['name' => 'Calanasan', 'country_code' => 'PH'], ['name' => 'Yuzha', 'country_code' => 'RU'], ['name' => 'Camposampiero', 'country_code' => 'IT'], ['name' => 'Beniel', 'country_code' => 'ES'], ['name' => 'Moreira Sales', 'country_code' => 'BR'], ['name' => 'Tranent', 'country_code' => 'GB'], ['name' => 'Galashiels', 'country_code' => 'GB'], ['name' => 'Gorazde', 'country_code' => 'BA'], ['name' => 'Mastic Beach', 'country_code' => 'US'], ['name' => 'Rong Kwang', 'country_code' => 'TH'], ['name' => 'Santol', 'country_code' => 'PH'], ['name' => 'Justice', 'country_code' => 'US'], ['name' => 'Spresiano', 'country_code' => 'IT'], ['name' => 'Central Elgin', 'country_code' => 'CA'], ['name' => 'Tiszavasvari', 'country_code' => 'HU'], ['name' => 'Graben-Neudorf', 'country_code' => 'DE'], ['name' => 'San Pietro in Casale', 'country_code' => 'IT'], ['name' => 'Gavardo', 'country_code' => 'IT'], ['name' => 'Taguai', 'country_code' => 'BR'], ['name' => 'Anklam', 'country_code' => 'DE'], ['name' => 'German Flatts', 'country_code' => 'US'], ['name' => 'Saint-Germain-les-Arpajon', 'country_code' => 'FR'], ['name' => 'Cumpana', 'country_code' => 'RO'], ['name' => 'Elfers', 'country_code' => 'US'], ['name' => 'Lewisboro', 'country_code' => 'US'], ['name' => 'Fuldatal', 'country_code' => 'DE'], ['name' => 'Fulton', 'country_code' => 'US'], ['name' => 'Minneola', 'country_code' => 'US'], ['name' => 'Anna Regina', 'country_code' => 'GY'], ['name' => 'Valu lui Traian', 'country_code' => 'RO'], ['name' => 'Oskaloosa', 'country_code' => 'US'], ['name' => 'Buchach', 'country_code' => 'UA'], ['name' => 'Santa Ana Maya', 'country_code' => 'MX'], ['name' => 'Lienz', 'country_code' => 'AT'], ['name' => 'Urbana', 'country_code' => 'US'], ['name' => 'Mecatlan', 'country_code' => 'MX'], ['name' => 'Benifayo', 'country_code' => 'ES'], ['name' => 'Grand Terrace', 'country_code' => 'US'], ['name' => 'Rielasingen-Worblingen', 'country_code' => 'DE'], ['name' => 'Panama City Beach', 'country_code' => 'US'], ['name' => 'Woodland Park', 'country_code' => 'US'], ['name' => 'Teixeira Soares', 'country_code' => 'BR'], ['name' => 'Menfi', 'country_code' => 'IT'], ['name' => 'Rosbach vor der Hohe', 'country_code' => 'DE'], ['name' => 'Beydag', 'country_code' => 'TR'], ['name' => 'Richmond', 'country_code' => 'US'], ['name' => 'Nelson Bay', 'country_code' => 'AU'], ['name' => 'Jackson', 'country_code' => 'US'], ['name' => 'Russi', 'country_code' => 'IT'], ['name' => 'Altenstadt', 'country_code' => 'DE'], ['name' => 'Kataysk', 'country_code' => 'RU'], ['name' => 'Quimperle', 'country_code' => 'FR'], ['name' => 'Saint-Andre-de-Cubzac', 'country_code' => 'FR'], ['name' => 'Pennsville', 'country_code' => 'US'], ['name' => 'Elland', 'country_code' => 'GB'], ['name' => 'El khotovo', 'country_code' => 'RU'], ['name' => 'Rottofreno', 'country_code' => 'IT'], ['name' => 'Fredericksburg', 'country_code' => 'US'], ['name' => 'Neerijnen', 'country_code' => 'NL'], ['name' => 'Le Haillan', 'country_code' => 'FR'], ['name' => 'Carmiano', 'country_code' => 'IT'], ['name' => 'Mira', 'country_code' => 'PT'], ['name' => 'Revuca', 'country_code' => 'SK'], ['name' => 'Muscoy', 'country_code' => 'US'], ['name' => 'Mende', 'country_code' => 'FR'], ['name' => 'Lila', 'country_code' => 'PH'], ['name' => 'Vysoke Myto', 'country_code' => 'CZ'], ['name' => 'Estepa', 'country_code' => 'ES'], ['name' => 'Ubaporanga', 'country_code' => 'BR'], ['name' => 'Belmont', 'country_code' => 'US'], ['name' => 'Koriukivka', 'country_code' => 'UA'], ['name' => 'Twistringen', 'country_code' => 'DE'], ['name' => 'Petrov Val', 'country_code' => 'RU'], ['name' => 'Edemissen', 'country_code' => 'DE'], ['name' => 'Frohburg', 'country_code' => 'DE'], ['name' => 'Mwingi', 'country_code' => 'KE'], ['name' => 'Bolbec', 'country_code' => 'FR'], ['name' => 'Florence', 'country_code' => 'US'], ['name' => 'Bernalda', 'country_code' => 'IT'], ['name' => 'Annapolis Neck', 'country_code' => 'US'], ['name' => 'Lachute', 'country_code' => 'CA'], ['name' => 'Xavantes', 'country_code' => 'BR'], ['name' => 'Reshuijie', 'country_code' => 'CN'], ['name' => 'Woolwich', 'country_code' => 'US'], ['name' => 'Oberwil', 'country_code' => 'CH'], ['name' => 'La Carlota', 'country_code' => 'AR'], ['name' => 'Nanzhai', 'country_code' => 'CN'], ['name' => 'Jacksonville', 'country_code' => 'US'], ['name' => 'Culfa', 'country_code' => 'AZ'], ['name' => 'Brzeszcze', 'country_code' => 'PL'], ['name' => 'Feuchtwangen', 'country_code' => 'DE'], ['name' => 'Currimao', 'country_code' => 'PH'], ['name' => 'Bad Windsheim', 'country_code' => 'DE'], ['name' => 'Ebersberg', 'country_code' => 'DE'], ['name' => 'Sheerness', 'country_code' => 'GB'], ['name' => 'Ugento', 'country_code' => 'IT'], ['name' => 'Astley', 'country_code' => 'GB'], ['name' => 'Sao Romao', 'country_code' => 'BR'], ['name' => 'Laguna Paiva', 'country_code' => 'AR'], ['name' => 'Alkhan-Kala', 'country_code' => 'RU'], ['name' => 'Endicott', 'country_code' => 'US'], ['name' => 'Tezoatlan de Segura y Luna', 'country_code' => 'MX'], ['name' => 'Grunwald', 'country_code' => 'DE'], ['name' => 'Bad Abbach', 'country_code' => 'DE'], ['name' => 'Motta Sant Anastasia', 'country_code' => 'IT'], ['name' => 'Culcheth', 'country_code' => 'GB'], ['name' => 'Niel', 'country_code' => 'BE'], ['name' => 'Erkner', 'country_code' => 'DE'], ['name' => 'Kamin-Kashyrskyi', 'country_code' => 'UA'], ['name' => 'Jaidte Lbatma', 'country_code' => 'MA'], ['name' => 'Kameshkovo', 'country_code' => 'RU'], ['name' => 'Hopewell', 'country_code' => 'US'], ['name' => 'Cheney', 'country_code' => 'US'], ['name' => 'Valmadrera', 'country_code' => 'IT'], ['name' => 'Lindenberg im Allgau', 'country_code' => 'DE'], ['name' => 'Stainland', 'country_code' => 'GB'], ['name' => 'Ocana', 'country_code' => 'ES'], ['name' => 'San Severino Marche', 'country_code' => 'IT'], ['name' => 'Palos Heights', 'country_code' => 'US'], ['name' => 'Andrelandia', 'country_code' => 'BR'], ['name' => 'West Grey', 'country_code' => 'CA'], ['name' => 'Kozloduy', 'country_code' => 'BG'], ['name' => 'Dom Basilio', 'country_code' => 'BR'], ['name' => 'Beelitz', 'country_code' => 'DE'], ['name' => 'Goor', 'country_code' => 'NL'], ['name' => 'Charmahin', 'country_code' => 'IR'], ['name' => 'Cedar Grove', 'country_code' => 'US'], ['name' => 'Xinyingheyan', 'country_code' => 'CN'], ['name' => 'Parksville', 'country_code' => 'CA'], ['name' => 'Boumalne', 'country_code' => 'MA'], ['name' => 'Taviano', 'country_code' => 'IT'], ['name' => 'Boone', 'country_code' => 'US'], ['name' => 'Nurmo', 'country_code' => 'FI'], ['name' => 'Rainhill', 'country_code' => 'GB'], ['name' => 'North St. Paul', 'country_code' => 'US'], ['name' => 'Satao', 'country_code' => 'PT'], ['name' => 'Dokkum', 'country_code' => 'NL'], ['name' => 'Nobeji', 'country_code' => 'JP'], ['name' => 'Wadersloh', 'country_code' => 'DE'], ['name' => 'Moglingen', 'country_code' => 'DE'], ['name' => 'Bickenhill', 'country_code' => 'GB'], ['name' => 'Burgos', 'country_code' => 'PH'], ['name' => 'Ocean Pines', 'country_code' => 'US'], ['name' => 'Valentim Gentil', 'country_code' => 'BR'], ['name' => 'Le Pont-de-Claix', 'country_code' => 'FR'], ['name' => 'Shichuanxiang', 'country_code' => 'CN'], ['name' => 'Mortugaba', 'country_code' => 'BR'], ['name' => 'Arroyo Seco', 'country_code' => 'MX'], ['name' => 'Axel', 'country_code' => 'NL'], ['name' => 'Culaba', 'country_code' => 'PH'], ['name' => 'Gundelfingen', 'country_code' => 'DE'], ['name' => 'Cornedo Vicentino', 'country_code' => 'IT'], ['name' => 'Zunil', 'country_code' => 'GT'], ['name' => 'Hinundayan', 'country_code' => 'PH'], ['name' => 'Cowansville', 'country_code' => 'CA'], ['name' => 'Rocca Priora', 'country_code' => 'IT'], ['name' => 'Nina Rodrigues', 'country_code' => 'BR'], ['name' => 'Paris', 'country_code' => 'US'], ['name' => 'Xinchangcun', 'country_code' => 'CN'], ['name' => 'Irmo', 'country_code' => 'US'], ['name' => 'Shuangxianxiang', 'country_code' => 'CN'], ['name' => 'Hnivan', 'country_code' => 'UA'], ['name' => 'Bottesford', 'country_code' => 'GB'], ['name' => 'Cecil', 'country_code' => 'US'], ['name' => 'Plan-les-Ouates', 'country_code' => 'CH'], ['name' => 'Velten', 'country_code' => 'DE'], ['name' => 'Ilicinia', 'country_code' => 'BR'], ['name' => 'Sulz am Neckar', 'country_code' => 'DE'], ['name' => 'Epping', 'country_code' => 'GB'], ['name' => 'San Anselmo', 'country_code' => 'US'], ['name' => 'Marysville', 'country_code' => 'US'], ['name' => 'Hessisch Lichtenau', 'country_code' => 'DE'], ['name' => 'Aracas', 'country_code' => 'BR'], ['name' => 'Edeia', 'country_code' => 'BR'], ['name' => 'Tsuruta', 'country_code' => 'JP'], ['name' => 'Ulster', 'country_code' => 'US'], ['name' => 'Thame', 'country_code' => 'GB'], ['name' => 'Oulad Fares', 'country_code' => 'MA'], ['name' => 'Santany', 'country_code' => 'ES'], ['name' => 'Bayona', 'country_code' => 'ES'], ['name' => 'Eyvanekey', 'country_code' => 'IR'], ['name' => 'Oulad Aissa', 'country_code' => 'MA'], ['name' => 'Cortes', 'country_code' => 'BR'], ['name' => 'Woodhaven', 'country_code' => 'US'], ['name' => 'Preussisch Oldendorf', 'country_code' => 'DE'], ['name' => 'Bni Drar', 'country_code' => 'MA'], ['name' => 'Brejetuba', 'country_code' => 'BR'], ['name' => 'Novalukoml ', 'country_code' => 'BY'], ['name' => 'Bad Freienwalde', 'country_code' => 'DE'], ['name' => 'Bedford', 'country_code' => 'US'], ['name' => 'Sable-sur-Sarthe', 'country_code' => 'FR'], ['name' => 'Cerro Grande', 'country_code' => 'BR'], ['name' => 'Sever do Vouga', 'country_code' => 'PT'], ['name' => 'Trophy Club', 'country_code' => 'US'], ['name' => 'Xinbocun', 'country_code' => 'CN'], ['name' => 'Beryslav', 'country_code' => 'UA'], ['name' => 'Romanshorn', 'country_code' => 'CH'], ['name' => 'Rezvanshahr', 'country_code' => 'IR'], ['name' => 'Cornwall', 'country_code' => 'US'], ['name' => 'Riverton', 'country_code' => 'US'], ['name' => 'Santa Mariana', 'country_code' => 'BR'], ['name' => 'Niepolomice', 'country_code' => 'PL'], ['name' => 'Magsaysay', 'country_code' => 'PH'], ['name' => 'Shepherdsville', 'country_code' => 'US'], ['name' => 'Teotepeque', 'country_code' => 'SV'], ['name' => 'Teano', 'country_code' => 'IT'], ['name' => 'Kalymnos', 'country_code' => 'GR'], ['name' => 'Becancour', 'country_code' => 'CA'], ['name' => 'Murnau am Staffelsee', 'country_code' => 'DE'], ['name' => 'Moldova Noua', 'country_code' => 'RO'], ['name' => 'Maqu', 'country_code' => 'CN'], ['name' => 'Terranuova Bracciolini', 'country_code' => 'IT'], ['name' => 'Iaciara', 'country_code' => 'BR'], ['name' => 'Sao Luis do Curu', 'country_code' => 'BR'], ['name' => 'Coventry', 'country_code' => 'US'], ['name' => 'Plymouth', 'country_code' => 'US'], ['name' => 'Manchester', 'country_code' => 'US'], ['name' => 'Pidigan', 'country_code' => 'PH'], ['name' => 'Gladenbach', 'country_code' => 'DE'], ['name' => 'Nagykata', 'country_code' => 'HU'], ['name' => 'Jardim do Serido', 'country_code' => 'BR'], ['name' => 'Waconia', 'country_code' => 'US'], ['name' => 'Stony Brook', 'country_code' => 'US'], ['name' => 'Mesker-Yurt', 'country_code' => 'RU'], ['name' => 'Vardenis', 'country_code' => 'AM'], ['name' => 'Saboya', 'country_code' => 'CO'], ['name' => 'Taiynsha', 'country_code' => 'KZ'], ['name' => 'Pfaffikon', 'country_code' => 'CH'], ['name' => 'Caapiranga', 'country_code' => 'BR'], ['name' => 'St. Peter', 'country_code' => 'US'], ['name' => 'Possneck', 'country_code' => 'DE'], ['name' => 'Kingsbury', 'country_code' => 'US'], ['name' => 'Saint Ives', 'country_code' => 'GB'], ['name' => 'Lymm', 'country_code' => 'GB'], ['name' => 'Kelso', 'country_code' => 'US'], ['name' => 'Betton', 'country_code' => 'FR'], ['name' => 'Nevele', 'country_code' => 'BE'], ['name' => 'Villeneuve-les-Avignon', 'country_code' => 'FR'], ['name' => 'Cuichapa', 'country_code' => 'MX'], ['name' => 'North Smithfield', 'country_code' => 'US'], ['name' => 'Juvignac', 'country_code' => 'FR'], ['name' => 'Bom Retiro do Sul', 'country_code' => 'BR'], ['name' => 'Titisee-Neustadt', 'country_code' => 'DE'], ['name' => 'Gharbia', 'country_code' => 'MA'], ['name' => 'Eraclea', 'country_code' => 'IT'], ['name' => 'Khvalynsk', 'country_code' => 'RU'], ['name' => 'Sao Sebastiao da Grama', 'country_code' => 'BR'], ['name' => 'Elkhorn', 'country_code' => 'US'], ['name' => 'Ongwediva', 'country_code' => 'NA'], ['name' => 'Lizzanello', 'country_code' => 'IT'], ['name' => 'Sannicolau Mare', 'country_code' => 'RO'], ['name' => 'Setubinha', 'country_code' => 'BR'], ['name' => 'Gatesville', 'country_code' => 'US'], ['name' => 'Vobkent Shahri', 'country_code' => 'UZ'], ['name' => 'Kavarna', 'country_code' => 'BG'], ['name' => 'Las Parejas', 'country_code' => 'AR'], ['name' => 'Rankweil', 'country_code' => 'AT'], ['name' => 'Monte Sant Angelo', 'country_code' => 'IT'], ['name' => 'Ludwigslust', 'country_code' => 'DE'], ['name' => 'Lom Sak', 'country_code' => 'TH'], ['name' => 'Ried im Innkreis', 'country_code' => 'AT'], ['name' => 'Oulad Amrane el Mekki', 'country_code' => 'MA'], ['name' => 'Perez', 'country_code' => 'PH'], ['name' => 'Goldenrod', 'country_code' => 'US'], ['name' => 'Budel', 'country_code' => 'NL'], ['name' => 'Granarolo del l Emilia', 'country_code' => 'IT'], ['name' => 'Villa Literno', 'country_code' => 'IT'], ['name' => 'Virginia', 'country_code' => 'US'], ['name' => 'Juterbog', 'country_code' => 'DE'], ['name' => 'Capdepera', 'country_code' => 'ES'], ['name' => 'Logan', 'country_code' => 'US'], ['name' => 'Jork', 'country_code' => 'DE'], ['name' => 'Lontras', 'country_code' => 'BR'], ['name' => 'Monteforte Irpino', 'country_code' => 'IT'], ['name' => 'Nkheila', 'country_code' => 'MA'], ['name' => 'Chino Valley', 'country_code' => 'US'], ['name' => 'Inverell', 'country_code' => 'AU'], ['name' => 'Gisors', 'country_code' => 'FR'], ['name' => 'Lakeside', 'country_code' => 'US'], ['name' => 'Newington Forest', 'country_code' => 'US'], ['name' => 'Blue Ash', 'country_code' => 'US'], ['name' => 'Alto do Rodrigues', 'country_code' => 'BR'], ['name' => 'Chateaubriant', 'country_code' => 'FR'], ['name' => 'Lewisburg', 'country_code' => 'US'], ['name' => 'Wilmington', 'country_code' => 'US'], ['name' => 'Egelsbach', 'country_code' => 'DE'], ['name' => 'Occhiobello', 'country_code' => 'IT'], ['name' => 'Tyngsborough', 'country_code' => 'US'], ['name' => 'Teningen', 'country_code' => 'DE'], ['name' => 'Bitetto', 'country_code' => 'IT'], ['name' => 'Meze', 'country_code' => 'FR'], ['name' => 'Harrison', 'country_code' => 'US'], ['name' => 'Yakouren', 'country_code' => 'DZ'], ['name' => 'Holly Hill', 'country_code' => 'US'], ['name' => 'Heddesheim', 'country_code' => 'DE'], ['name' => 'Jardim Alegre', 'country_code' => 'BR'], ['name' => 'Lansdowne', 'country_code' => 'US'], ['name' => 'Foca', 'country_code' => 'BA'], ['name' => 'Hatillo de Loba', 'country_code' => 'CO'], ['name' => 'Ain Kansara', 'country_code' => 'MA'], ['name' => 'Rushall', 'country_code' => 'GB'], ['name' => 'Pont-du-Chateau', 'country_code' => 'FR'], ['name' => 'Diosd', 'country_code' => 'HU'], ['name' => 'New Baltimore', 'country_code' => 'US'], ['name' => 'Rio Paranaiba', 'country_code' => 'BR'], ['name' => 'Palmares Paulista', 'country_code' => 'BR'], ['name' => 'Chambray-les-Tours', 'country_code' => 'FR'], ['name' => 'Gulfport', 'country_code' => 'US'], ['name' => 'Forestville', 'country_code' => 'US'], ['name' => 'Vidauban', 'country_code' => 'FR'], ['name' => 'Derby', 'country_code' => 'US'], ['name' => 'Kewanee', 'country_code' => 'US'], ['name' => 'Bueu', 'country_code' => 'ES'], ['name' => 'Orange City', 'country_code' => 'US'], ['name' => 'Sawadah', 'country_code' => 'EG'], ['name' => 'Malloussa', 'country_code' => 'MA'], ['name' => 'Acala del Rio', 'country_code' => 'ES'], ['name' => 'Heythuysen', 'country_code' => 'NL'], ['name' => 'Lakeland Highlands', 'country_code' => 'US'], ['name' => 'Jacinto', 'country_code' => 'BR'], ['name' => 'La Motte-Servolex', 'country_code' => 'FR'], ['name' => 'Matina', 'country_code' => 'BR'], ['name' => 'Farciennes', 'country_code' => 'BE'], ['name' => 'Ulverston', 'country_code' => 'GB'], ['name' => 'Bastrop', 'country_code' => 'US'], ['name' => 'Anama', 'country_code' => 'BR'], ['name' => 'Zupanja', 'country_code' => 'HR'], ['name' => 'Nordstemmen', 'country_code' => 'DE'], ['name' => 'Sernovodsk', 'country_code' => 'RU'], ['name' => 'Gladstone', 'country_code' => 'US'], ['name' => 'Khem Karan', 'country_code' => 'IN'], ['name' => 'Cookstown', 'country_code' => 'GB'], ['name' => 'Uren', 'country_code' => 'RU'], ['name' => 'Wietmarschen', 'country_code' => 'DE'], ['name' => 'Berilo', 'country_code' => 'BR'], ['name' => 'Sant Ambrogio di Valpolicella', 'country_code' => 'IT'], ['name' => 'Spilimbergo', 'country_code' => 'IT'], ['name' => 'Mirante da Serra', 'country_code' => 'BR'], ['name' => 'Bibbiena', 'country_code' => 'IT'], ['name' => 'Hagenow', 'country_code' => 'DE'], ['name' => 'Bodaybo', 'country_code' => 'RU'], ['name' => 'Teotlaltzingo', 'country_code' => 'MX'], ['name' => 'Winnetka', 'country_code' => 'US'], ['name' => 'Markham', 'country_code' => 'US'], ['name' => 'Mixtla de Altamirano', 'country_code' => 'MX'], ['name' => 'Gravenhurst', 'country_code' => 'CA'], ['name' => 'Sakib', 'country_code' => 'JO'], ['name' => 'Marion', 'country_code' => 'US'], ['name' => 'Torri di Quartesolo', 'country_code' => 'IT'], ['name' => 'Aj Jourf', 'country_code' => 'MA'], ['name' => ' Anadan', 'country_code' => 'SY'], ['name' => 'Leon Valley', 'country_code' => 'US'], ['name' => 'Joppatowne', 'country_code' => 'US'], ['name' => 'West Plains', 'country_code' => 'US'], ['name' => 'Lehre', 'country_code' => 'DE'], ['name' => 'Delhi', 'country_code' => 'US'], ['name' => 'Oosterbroek', 'country_code' => 'NL'], ['name' => 'Leutenbach', 'country_code' => 'DE'], ['name' => 'Winchester', 'country_code' => 'US'], ['name' => 'New Mills', 'country_code' => 'GB'], ['name' => 'Enns', 'country_code' => 'AT'], ['name' => 'Marumori', 'country_code' => 'JP'], ['name' => 'Linkenheim-Hochstetten', 'country_code' => 'DE'], ['name' => 'Saint-Saulve', 'country_code' => 'FR'], ['name' => 'Hexham', 'country_code' => 'GB'], ['name' => 'Darmanesti', 'country_code' => 'RO'], ['name' => 'Monovar', 'country_code' => 'ES'], ['name' => 'Newcastle', 'country_code' => 'US'], ['name' => 'New Kensington', 'country_code' => 'US'], ['name' => 'Maraial', 'country_code' => 'BR'], ['name' => 'Sakawa', 'country_code' => 'JP'], ['name' => 'Nembro', 'country_code' => 'IT'], ['name' => 'Cordoba', 'country_code' => 'CO'], ['name' => 'Stradella', 'country_code' => 'IT'], ['name' => 'Weinfelden', 'country_code' => 'CH'], ['name' => 'Beatrice', 'country_code' => 'US'], ['name' => 'Tzintzuntzan', 'country_code' => 'MX'], ['name' => 'Zeuthen', 'country_code' => 'DE'], ['name' => 'Brieselang', 'country_code' => 'DE'], ['name' => 'Prieska', 'country_code' => 'ZA'], ['name' => 'Poquoson', 'country_code' => 'US'], ['name' => 'Itanhomi', 'country_code' => 'BR'], ['name' => 'Tortoreto', 'country_code' => 'IT'], ['name' => 'Tholey', 'country_code' => 'DE'], ['name' => 'Arth', 'country_code' => 'CH'], ['name' => 'Taurisano', 'country_code' => 'IT'], ['name' => 'Antonio Cardoso', 'country_code' => 'BR'], ['name' => 'Clayton', 'country_code' => 'US'], ['name' => 'Rovinari', 'country_code' => 'RO'], ['name' => 'Piripa', 'country_code' => 'BR'], ['name' => 'Casier', 'country_code' => 'IT'], ['name' => 'Iguaraci', 'country_code' => 'BR'], ['name' => 'Perth East', 'country_code' => 'CA'], ['name' => 'Vecchiano', 'country_code' => 'IT'], ['name' => 'Gaildorf', 'country_code' => 'DE'], ['name' => 'St. Marys', 'country_code' => 'US'], ['name' => 'Velddrif', 'country_code' => 'ZA'], ['name' => 'Bad Sassendorf', 'country_code' => 'DE'], ['name' => 'Citlaltepec', 'country_code' => 'MX'], ['name' => 'Gotzis', 'country_code' => 'AT'], ['name' => 'Na Wa', 'country_code' => 'TH'], ['name' => 'Ottawa', 'country_code' => 'US'], ['name' => 'Larkspur', 'country_code' => 'US'], ['name' => 'Kampenhout', 'country_code' => 'BE'], ['name' => 'Cottonwood', 'country_code' => 'US'], ['name' => 'Mays Chapel', 'country_code' => 'US'], ['name' => 'Shady Hills', 'country_code' => 'US'], ['name' => 'Vulcanesti', 'country_code' => 'MD'], ['name' => 'Vilsbiburg', 'country_code' => 'DE'], ['name' => 'Valenii de Munte', 'country_code' => 'RO'], ['name' => 'Palestina', 'country_code' => 'BR'], ['name' => 'Bankya', 'country_code' => 'BG'], ['name' => 'Wegorzewo', 'country_code' => 'PL'], ['name' => 'Boloso', 'country_code' => 'CG'], ['name' => 'Lincolnwood', 'country_code' => 'US'], ['name' => 'Biri', 'country_code' => 'PH'], ['name' => 'Atripalda', 'country_code' => 'IT'], ['name' => 'Burladingen', 'country_code' => 'DE'], ['name' => 'Botlikh', 'country_code' => 'RU'], ['name' => 'Axixa', 'country_code' => 'BR'], ['name' => 'Arkansas City', 'country_code' => 'US'], ['name' => 'Dabuleni', 'country_code' => 'RO'], ['name' => 'Sapna', 'country_code' => 'BA'], ['name' => 'Saint-Ave', 'country_code' => 'FR'], ['name' => 'Saubara', 'country_code' => 'BR'], ['name' => 'Paulista', 'country_code' => 'BR'], ['name' => 'Querencia do Norte', 'country_code' => 'BR'], ['name' => 'North Castle', 'country_code' => 'US'], ['name' => 'Elon', 'country_code' => 'US'], ['name' => 'Palmer', 'country_code' => 'US'], ['name' => 'Lumberton', 'country_code' => 'US'], ['name' => 'Emstek', 'country_code' => 'DE'], ['name' => 'Perleberg', 'country_code' => 'DE'], ['name' => 'Massena', 'country_code' => 'US'], ['name' => 'Aleksandrovsk', 'country_code' => 'RU'], ['name' => 'West Monroe', 'country_code' => 'US'], ['name' => 'Parker', 'country_code' => 'US'], ['name' => 'Chateau-Gontier', 'country_code' => 'FR'], ['name' => 'Antonio Goncalves', 'country_code' => 'BR'], ['name' => 'Fourmies', 'country_code' => 'FR'], ['name' => 'Mulungu do Morro', 'country_code' => 'BR'], ['name' => 'Wolgast', 'country_code' => 'DE'], ['name' => 'Ebejico', 'country_code' => 'CO'], ['name' => 'Parkes', 'country_code' => 'AU'], ['name' => 'Gatumba', 'country_code' => 'BI'], ['name' => 'Ahram', 'country_code' => 'IR'], ['name' => 'Krasnyy Yar', 'country_code' => 'RU'], ['name' => 'Pedras de Maria da Cruz', 'country_code' => 'BR'], ['name' => 'Batesville', 'country_code' => 'US'], ['name' => 'Prince Rupert', 'country_code' => 'CA'], ['name' => 'Amherst', 'country_code' => 'US'], ['name' => 'Grenada', 'country_code' => 'US'], ['name' => 'Mineral del Monte', 'country_code' => 'MX'], ['name' => 'Balbalan', 'country_code' => 'PH'], ['name' => 'Loreto', 'country_code' => 'BR'], ['name' => 'Kibungo', 'country_code' => 'RW'], ['name' => 'Canapolis', 'country_code' => 'BR'], ['name' => 'Osako', 'country_code' => 'JP'], ['name' => 'Carmo da Cachoeira', 'country_code' => 'BR'], ['name' => 'Mettlach', 'country_code' => 'DE'], ['name' => 'Neuenrade', 'country_code' => 'DE'], ['name' => 'Villamartin', 'country_code' => 'ES'], ['name' => 'Portoferraio', 'country_code' => 'IT'], ['name' => 'Castelnaudary', 'country_code' => 'FR'], ['name' => 'Bellegarde-sur-Valserine', 'country_code' => 'FR'], ['name' => 'Suchanino', 'country_code' => 'PL'], ['name' => 'North Union', 'country_code' => 'US'], ['name' => 'Isola del Liri', 'country_code' => 'IT'], ['name' => 'Ishpeming', 'country_code' => 'US'], ['name' => 'Jesup', 'country_code' => 'US'], ['name' => 'Ringwood', 'country_code' => 'US'], ['name' => 'Zhengdong', 'country_code' => 'CN'], ['name' => 'Ullo', 'country_code' => 'HU'], ['name' => 'Neustadt', 'country_code' => 'DE'], ['name' => 'Oberschleissheim', 'country_code' => 'DE'], ['name' => 'Overlea', 'country_code' => 'US'], ['name' => 'Speedway', 'country_code' => 'US'], ['name' => 'Lagoa do Ouro', 'country_code' => 'BR'], ['name' => 'Montegrotto Terme', 'country_code' => 'IT'], ['name' => 'Santa Fe', 'country_code' => 'BR'], ['name' => 'Enumclaw', 'country_code' => 'US'], ['name' => 'Lonate Pozzolo', 'country_code' => 'IT'], ['name' => 'Rijkevorsel', 'country_code' => 'BE'], ['name' => 'Santa Lucia', 'country_code' => 'CO'], ['name' => 'Uzyn', 'country_code' => 'UA'], ['name' => 'Roding', 'country_code' => 'DE'], ['name' => 'Mettingen', 'country_code' => 'DE'], ['name' => 'Ilmajoki', 'country_code' => 'FI'], ['name' => 'Zwonitz', 'country_code' => 'DE'], ['name' => 'Unterfohring', 'country_code' => 'DE'], ['name' => 'Ban Bo Luang', 'country_code' => 'TH'], ['name' => 'Novy Bor', 'country_code' => 'CZ'], ['name' => 'Neosho', 'country_code' => 'US'], ['name' => 'Wells Branch', 'country_code' => 'US'], ['name' => 'North Greenbush', 'country_code' => 'US'], ['name' => 'Leominster', 'country_code' => 'GB'], ['name' => 'Hirao', 'country_code' => 'JP'], ['name' => 'Rehoboth', 'country_code' => 'US'], ['name' => 'Laichingen', 'country_code' => 'DE'], ['name' => 'Lincoln City', 'country_code' => 'US'], ['name' => 'Prevost', 'country_code' => 'CA'], ['name' => 'Essenbach', 'country_code' => 'DE'], ['name' => 'Planegg', 'country_code' => 'DE'], ['name' => 'Liperi', 'country_code' => 'FI'], ['name' => 'Highlands', 'country_code' => 'US'], ['name' => 'Pace', 'country_code' => 'FR'], ['name' => 'Steha', 'country_code' => 'MA'], ['name' => 'Northlake', 'country_code' => 'US'], ['name' => 'Guebwiller', 'country_code' => 'FR'], ['name' => 'Nussloch', 'country_code' => 'DE'], ['name' => 'Eatontown', 'country_code' => 'US'], ['name' => 'Bolanos de Calatrava', 'country_code' => 'ES'], ['name' => 'Belem de Maria', 'country_code' => 'BR'], ['name' => 'Issum', 'country_code' => 'DE'], ['name' => 'Newport', 'country_code' => 'US'], ['name' => 'Albox', 'country_code' => 'ES'], ['name' => 'Lauffen am Neckar', 'country_code' => 'DE'], ['name' => 'New Garden', 'country_code' => 'US'], ['name' => 'Nova Gradiska', 'country_code' => 'HR'], ['name' => 'Colares', 'country_code' => 'BR'], ['name' => 'Sao Francisco do Maranhao', 'country_code' => 'BR'], ['name' => 'Bad Voslau', 'country_code' => 'AT'], ['name' => 'Eura', 'country_code' => 'FI'], ['name' => 'Schwieberdingen', 'country_code' => 'DE'], ['name' => 'Boskovice', 'country_code' => 'CZ'], ['name' => 'Cesson', 'country_code' => 'FR'], ['name' => 'Harwich', 'country_code' => 'US'], ['name' => 'Sollies-Pont', 'country_code' => 'FR'], ['name' => 'Ladenburg', 'country_code' => 'DE'], ['name' => 'Aubiere', 'country_code' => 'FR'], ['name' => 'Harrislee', 'country_code' => 'DE'], ['name' => 'Mayate', 'country_code' => 'MA'], ['name' => 'Bajiao', 'country_code' => 'CN'], ['name' => 'Falmouth', 'country_code' => 'US'], ['name' => 'Congonhal', 'country_code' => 'BR'], ['name' => 'Cangas de Narcea', 'country_code' => 'ES'], ['name' => 'Tabapua', 'country_code' => 'BR'], ['name' => 'Vehkalahti', 'country_code' => 'FI'], ['name' => 'Sainte-Adele', 'country_code' => 'CA'], ['name' => 'Capela do Alto Alegre', 'country_code' => 'BR'], ['name' => 'Freeport', 'country_code' => 'US'], ['name' => 'Webb City', 'country_code' => 'US'], ['name' => 'Pulsano', 'country_code' => 'IT'], ['name' => 'Auchel', 'country_code' => 'FR'], ['name' => 'Tabua', 'country_code' => 'PT'], ['name' => 'Islamey', 'country_code' => 'RU'], ['name' => 'San Valentino Torio', 'country_code' => 'IT'], ['name' => 'Capela de Santana', 'country_code' => 'BR'], ['name' => 'Cherlak', 'country_code' => 'RU'], ['name' => 'Rosdorf', 'country_code' => 'DE'], ['name' => 'Leingarten', 'country_code' => 'DE'], ['name' => 'Ichinomiya', 'country_code' => 'JP'], ['name' => 'Lebon Regis', 'country_code' => 'BR'], ['name' => 'Saint-Cyr-sur-Mer', 'country_code' => 'FR'], ['name' => 'Vedene', 'country_code' => 'FR'], ['name' => 'Sassenage', 'country_code' => 'FR'], ['name' => 'Nova Dubnica', 'country_code' => 'SK'], ['name' => 'Curiti', 'country_code' => 'CO'], ['name' => 'Woodward', 'country_code' => 'US'], ['name' => 'Knowsley', 'country_code' => 'GB'], ['name' => 'Bicske', 'country_code' => 'HU'], ['name' => 'Lower Pottsgrove', 'country_code' => 'US'], ['name' => 'Melissa', 'country_code' => 'US'], ['name' => 'Brock Hall', 'country_code' => 'US'], ['name' => 'Drouin', 'country_code' => 'AU'], ['name' => 'Uacu Cungo', 'country_code' => 'AO'], ['name' => 'Weston', 'country_code' => 'US'], ['name' => 'Rogerstone', 'country_code' => 'GB'], ['name' => 'Socuellamos', 'country_code' => 'ES'], ['name' => 'James Island', 'country_code' => 'US'], ['name' => 'Kingsburg', 'country_code' => 'US'], ['name' => 'Oulad Daoud', 'country_code' => 'MA'], ['name' => 'Palmacia', 'country_code' => 'BR'], ['name' => 'Caimito', 'country_code' => 'CO'], ['name' => 'San Carlos Yautepec', 'country_code' => 'MX'], ['name' => 'Oiba', 'country_code' => 'CO'], ['name' => 'Pepperell', 'country_code' => 'US'], ['name' => 'Brwinow', 'country_code' => 'PL'], ['name' => 'Liuba', 'country_code' => 'CN'], ['name' => 'Ventania', 'country_code' => 'BR'], ['name' => 'Comarnic', 'country_code' => 'RO'], ['name' => 'Xichu', 'country_code' => 'MX'], ['name' => 'Denkendorf', 'country_code' => 'DE'], ['name' => 'Guimaraes', 'country_code' => 'BR'], ['name' => 'Margherita di Savoia', 'country_code' => 'IT'], ['name' => 'Vosselaar', 'country_code' => 'BE'], ['name' => 'Mestrino', 'country_code' => 'IT'], ['name' => 'Platteville', 'country_code' => 'US'], ['name' => 'Nonoai', 'country_code' => 'BR'], ['name' => 'Susegana', 'country_code' => 'IT'], ['name' => 'Rio do Pires', 'country_code' => 'BR'], ['name' => 'Laren', 'country_code' => 'NL'], ['name' => 'Eureka', 'country_code' => 'US'], ['name' => 'Lovington', 'country_code' => 'US'], ['name' => 'Ban Bang Yai', 'country_code' => 'TH'], ['name' => 'Son Servera', 'country_code' => 'ES'], ['name' => 'Jacala', 'country_code' => 'MX'], ['name' => 'Priolo Gargallo', 'country_code' => 'IT'], ['name' => 'Kentville', 'country_code' => 'CA'], ['name' => 'Baohe', 'country_code' => 'CN'], ['name' => 'Weiz', 'country_code' => 'AT'], ['name' => 'Baxiangshan', 'country_code' => 'CN'], ['name' => 'Chevigny-Saint-Sauveur', 'country_code' => 'FR'], ['name' => 'Gambettola', 'country_code' => 'IT'], ['name' => 'Little Chute', 'country_code' => 'US'], ['name' => 'Bainbridge', 'country_code' => 'US'], ['name' => 'Tiszakecske', 'country_code' => 'HU'], ['name' => 'Saint-Martin-Boulogne', 'country_code' => 'FR'], ['name' => 'Welver', 'country_code' => 'DE'], ['name' => 'Erfelek', 'country_code' => 'TR'], ['name' => 'Wang Saphung', 'country_code' => 'TH'], ['name' => 'San Andres de Llevaneras', 'country_code' => 'ES'], ['name' => 'San Antonio Palopo', 'country_code' => 'GT'], ['name' => 'Xincheng', 'country_code' => 'CN'], ['name' => 'Sedro-Woolley', 'country_code' => 'US'], ['name' => 'Minden', 'country_code' => 'US'], ['name' => 'Flores de Goias', 'country_code' => 'BR'], ['name' => 'Ardanuc', 'country_code' => 'TR'], ['name' => 'Oestrich-Winkel', 'country_code' => 'DE'], ['name' => 'Novoishimskiy', 'country_code' => 'KZ'], ['name' => 'Alfonsine', 'country_code' => 'IT'], ['name' => 'Grantsville', 'country_code' => 'US'], ['name' => 'Somerville', 'country_code' => 'US'], ['name' => 'Middle Valley', 'country_code' => 'US'], ['name' => 'Sao Miguel das Matas', 'country_code' => 'BR'], ['name' => 'Oswaldtwistle', 'country_code' => 'GB'], ['name' => 'Alavus', 'country_code' => 'FI'], ['name' => 'Castelginest', 'country_code' => 'FR'], ['name' => 'Fiume Veneto', 'country_code' => 'IT'], ['name' => 'Loano', 'country_code' => 'IT'], ['name' => 'Opmeer', 'country_code' => 'NL'], ['name' => 'Ait Amar', 'country_code' => 'MA'], ['name' => 'Toropets', 'country_code' => 'RU'], ['name' => 'Ipaumirim', 'country_code' => 'BR'], ['name' => 'Dario Meira', 'country_code' => 'BR'], ['name' => 'Union Park', 'country_code' => 'US'], ['name' => 'Havixbeck', 'country_code' => 'DE'], ['name' => 'Don Sak', 'country_code' => 'TH'], ['name' => 'Joaquim Tavora', 'country_code' => 'BR'], ['name' => 'Martuni', 'country_code' => 'AM'], ['name' => 'South Charleston', 'country_code' => 'US'], ['name' => 'Fairfax Station', 'country_code' => 'US'], ['name' => 'Souq Jamaa Fdalate', 'country_code' => 'MA'], ['name' => 'Sowerby Bridge', 'country_code' => 'GB'], ['name' => 'Sao Pedro da Agua Branca', 'country_code' => 'BR'], ['name' => 'Huite', 'country_code' => 'GT'], ['name' => 'Corbas', 'country_code' => 'FR'], ['name' => 'Thiers', 'country_code' => 'FR'], ['name' => 'Lanuza', 'country_code' => 'PH'], ['name' => 'Al Fayd', 'country_code' => 'MA'], ['name' => 'Leeds', 'country_code' => 'US'], ['name' => 'Holiday City-Berkeley', 'country_code' => 'US'], ['name' => 'Beniajan', 'country_code' => 'ES'], ['name' => 'Bad Fallingbostel', 'country_code' => 'DE'], ['name' => 'East Bethel', 'country_code' => 'US'], ['name' => 'Richland', 'country_code' => 'US'], ['name' => 'Villefranche-de-Rouergue', 'country_code' => 'FR'], ['name' => 'Southwick', 'country_code' => 'GB'], ['name' => 'Festus', 'country_code' => 'US'], ['name' => 'Aperibe', 'country_code' => 'BR'], ['name' => 'Giffoni Valle Piana', 'country_code' => 'IT'], ['name' => 'Valentigney', 'country_code' => 'FR'], ['name' => 'Riverview', 'country_code' => 'US'], ['name' => 'Villepreux', 'country_code' => 'FR'], ['name' => 'Altstatten', 'country_code' => 'CH'], ['name' => 'Bath', 'country_code' => 'US'], ['name' => 'Saint-Gaudens', 'country_code' => 'FR'], ['name' => 'Meitingen', 'country_code' => 'DE'], ['name' => 'Nong Bua', 'country_code' => 'TH'], ['name' => 'Gainza', 'country_code' => 'PH'], ['name' => 'Smithfield', 'country_code' => 'US'], ['name' => 'Comasagua', 'country_code' => 'SV'], ['name' => 'Koszeg', 'country_code' => 'HU'], ['name' => 'Swan Hill', 'country_code' => 'AU'], ['name' => 'Blaricum', 'country_code' => 'NL'], ['name' => 'Korb', 'country_code' => 'DE'], ['name' => 'Cave', 'country_code' => 'IT'], ['name' => 'Galvarino', 'country_code' => 'CL'], ['name' => 'Mainvilliers', 'country_code' => 'FR'], ['name' => 'Weatherford', 'country_code' => 'US'], ['name' => 'Miller Place', 'country_code' => 'US'], ['name' => 'Bilovodsk', 'country_code' => 'UA'], ['name' => 'Lichtenstein', 'country_code' => 'DE'], ['name' => 'Longuenesse', 'country_code' => 'FR'], ['name' => 'Sajoszentpeter', 'country_code' => 'HU'], ['name' => 'Ponteland', 'country_code' => 'GB'], ['name' => 'Betania', 'country_code' => 'BR'], ['name' => 'El Arba Des Bir Lenni', 'country_code' => 'MA'], ['name' => 'Rapho', 'country_code' => 'US'], ['name' => 'Beauharnois', 'country_code' => 'CA'], ['name' => 'Anao', 'country_code' => 'PH'], ['name' => 'Ain Beida', 'country_code' => 'MA'], ['name' => 'Les Iles-de-la-Madeleine', 'country_code' => 'CA'], ['name' => 'Zlate Moravce', 'country_code' => 'SK'], ['name' => 'Issoudun', 'country_code' => 'FR'], ['name' => 'Josefina', 'country_code' => 'PH'], ['name' => 'Nyirbator', 'country_code' => 'HU'], ['name' => 'Doesburg', 'country_code' => 'NL'], ['name' => 'Princetown', 'country_code' => 'GY'], ['name' => 'Kissing', 'country_code' => 'DE'], ['name' => 'Volosovo', 'country_code' => 'RU'], ['name' => 'Campo Alegre', 'country_code' => 'BR'], ['name' => 'Spring Lake', 'country_code' => 'US'], ['name' => 'Bomlo', 'country_code' => 'NO'], ['name' => 'Poranga', 'country_code' => 'BR'], ['name' => 'Holyhead', 'country_code' => 'GB'], ['name' => 'Krasnousol skiy', 'country_code' => 'RU'], ['name' => 'Patu', 'country_code' => 'BR'], ['name' => 'Folkston', 'country_code' => 'US'], ['name' => 'Sarbogard', 'country_code' => 'HU'], ['name' => 'Macedonia', 'country_code' => 'US'], ['name' => 'Casteldaccia', 'country_code' => 'IT'], ['name' => 'Hildburghausen', 'country_code' => 'DE'], ['name' => 'Tlacolulan', 'country_code' => 'MX'], ['name' => 'Carnot-Moon', 'country_code' => 'US'], ['name' => 'Jerome', 'country_code' => 'US'], ['name' => 'Kasaji', 'country_code' => 'CD'], ['name' => 'Pritzwalk', 'country_code' => 'DE'], ['name' => 'Geisenheim', 'country_code' => 'DE'], ['name' => 'Prairie Ridge', 'country_code' => 'US'], ['name' => 'Matmata', 'country_code' => 'MA'], ['name' => 'Union', 'country_code' => 'US'], ['name' => 'Montrose', 'country_code' => 'GB'], ['name' => 'Hamilton Square', 'country_code' => 'US'], ['name' => 'Erbaocun', 'country_code' => 'CN'], ['name' => 'Abergele', 'country_code' => 'GB'], ['name' => 'Moncks Corner', 'country_code' => 'US'], ['name' => 'Ghabaghib', 'country_code' => 'SY'], ['name' => 'Goulds', 'country_code' => 'US'], ['name' => 'Killarney', 'country_code' => 'IE'], ['name' => 'Dinkelsbuhl', 'country_code' => 'DE'], ['name' => 'Alijo', 'country_code' => 'PT'], ['name' => 'Caldogno', 'country_code' => 'IT'], ['name' => 'North Lebanon', 'country_code' => 'US'], ['name' => 'Palos de la Frontera', 'country_code' => 'ES'], ['name' => 'Santa Flavia', 'country_code' => 'IT'], ['name' => 'Batonyterenye', 'country_code' => 'HU'], ['name' => 'Mykhailivka', 'country_code' => 'UA'], ['name' => 'Chaumont-Gistoux', 'country_code' => 'BE'], ['name' => 'Santona', 'country_code' => 'ES'], ['name' => 'Newton', 'country_code' => 'US'], ['name' => 'Cedro', 'country_code' => 'BR'], ['name' => 'Janow Lubelski', 'country_code' => 'PL'], ['name' => 'Maltby', 'country_code' => 'US'], ['name' => 'Jiajin', 'country_code' => 'CN'], ['name' => 'Gardone Val Trompia', 'country_code' => 'IT'], ['name' => 'Cogolin', 'country_code' => 'FR'], ['name' => 'Villebon-sur-Yvette', 'country_code' => 'FR'], ['name' => 'Garden City', 'country_code' => 'US'], ['name' => 'Somersworth', 'country_code' => 'US'], ['name' => 'Serravalle Pistoiese', 'country_code' => 'IT'], ['name' => 'Bordentown', 'country_code' => 'US'], ['name' => 'Diez', 'country_code' => 'DE'], ['name' => 'Norton', 'country_code' => 'US'], ['name' => 'Bad Durrenberg', 'country_code' => 'DE'], ['name' => 'Tigzirt', 'country_code' => 'DZ'], ['name' => 'Ellwood City', 'country_code' => 'US'], ['name' => 'Glenwood Springs', 'country_code' => 'US'], ['name' => 'Great Wyrley', 'country_code' => 'GB'], ['name' => 'Greensburg', 'country_code' => 'US'], ['name' => 'Tucson Estates', 'country_code' => 'US'], ['name' => 'Pavlikeni', 'country_code' => 'BG'], ['name' => 'Negresti-Oas', 'country_code' => 'RO'], ['name' => 'Macclenny', 'country_code' => 'US'], ['name' => 'Echelon', 'country_code' => 'US'], ['name' => 'East Grand Rapids', 'country_code' => 'US'], ['name' => 'Drolshagen', 'country_code' => 'DE'], ['name' => 'Newberry', 'country_code' => 'US'], ['name' => 'Cernay', 'country_code' => 'FR'], ['name' => 'Sidi Amer El Hadi', 'country_code' => 'MA'], ['name' => 'Villeneuve-Tolosane', 'country_code' => 'FR'], ['name' => 'La Puebla del Rio', 'country_code' => 'ES'], ['name' => 'Chuquicamata', 'country_code' => 'CL'], ['name' => 'Arenzano', 'country_code' => 'IT'], ['name' => 'Cungus', 'country_code' => 'TR'], ['name' => 'Myjava', 'country_code' => 'SK'], ['name' => 'Sandy', 'country_code' => 'GB'], ['name' => 'Onet Village', 'country_code' => 'FR'], ['name' => 'Lansing', 'country_code' => 'US'], ['name' => 'Tizi Nisly', 'country_code' => 'MA'], ['name' => 'Campobello di Mazara', 'country_code' => 'IT'], ['name' => 'Mondai', 'country_code' => 'BR'], ['name' => 'Brookhaven', 'country_code' => 'US'], ['name' => 'Nowe Miasto Lubawskie', 'country_code' => 'PL'], ['name' => 'Winfield', 'country_code' => 'US'], ['name' => 'Finale Ligure', 'country_code' => 'IT'], ['name' => 'Olivenza', 'country_code' => 'ES'], ['name' => 'Norwalk', 'country_code' => 'US'], ['name' => 'Nambour', 'country_code' => 'AU'], ['name' => 'West Deer', 'country_code' => 'US'], ['name' => 'Sassenburg', 'country_code' => 'DE'], ['name' => 'Camp Pendleton South', 'country_code' => 'US'], ['name' => 'Hudson', 'country_code' => 'US'], ['name' => 'Clermont', 'country_code' => 'FR'], ['name' => 'Qazmalar', 'country_code' => 'AZ'], ['name' => 'Belp', 'country_code' => 'CH'], ['name' => 'Vaux-le-Penil', 'country_code' => 'FR'], ['name' => 'Spencer', 'country_code' => 'US'], ['name' => 'Pozharan', 'country_code' => 'XK'], ['name' => 'Robinson', 'country_code' => 'US'], ['name' => 'San Michele al Tagliamento', 'country_code' => 'IT'], ['name' => 'Newport East', 'country_code' => 'US'], ['name' => 'Pilis', 'country_code' => 'HU'], ['name' => 'Portales', 'country_code' => 'US'], ['name' => 'Castenedolo', 'country_code' => 'IT'], ['name' => 'Bechloul', 'country_code' => 'DZ'], ['name' => 'Miesbach', 'country_code' => 'DE'], ['name' => 'Amelia', 'country_code' => 'IT'], ['name' => 'Downham Market', 'country_code' => 'GB'], ['name' => 'Maniago', 'country_code' => 'IT'], ['name' => 'Meghraj', 'country_code' => 'IN'], ['name' => 'Wellington North', 'country_code' => 'CA'], ['name' => 'Ploufragan', 'country_code' => 'FR'], ['name' => 'St. Andrews', 'country_code' => 'CA'], ['name' => 'Veurne', 'country_code' => 'BE'], ['name' => 'Torton', 'country_code' => 'GB'], ['name' => 'Sao Sebastiao de Lagoa de Roca', 'country_code' => 'BR'], ['name' => 'Port Washington', 'country_code' => 'US'], ['name' => 'Somerville', 'country_code' => 'AU'], ['name' => 'Wootton', 'country_code' => 'GB'], ['name' => 'Villa Aldama', 'country_code' => 'MX'], ['name' => 'Maxhutte-Haidhof', 'country_code' => 'DE'], ['name' => 'Waimea', 'country_code' => 'US'], ['name' => 'Lendinara', 'country_code' => 'IT'], ['name' => 'Eijsden', 'country_code' => 'NL'], ['name' => 'Arkadak', 'country_code' => 'RU'], ['name' => 'Green River', 'country_code' => 'US'], ['name' => 'Tremonton', 'country_code' => 'US'], ['name' => 'Ibira', 'country_code' => 'BR'], ['name' => 'Terra Alta', 'country_code' => 'BR'], ['name' => 'Bitritto', 'country_code' => 'IT'], ['name' => 'Osterhofen', 'country_code' => 'DE'], ['name' => 'Carleton Place', 'country_code' => 'CA'], ['name' => 'Vendas Novas', 'country_code' => 'PT'], ['name' => 'Santa Cruz Itundujia', 'country_code' => 'MX'], ['name' => 'Ivybridge', 'country_code' => 'GB'], ['name' => 'Palmilla', 'country_code' => 'CL'], ['name' => 'Ban Phan Don', 'country_code' => 'TH'], ['name' => 'Cottage Grove', 'country_code' => 'US'], ['name' => 'Pellezzano', 'country_code' => 'IT'], ['name' => 'Ojuelos de Jalisco', 'country_code' => 'MX'], ['name' => 'Ban Bang Lamung', 'country_code' => 'TH'], ['name' => 'Neuville-en-Ferrain', 'country_code' => 'FR'], ['name' => 'Inhangapi', 'country_code' => 'BR'], ['name' => 'Upper', 'country_code' => 'US'], ['name' => 'Budelsdorf', 'country_code' => 'DE'], ['name' => 'Sarospatak', 'country_code' => 'HU'], ['name' => 'Macerata Campania', 'country_code' => 'IT'], ['name' => 'Ukrainsk', 'country_code' => 'UA'], ['name' => 'Novaya Lyalya', 'country_code' => 'RU'], ['name' => 'Mazzarino', 'country_code' => 'IT'], ['name' => 'Guidel', 'country_code' => 'FR'], ['name' => 'Valley Falls', 'country_code' => 'US'], ['name' => 'Stafford', 'country_code' => 'US'], ['name' => 'El Palmar', 'country_code' => 'GT'], ['name' => 'Ban Bang Toei', 'country_code' => 'TH'], ['name' => 'Bopfingen', 'country_code' => 'DE'], ['name' => 'Berkley', 'country_code' => 'US'], ['name' => 'Nacozari Viejo', 'country_code' => 'MX'], ['name' => 'Peixe', 'country_code' => 'BR'], ['name' => 'Alamedin', 'country_code' => 'KG'], ['name' => 'Robertsville', 'country_code' => 'US'], ['name' => 'Matino', 'country_code' => 'IT'], ['name' => 'Saint-Pierre-du-Perray', 'country_code' => 'FR'], ['name' => 'Delavan', 'country_code' => 'US'], ['name' => 'Langgons', 'country_code' => 'DE'], ['name' => 'Horodnia', 'country_code' => 'UA'], ['name' => 'Abasolo', 'country_code' => 'MX'], ['name' => 'Sandown', 'country_code' => 'GB'], ['name' => 'Kingston', 'country_code' => 'AU'], ['name' => 'Patterson', 'country_code' => 'US'], ['name' => 'Vineyard', 'country_code' => 'US'], ['name' => 'Elgoibar', 'country_code' => 'ES'], ['name' => 'Sogndal', 'country_code' => 'NO'], ['name' => 'Zetel', 'country_code' => 'DE'], ['name' => 'Coswig', 'country_code' => 'DE'], ['name' => 'Mulheim-Karlich', 'country_code' => 'DE'], ['name' => 'Kuchinarai', 'country_code' => 'TH'], ['name' => 'Ovidiopol', 'country_code' => 'UA'], ['name' => 'Isperih', 'country_code' => 'BG'], ['name' => 'Richfield', 'country_code' => 'US'], ['name' => 'Port Lavaca', 'country_code' => 'US'], ['name' => 'Whistler', 'country_code' => 'CA'], ['name' => 'Macajuba', 'country_code' => 'BR'], ['name' => 'Moulay Driss Zerhoun', 'country_code' => 'MA'], ['name' => 'Otsego', 'country_code' => 'US'], ['name' => 'Malvern', 'country_code' => 'US'], ['name' => 'Cricova', 'country_code' => 'MD'], ['name' => 'Monschau', 'country_code' => 'DE'], ['name' => 'Cadillac', 'country_code' => 'US'], ['name' => 'Holesov', 'country_code' => 'CZ'], ['name' => 'Malargue', 'country_code' => 'AR'], ['name' => 'Worb', 'country_code' => 'CH'], ['name' => 'Inzago', 'country_code' => 'IT'], ['name' => 'Santiago', 'country_code' => 'CR'], ['name' => 'Lake Station', 'country_code' => 'US'], ['name' => 'Healdsburg', 'country_code' => 'US'], ['name' => 'Brighton', 'country_code' => 'CA'], ['name' => 'Sao Felix do Araguaia', 'country_code' => 'BR'], ['name' => 'Tolcayuca', 'country_code' => 'MX'], ['name' => 'Sandy', 'country_code' => 'US'], ['name' => 'Bocaina', 'country_code' => 'BR'], ['name' => 'East Renton Highlands', 'country_code' => 'US'], ['name' => 'East Whiteland', 'country_code' => 'US'], ['name' => 'Rodenbach', 'country_code' => 'DE'], ['name' => 'Casino', 'country_code' => 'AU'], ['name' => 'Scornicesti', 'country_code' => 'RO'], ['name' => 'Red Bank', 'country_code' => 'US'], ['name' => 'Brown Deer', 'country_code' => 'US'], ['name' => 'Ban Wiang Phan', 'country_code' => 'TH'], ['name' => 'Azcoitia', 'country_code' => 'ES'], ['name' => 'Crestwood', 'country_code' => 'US'], ['name' => 'Grants', 'country_code' => 'US'], ['name' => 'Wormer', 'country_code' => 'NL'], ['name' => 'Gouvea', 'country_code' => 'BR'], ['name' => 'Opatija', 'country_code' => 'HR'], ['name' => 'Moldava nad Bodvou', 'country_code' => 'SK'], ['name' => 'Rio dos Cedros', 'country_code' => 'BR'], ['name' => 'Ceu Azul', 'country_code' => 'BR'], ['name' => 'Dolo Bay', 'country_code' => 'ET'], ['name' => 'Caetanopolis', 'country_code' => 'BR'], ['name' => 'Neuhausen am Rheinfall', 'country_code' => 'CH'], ['name' => 'Chaplygin', 'country_code' => 'RU'], ['name' => 'Wrentham', 'country_code' => 'US'], ['name' => 'Prudhoe', 'country_code' => 'GB'], ['name' => 'Uberherrn', 'country_code' => 'DE'], ['name' => 'Haradok', 'country_code' => 'BY'], ['name' => 'Malibu', 'country_code' => 'US'], ['name' => 'Porto-Vecchio', 'country_code' => 'FR'], ['name' => 'Pornichet', 'country_code' => 'FR'], ['name' => 'Alto Rio Doce', 'country_code' => 'BR'], ['name' => 'Castano Primo', 'country_code' => 'IT'], ['name' => 'Smyrna', 'country_code' => 'US'], ['name' => 'Conceicao dos Ouros', 'country_code' => 'BR'], ['name' => 'Mudgee', 'country_code' => 'AU'], ['name' => 'Tifni', 'country_code' => 'MA'], ['name' => 'Codigoro', 'country_code' => 'IT'], ['name' => 'Obidos', 'country_code' => 'PT'], ['name' => 'Mareeba', 'country_code' => 'AU'], ['name' => 'Campagnano di Roma', 'country_code' => 'IT'], ['name' => 'Cisneros', 'country_code' => 'CO'], ['name' => 'Halasztelek', 'country_code' => 'HU'], ['name' => 'Benedito Novo', 'country_code' => 'BR'], ['name' => 'Baranivka', 'country_code' => 'UA'], ['name' => 'Market Drayton', 'country_code' => 'GB'], ['name' => 'Labin', 'country_code' => 'HR'], ['name' => 'Venosa', 'country_code' => 'IT'], ['name' => 'Bucyrus', 'country_code' => 'US'], ['name' => 'Mombris', 'country_code' => 'DE'], ['name' => 'Zayukovo', 'country_code' => 'RU'], ['name' => 'Santo Antonio do Jacinto', 'country_code' => 'BR'], ['name' => 'La Roche-sur-Foron', 'country_code' => 'FR'], ['name' => 'Cafayate', 'country_code' => 'AR'], ['name' => 'Medina Sidonia', 'country_code' => 'ES'], ['name' => 'Valencia West', 'country_code' => 'US'], ['name' => 'Viera East', 'country_code' => 'US'], ['name' => 'Phon', 'country_code' => 'TH'], ['name' => 'Lommedalen', 'country_code' => 'NO'], ['name' => 'San Pedro', 'country_code' => 'BZ'], ['name' => 'Guspini', 'country_code' => 'IT'], ['name' => 'Targu Lapus', 'country_code' => 'RO'], ['name' => 'Obernai', 'country_code' => 'FR'], ['name' => 'Hauzenberg', 'country_code' => 'DE'], ['name' => 'Cuers', 'country_code' => 'FR'], ['name' => 'Sainte-Savine', 'country_code' => 'FR'], ['name' => 'Tiny', 'country_code' => 'CA'], ['name' => 'Irupi', 'country_code' => 'BR'], ['name' => 'Norfolk', 'country_code' => 'US'], ['name' => 'Kankaanpaa', 'country_code' => 'FI'], ['name' => 'Sitio do Quinto', 'country_code' => 'BR'], ['name' => 'Riolandia', 'country_code' => 'BR'], ['name' => 'Trofarello', 'country_code' => 'IT'], ['name' => 'Cologno al Serio', 'country_code' => 'IT'], ['name' => 'Tring', 'country_code' => 'GB'], ['name' => 'Tomball', 'country_code' => 'US'], ['name' => 'Ganserndorf', 'country_code' => 'AT'], ['name' => 'Hawera', 'country_code' => 'NZ'], ['name' => 'Lieksa', 'country_code' => 'FI'], ['name' => 'Dolinsk', 'country_code' => 'RU'], ['name' => 'Jaqueira', 'country_code' => 'BR'], ['name' => 'Vlasim', 'country_code' => 'CZ'], ['name' => 'Padiham', 'country_code' => 'GB'], ['name' => 'Florida City', 'country_code' => 'US'], ['name' => 'Etaples', 'country_code' => 'FR'], ['name' => 'Arataca', 'country_code' => 'BR'], ['name' => 'Cisternino', 'country_code' => 'IT'], ['name' => 'Courrieres', 'country_code' => 'FR'], ['name' => 'Zero Branco', 'country_code' => 'IT'], ['name' => 'Vasylkivka', 'country_code' => 'UA'], ['name' => 'Wanaque', 'country_code' => 'US'], ['name' => 'Englefield Green', 'country_code' => 'GB'], ['name' => 'Hollabrunn', 'country_code' => 'AT'], ['name' => 'Scotts Valley', 'country_code' => 'US'], ['name' => 'Gora', 'country_code' => 'PL'], ['name' => 'Jarabulus', 'country_code' => 'SY'], ['name' => 'Sao Joao do Manhuacu', 'country_code' => 'BR'], ['name' => 'Stokke', 'country_code' => 'NO'], ['name' => 'Jose Maria Morelos', 'country_code' => 'MX'], ['name' => 'Darnetal', 'country_code' => 'FR'], ['name' => 'Puente Nacional', 'country_code' => 'CO'], ['name' => 'Robstown', 'country_code' => 'US'], ['name' => 'Mezdra', 'country_code' => 'BG'], ['name' => 'Georgetown', 'country_code' => 'US'], ['name' => 'Sunninghill', 'country_code' => 'GB'], ['name' => 'Kruje', 'country_code' => 'AL'], ['name' => 'Rurrenabaque', 'country_code' => 'BO'], ['name' => 'Apen', 'country_code' => 'DE'], ['name' => 'Lake Los Angeles', 'country_code' => 'US'], ['name' => 'Aesch', 'country_code' => 'CH'], ['name' => 'Choppington', 'country_code' => 'GB'], ['name' => 'Sinzheim', 'country_code' => 'DE'], ['name' => 'Wolnzach', 'country_code' => 'DE'], ['name' => 'Wolmirstedt', 'country_code' => 'DE'], ['name' => 'Ross on Wye', 'country_code' => 'GB'], ['name' => 'Carbonera', 'country_code' => 'IT'], ['name' => 'Raubling', 'country_code' => 'DE'], ['name' => 'North Tidworth', 'country_code' => 'GB'], ['name' => 'Arlington', 'country_code' => 'US'], ['name' => 'Wanderlandia', 'country_code' => 'BR'], ['name' => 'Magdagachi', 'country_code' => 'RU'], ['name' => 'Teixeiras', 'country_code' => 'BR'], ['name' => 'Al M aziz', 'country_code' => 'MA'], ['name' => 'Vauvert', 'country_code' => 'FR'], ['name' => 'Somerset', 'country_code' => 'US'], ['name' => 'Pimenteiras', 'country_code' => 'BR'], ['name' => 'Bonito de Santa Fe', 'country_code' => 'BR'], ['name' => 'Nemyriv', 'country_code' => 'UA'], ['name' => 'Rio Colorado', 'country_code' => 'AR'], ['name' => 'Velke Mezirici', 'country_code' => 'CZ'], ['name' => 'Matca', 'country_code' => 'RO'], ['name' => 'Elma', 'country_code' => 'US'], ['name' => 'Excelsior Springs', 'country_code' => 'US'], ['name' => 'Diamond Springs', 'country_code' => 'US'], ['name' => 'Lundazi', 'country_code' => 'ZM'], ['name' => 'Gerstetten', 'country_code' => 'DE'], ['name' => 'Kalaoa', 'country_code' => 'US'], ['name' => 'Deutschlandsberg', 'country_code' => 'AT'], ['name' => 'Grafenhainichen', 'country_code' => 'DE'], ['name' => 'Sint Anthonis', 'country_code' => 'NL'], ['name' => 'Laredo', 'country_code' => 'ES'], ['name' => 'Saverne', 'country_code' => 'FR'], ['name' => 'Dudley', 'country_code' => 'US'], ['name' => 'Poggio a Caiano', 'country_code' => 'IT'], ['name' => 'Portomaggiore', 'country_code' => 'IT'], ['name' => 'Angicos', 'country_code' => 'BR'], ['name' => 'Carver', 'country_code' => 'US'], ['name' => 'Cordele', 'country_code' => 'US'], ['name' => 'Orchha', 'country_code' => 'IN'], ['name' => 'Musile di Piave', 'country_code' => 'IT'], ['name' => 'Mendota', 'country_code' => 'US'], ['name' => 'Grafton', 'country_code' => 'US'], ['name' => 'Tegueste', 'country_code' => 'ES'], ['name' => 'Mohnesee', 'country_code' => 'DE'], ['name' => 'Tamezmout', 'country_code' => 'MA'], ['name' => 'Athol', 'country_code' => 'US'], ['name' => 'Jodar', 'country_code' => 'ES'], ['name' => 'Plymouth', 'country_code' => 'US'], ['name' => 'Pacoti', 'country_code' => 'BR'], ['name' => 'Isola della Scala', 'country_code' => 'IT'], ['name' => 'Eufaula', 'country_code' => 'US'], ['name' => 'Frenstat pod Radhostem', 'country_code' => 'CZ'], ['name' => 'Glen Rock', 'country_code' => 'US'], ['name' => 'Cocoa Beach', 'country_code' => 'US'], ['name' => 'Altdorf', 'country_code' => 'DE'], ['name' => 'Prymorsk', 'country_code' => 'UA'], ['name' => 'Ravanusa', 'country_code' => 'IT'], ['name' => 'Aniche', 'country_code' => 'FR'], ['name' => 'Taormina', 'country_code' => 'IT'], ['name' => 'Benaguacil', 'country_code' => 'ES'], ['name' => 'Motegi', 'country_code' => 'JP'], ['name' => 'Nossa Senhora dos Milagres', 'country_code' => 'BR'], ['name' => 'Mena', 'country_code' => 'UA'], ['name' => 'Ubai', 'country_code' => 'BR'], ['name' => 'Bagamanoc', 'country_code' => 'PH'], ['name' => 'Oliva', 'country_code' => 'AR'], ['name' => 'Campo do Meio', 'country_code' => 'BR'], ['name' => 'Bullas', 'country_code' => 'ES'], ['name' => 'Billerbeck', 'country_code' => 'DE'], ['name' => 'Nyazepetrovsk', 'country_code' => 'RU'], ['name' => 'Ouro Branco', 'country_code' => 'BR'], ['name' => 'Mitai', 'country_code' => 'JP'], ['name' => 'Clute', 'country_code' => 'US'], ['name' => 'Rodeio', 'country_code' => 'BR'], ['name' => 'Tamalpais-Homestead Valley', 'country_code' => 'US'], ['name' => 'Gander', 'country_code' => 'CA'], ['name' => 'Allonnes', 'country_code' => 'FR'], ['name' => 'Ovada', 'country_code' => 'IT'], ['name' => 'Port St. John', 'country_code' => 'US'], ['name' => 'Eningen unter Achalm', 'country_code' => 'DE'], ['name' => 'Caorle', 'country_code' => 'IT'], ['name' => 'Chantilly', 'country_code' => 'FR'], ['name' => 'Hinwil', 'country_code' => 'CH'], ['name' => 'Hazerswoude-Dorp', 'country_code' => 'NL'], ['name' => 'Southborough', 'country_code' => 'GB'], ['name' => 'Isaszeg', 'country_code' => 'HU'], ['name' => 'Septemes-les-Vallons', 'country_code' => 'FR'], ['name' => 'Serra do Salitre', 'country_code' => 'BR'], ['name' => 'Endwell', 'country_code' => 'US'], ['name' => 'Udachnyy', 'country_code' => 'RU'], ['name' => 'Guaicara', 'country_code' => 'BR'], ['name' => 'Xiaoba', 'country_code' => 'CN'], ['name' => 'Salaya', 'country_code' => 'TH'], ['name' => 'Redentora', 'country_code' => 'BR'], ['name' => 'Iver', 'country_code' => 'GB'], ['name' => 'Imarui', 'country_code' => 'BR'], ['name' => 'Lyuban ', 'country_code' => 'BY'], ['name' => 'Diao ecun', 'country_code' => 'CN'], ['name' => 'Sant Joan de Vilatorrada', 'country_code' => 'ES'], ['name' => 'Esquipulas Palo Gordo', 'country_code' => 'GT'], ['name' => 'Tabontabon', 'country_code' => 'PH'], ['name' => 'Plano', 'country_code' => 'US'], ['name' => 'Madison Heights', 'country_code' => 'US'], ['name' => 'Port Morant', 'country_code' => 'JM'], ['name' => 'Huandacareo', 'country_code' => 'MX'], ['name' => 'Kurim', 'country_code' => 'CZ'], ['name' => 'Rudersberg', 'country_code' => 'DE'], ['name' => 'Guthrie', 'country_code' => 'US'], ['name' => 'Dranesville', 'country_code' => 'US'], ['name' => 'Royal Wootton Bassett', 'country_code' => 'GB'], ['name' => 'Rothesay', 'country_code' => 'CA'], ['name' => 'Pilar', 'country_code' => 'PH'], ['name' => 'Burgthann', 'country_code' => 'DE'], ['name' => 'Schwaigern', 'country_code' => 'DE'], ['name' => 'El Campo', 'country_code' => 'US'], ['name' => 'Varzaneh', 'country_code' => 'IR'], ['name' => 'Fortaleza dos Nogueiras', 'country_code' => 'BR'], ['name' => 'Trecastagni', 'country_code' => 'IT'], ['name' => 'Videle', 'country_code' => 'RO'], ['name' => 'Whitburn', 'country_code' => 'GB'], ['name' => 'Annoeullin', 'country_code' => 'FR'], ['name' => 'Mala Vyska', 'country_code' => 'UA'], ['name' => 'Bonate di Sopra', 'country_code' => 'IT'], ['name' => 'Oulad Friha', 'country_code' => 'MA'], ['name' => 'Panajachel', 'country_code' => 'GT'], ['name' => 'Drawsko Pomorskie', 'country_code' => 'PL'], ['name' => 'Budakalasz', 'country_code' => 'HU'], ['name' => 'Accokeek', 'country_code' => 'US'], ['name' => 'Mistelbach', 'country_code' => 'AT'], ['name' => 'Gravatal', 'country_code' => 'BR'], ['name' => 'Svidnik', 'country_code' => 'SK'], ['name' => 'Saint Helena Bay', 'country_code' => 'ZA'], ['name' => 'Rangsdorf', 'country_code' => 'DE'], ['name' => 'Krynica', 'country_code' => 'PL'], ['name' => 'Doornspijk', 'country_code' => 'NL'], ['name' => 'Kalmiuske', 'country_code' => 'UA'], ['name' => 'Brock', 'country_code' => 'CA'], ['name' => 'Kirchhundem', 'country_code' => 'DE'], ['name' => 'Evanston', 'country_code' => 'US'], ['name' => 'Stupava', 'country_code' => 'SK'], ['name' => 'Nzeto', 'country_code' => 'AO'], ['name' => 'Tudela', 'country_code' => 'PH'], ['name' => 'Dautphe', 'country_code' => 'DE'], ['name' => 'Eccleston', 'country_code' => 'GB'], ['name' => 'Randaberg', 'country_code' => 'NO'], ['name' => 'Anatoli', 'country_code' => 'GR'], ['name' => 'Hipperholme', 'country_code' => 'GB'], ['name' => 'Vernouillet', 'country_code' => 'FR'], ['name' => 'Itabirinha de Mantena', 'country_code' => 'BR'], ['name' => 'Mohlin', 'country_code' => 'CH'], ['name' => 'Sidi Moussa Ben Ali', 'country_code' => 'MA'], ['name' => 'Bad Nenndorf', 'country_code' => 'DE'], ['name' => 'Teulada', 'country_code' => 'ES'], ['name' => 'Walldurn', 'country_code' => 'DE'], ['name' => 'Schoningen', 'country_code' => 'DE'], ['name' => 'Bytca', 'country_code' => 'SK'], ['name' => 'Calheta', 'country_code' => 'PT'], ['name' => 'Pir Bakran', 'country_code' => 'IR'], ['name' => 'Oignies', 'country_code' => 'FR'], ['name' => 'Gravelines', 'country_code' => 'FR'], ['name' => 'Belmonte Mezzagno', 'country_code' => 'IT'], ['name' => 'Camisano Vicentino', 'country_code' => 'IT'], ['name' => 'Derdara', 'country_code' => 'MA'], ['name' => 'Chegem Vtoroy', 'country_code' => 'RU'], ['name' => 'Pontiac', 'country_code' => 'US'], ['name' => 'Griswold', 'country_code' => 'US'], ['name' => 'Dingman', 'country_code' => 'US'], ['name' => 'Stonehaven', 'country_code' => 'GB'], ['name' => 'Lenvik', 'country_code' => 'NO'], ['name' => 'Cachoeira de Minas', 'country_code' => 'BR'], ['name' => 'Sidi Kasem', 'country_code' => 'MA'], ['name' => 'La Union', 'country_code' => 'CO'], ['name' => 'Paranatama', 'country_code' => 'BR'], ['name' => 'Summerland', 'country_code' => 'CA'], ['name' => 'Bradwell', 'country_code' => 'GB'], ['name' => 'Kuruman', 'country_code' => 'ZA'], ['name' => 'Franklin', 'country_code' => 'US'], ['name' => 'Gold Canyon', 'country_code' => 'US'], ['name' => 'Selsey', 'country_code' => 'GB'], ['name' => 'Batemans Bay', 'country_code' => 'AU'], ['name' => 'Likhoslavl', 'country_code' => 'RU'], ['name' => 'Den Chai', 'country_code' => 'TH'], ['name' => 'Firminopolis', 'country_code' => 'BR'], ['name' => 'Boscotrecase', 'country_code' => 'IT'], ['name' => 'Kem', 'country_code' => 'RU'], ['name' => 'Antonio Carlos', 'country_code' => 'BR'], ['name' => 'Dzouz', 'country_code' => 'MA'], ['name' => 'Ulricehamn', 'country_code' => 'SE'], ['name' => 'Shengping', 'country_code' => 'CN'], ['name' => 'Onate', 'country_code' => 'ES'], ['name' => 'Diepenveen', 'country_code' => 'NL'], ['name' => 'Cedarburg', 'country_code' => 'US'], ['name' => 'Sacueni', 'country_code' => 'RO'], ['name' => 'Claiborne', 'country_code' => 'US'], ['name' => 'Temamatla', 'country_code' => 'MX'], ['name' => 'Kenzhe', 'country_code' => 'RU'], ['name' => 'Sursee', 'country_code' => 'CH'], ['name' => ' Ain Roua', 'country_code' => 'DZ'], ['name' => 'Putnam Valley', 'country_code' => 'US'], ['name' => 'La Riche', 'country_code' => 'FR'], ['name' => 'Waltikon', 'country_code' => 'CH'], ['name' => 'De Panne', 'country_code' => 'BE'], ['name' => 'Langelsheim', 'country_code' => 'DE'], ['name' => 'North Middleton', 'country_code' => 'US'], ['name' => 'Stollberg', 'country_code' => 'DE'], ['name' => 'Werther', 'country_code' => 'DE'], ['name' => 'Ezanville', 'country_code' => 'FR'], ['name' => 'Ghinda e', 'country_code' => 'ER'], ['name' => 'Peiting', 'country_code' => 'DE'], ['name' => 'Beachwood', 'country_code' => 'US'], ['name' => 'Seven Hills', 'country_code' => 'US'], ['name' => 'Siniscola', 'country_code' => 'IT'], ['name' => 'Upper Montclair', 'country_code' => 'US'], ['name' => 'Rutesheim', 'country_code' => 'DE'], ['name' => 'Epazoyucan', 'country_code' => 'MX'], ['name' => 'Hohenkirchen-Siegertsbrunn', 'country_code' => 'DE'], ['name' => 'Tadley', 'country_code' => 'GB'], ['name' => 'Ciechocinek', 'country_code' => 'PL'], ['name' => 'Harsum', 'country_code' => 'DE'], ['name' => 'Martinsville', 'country_code' => 'US'], ['name' => 'Sesto Calende', 'country_code' => 'IT'], ['name' => 'Cranleigh', 'country_code' => 'GB'], ['name' => 'Recke', 'country_code' => 'DE'], ['name' => 'Val-des-Monts', 'country_code' => 'CA'], ['name' => 'Paranacity', 'country_code' => 'BR'], ['name' => 'Jucati', 'country_code' => 'BR'], ['name' => 'Cerrillos', 'country_code' => 'AR'], ['name' => 'Elk City', 'country_code' => 'US'], ['name' => 'Bouabout', 'country_code' => 'MA'], ['name' => 'Satuek', 'country_code' => 'TH'], ['name' => 'Tawnza', 'country_code' => 'MA'], ['name' => 'Andraitx', 'country_code' => 'ES'], ['name' => 'Riesi', 'country_code' => 'IT'], ['name' => 'Holywood', 'country_code' => 'GB'], ['name' => 'Mulungu', 'country_code' => 'BR'], ['name' => 'Leatherhead', 'country_code' => 'GB'], ['name' => 'Yuasa', 'country_code' => 'JP'], ['name' => 'Scottdale', 'country_code' => 'US'], ['name' => 'Tache', 'country_code' => 'CA'], ['name' => 'Severnyy', 'country_code' => 'RU'], ['name' => 'Grobbendonk', 'country_code' => 'BE'], ['name' => 'Sablan', 'country_code' => 'PH'], ['name' => 'Raesfeld', 'country_code' => 'DE'], ['name' => 'Prinsenbeek', 'country_code' => 'NL'], ['name' => 'Silver City', 'country_code' => 'US'], ['name' => 'Upper Uwchlan', 'country_code' => 'US'], ['name' => 'Wambrechies', 'country_code' => 'FR'], ['name' => 'Duas Barras', 'country_code' => 'BR'], ['name' => 'Resende Costa', 'country_code' => 'BR'], ['name' => 'Melito di Porto Salvo', 'country_code' => 'IT'], ['name' => 'Agareb', 'country_code' => 'TN'], ['name' => 'Douar Trougout', 'country_code' => 'MA'], ['name' => 'Gluckstadt', 'country_code' => 'DE'], ['name' => 'Ferreiros', 'country_code' => 'BR'], ['name' => 'Wakefield', 'country_code' => 'US'], ['name' => 'Wittingen', 'country_code' => 'DE'], ['name' => 'Esil', 'country_code' => 'KZ'], ['name' => 'Dolores', 'country_code' => 'PH'], ['name' => 'Whitchurch', 'country_code' => 'GB'], ['name' => 'Montanhas', 'country_code' => 'BR'], ['name' => 'Drezna', 'country_code' => 'RU'], ['name' => 'Rheinau', 'country_code' => 'DE'], ['name' => 'Omaruru', 'country_code' => 'NA'], ['name' => 'Kin', 'country_code' => 'JP'], ['name' => 'Mitchellville', 'country_code' => 'US'], ['name' => 'Lezignan-Corbieres', 'country_code' => 'FR'], ['name' => 'Cholpon-Ata', 'country_code' => 'KG'], ['name' => 'Carmo da Mata', 'country_code' => 'BR'], ['name' => 'Bannewitz', 'country_code' => 'DE'], ['name' => 'Suyo', 'country_code' => 'PH'], ['name' => 'Roncador', 'country_code' => 'BR'], ['name' => 'Plankstadt', 'country_code' => 'DE'], ['name' => 'Alto Garcas', 'country_code' => 'BR'], ['name' => 'Santana', 'country_code' => 'RO'], ['name' => 'Sebastiao Laranjeiras', 'country_code' => 'BR'], ['name' => 'Normandia', 'country_code' => 'BR'], ['name' => 'Targu Ocna', 'country_code' => 'RO'], ['name' => 'Saint-Cyprien', 'country_code' => 'FR'], ['name' => 'Kuriyama', 'country_code' => 'JP'], ['name' => 'Castelvetro di Modena', 'country_code' => 'IT'], ['name' => 'Spirit Lake', 'country_code' => 'US'], ['name' => 'Woodland Park', 'country_code' => 'US'], ['name' => 'Barbadanes', 'country_code' => 'ES'], ['name' => 'Masanasa', 'country_code' => 'ES'], ['name' => 'Largs', 'country_code' => 'GB'], ['name' => 'Chorrocho', 'country_code' => 'BR'], ['name' => 'Tagta', 'country_code' => 'TM'], ['name' => 'Roca Sales', 'country_code' => 'BR'], ['name' => 'Scharbeutz', 'country_code' => 'DE'], ['name' => 'Brattleboro', 'country_code' => 'US'], ['name' => 'Padre Burgos', 'country_code' => 'PH'], ['name' => 'Bom Jesus', 'country_code' => 'BR'], ['name' => 'Creazzo', 'country_code' => 'IT'], ['name' => 'Xambioa', 'country_code' => 'BR'], ['name' => 'Panazol', 'country_code' => 'FR'], ['name' => 'Zvenigovo', 'country_code' => 'RU'], ['name' => 'Valdez', 'country_code' => 'EC'], ['name' => 'Bridgeton', 'country_code' => 'US'], ['name' => 'Lower Gwynedd', 'country_code' => 'US'], ['name' => 'Lokhvytsya', 'country_code' => 'UA'], ['name' => 'Montopoli in Val d Arno', 'country_code' => 'IT'], ['name' => 'Nova Laranjeiras', 'country_code' => 'BR'], ['name' => 'Mexico', 'country_code' => 'US'], ['name' => 'Guayabal', 'country_code' => 'CO'], ['name' => 'Myronivka', 'country_code' => 'UA'], ['name' => 'Unicov', 'country_code' => 'CZ'], ['name' => 'Blundellsands', 'country_code' => 'GB'], ['name' => 'Santa Maria', 'country_code' => 'BR'], ['name' => 'Archdale', 'country_code' => 'US'], ['name' => 'Balve', 'country_code' => 'DE'], ['name' => 'Rothenburg ob der Tauber', 'country_code' => 'DE'], ['name' => 'Coronel Dorrego', 'country_code' => 'AR'], ['name' => 'Scalea', 'country_code' => 'IT'], ['name' => 'Ostrhauderfehn', 'country_code' => 'DE'], ['name' => 'Zierikzee', 'country_code' => 'NL'], ['name' => 'Amneville', 'country_code' => 'FR'], ['name' => 'Yakymivka', 'country_code' => 'UA'], ['name' => 'Divinolandia', 'country_code' => 'BR'], ['name' => 'Marktheidenfeld', 'country_code' => 'DE'], ['name' => 'Lurate Caccivio', 'country_code' => 'IT'], ['name' => 'Utiel', 'country_code' => 'ES'], ['name' => 'Crikvenica', 'country_code' => 'HR'], ['name' => 'Lutry', 'country_code' => 'CH'], ['name' => 'Domazlice', 'country_code' => 'CZ'], ['name' => 'Bogalusa', 'country_code' => 'US'], ['name' => 'Center', 'country_code' => 'US'], ['name' => 'Paceco', 'country_code' => 'IT'], ['name' => 'Lenzburg', 'country_code' => 'CH'], ['name' => 'Poldasht', 'country_code' => 'IR'], ['name' => 'Buriti do Tocantins', 'country_code' => 'BR'], ['name' => 'El Khemis des Beni Chegdal', 'country_code' => 'MA'], ['name' => 'Ain Legdah', 'country_code' => 'MA'], ['name' => 'Newport', 'country_code' => 'US'], ['name' => 'Hanover', 'country_code' => 'US'], ['name' => 'Pfastatt', 'country_code' => 'FR'], ['name' => 'Elwood', 'country_code' => 'US'], ['name' => 'Muquem de Sao Francisco', 'country_code' => 'BR'], ['name' => 'Cerese', 'country_code' => 'IT'], ['name' => 'Ochsenfurt', 'country_code' => 'DE'], ['name' => 'Santiago del Teide', 'country_code' => 'ES'], ['name' => 'Laracha', 'country_code' => 'ES'], ['name' => 'Aginskoye', 'country_code' => 'RU'], ['name' => 'Florham Park', 'country_code' => 'US'], ['name' => 'Florennes', 'country_code' => 'BE'], ['name' => 'Ahlaf', 'country_code' => 'MA'], ['name' => 'Trinity', 'country_code' => 'US'], ['name' => 'Mack', 'country_code' => 'US'], ['name' => 'Geisenfeld', 'country_code' => 'DE'], ['name' => 'Klyetsk', 'country_code' => 'BY'], ['name' => 'Lahfayr', 'country_code' => 'MA'], ['name' => 'Montmagny', 'country_code' => 'CA'], ['name' => 'Kostinbrod', 'country_code' => 'BG'], ['name' => 'Glenfield', 'country_code' => 'GB'], ['name' => 'Cornate d Adda', 'country_code' => 'IT'], ['name' => 'Jaguari', 'country_code' => 'BR'], ['name' => 'Roma', 'country_code' => 'US'], ['name' => 'Acuitzio del Canje', 'country_code' => 'MX'], ['name' => 'Mountain Top', 'country_code' => 'US'], ['name' => 'Chkalovsk', 'country_code' => 'RU'], ['name' => 'Port Salerno', 'country_code' => 'US'], ['name' => 'Urai', 'country_code' => 'BR'], ['name' => 'Schipluiden', 'country_code' => 'NL'], ['name' => 'Castelli Calepio', 'country_code' => 'IT'], ['name' => 'Avigliano', 'country_code' => 'IT'], ['name' => 'Alto Paraguai', 'country_code' => 'BR'], ['name' => 'Briancon', 'country_code' => 'FR'], ['name' => 'Castel Mella', 'country_code' => 'IT'], ['name' => 'Kyjov', 'country_code' => 'CZ'], ['name' => 'Magalia', 'country_code' => 'US'], ['name' => 'Sales Oliveira', 'country_code' => 'BR'], ['name' => 'Nieuwenhagen', 'country_code' => 'NL'], ['name' => 'Retie', 'country_code' => 'BE'], ['name' => 'Duruma', 'country_code' => 'SA'], ['name' => 'Gerasdorf bei Wien', 'country_code' => 'AT'], ['name' => 'Karlsdorf-Neuthard', 'country_code' => 'DE'], ['name' => 'Welzheim', 'country_code' => 'DE'], ['name' => 'Maxeville', 'country_code' => 'FR'], ['name' => 'Phanat Nikhom', 'country_code' => 'TH'], ['name' => 'Naliya', 'country_code' => 'IN'], ['name' => 'Egersund', 'country_code' => 'NO'], ['name' => 'Gelves', 'country_code' => 'ES'], ['name' => 'Hanover', 'country_code' => 'US'], ['name' => 'Magnolia', 'country_code' => 'US'], ['name' => 'Emmaus', 'country_code' => 'US'], ['name' => 'Holic', 'country_code' => 'SK'], ['name' => 'Moita Bonita', 'country_code' => 'BR'], ['name' => 'Amdel', 'country_code' => 'MA'], ['name' => 'Capitao de Campos', 'country_code' => 'BR'], ['name' => 'Bad Schwalbach', 'country_code' => 'DE'], ['name' => 'Racale', 'country_code' => 'IT'], ['name' => 'Gracemere', 'country_code' => 'AU'], ['name' => 'Piazzola sul Brenta', 'country_code' => 'IT'], ['name' => 'Jackson', 'country_code' => 'US'], ['name' => 'Ban Bo Phlap', 'country_code' => 'TH'], ['name' => 'Nanakuli', 'country_code' => 'US'], ['name' => 'Byerazino', 'country_code' => 'BY'], ['name' => 'Hejiaji', 'country_code' => 'CN'], ['name' => 'Boldesti-Scaeni', 'country_code' => 'RO'], ['name' => 'Resende', 'country_code' => 'PT'], ['name' => 'Ecaussinnes-Lalaing', 'country_code' => 'BE'], ['name' => 'Saint-Junien', 'country_code' => 'FR'], ['name' => 'Lencois', 'country_code' => 'BR'], ['name' => 'Mamakating', 'country_code' => 'US'], ['name' => 'Webster', 'country_code' => 'US'], ['name' => 'Riorges', 'country_code' => 'FR'], ['name' => 'Venafro', 'country_code' => 'IT'], ['name' => 'Benisa', 'country_code' => 'ES'], ['name' => 'Oravita', 'country_code' => 'RO'], ['name' => 'La Maddalena', 'country_code' => 'IT'], ['name' => 'Kormend', 'country_code' => 'HU'], ['name' => 'Fagundes', 'country_code' => 'BR'], ['name' => 'Richland', 'country_code' => 'US'], ['name' => 'Hasbergen', 'country_code' => 'DE'], ['name' => 'Douar Oulad Naoual', 'country_code' => 'MA'], ['name' => 'Laqraqra', 'country_code' => 'MA'], ['name' => 'Eidsberg', 'country_code' => 'NO'], ['name' => 'Elizabethtown', 'country_code' => 'US'], ['name' => 'East Windsor', 'country_code' => 'US'], ['name' => 'Mancha Real', 'country_code' => 'ES'], ['name' => 'Botticino Sera', 'country_code' => 'IT'], ['name' => 'Stelle', 'country_code' => 'DE'], ['name' => 'Dinard', 'country_code' => 'FR'], ['name' => 'Show Low', 'country_code' => 'US'], ['name' => 'Nikel', 'country_code' => 'RU'], ['name' => 'Trostberg an der Alz', 'country_code' => 'DE'], ['name' => 'Erin', 'country_code' => 'CA'], ['name' => 'Jimani', 'country_code' => 'DO'], ['name' => 'Aratuba', 'country_code' => 'BR'], ['name' => 'Duque Bacelar', 'country_code' => 'BR'], ['name' => 'Wildau', 'country_code' => 'DE'], ['name' => 'Acate', 'country_code' => 'IT'], ['name' => 'Cadolzburg', 'country_code' => 'DE'], ['name' => 'Kall', 'country_code' => 'DE'], ['name' => 'Flawil', 'country_code' => 'CH'], ['name' => 'Lamsabih', 'country_code' => 'MA'], ['name' => 'Estiva', 'country_code' => 'BR'], ['name' => 'Douchy-les-Mines', 'country_code' => 'FR'], ['name' => 'Douar Sgarta', 'country_code' => 'MA'], ['name' => 'Woods Cross', 'country_code' => 'US'], ['name' => 'Curimata', 'country_code' => 'BR'], ['name' => 'Baldock', 'country_code' => 'GB'], ['name' => 'Belen', 'country_code' => 'PY'], ['name' => 'Byram', 'country_code' => 'US'], ['name' => 'North Bellport', 'country_code' => 'US'], ['name' => 'Chapantongo', 'country_code' => 'MX'], ['name' => 'Fort Bliss', 'country_code' => 'US'], ['name' => 'Gentio do Ouro', 'country_code' => 'BR'], ['name' => 'Sorsk', 'country_code' => 'RU'], ['name' => 'Highland', 'country_code' => 'US'], ['name' => 'Yuryuzan', 'country_code' => 'RU'], ['name' => 'Timahdit', 'country_code' => 'MA'], ['name' => 'Kastav', 'country_code' => 'HR'], ['name' => 'Kennebunk', 'country_code' => 'US'], ['name' => 'Lyndon', 'country_code' => 'US'], ['name' => 'Adendorf', 'country_code' => 'DE'], ['name' => 'Cazzago San Martino', 'country_code' => 'IT'], ['name' => 'Covenas', 'country_code' => 'CO'], ['name' => 'Eckington', 'country_code' => 'GB'], ['name' => 'Abaiara', 'country_code' => 'BR'], ['name' => 'Waidhofen an der Ybbs', 'country_code' => 'AT'], ['name' => 'Alassio', 'country_code' => 'IT'], ['name' => 'Salisbury', 'country_code' => 'US'], ['name' => 'Horbury', 'country_code' => 'GB'], ['name' => 'Hailey', 'country_code' => 'US'], ['name' => 'Snovsk', 'country_code' => 'UA'], ['name' => 'Jamaat Shaim', 'country_code' => 'MA'], ['name' => 'Scottsburg', 'country_code' => 'US'], ['name' => 'Saint-Hilaire-de-Riez', 'country_code' => 'FR'], ['name' => 'Suhr', 'country_code' => 'CH'], ['name' => 'Chassieu', 'country_code' => 'FR'], ['name' => 'Portes-les-Valence', 'country_code' => 'FR'], ['name' => 'Sant Ilario d Enza', 'country_code' => 'IT'], ['name' => 'Schonaich', 'country_code' => 'DE'], ['name' => 'Kingsnorth', 'country_code' => 'GB'], ['name' => 'Urbana', 'country_code' => 'US'], ['name' => 'Lijiacha', 'country_code' => 'CN'], ['name' => 'Schiller Park', 'country_code' => 'US'], ['name' => 'Fenton', 'country_code' => 'US'], ['name' => 'Louvres', 'country_code' => 'FR'], ['name' => 'Lajosmizse', 'country_code' => 'HU'], ['name' => 'Alcantaras', 'country_code' => 'BR'], ['name' => 'Lunenburg', 'country_code' => 'US'], ['name' => 'Bayou Blue', 'country_code' => 'US'], ['name' => 'Chekmagush', 'country_code' => 'RU'], ['name' => 'Los Alamitos', 'country_code' => 'US'], ['name' => 'Destrehan', 'country_code' => 'US'], ['name' => 'Salcedo', 'country_code' => 'PH'], ['name' => 'Shevington', 'country_code' => 'GB'], ['name' => 'Minooka', 'country_code' => 'US'], ['name' => 'Cividale del Friuli', 'country_code' => 'IT'], ['name' => 'Burrel', 'country_code' => 'AL'], ['name' => 'Terra de Areia', 'country_code' => 'BR'], ['name' => 'Gardere', 'country_code' => 'US'], ['name' => 'Talaigua Nuevo', 'country_code' => 'CO'], ['name' => 'Calan', 'country_code' => 'RO'], ['name' => 'Tilmi', 'country_code' => 'MA'], ['name' => 'Kiato', 'country_code' => 'GR'], ['name' => 'Monte Quemado', 'country_code' => 'AR'], ['name' => 'Cascades', 'country_code' => 'US'], ['name' => 'Kincardine', 'country_code' => 'CA'], ['name' => 'Porto Firme', 'country_code' => 'BR'], ['name' => 'Hillsborough', 'country_code' => 'US'], ['name' => 'Lansing', 'country_code' => 'US'], ['name' => 'El Ghourdane', 'country_code' => 'MA'], ['name' => 'Onoto', 'country_code' => 'VE'], ['name' => 'Tsqaltubo', 'country_code' => 'GE'], ['name' => 'Gardony', 'country_code' => 'HU'], ['name' => 'Gardnerville Ranchos', 'country_code' => 'US'], ['name' => 'Sankt Johann im Pongau', 'country_code' => 'AT'], ['name' => 'Gornozavodsk', 'country_code' => 'RU'], ['name' => 'Collegedale', 'country_code' => 'US'], ['name' => 'Herbolzheim', 'country_code' => 'DE'], ['name' => 'Summerfield', 'country_code' => 'US'], ['name' => 'Great Harwood', 'country_code' => 'GB'], ['name' => 'Nueva Helvecia', 'country_code' => 'UY'], ['name' => 'Agcogon', 'country_code' => 'PH'], ['name' => 'Humahuaca', 'country_code' => 'AR'], ['name' => 'Vila Franca do Campo', 'country_code' => 'PT'], ['name' => 'Oxted', 'country_code' => 'GB'], ['name' => 'Lang Suan', 'country_code' => 'TH'], ['name' => 'Yangirabot', 'country_code' => 'UZ'], ['name' => 'Caotan', 'country_code' => 'CN'], ['name' => 'Lakeville', 'country_code' => 'US'], ['name' => 'Cepagatti', 'country_code' => 'IT'], ['name' => 'Soham', 'country_code' => 'GB'], ['name' => 'Snyder', 'country_code' => 'US'], ['name' => 'Anguera', 'country_code' => 'BR'], ['name' => 'Tarrytown', 'country_code' => 'US'], ['name' => 'South Normanton', 'country_code' => 'GB'], ['name' => 'Viera West', 'country_code' => 'US'], ['name' => 'Bang Ban', 'country_code' => 'TH'], ['name' => 'Wyandanch', 'country_code' => 'US'], ['name' => 'Fairfield', 'country_code' => 'US'], ['name' => 'Eugenopolis', 'country_code' => 'BR'], ['name' => 'Mount Sterling', 'country_code' => 'US'], ['name' => 'Pocao', 'country_code' => 'BR'], ['name' => 'Belen', 'country_code' => 'AR'], ['name' => 'Granby', 'country_code' => 'US'], ['name' => 'Ravenna', 'country_code' => 'US'], ['name' => 'Catskill', 'country_code' => 'US'], ['name' => 'Ipaporanga', 'country_code' => 'BR'], ['name' => 'Bellmawr', 'country_code' => 'US'], ['name' => 'Makoua', 'country_code' => 'CG'], ['name' => 'Touama', 'country_code' => 'MA'], ['name' => 'Campos del Puerto', 'country_code' => 'ES'], ['name' => 'Grigny', 'country_code' => 'FR'], ['name' => 'Bojaca', 'country_code' => 'CO'], ['name' => 'Ouaklim Oukider', 'country_code' => 'MA'], ['name' => 'Tortoli', 'country_code' => 'IT'], ['name' => 'Sidi Abdellah Ben Taazizt', 'country_code' => 'MA'], ['name' => 'Lardero', 'country_code' => 'ES'], ['name' => 'San Giustino', 'country_code' => 'IT'], ['name' => 'Angola', 'country_code' => 'US'], ['name' => 'Alatyr', 'country_code' => 'RU'], ['name' => 'Sao Jeronimo da Serra', 'country_code' => 'BR'], ['name' => 'Charouine', 'country_code' => 'DZ'], ['name' => 'Usmate Velate', 'country_code' => 'IT'], ['name' => 'Aramari', 'country_code' => 'BR'], ['name' => 'Coshocton', 'country_code' => 'US'], ['name' => 'Floresta Azul', 'country_code' => 'BR'], ['name' => 'Rumburk', 'country_code' => 'CZ'], ['name' => 'La Chapelle-Saint-Mesmin', 'country_code' => 'FR'], ['name' => 'Campo Redondo', 'country_code' => 'BR'], ['name' => 'Tarare', 'country_code' => 'FR'], ['name' => 'Neede', 'country_code' => 'NL'], ['name' => 'Passy', 'country_code' => 'FR'], ['name' => 'Mendota Heights', 'country_code' => 'US'], ['name' => 'Palmares do Sul', 'country_code' => 'BR'], ['name' => 'Iuiu', 'country_code' => 'BR'], ['name' => 'Bleiswijk', 'country_code' => 'NL'], ['name' => 'Gross-Enzersdorf', 'country_code' => 'AT'], ['name' => 'Wantage', 'country_code' => 'GB'], ['name' => 'Haysville', 'country_code' => 'US'], ['name' => 'Nauheim', 'country_code' => 'DE'], ['name' => 'Mulsen', 'country_code' => 'DE'], ['name' => 'New Britain', 'country_code' => 'US'], ['name' => 'Avelino Lopes', 'country_code' => 'BR'], ['name' => 'Tega Cay', 'country_code' => 'US'], ['name' => 'Zelhem', 'country_code' => 'NL'], ['name' => 'Ichinohe', 'country_code' => 'JP'], ['name' => 'Amherst', 'country_code' => 'US'], ['name' => 'Dammartin-en-Goele', 'country_code' => 'FR'], ['name' => 'Dent', 'country_code' => 'US'], ['name' => 'Paramoti', 'country_code' => 'BR'], ['name' => 'Chantepie', 'country_code' => 'FR'], ['name' => 'Sogne', 'country_code' => 'NO'], ['name' => 'Cislago', 'country_code' => 'IT'], ['name' => 'Krosno Odrzanskie', 'country_code' => 'PL'], ['name' => 'Sant Agata de Goti', 'country_code' => 'IT'], ['name' => 'Eisenberg', 'country_code' => 'DE'], ['name' => 'Imuris', 'country_code' => 'MX'], ['name' => 'Villerupt', 'country_code' => 'FR'], ['name' => 'Hucclecote', 'country_code' => 'GB'], ['name' => 'Etropole', 'country_code' => 'BG'], ['name' => 'Angelim', 'country_code' => 'BR'], ['name' => 'Maryport', 'country_code' => 'GB'], ['name' => 'Burtonwood', 'country_code' => 'GB'], ['name' => 'Honmachi', 'country_code' => 'JP'], ['name' => 'Bailin', 'country_code' => 'CN'], ['name' => 'Haddonfield', 'country_code' => 'US'], ['name' => 'Abjij', 'country_code' => 'EG'], ['name' => 'Sao Domingos', 'country_code' => 'BR'], ['name' => 'Iazizatene', 'country_code' => 'MA'], ['name' => 'Groton', 'country_code' => 'US'], ['name' => 'Fil akovo', 'country_code' => 'SK'], ['name' => 'Westerkappeln', 'country_code' => 'DE'], ['name' => 'Illintsi', 'country_code' => 'UA'], ['name' => 'Vieux-Conde', 'country_code' => 'FR'], ['name' => 'Beachwood', 'country_code' => 'US'], ['name' => 'Bradford', 'country_code' => 'US'], ['name' => 'Prien am Chiemsee', 'country_code' => 'DE'], ['name' => 'North Vernon', 'country_code' => 'US'], ['name' => 'Samford', 'country_code' => 'AU'], ['name' => 'Kaset Wisai', 'country_code' => 'TH'], ['name' => 'Nhandeara', 'country_code' => 'BR'], ['name' => 'Irineopolis', 'country_code' => 'BR'], ['name' => 'Sturovo', 'country_code' => 'SK'], ['name' => 'Leicester', 'country_code' => 'US'], ['name' => 'Getulina', 'country_code' => 'BR'], ['name' => 'Travilah', 'country_code' => 'US'], ['name' => 'Saire', 'country_code' => 'BR'], ['name' => 'Le Pradet', 'country_code' => 'FR'], ['name' => 'Kaneohe Station', 'country_code' => 'US'], ['name' => 'Winton', 'country_code' => 'US'], ['name' => 'Boguchar', 'country_code' => 'RU'], ['name' => 'Magurele', 'country_code' => 'RO'], ['name' => 'Presidente Vargas', 'country_code' => 'BR'], ['name' => 'Kleinblittersdorf', 'country_code' => 'DE'], ['name' => 'Celina', 'country_code' => 'US'], ['name' => 'Urubici', 'country_code' => 'BR'], ['name' => 'Hartsville', 'country_code' => 'US'], ['name' => 'Tha Chang', 'country_code' => 'TH'], ['name' => 'Canyon Lake', 'country_code' => 'US'], ['name' => 'Sant Antioco', 'country_code' => 'IT'], ['name' => 'North Dundas', 'country_code' => 'CA'], ['name' => 'Aulla', 'country_code' => 'IT'], ['name' => 'El Playon', 'country_code' => 'CO'], ['name' => 'Marcali', 'country_code' => 'HU'], ['name' => 'Oberderdingen', 'country_code' => 'DE'], ['name' => 'Krizevci', 'country_code' => 'HR'], ['name' => 'Drochtersen', 'country_code' => 'DE'], ['name' => 'Pirangi', 'country_code' => 'BR'], ['name' => 'Piranhas', 'country_code' => 'BR'], ['name' => 'Ulrum', 'country_code' => 'NL'], ['name' => 'Burkburnett', 'country_code' => 'US'], ['name' => 'Lighthouse Point', 'country_code' => 'US'], ['name' => 'Eunice', 'country_code' => 'US'], ['name' => 'Monmouth', 'country_code' => 'GB'], ['name' => 'Tetyushi', 'country_code' => 'RU'], ['name' => 'Sonseca', 'country_code' => 'ES'], ['name' => 'Joquicingo', 'country_code' => 'MX'], ['name' => 'Mineral de Angangueo', 'country_code' => 'MX'], ['name' => 'Montlouis-sur-Loire', 'country_code' => 'FR'], ['name' => 'Matias Cardoso', 'country_code' => 'BR'], ['name' => 'Hallbergmoos', 'country_code' => 'DE'], ['name' => 'Jesenik', 'country_code' => 'CZ'], ['name' => 'Santa Cruz', 'country_code' => 'EC'], ['name' => 'Edd', 'country_code' => 'ER'], ['name' => 'Douar Jwalla', 'country_code' => 'MA'], ['name' => 'Saint-Jean-de-Vedas', 'country_code' => 'FR'], ['name' => 'Greentree', 'country_code' => 'US'], ['name' => 'Engenheiro Caldas', 'country_code' => 'BR'], ['name' => 'Beaumont-sur-Oise', 'country_code' => 'FR'], ['name' => 'Draksharama', 'country_code' => 'IN'], ['name' => 'Sagada', 'country_code' => 'PH'], ['name' => 'Zaouiet Says', 'country_code' => 'MA'], ['name' => 'Friedrichsthal', 'country_code' => 'DE'], ['name' => 'Saltcoats', 'country_code' => 'GB'], ['name' => 'Wellesley', 'country_code' => 'CA'], ['name' => 'Capilla del Monte', 'country_code' => 'AR'], ['name' => 'Apt', 'country_code' => 'FR'], ['name' => 'Estevan', 'country_code' => 'CA'], ['name' => 'Le Luc', 'country_code' => 'FR'], ['name' => 'Polistena', 'country_code' => 'IT'], ['name' => 'Portland', 'country_code' => 'AU'], ['name' => 'Barton upon Humber', 'country_code' => 'GB'], ['name' => 'Therwil', 'country_code' => 'CH'], ['name' => 'North Saanich', 'country_code' => 'CA'], ['name' => 'Lauingen', 'country_code' => 'DE'], ['name' => 'Plaridel', 'country_code' => 'PH'], ['name' => 'Westview', 'country_code' => 'US'], ['name' => 'Otar', 'country_code' => 'KZ'], ['name' => 'San Francisco', 'country_code' => 'HN'], ['name' => 'Bewdley', 'country_code' => 'GB'], ['name' => 'Sanjiaocheng', 'country_code' => 'CN'], ['name' => 'Hericourt', 'country_code' => 'FR'], ['name' => 'Majdal Shams', 'country_code' => 'IL'], ['name' => 'Balingoan', 'country_code' => 'PH'], ['name' => 'DuBois', 'country_code' => 'US'], ['name' => 'Lamesa', 'country_code' => 'US'], ['name' => 'Vire', 'country_code' => 'FR'], ['name' => 'Korablino', 'country_code' => 'RU'], ['name' => 'North Logan', 'country_code' => 'US'], ['name' => 'Berlin', 'country_code' => 'US'], ['name' => 'Goldach', 'country_code' => 'CH'], ['name' => 'Morazan', 'country_code' => 'GT'], ['name' => 'Cerreto Guidi', 'country_code' => 'IT'], ['name' => 'Boguchany', 'country_code' => 'RU'], ['name' => 'Boujediane', 'country_code' => 'MA'], ['name' => 'Waupun', 'country_code' => 'US'], ['name' => 'Jeumont', 'country_code' => 'FR'], ['name' => 'Kursavka', 'country_code' => 'RU'], ['name' => 'Tyrnavos', 'country_code' => 'GR'], ['name' => 'Fino Mornasco', 'country_code' => 'IT'], ['name' => 'Florestopolis', 'country_code' => 'BR'], ['name' => 'Big Lake', 'country_code' => 'US'], ['name' => 'Hillsdale', 'country_code' => 'US'], ['name' => 'Divisopolis', 'country_code' => 'BR'], ['name' => 'Calcado', 'country_code' => 'BR'], ['name' => 'Broomall', 'country_code' => 'US'], ['name' => 'San Jose de Aerocuar', 'country_code' => 'VE'], ['name' => 'Santa Croce Camerina', 'country_code' => 'IT'], ['name' => 'Jamapa', 'country_code' => 'MX'], ['name' => 'Eichenzell', 'country_code' => 'DE'], ['name' => 'Gloucester City', 'country_code' => 'US'], ['name' => 'Chulym', 'country_code' => 'RU'], ['name' => 'Sansare', 'country_code' => 'GT'], ['name' => 'Armstrong', 'country_code' => 'AR'], ['name' => 'Cabestany', 'country_code' => 'FR'], ['name' => 'Qasr-e Shirin', 'country_code' => 'IR'], ['name' => 'Herrsching am Ammersee', 'country_code' => 'DE'], ['name' => 'Shahmirzad', 'country_code' => 'IR'], ['name' => 'Grand Rapids', 'country_code' => 'US'], ['name' => 'Alto Parnaiba', 'country_code' => 'BR'], ['name' => 'Staryya Darohi', 'country_code' => 'BY'], ['name' => 'Emsworth', 'country_code' => 'GB'], ['name' => 'Santa Ana Huista', 'country_code' => 'GT'], ['name' => 'Rychnov nad Kneznou', 'country_code' => 'CZ'], ['name' => 'Bondoufle', 'country_code' => 'FR'], ['name' => 'Santa Ines', 'country_code' => 'BR'], ['name' => 'Braunfels', 'country_code' => 'DE'], ['name' => 'Valkeala', 'country_code' => 'FI'], ['name' => 'Lorch', 'country_code' => 'DE'], ['name' => 'Xintianfeng', 'country_code' => 'CN'], ['name' => 'Montechiarugolo', 'country_code' => 'IT'], ['name' => 'Gengenbach', 'country_code' => 'DE'], ['name' => 'Trofaiach', 'country_code' => 'AT'], ['name' => 'Hawaiian Paradise Park', 'country_code' => 'US'], ['name' => 'Rianxo', 'country_code' => 'ES'], ['name' => 'Arizona City', 'country_code' => 'US'], ['name' => 'Tagoloan', 'country_code' => 'PH'], ['name' => 'Barros Cassal', 'country_code' => 'BR'], ['name' => 'Kirchseeon', 'country_code' => 'DE'], ['name' => 'Susice', 'country_code' => 'CZ'], ['name' => 'Centenario do Sul', 'country_code' => 'BR'], ['name' => 'Ebreichsdorf', 'country_code' => 'AT'], ['name' => 'Seymour', 'country_code' => 'US'], ['name' => 'Belzig', 'country_code' => 'DE'], ['name' => 'Kariat Ben Aouda', 'country_code' => 'MA'], ['name' => 'Hormigueros', 'country_code' => 'PR'], ['name' => 'Congaz', 'country_code' => 'MD'], ['name' => 'Humpolec', 'country_code' => 'CZ'], ['name' => 'Camp Verde', 'country_code' => 'US'], ['name' => 'Ilfracombe', 'country_code' => 'GB'], ['name' => 'Handewitt', 'country_code' => 'DE'], ['name' => 'Weddington', 'country_code' => 'US'], ['name' => 'Si Wilai', 'country_code' => 'TH'], ['name' => 'Cameri', 'country_code' => 'IT'], ['name' => 'Areiopolis', 'country_code' => 'BR'], ['name' => 'Corleone', 'country_code' => 'IT'], ['name' => 'Harlau', 'country_code' => 'RO'], ['name' => 'Ogose', 'country_code' => 'JP'], ['name' => 'Ridgefield', 'country_code' => 'US'], ['name' => 'Vore', 'country_code' => 'AL'], ['name' => 'Regen', 'country_code' => 'DE'], ['name' => 'Cunha Pora', 'country_code' => 'BR'], ['name' => 'Knezha', 'country_code' => 'BG'], ['name' => 'Poulsbo', 'country_code' => 'US'], ['name' => 'Nantucket', 'country_code' => 'US'], ['name' => 'Miastko', 'country_code' => 'PL'], ['name' => 'Zakamensk', 'country_code' => 'RU'], ['name' => 'Stayton', 'country_code' => 'US'], ['name' => 'Springdale', 'country_code' => 'US'], ['name' => 'Enebakk', 'country_code' => 'NO'], ['name' => 'Trevignano', 'country_code' => 'IT'], ['name' => 'Capena', 'country_code' => 'IT'], ['name' => 'Varre-Sai', 'country_code' => 'BR'], ['name' => 'Byelaazyorsk', 'country_code' => 'BY'], ['name' => 'Tinchlik', 'country_code' => 'UZ'], ['name' => 'Peschiera del Garda', 'country_code' => 'IT'], ['name' => 'Brookings', 'country_code' => 'US'], ['name' => 'Xinyaoshang', 'country_code' => 'CN'], ['name' => 'Damascus', 'country_code' => 'US'], ['name' => 'Tres Cachoeiras', 'country_code' => 'BR'], ['name' => 'Aizoain', 'country_code' => 'ES'], ['name' => 'Osterwieck', 'country_code' => 'DE'], ['name' => 'Betzdorf', 'country_code' => 'DE'], ['name' => 'Baley', 'country_code' => 'RU'], ['name' => 'Red Hook', 'country_code' => 'US'], ['name' => 'Shepperton', 'country_code' => 'GB'], ['name' => 'Floha', 'country_code' => 'DE'], ['name' => 'Niles', 'country_code' => 'US'], ['name' => 'Wisla', 'country_code' => 'PL'], ['name' => 'Khlung', 'country_code' => 'TH'], ['name' => 'Takad Sahel', 'country_code' => 'MA'], ['name' => 'Longtaixiang', 'country_code' => 'CN'], ['name' => 'Buxerolles', 'country_code' => 'FR'], ['name' => 'Sa in Qal eh', 'country_code' => 'IR'], ['name' => 'Fuller Heights', 'country_code' => 'US'], ['name' => 'Bir Ghbalou', 'country_code' => 'DZ'], ['name' => 'Gucheng', 'country_code' => 'CN'], ['name' => 'Tolna', 'country_code' => 'HU'], ['name' => 'Leers', 'country_code' => 'FR'], ['name' => 'Hikawadai', 'country_code' => 'JP'], ['name' => 'Kirensk', 'country_code' => 'RU'], ['name' => 'Acari', 'country_code' => 'BR'], ['name' => 'Potengi', 'country_code' => 'BR'], ['name' => 'Bertinoro', 'country_code' => 'IT'], ['name' => 'Mango', 'country_code' => 'US'], ['name' => 'Primeiro de Maio', 'country_code' => 'BR'], ['name' => 'Fitzgerald', 'country_code' => 'US'], ['name' => 'Barra do Sul', 'country_code' => 'BR'], ['name' => 'Parthenay', 'country_code' => 'FR'], ['name' => 'Huntingdon', 'country_code' => 'US'], ['name' => 'Hagen im Bremischen', 'country_code' => 'DE'], ['name' => 'Inacio Martins', 'country_code' => 'BR'], ['name' => 'Selma', 'country_code' => 'US'], ['name' => 'Warka', 'country_code' => 'PL'], ['name' => 'Fronteiras', 'country_code' => 'BR'], ['name' => 'Campolongo Maggiore', 'country_code' => 'IT'], ['name' => 'Satellite Beach', 'country_code' => 'US'], ['name' => 'Wangjiabian', 'country_code' => 'CN'], ['name' => 'Wen anyi', 'country_code' => 'CN'], ['name' => 'Mawu', 'country_code' => 'CN'], ['name' => 'Agua de Dios', 'country_code' => 'CO'], ['name' => 'El Aguila', 'country_code' => 'CO'], ['name' => 'Hammelburg', 'country_code' => 'DE'], ['name' => 'Charlton Kings', 'country_code' => 'GB'], ['name' => 'Campinorte', 'country_code' => 'BR'], ['name' => 'Mayfield', 'country_code' => 'US'], ['name' => 'Aydincik', 'country_code' => 'TR'], ['name' => 'Lanham', 'country_code' => 'US'], ['name' => 'Sosnivka', 'country_code' => 'UA'], ['name' => 'Franklin Lakes', 'country_code' => 'US'], ['name' => 'Bischofswerda', 'country_code' => 'DE'], ['name' => 'Gulf Gate Estates', 'country_code' => 'US'], ['name' => 'De Pinte', 'country_code' => 'BE'], ['name' => 'Chicureo Abajo', 'country_code' => 'CL'], ['name' => 'Skelton', 'country_code' => 'GB'], ['name' => 'Montale', 'country_code' => 'IT'], ['name' => 'Veseli nad Moravou', 'country_code' => 'CZ'], ['name' => 'Yorktown', 'country_code' => 'US'], ['name' => 'Town and Country', 'country_code' => 'US'], ['name' => 'Gottmadingen', 'country_code' => 'DE'], ['name' => 'Monte San Pietro', 'country_code' => 'IT'], ['name' => 'Miyato', 'country_code' => 'JP'], ['name' => 'Nazyvayevsk', 'country_code' => 'RU'], ['name' => 'Parapua', 'country_code' => 'BR'], ['name' => 'Ostbevern', 'country_code' => 'DE'], ['name' => 'Bollullos de la Mitacion', 'country_code' => 'ES'], ['name' => 'Fao Rai', 'country_code' => 'TH'], ['name' => 'Beius', 'country_code' => 'RO'], ['name' => 'Panguipulli', 'country_code' => 'CL'], ['name' => 'Tournon-sur-Rhone', 'country_code' => 'FR'], ['name' => 'Giardini', 'country_code' => 'IT'], ['name' => 'Fulton', 'country_code' => 'US'], ['name' => 'Mount Sinai', 'country_code' => 'US'], ['name' => 'Princess Anne', 'country_code' => 'US'], ['name' => 'Jefferson Hills', 'country_code' => 'US'], ['name' => 'Marly', 'country_code' => 'FR'], ['name' => 'Pedernales', 'country_code' => 'DO'], ['name' => 'Lindon', 'country_code' => 'US'], ['name' => 'Stannington', 'country_code' => 'GB'], ['name' => 'Al Amadiyah', 'country_code' => 'IQ'], ['name' => 'Pedersore', 'country_code' => 'FI'], ['name' => 'Hamilton', 'country_code' => 'US'], ['name' => 'Induno Olona', 'country_code' => 'IT'], ['name' => 'Vilyuysk', 'country_code' => 'RU'], ['name' => 'Canton', 'country_code' => 'US'], ['name' => 'Feldkirchen-Westerham', 'country_code' => 'DE'], ['name' => 'Maysville', 'country_code' => 'US'], ['name' => 'Sao Jose do Jacuipe', 'country_code' => 'BR'], ['name' => 'South Yarmouth', 'country_code' => 'US'], ['name' => 'Campton Hills', 'country_code' => 'US'], ['name' => 'Tysvaer', 'country_code' => 'NO'], ['name' => 'Woodbury', 'country_code' => 'US'], ['name' => 'Rifle', 'country_code' => 'US'], ['name' => 'Motta di Livenza', 'country_code' => 'IT'], ['name' => 'Narimanov', 'country_code' => 'RU'], ['name' => 'Iacanga', 'country_code' => 'BR'], ['name' => 'Bennettsville', 'country_code' => 'US'], ['name' => 'Stropkov', 'country_code' => 'SK'], ['name' => 'Walden', 'country_code' => 'US'], ['name' => 'Grove City', 'country_code' => 'US'], ['name' => 'Fervedouro', 'country_code' => 'BR'], ['name' => 'Burgstadt', 'country_code' => 'DE'], ['name' => 'San Nicolas Buenos Aires', 'country_code' => 'MX'], ['name' => 'Tepetlan', 'country_code' => 'MX'], ['name' => 'Lexington Park', 'country_code' => 'US'], ['name' => 'Canandaigua', 'country_code' => 'US'], ['name' => 'Merriam', 'country_code' => 'US'], ['name' => 'Jandaira', 'country_code' => 'BR'], ['name' => 'Sao Pedro do Ivai', 'country_code' => 'BR'], ['name' => 'Andacollo', 'country_code' => 'CL'], ['name' => 'Olbernhau', 'country_code' => 'DE'], ['name' => 'Guilherand', 'country_code' => 'FR'], ['name' => 'Altamira do Maranhao', 'country_code' => 'BR'], ['name' => 'Westwood', 'country_code' => 'US'], ['name' => 'Lower Burrell', 'country_code' => 'US'], ['name' => 'Iapu', 'country_code' => 'BR'], ['name' => 'Valley Center', 'country_code' => 'US'], ['name' => 'Nova Ubirata', 'country_code' => 'BR'], ['name' => 'Brotas de Macaubas', 'country_code' => 'BR'], ['name' => 'East Hanover', 'country_code' => 'US'], ['name' => 'Sigatoka', 'country_code' => 'FJ'], ['name' => 'Silverton', 'country_code' => 'US'], ['name' => 'Villa La Angostura', 'country_code' => 'AR'], ['name' => 'Wahpeton', 'country_code' => 'US'], ['name' => 'Bolivar', 'country_code' => 'US'], ['name' => 'Storm Lake', 'country_code' => 'US'], ['name' => 'Costesti', 'country_code' => 'MD'], ['name' => 'Onna', 'country_code' => 'JP'], ['name' => 'Thouare-sur-Loire', 'country_code' => 'FR'], ['name' => 'Gemona del Friuli', 'country_code' => 'IT'], ['name' => 'Biganos', 'country_code' => 'FR'], ['name' => 'Rostraver', 'country_code' => 'US'], ['name' => 'Whitehall', 'country_code' => 'US'], ['name' => 'Galimuyod', 'country_code' => 'PH'], ['name' => 'Sosnovka', 'country_code' => 'RU'], ['name' => 'Obuse', 'country_code' => 'JP'], ['name' => 'Santana do Mundau', 'country_code' => 'BR'], ['name' => 'Et Tira', 'country_code' => 'IL'], ['name' => 'Urdorf', 'country_code' => 'CH'], ['name' => 'Pingtouchuanxiang', 'country_code' => 'CN'], ['name' => 'Lake Grove', 'country_code' => 'US'], ['name' => 'Itzer', 'country_code' => 'MA'], ['name' => 'Igaratinga', 'country_code' => 'BR'], ['name' => 'Moss Bluff', 'country_code' => 'US'], ['name' => 'Nieder-Olm', 'country_code' => 'DE'], ['name' => 'Young', 'country_code' => 'AU'], ['name' => 'Norwell', 'country_code' => 'US'], ['name' => 'Shalushka', 'country_code' => 'RU'], ['name' => 'Ponte Serrada', 'country_code' => 'BR'], ['name' => 'Grosse Pointe Park', 'country_code' => 'US'], ['name' => 'Sao Goncalo do Rio Abaixo', 'country_code' => 'BR'], ['name' => 'Four Corners', 'country_code' => 'US'], ['name' => 'Afonso Bezerra', 'country_code' => 'BR'], ['name' => 'Schleusingen', 'country_code' => 'DE'], ['name' => 'Grand Haven', 'country_code' => 'US'], ['name' => 'Snodland', 'country_code' => 'GB'], ['name' => 'Borovsk', 'country_code' => 'RU'], ['name' => 'Holbrook', 'country_code' => 'US'], ['name' => 'Igarape Grande', 'country_code' => 'BR'], ['name' => 'Dek emhare', 'country_code' => 'ER'], ['name' => 'Hakone', 'country_code' => 'JP'], ['name' => 'Vera Cruz', 'country_code' => 'BR'], ['name' => 'Two Rivers', 'country_code' => 'US'], ['name' => 'Botupora', 'country_code' => 'BR'], ['name' => 'Gleisdorf', 'country_code' => 'AT'], ['name' => 'Martinengo', 'country_code' => 'IT'], ['name' => 'Methil', 'country_code' => 'GB'], ['name' => 'Siano', 'country_code' => 'IT'], ['name' => 'Jafra', 'country_code' => 'MA'], ['name' => 'Lawrenceburg', 'country_code' => 'US'], ['name' => 'Mossley', 'country_code' => 'GB'], ['name' => 'Draganesti-Olt', 'country_code' => 'RO'], ['name' => 'Clinton', 'country_code' => 'US'], ['name' => 'Zhydachiv', 'country_code' => 'UA'], ['name' => 'Dobbs Ferry', 'country_code' => 'US'], ['name' => 'Ruthen', 'country_code' => 'DE'], ['name' => 'Locate di Triulzi', 'country_code' => 'IT'], ['name' => 'Volkermarkt', 'country_code' => 'AT'], ['name' => 'Chiltiupan', 'country_code' => 'SV'], ['name' => 'Grezzana', 'country_code' => 'IT'], ['name' => 'Bernex', 'country_code' => 'CH'], ['name' => 'Bueno Brandao', 'country_code' => 'BR'], ['name' => 'Zasechnoye', 'country_code' => 'RU'], ['name' => 'Cori', 'country_code' => 'IT'], ['name' => 'Estiva Gerbi', 'country_code' => 'BR'], ['name' => 'Warman', 'country_code' => 'CA'], ['name' => 'Karabash', 'country_code' => 'RU'], ['name' => 'Kingaroy', 'country_code' => 'AU'], ['name' => 'Kiskunmajsa', 'country_code' => 'HU'], ['name' => 'Celano', 'country_code' => 'IT'], ['name' => 'Zumaia', 'country_code' => 'ES'], ['name' => 'Xudat', 'country_code' => 'AZ'], ['name' => 'Akyaka', 'country_code' => 'TR'], ['name' => 'Grove', 'country_code' => 'ES'], ['name' => 'Montecchio Emilia', 'country_code' => 'IT'], ['name' => 'San Felice sul Panaro', 'country_code' => 'IT'], ['name' => 'Knowle', 'country_code' => 'GB'], ['name' => 'Verkhniy Tagil', 'country_code' => 'RU'], ['name' => 'Shiloh', 'country_code' => 'US'], ['name' => 'Barberino di Mugello', 'country_code' => 'IT'], ['name' => 'Munhall', 'country_code' => 'US'], ['name' => 'Wiener Neudorf', 'country_code' => 'AT'], ['name' => 'Texcatepec', 'country_code' => 'MX'], ['name' => 'Somers', 'country_code' => 'US'], ['name' => 'Los Corrales de Buelna', 'country_code' => 'ES'], ['name' => 'Ma ai', 'country_code' => 'CN'], ['name' => 'Altensteig', 'country_code' => 'DE'], ['name' => 'Solymar', 'country_code' => 'HU'], ['name' => 'Lake Morton-Berrydale', 'country_code' => 'US'], ['name' => 'La Tuque', 'country_code' => 'CA'], ['name' => 'Norwich', 'country_code' => 'CA'], ['name' => 'Bocaiuva do Sul', 'country_code' => 'BR'], ['name' => 'Florence', 'country_code' => 'US'], ['name' => 'Loyalsock', 'country_code' => 'US'], ['name' => 'Shagonar', 'country_code' => 'RU'], ['name' => 'Browns Mills', 'country_code' => 'US'], ['name' => 'Cristuru Secuiesc', 'country_code' => 'RO'], ['name' => 'Guymon', 'country_code' => 'US'], ['name' => 'Alberobello', 'country_code' => 'IT'], ['name' => 'Phibun Mangsahan', 'country_code' => 'TH'], ['name' => 'Meaford', 'country_code' => 'CA'], ['name' => 'La Puebla de Cazalla', 'country_code' => 'ES'], ['name' => 'Al Atarib', 'country_code' => 'SY'], ['name' => 'Pike Creek Valley', 'country_code' => 'US'], ['name' => 'Sussen', 'country_code' => 'DE'], ['name' => 'Caracol', 'country_code' => 'BR'], ['name' => 'Oued Amlil', 'country_code' => 'MA'], ['name' => 'Estanzuela', 'country_code' => 'GT'], ['name' => 'Marck', 'country_code' => 'FR'], ['name' => 'Mondeville', 'country_code' => 'FR'], ['name' => 'Pompton Lakes', 'country_code' => 'US'], ['name' => 'Millsboro', 'country_code' => 'US'], ['name' => 'Pedro de Toledo', 'country_code' => 'BR'], ['name' => 'General Salgado', 'country_code' => 'BR'], ['name' => 'Phrai Bueng', 'country_code' => 'TH'], ['name' => 'Kings Mountain', 'country_code' => 'US'], ['name' => 'Prachatice', 'country_code' => 'CZ'], ['name' => 'Sussex', 'country_code' => 'US'], ['name' => 'El Tarra', 'country_code' => 'CO'], ['name' => 'Sao Tiago', 'country_code' => 'BR'], ['name' => 'Schkopau', 'country_code' => 'DE'], ['name' => 'Rokytne', 'country_code' => 'UA'], ['name' => 'La Palma del Condado', 'country_code' => 'ES'], ['name' => 'Saint-Laurent-de-la-Salanque', 'country_code' => 'FR'], ['name' => 'Rio do Fogo', 'country_code' => 'BR'], ['name' => 'Lomazzo', 'country_code' => 'IT'], ['name' => 'Keila', 'country_code' => 'EE'], ['name' => 'Ballston', 'country_code' => 'US'], ['name' => 'Adjala-Tosorontio', 'country_code' => 'CA'], ['name' => 'Pearsall', 'country_code' => 'US'], ['name' => 'Medesano', 'country_code' => 'IT'], ['name' => 'Barmstedt', 'country_code' => 'DE'], ['name' => 'Ocean City', 'country_code' => 'US'], ['name' => 'Astorga', 'country_code' => 'ES'], ['name' => 'Matsuda-soryo', 'country_code' => 'JP'], ['name' => 'Chambly', 'country_code' => 'FR'], ['name' => 'Punitaqui', 'country_code' => 'CL'], ['name' => 'Pontchateau', 'country_code' => 'FR'], ['name' => 'Wooburn', 'country_code' => 'GB'], ['name' => 'Neuhof', 'country_code' => 'DE'], ['name' => 'Largo', 'country_code' => 'US'], ['name' => 'Hurzuf', 'country_code' => 'UA'], ['name' => 'Neman', 'country_code' => 'RU'], ['name' => 'Salo', 'country_code' => 'IT'], ['name' => 'Pont-Saint-Esprit', 'country_code' => 'FR'], ['name' => 'Canelli', 'country_code' => 'IT'], ['name' => 'Springbok', 'country_code' => 'ZA'], ['name' => 'West Point', 'country_code' => 'US'], ['name' => 'Gonzales', 'country_code' => 'US'], ['name' => 'Sultanhani', 'country_code' => 'TR'], ['name' => 'Sidi Namane', 'country_code' => 'DZ'], ['name' => 'Liberty Lake', 'country_code' => 'US'], ['name' => 'Bad Iburg', 'country_code' => 'DE'], ['name' => 'Earlestown', 'country_code' => 'GB'], ['name' => 'Ardrossan', 'country_code' => 'GB'], ['name' => 'Spencer', 'country_code' => 'US'], ['name' => 'Chalco', 'country_code' => 'US'], ['name' => 'Herxheim', 'country_code' => 'DE'], ['name' => 'Aylesford', 'country_code' => 'GB'], ['name' => 'Zwettl', 'country_code' => 'AT'], ['name' => 'Donzdorf', 'country_code' => 'DE'], ['name' => 'Boizenburg', 'country_code' => 'DE'], ['name' => 'Arceburgo', 'country_code' => 'BR'], ['name' => 'Ripoll', 'country_code' => 'ES'], ['name' => 'Elhovo', 'country_code' => 'BG'], ['name' => 'Engen', 'country_code' => 'DE'], ['name' => 'Gerzat', 'country_code' => 'FR'], ['name' => 'Pelissanne', 'country_code' => 'FR'], ['name' => 'Willistown', 'country_code' => 'US'], ['name' => 'Desborough', 'country_code' => 'GB'], ['name' => 'Saddlebrooke', 'country_code' => 'US'], ['name' => 'Decatur', 'country_code' => 'US'], ['name' => 'Isselburg', 'country_code' => 'DE'], ['name' => 'Heath', 'country_code' => 'US'], ['name' => 'Hamilton Township', 'country_code' => 'CA'], ['name' => 'Lagoa do Mato', 'country_code' => 'BR'], ['name' => 'Kandry', 'country_code' => 'RU'], ['name' => 'Concepcion', 'country_code' => 'PH'], ['name' => 'Kaufering', 'country_code' => 'DE'], ['name' => 'Serido', 'country_code' => 'BR'], ['name' => 'Villers-la-Ville', 'country_code' => 'BE'], ['name' => 'Pirauba', 'country_code' => 'BR'], ['name' => 'Trabia', 'country_code' => 'IT'], ['name' => 'Cacimbinhas', 'country_code' => 'BR'], ['name' => 'Guantingzhan', 'country_code' => 'CN'], ['name' => 'Cadelbosco di Sopra', 'country_code' => 'IT'], ['name' => 'Alella', 'country_code' => 'ES'], ['name' => 'Sanjiangkou', 'country_code' => 'CN'], ['name' => 'Seberi', 'country_code' => 'BR'], ['name' => 'New Albany', 'country_code' => 'US'], ['name' => 'Ilvesheim', 'country_code' => 'DE'], ['name' => 'Villers-Cotterets', 'country_code' => 'FR'], ['name' => 'Massa Lombarda', 'country_code' => 'IT'], ['name' => 'Alburquerque', 'country_code' => 'PH'], ['name' => 'Malente', 'country_code' => 'DE'], ['name' => 'Casaluce', 'country_code' => 'IT'], ['name' => 'Montignoso', 'country_code' => 'IT'], ['name' => 'Figuig', 'country_code' => 'MA'], ['name' => 'Vermillion', 'country_code' => 'US'], ['name' => 'Weinbohla', 'country_code' => 'DE'], ['name' => 'Stephanskirchen', 'country_code' => 'DE'], ['name' => 'Wantage', 'country_code' => 'US'], ['name' => 'Westtown', 'country_code' => 'US'], ['name' => 'Novgorodskoye', 'country_code' => 'UA'], ['name' => 'Hagondange', 'country_code' => 'FR'], ['name' => 'Kisujszallas', 'country_code' => 'HU'], ['name' => 'Pau Brasil', 'country_code' => 'BR'], ['name' => 'Prudente de Morais', 'country_code' => 'BR'], ['name' => 'Manchester', 'country_code' => 'US'], ['name' => 'Kamen -Rybolov', 'country_code' => 'RU'], ['name' => 'Bobrovytsia', 'country_code' => 'UA'], ['name' => 'Itarana', 'country_code' => 'BR'], ['name' => 'Bobrynets', 'country_code' => 'UA'], ['name' => 'Sagarejo', 'country_code' => 'GE'], ['name' => 'Erstein', 'country_code' => 'FR'], ['name' => 'Ville-la-Grand', 'country_code' => 'FR'], ['name' => 'Barano d Ischia', 'country_code' => 'IT'], ['name' => 'Alberique', 'country_code' => 'ES'], ['name' => 'Le Cres', 'country_code' => 'FR'], ['name' => 'Pocono', 'country_code' => 'US'], ['name' => 'Ban Lueak', 'country_code' => 'TH'], ['name' => 'Goldbach', 'country_code' => 'DE'], ['name' => 'Yungay', 'country_code' => 'CL'], ['name' => 'Braine-le-Chateau', 'country_code' => 'BE'], ['name' => 'Sao Bento do Sapucai', 'country_code' => 'BR'], ['name' => 'Cusseta', 'country_code' => 'US'], ['name' => 'San Maurizio Canavese', 'country_code' => 'IT'], ['name' => 'Borgloon', 'country_code' => 'BE'], ['name' => 'Surazh', 'country_code' => 'RU'], ['name' => 'Tenango del Aire', 'country_code' => 'MX'], ['name' => 'Felton', 'country_code' => 'GB'], ['name' => 'Walker Mill', 'country_code' => 'US'], ['name' => 'Feyzin', 'country_code' => 'FR'], ['name' => 'Dourdan', 'country_code' => 'FR'], ['name' => 'Tenente Ananias', 'country_code' => 'BR'], ['name' => 'Ramacca', 'country_code' => 'IT'], ['name' => 'Davos', 'country_code' => 'CH'], ['name' => 'Elkins', 'country_code' => 'US'], ['name' => 'Halfway', 'country_code' => 'US'], ['name' => 'Pua', 'country_code' => 'TH'], ['name' => 'Nivala', 'country_code' => 'FI'], ['name' => 'Bofete', 'country_code' => 'BR'], ['name' => 'San Juanito de Escobedo', 'country_code' => 'MX'], ['name' => 'Langenzenn', 'country_code' => 'DE'], ['name' => 'Boekel', 'country_code' => 'NL'], ['name' => 'Court-Saint-Etienne', 'country_code' => 'BE'], ['name' => 'Dayr as Sanquriyah', 'country_code' => 'EG'], ['name' => 'Itapebi', 'country_code' => 'BR'], ['name' => 'Mesyagutovo', 'country_code' => 'RU'], ['name' => 'Krzeszowice', 'country_code' => 'PL'], ['name' => 'Carnaubais', 'country_code' => 'BR'], ['name' => 'Kangaroo Flat', 'country_code' => 'AU'], ['name' => 'Beni Abbes', 'country_code' => 'DZ'], ['name' => 'Kursenai', 'country_code' => 'LT'], ['name' => 'Le Locle', 'country_code' => 'CH'], ['name' => 'Kranuan', 'country_code' => 'TH'], ['name' => 'Soquel', 'country_code' => 'US'], ['name' => 'Mogotes', 'country_code' => 'CO'], ['name' => 'Milton', 'country_code' => 'US'], ['name' => 'Lollar', 'country_code' => 'DE'], ['name' => 'Scartho', 'country_code' => 'GB'], ['name' => 'Koronowo', 'country_code' => 'PL'], ['name' => 'Sprendlingen', 'country_code' => 'DE'], ['name' => 'Tosagua', 'country_code' => 'EC'], ['name' => 'Amioun', 'country_code' => 'LB'], ['name' => 'Holbeach', 'country_code' => 'GB'], ['name' => 'St. Clements', 'country_code' => 'CA'], ['name' => 'Khorol', 'country_code' => 'RU'], ['name' => 'Santa Maria de Itabira', 'country_code' => 'BR'], ['name' => 'Omurtag', 'country_code' => 'BG'], ['name' => 'Fort Meade', 'country_code' => 'US'], ['name' => 'Sam Ko', 'country_code' => 'TH'], ['name' => 'La Escala', 'country_code' => 'ES'], ['name' => 'Montgomery', 'country_code' => 'US'], ['name' => 'Serris', 'country_code' => 'FR'], ['name' => 'Apiuna', 'country_code' => 'BR'], ['name' => 'Saint-Amable', 'country_code' => 'CA'], ['name' => 'Weyburn', 'country_code' => 'CA'], ['name' => 'Strasshof an der Nordbahn', 'country_code' => 'AT'], ['name' => 'Lauterach', 'country_code' => 'AT'], ['name' => 'Itri', 'country_code' => 'IT'], ['name' => 'Primavera', 'country_code' => 'BR'], ['name' => 'Hanover', 'country_code' => 'US'], ['name' => 'Tacima', 'country_code' => 'BR'], ['name' => 'Beclean', 'country_code' => 'RO'], ['name' => 'Lake Monticello', 'country_code' => 'US'], ['name' => 'Jordania', 'country_code' => 'BR'], ['name' => 'Lowes Island', 'country_code' => 'US'], ['name' => 'Sarmiento', 'country_code' => 'AR'], ['name' => 'Manabo', 'country_code' => 'PH'], ['name' => 'Kearney', 'country_code' => 'US'], ['name' => 'West Caldwell', 'country_code' => 'US'], ['name' => 'Bacliff', 'country_code' => 'US'], ['name' => 'Erlenbach am Main', 'country_code' => 'DE'], ['name' => 'Rosario', 'country_code' => 'PH'], ['name' => 'Essex Junction', 'country_code' => 'US'], ['name' => 'Grigiskes', 'country_code' => 'LT'], ['name' => 'Reguengos de Monsaraz', 'country_code' => 'PT'], ['name' => 'Raeren', 'country_code' => 'BE'], ['name' => 'Manevychi', 'country_code' => 'UA'], ['name' => 'Amatura', 'country_code' => 'BR'], ['name' => 'Celldomolk', 'country_code' => 'HU'], ['name' => 'Ngorongoro', 'country_code' => 'TZ'], ['name' => 'Ferros', 'country_code' => 'BR'], ['name' => 'Ban Ko', 'country_code' => 'TH'], ['name' => 'Hrebinka', 'country_code' => 'UA'], ['name' => 'Kitee', 'country_code' => 'FI'], ['name' => 'Bestwig', 'country_code' => 'DE'], ['name' => 'Winchendon', 'country_code' => 'US'], ['name' => 'Lavaur', 'country_code' => 'FR'], ['name' => 'Pleasant View', 'country_code' => 'US'], ['name' => 'Weingarten', 'country_code' => 'DE'], ['name' => 'Wasilla', 'country_code' => 'US'], ['name' => 'Orsta', 'country_code' => 'NO'], ['name' => 'Sharg un', 'country_code' => 'UZ'], ['name' => 'Xiaozui', 'country_code' => 'CN'], ['name' => 'Forest', 'country_code' => 'US'], ['name' => 'Cantillana', 'country_code' => 'ES'], ['name' => 'Baryshivka', 'country_code' => 'UA'], ['name' => 'Maur', 'country_code' => 'CH'], ['name' => 'Oak Grove', 'country_code' => 'US'], ['name' => 'Gaohucun', 'country_code' => 'CN'], ['name' => 'South Dundas', 'country_code' => 'CA'], ['name' => 'Aberbargoed', 'country_code' => 'GB'], ['name' => 'Weeze', 'country_code' => 'DE'], ['name' => 'Kingsteignton', 'country_code' => 'GB'], ['name' => 'Rincao', 'country_code' => 'BR'], ['name' => 'Fiuggi', 'country_code' => 'IT'], ['name' => 'Pirapetinga', 'country_code' => 'BR'], ['name' => 'Itapitanga', 'country_code' => 'BR'], ['name' => 'Sevilla', 'country_code' => 'PH'], ['name' => 'Diavata', 'country_code' => 'GR'], ['name' => 'Imi Mokorn', 'country_code' => 'MA'], ['name' => 'Zhatay', 'country_code' => 'RU'], ['name' => 'Parnagua', 'country_code' => 'BR'], ['name' => 'Mae Ai', 'country_code' => 'TH'], ['name' => 'Braunsbedra', 'country_code' => 'DE'], ['name' => 'Khrystynivka', 'country_code' => 'UA'], ['name' => 'River Forest', 'country_code' => 'US'], ['name' => 'Randazzo', 'country_code' => 'IT'], ['name' => 'Ogano', 'country_code' => 'JP'], ['name' => 'Fontaine-les-Dijon', 'country_code' => 'FR'], ['name' => 'Soyaniquilpan', 'country_code' => 'MX'], ['name' => 'Wang Sombun', 'country_code' => 'TH'], ['name' => 'Tecoh', 'country_code' => 'MX'], ['name' => 'Kolno', 'country_code' => 'PL'], ['name' => 'Pont-Audemer', 'country_code' => 'FR'], ['name' => 'La Baneza', 'country_code' => 'ES'], ['name' => 'Villiersdorp', 'country_code' => 'ZA'], ['name' => 'Haigerloch', 'country_code' => 'DE'], ['name' => 'Cheval', 'country_code' => 'US'], ['name' => 'Ararenda', 'country_code' => 'BR'], ['name' => 'The Pinery', 'country_code' => 'US'], ['name' => 'Poiana Mare', 'country_code' => 'RO'], ['name' => 'Tiszafoldvar', 'country_code' => 'HU'], ['name' => 'Juripiranga', 'country_code' => 'BR'], ['name' => 'Tezontepec', 'country_code' => 'MX'], ['name' => 'Dali', 'country_code' => 'CY'], ['name' => 'Uzda', 'country_code' => 'BY'], ['name' => 'Panthersville', 'country_code' => 'US'], ['name' => 'Santo Domingo', 'country_code' => 'CO'], ['name' => 'Tiszafured', 'country_code' => 'HU'], ['name' => 'Furth', 'country_code' => 'DE'], ['name' => 'Smithville', 'country_code' => 'US'], ['name' => 'Mount Kisco', 'country_code' => 'US'], ['name' => 'Guaraci', 'country_code' => 'BR'], ['name' => 'Orlu', 'country_code' => 'NG'], ['name' => 'Douar Bouchfaa', 'country_code' => 'MA'], ['name' => 'Sierra Madre', 'country_code' => 'US'], ['name' => 'Bananal', 'country_code' => 'BR'], ['name' => 'Lower Saucon', 'country_code' => 'US'], ['name' => 'Totowa', 'country_code' => 'US'], ['name' => 'Zuchwil', 'country_code' => 'CH'], ['name' => 'Messstetten', 'country_code' => 'DE'], ['name' => 'Totolapan', 'country_code' => 'MX'], ['name' => 'Blandford Forum', 'country_code' => 'GB'], ['name' => 'Merces', 'country_code' => 'BR'], ['name' => 'Bleicherode', 'country_code' => 'DE'], ['name' => 'Marasesti', 'country_code' => 'RO'], ['name' => 'Demmin', 'country_code' => 'DE'], ['name' => 'Hochdorf', 'country_code' => 'CH'], ['name' => 'Abram', 'country_code' => 'GB'], ['name' => 'Mery-sur-Oise', 'country_code' => 'FR'], ['name' => 'Le Taillan-Medoc', 'country_code' => 'FR'], ['name' => 'Oloron-Sainte-Marie', 'country_code' => 'FR'], ['name' => 'Diedorf', 'country_code' => 'DE'], ['name' => 'Urlati', 'country_code' => 'RO'], ['name' => 'Wald-Michelbach', 'country_code' => 'DE'], ['name' => 'San German', 'country_code' => 'PR'], ['name' => 'Magny-le-Hongre', 'country_code' => 'FR'], ['name' => 'Pencoed', 'country_code' => 'GB'], ['name' => 'Castleton', 'country_code' => 'GB'], ['name' => 'Wittelsheim', 'country_code' => 'FR'], ['name' => 'Hanson', 'country_code' => 'US'], ['name' => 'Orono', 'country_code' => 'US'], ['name' => 'Yeghvard', 'country_code' => 'AM'], ['name' => 'Birkenfeld', 'country_code' => 'DE'], ['name' => 'Highland Park', 'country_code' => 'US'], ['name' => 'Vigonovo', 'country_code' => 'IT'], ['name' => 'Foum Jam a', 'country_code' => 'MA'], ['name' => 'Tanant', 'country_code' => 'MA'], ['name' => 'Otsuchi', 'country_code' => 'JP'], ['name' => 'Kongen', 'country_code' => 'DE'], ['name' => 'Yuzhno-Sukhokumsk', 'country_code' => 'RU'], ['name' => 'Rackeve', 'country_code' => 'HU'], ['name' => 'Kranenburg', 'country_code' => 'DE'], ['name' => 'Tlachichilco', 'country_code' => 'MX'], ['name' => 'North Branch', 'country_code' => 'US'], ['name' => 'Rebola', 'country_code' => 'GQ'], ['name' => 'Lerici', 'country_code' => 'IT'], ['name' => 'Winnemucca', 'country_code' => 'US'], ['name' => 'Castle Pines', 'country_code' => 'US'], ['name' => 'Iwai', 'country_code' => 'JP'], ['name' => 'Pintadas', 'country_code' => 'BR'], ['name' => 'Shannon', 'country_code' => 'IE'], ['name' => 'Arbaa Sahel', 'country_code' => 'MA'], ['name' => 'Goianapolis', 'country_code' => 'BR'], ['name' => 'Nizza Monferrato', 'country_code' => 'IT'], ['name' => 'Taouloukoult', 'country_code' => 'MA'], ['name' => 'Burr Ridge', 'country_code' => 'US'], ['name' => 'Galena Park', 'country_code' => 'US'], ['name' => 'L Ile-Perrot', 'country_code' => 'CA'], ['name' => 'Notre-Dame-de-l Ile-Perrot', 'country_code' => 'CA'], ['name' => 'Felsberg', 'country_code' => 'DE'], ['name' => 'Tangerhutte', 'country_code' => 'DE'], ['name' => 'Maynard', 'country_code' => 'US'], ['name' => 'Myrtle Grove', 'country_code' => 'US'], ['name' => 'Williams Lake', 'country_code' => 'CA'], ['name' => 'Bischofshofen', 'country_code' => 'AT'], ['name' => 'Quincy-sous-Senart', 'country_code' => 'FR'], ['name' => 'Ludington', 'country_code' => 'US'], ['name' => 'Santa Catarina Ayotzingo', 'country_code' => 'MX'], ['name' => 'Camden', 'country_code' => 'US'], ['name' => 'Vanzago', 'country_code' => 'IT'], ['name' => 'Sao Luis do Paraitinga', 'country_code' => 'BR'], ['name' => 'Aigle', 'country_code' => 'CH'], ['name' => 'Nadezhda', 'country_code' => 'RU'], ['name' => 'Coriano', 'country_code' => 'IT'], ['name' => 'Orthez', 'country_code' => 'FR'], ['name' => 'Bellmead', 'country_code' => 'US'], ['name' => 'Mount Evelyn', 'country_code' => 'AU'], ['name' => 'Caslav', 'country_code' => 'CZ'], ['name' => 'Southwater', 'country_code' => 'GB'], ['name' => 'Elliot Lake', 'country_code' => 'CA'], ['name' => 'Aguadilla', 'country_code' => 'PR'], ['name' => 'Praskoveya', 'country_code' => 'RU'], ['name' => 'Fontoura Xavier', 'country_code' => 'BR'], ['name' => 'Bourg-de-Peage', 'country_code' => 'FR'], ['name' => 'Muskegon Heights', 'country_code' => 'US'], ['name' => 'Pola de Lena', 'country_code' => 'ES'], ['name' => 'Balderton', 'country_code' => 'GB'], ['name' => 'Cedral', 'country_code' => 'BR'], ['name' => 'Sao Bras de Alportel', 'country_code' => 'PT'], ['name' => 'Mapleton', 'country_code' => 'US'], ['name' => 'Fruitland Park', 'country_code' => 'US'], ['name' => 'Winchester', 'country_code' => 'US'], ['name' => 'Murtosa', 'country_code' => 'PT'], ['name' => 'Juruaia', 'country_code' => 'BR'], ['name' => 'Tafalla', 'country_code' => 'ES'], ['name' => 'Ichnia', 'country_code' => 'UA'], ['name' => 'Penarroya-Pueblonuevo', 'country_code' => 'ES'], ['name' => 'Al Musayfirah', 'country_code' => 'SY'], ['name' => 'Diessen am Ammersee', 'country_code' => 'DE'], ['name' => 'Tamanar', 'country_code' => 'MA'], ['name' => 'Arkadelphia', 'country_code' => 'US'], ['name' => 'Zavitinsk', 'country_code' => 'RU'], ['name' => 'San Pablo Huixtepec', 'country_code' => 'MX'], ['name' => 'Bondues', 'country_code' => 'FR'], ['name' => 'Leognan', 'country_code' => 'FR'], ['name' => 'Waiuku', 'country_code' => 'NZ'], ['name' => 'Rochelle', 'country_code' => 'US'], ['name' => 'Abadou', 'country_code' => 'MA'], ['name' => 'Gignac-la-Nerthe', 'country_code' => 'FR'], ['name' => 'Gig Harbor', 'country_code' => 'US'], ['name' => 'Poirino', 'country_code' => 'IT'], ['name' => 'Bentley', 'country_code' => 'AU'], ['name' => 'Frodsham', 'country_code' => 'GB'], ['name' => 'San Ricardo', 'country_code' => 'PH'], ['name' => 'Sidi Bousber', 'country_code' => 'MA'], ['name' => 'Nakayama', 'country_code' => 'JP'], ['name' => 'Garrucha', 'country_code' => 'ES'], ['name' => 'Villa Purificacion', 'country_code' => 'MX'], ['name' => 'Umarizal', 'country_code' => 'BR'], ['name' => 'Dinagat', 'country_code' => 'PH'], ['name' => 'Crestwood', 'country_code' => 'US'], ['name' => 'Salemi', 'country_code' => 'IT'], ['name' => 'Farmersville', 'country_code' => 'US'], ['name' => 'Brejolandia', 'country_code' => 'BR'], ['name' => 'Waterford', 'country_code' => 'US'], ['name' => 'Smithfield', 'country_code' => 'US'], ['name' => 'Gateway', 'country_code' => 'US'], ['name' => 'Chenango', 'country_code' => 'US'], ['name' => 'Silea', 'country_code' => 'IT'], ['name' => 'Cantley', 'country_code' => 'CA'], ['name' => 'Torre Santa Susanna', 'country_code' => 'IT'], ['name' => 'Had Laaounate', 'country_code' => 'MA'], ['name' => 'Raceland', 'country_code' => 'US'], ['name' => 'Jibou', 'country_code' => 'RO'], ['name' => 'Gilbues', 'country_code' => 'BR'], ['name' => 'Sweet Home', 'country_code' => 'US'], ['name' => 'Ribeirao Claro', 'country_code' => 'BR'], ['name' => 'Inkerman', 'country_code' => 'UA'], ['name' => 'Ickenham', 'country_code' => 'GB'], ['name' => 'Pariconia', 'country_code' => 'BR'], ['name' => 'Nova Olinda', 'country_code' => 'BR'], ['name' => 'DeForest', 'country_code' => 'US'], ['name' => 'Riedlingen', 'country_code' => 'DE'], ['name' => 'Cleveland', 'country_code' => 'US'], ['name' => 'Avon Park', 'country_code' => 'US'], ['name' => 'Hameenkyro', 'country_code' => 'FI'], ['name' => 'Agdz', 'country_code' => 'MA'], ['name' => 'Cowra', 'country_code' => 'AU'], ['name' => 'Lichtenau', 'country_code' => 'DE'], ['name' => 'Rhosllanerchrugog', 'country_code' => 'GB'], ['name' => 'Burgkirchen an der Alz', 'country_code' => 'DE'], ['name' => 'Szigetvar', 'country_code' => 'HU'], ['name' => 'Nossen', 'country_code' => 'DE'], ['name' => 'Gernsheim', 'country_code' => 'DE'], ['name' => 'Fondettes', 'country_code' => 'FR'], ['name' => 'Itaueira', 'country_code' => 'BR'], ['name' => 'Aver-o-Mar', 'country_code' => 'PT'], ['name' => 'Branquinha', 'country_code' => 'BR'], ['name' => 'Darling', 'country_code' => 'ZA'], ['name' => 'Merchweiler', 'country_code' => 'DE'], ['name' => 'Villacarrillo', 'country_code' => 'ES'], ['name' => 'Hetane', 'country_code' => 'MA'], ['name' => 'Van Wert', 'country_code' => 'US'], ['name' => 'Almoloya', 'country_code' => 'MX'], ['name' => 'Atessa', 'country_code' => 'IT'], ['name' => 'Otelu Rosu', 'country_code' => 'RO'], ['name' => 'Rombas', 'country_code' => 'FR'], ['name' => 'Recco', 'country_code' => 'IT'], ['name' => 'Canelinha', 'country_code' => 'BR'], ['name' => 'Orsova', 'country_code' => 'RO'], ['name' => 'Baraclandia', 'country_code' => 'BR'], ['name' => 'Amtar', 'country_code' => 'MA'], ['name' => 'Faxinal dos Guedes', 'country_code' => 'BR'], ['name' => 'Chuqung', 'country_code' => 'CN'], ['name' => 'Garden City', 'country_code' => 'US'], ['name' => 'Zawyat Ahancal', 'country_code' => 'MA'], ['name' => 'Newburn', 'country_code' => 'GB'], ['name' => 'Roccapiemonte', 'country_code' => 'IT'], ['name' => 'Sao Sebastiao do Maranhao', 'country_code' => 'BR'], ['name' => 'Borculo', 'country_code' => 'NL'], ['name' => 'Waldkirchen', 'country_code' => 'DE'], ['name' => 'Paimio', 'country_code' => 'FI'], ['name' => 'Nelson', 'country_code' => 'CA'], ['name' => 'Knin', 'country_code' => 'HR'], ['name' => 'Weilheim an der Teck', 'country_code' => 'DE'], ['name' => 'Tubara', 'country_code' => 'CO'], ['name' => 'Querfurt', 'country_code' => 'DE'], ['name' => 'Hornell', 'country_code' => 'US'], ['name' => 'Pacific', 'country_code' => 'US'], ['name' => 'Huetor-Tajar', 'country_code' => 'ES'], ['name' => 'Trajano de Morais', 'country_code' => 'BR'], ['name' => 'Castrolibero', 'country_code' => 'IT'], ['name' => 'Altotting', 'country_code' => 'DE'], ['name' => 'Mara Rosa', 'country_code' => 'BR'], ['name' => 'La Trinite', 'country_code' => 'FR'], ['name' => 'Sosenskiy', 'country_code' => 'RU'], ['name' => 'Newcastle', 'country_code' => 'US'], ['name' => 'Tnine Sidi Lyamani', 'country_code' => 'MA'], ['name' => 'Vysokovsk', 'country_code' => 'RU'], ['name' => 'Bargas', 'country_code' => 'ES'], ['name' => 'Ketchikan', 'country_code' => 'US'], ['name' => 'Alamosa', 'country_code' => 'US'], ['name' => 'Gudofredo Viana', 'country_code' => 'BR'], ['name' => 'Kuiyibagecun', 'country_code' => 'CN'], ['name' => 'Castelletto sopra Ticino', 'country_code' => 'IT'], ['name' => 'Trets', 'country_code' => 'FR'], ['name' => 'Toccoa', 'country_code' => 'US'], ['name' => 'Arraias', 'country_code' => 'BR'], ['name' => 'Brooklyn', 'country_code' => 'US'], ['name' => 'Souq Sebt Says', 'country_code' => 'MA'], ['name' => 'Saks', 'country_code' => 'US'], ['name' => 'Vittuone', 'country_code' => 'IT'], ['name' => 'Conselve', 'country_code' => 'IT'], ['name' => 'Kolarovo', 'country_code' => 'SK'], ['name' => 'Mouans-Sartoux', 'country_code' => 'FR'], ['name' => 'Sucupira do Norte', 'country_code' => 'BR'], ['name' => 'Corcuera', 'country_code' => 'PH'], ['name' => 'Millington', 'country_code' => 'US'], ['name' => 'Iretama', 'country_code' => 'BR'], ['name' => 'Cassa de la Selva', 'country_code' => 'ES'], ['name' => 'Murata', 'country_code' => 'JP'], ['name' => 'Lazaro Cardenas', 'country_code' => 'MX'], ['name' => 'Birchington', 'country_code' => 'GB'], ['name' => 'Urrugne', 'country_code' => 'FR'], ['name' => 'Georgetown', 'country_code' => 'US'], ['name' => 'Ogdensburg', 'country_code' => 'US'], ['name' => 'Bobenheim-Roxheim', 'country_code' => 'DE'], ['name' => 'Ain Zora', 'country_code' => 'MA'], ['name' => 'Geneseo', 'country_code' => 'US'], ['name' => 'Wyomissing', 'country_code' => 'US'], ['name' => 'Scituate', 'country_code' => 'US'], ['name' => 'Jacinto Machado', 'country_code' => 'BR'], ['name' => 'Petal', 'country_code' => 'US'], ['name' => 'Lambton Shores', 'country_code' => 'CA'], ['name' => 'Anderson', 'country_code' => 'US'], ['name' => 'Santiago Suchilquitongo', 'country_code' => 'MX'], ['name' => 'Isola Vicentina', 'country_code' => 'IT'], ['name' => 'Villeneuve-les-Maguelone', 'country_code' => 'FR'], ['name' => 'Sao Joao', 'country_code' => 'BR'], ['name' => 'Toundout', 'country_code' => 'MA'], ['name' => 'Mokrisset', 'country_code' => 'MA'], ['name' => 'Hochberg', 'country_code' => 'DE'], ['name' => 'Mussomeli', 'country_code' => 'IT'], ['name' => 'Monte Alegre do Piaui', 'country_code' => 'BR'], ['name' => 'Monroe', 'country_code' => 'US'], ['name' => 'Bovingdon', 'country_code' => 'GB'], ['name' => 'Easttown', 'country_code' => 'US'], ['name' => 'Norvenich', 'country_code' => 'DE'], ['name' => 'Monnickendam', 'country_code' => 'NL'], ['name' => 'Ozieri', 'country_code' => 'IT'], ['name' => 'Jablanica', 'country_code' => 'BA'], ['name' => 'Tourza', 'country_code' => 'MA'], ['name' => 'Atchison', 'country_code' => 'US'], ['name' => 'Benito Juarez', 'country_code' => 'AR'], ['name' => 'Escaudain', 'country_code' => 'FR'], ['name' => 'Schalksmuhle', 'country_code' => 'DE'], ['name' => 'Kimpese', 'country_code' => 'CD'], ['name' => 'Aerzen', 'country_code' => 'DE'], ['name' => 'Peschanokopskoye', 'country_code' => 'RU'], ['name' => 'Khilok', 'country_code' => 'RU'], ['name' => 'Biskupiec', 'country_code' => 'PL'], ['name' => 'Gommern', 'country_code' => 'DE'], ['name' => 'Mold', 'country_code' => 'GB'], ['name' => 'Malaya Vishera', 'country_code' => 'RU'], ['name' => 'Cajapio', 'country_code' => 'BR'], ['name' => 'Bibbiano', 'country_code' => 'IT'], ['name' => 'Pinto', 'country_code' => 'CL'], ['name' => 'Strehaia', 'country_code' => 'RO'], ['name' => 'Songo', 'country_code' => 'AO'], ['name' => 'Highland City', 'country_code' => 'US'], ['name' => 'Ait Hani', 'country_code' => 'MA'], ['name' => 'Saint-Gely-du-Fesc', 'country_code' => 'FR'], ['name' => 'Mildenhall', 'country_code' => 'GB'], ['name' => 'Tarazona de Aragon', 'country_code' => 'ES'], ['name' => 'Santa Teresinha', 'country_code' => 'BR'], ['name' => 'Imst', 'country_code' => 'AT'], ['name' => 'Virginopolis', 'country_code' => 'BR'], ['name' => 'Rignano Flaminio', 'country_code' => 'IT'], ['name' => 'Santa Margarita de Mombuy', 'country_code' => 'ES'], ['name' => 'Porto Xavier', 'country_code' => 'BR'], ['name' => 'Ludlow', 'country_code' => 'GB'], ['name' => 'Lavinia', 'country_code' => 'BR'], ['name' => 'Markt Indersdorf', 'country_code' => 'DE'], ['name' => 'Kraluv Dvur', 'country_code' => 'CZ'], ['name' => 'Canteras', 'country_code' => 'ES'], ['name' => 'Baran ', 'country_code' => 'BY'], ['name' => 'Pirpirituba', 'country_code' => 'BR'], ['name' => 'Bohl-Iggelheim', 'country_code' => 'DE'], ['name' => 'Scherpenzeel', 'country_code' => 'NL'], ['name' => 'Barcs', 'country_code' => 'HU'], ['name' => 'Serra Caiada', 'country_code' => 'BR'], ['name' => 'Bangshang', 'country_code' => 'CN'], ['name' => 'Bom Repouso', 'country_code' => 'BR'], ['name' => 'Vorsma', 'country_code' => 'RU'], ['name' => 'Morbach', 'country_code' => 'DE'], ['name' => 'Castelnovo ne Monti', 'country_code' => 'IT'], ['name' => 'Badia Polesine', 'country_code' => 'IT'], ['name' => 'Kapaa', 'country_code' => 'US'], ['name' => 'Bom Jesus da Serra', 'country_code' => 'BR'], ['name' => 'Doorn', 'country_code' => 'NL'], ['name' => 'Urgnano', 'country_code' => 'IT'], ['name' => 'Waterloo', 'country_code' => 'US'], ['name' => 'Wyndham', 'country_code' => 'US'], ['name' => 'Montividiu', 'country_code' => 'BR'], ['name' => 'Naganuma', 'country_code' => 'JP'], ['name' => 'San Vicente', 'country_code' => 'PH'], ['name' => 'Ruppichteroth', 'country_code' => 'DE'], ['name' => 'Sortland', 'country_code' => 'NO'], ['name' => 'Borjomi', 'country_code' => 'GE'], ['name' => 'San Pedro La Laguna', 'country_code' => 'GT'], ['name' => 'Norton', 'country_code' => 'US'], ['name' => 'Ban Bang Phlap', 'country_code' => 'TH'], ['name' => 'Fairfield', 'country_code' => 'US'], ['name' => 'Tilougguit', 'country_code' => 'MA'], ['name' => 'Jesenice', 'country_code' => 'CZ'], ['name' => 'Greencastle', 'country_code' => 'US'], ['name' => 'Covington', 'country_code' => 'US'], ['name' => 'Santa Teresa di Riva', 'country_code' => 'IT'], ['name' => 'Three Rivers', 'country_code' => 'US'], ['name' => 'Dombasle-sur-Meurthe', 'country_code' => 'FR'], ['name' => 'Hilter', 'country_code' => 'DE'], ['name' => 'Armanaz', 'country_code' => 'SY'], ['name' => 'Timonium', 'country_code' => 'US'], ['name' => 'Chateaugiron', 'country_code' => 'FR'], ['name' => 'Wilkau-Hasslau', 'country_code' => 'DE'], ['name' => 'East Cocalico', 'country_code' => 'US'], ['name' => 'Castalla', 'country_code' => 'ES'], ['name' => 'Grevesmuhlen', 'country_code' => 'DE'], ['name' => 'Veitshochheim', 'country_code' => 'DE'], ['name' => 'Partanna', 'country_code' => 'IT'], ['name' => 'Frontera', 'country_code' => 'AR'], ['name' => 'Campi Salentina', 'country_code' => 'IT'], ['name' => 'Litomysl', 'country_code' => 'CZ'], ['name' => 'Grossos', 'country_code' => 'BR'], ['name' => 'Torotoro', 'country_code' => 'BO'], ['name' => 'Kamifurano', 'country_code' => 'JP'], ['name' => 'Aragoiania', 'country_code' => 'BR'], ['name' => 'Ben N Choud', 'country_code' => 'DZ'], ['name' => 'Morro Bay', 'country_code' => 'US'], ['name' => 'Argeles-sur-Mer', 'country_code' => 'FR'], ['name' => 'Bordj Okhriss', 'country_code' => 'DZ'], ['name' => 'Lowell', 'country_code' => 'US'], ['name' => 'Trescore Balneario', 'country_code' => 'IT'], ['name' => 'Cutro', 'country_code' => 'IT'], ['name' => 'Zmeinogorsk', 'country_code' => 'RU'], ['name' => 'Ban Thung Khao Phuang', 'country_code' => 'TH'], ['name' => 'La Ferte-sous-Jouarre', 'country_code' => 'FR'], ['name' => 'Paris', 'country_code' => 'US'], ['name' => 'Dnestrovsc', 'country_code' => 'MD'], ['name' => 'Ironton', 'country_code' => 'US'], ['name' => 'Star', 'country_code' => 'US'], ['name' => 'Fairview', 'country_code' => 'US'], ['name' => 'Kauniainen', 'country_code' => 'FI'], ['name' => 'Pasadena Hills', 'country_code' => 'US'], ['name' => 'Ibiassuce', 'country_code' => 'BR'], ['name' => 'Acushnet', 'country_code' => 'US'], ['name' => 'Concordia Sagittaria', 'country_code' => 'IT'], ['name' => 'Arlesheim', 'country_code' => 'CH'], ['name' => 'Bagnara Calabra', 'country_code' => 'IT'], ['name' => 'Alcaudete', 'country_code' => 'ES'], ['name' => 'Mapleton', 'country_code' => 'CA'], ['name' => 'Sidi Abdallah', 'country_code' => 'MA'], ['name' => 'Sotkamo', 'country_code' => 'FI'], ['name' => 'Alcora', 'country_code' => 'ES'], ['name' => 'Sinaia', 'country_code' => 'RO'], ['name' => 'Appenweier', 'country_code' => 'DE'], ['name' => 'Sangao', 'country_code' => 'BR'], ['name' => 'Shumanay', 'country_code' => 'UZ'], ['name' => 'Villanueva de Arosa', 'country_code' => 'ES'], ['name' => 'Prakhon Chai', 'country_code' => 'TH'], ['name' => 'Milton', 'country_code' => 'US'], ['name' => 'Sandy', 'country_code' => 'US'], ['name' => 'Topoloveni', 'country_code' => 'RO'], ['name' => 'Albert', 'country_code' => 'FR'], ['name' => 'La Londe-les-Maures', 'country_code' => 'FR'], ['name' => 'Hochst im Odenwald', 'country_code' => 'DE'], ['name' => 'Bad Lauterberg', 'country_code' => 'DE'], ['name' => 'Regidor', 'country_code' => 'CO'], ['name' => 'Vaals', 'country_code' => 'NL'], ['name' => 'San Giorgio del Sannio', 'country_code' => 'IT'], ['name' => 'La Guardia', 'country_code' => 'ES'], ['name' => 'Lloyd', 'country_code' => 'US'], ['name' => 'San Diego Country Estates', 'country_code' => 'US'], ['name' => 'Valdobbiadene', 'country_code' => 'IT'], ['name' => 'Columbia', 'country_code' => 'US'], ['name' => 'Phai Sali', 'country_code' => 'TH'], ['name' => 'Senhora dos Remedios', 'country_code' => 'BR'], ['name' => 'Bolekhiv', 'country_code' => 'UA'], ['name' => 'Hockley', 'country_code' => 'GB'], ['name' => 'Altenholz', 'country_code' => 'DE'], ['name' => 'Roscoe', 'country_code' => 'US'], ['name' => 'Targu Frumos', 'country_code' => 'RO'], ['name' => 'Schwaikheim', 'country_code' => 'DE'], ['name' => 'Guadalupe', 'country_code' => 'BR'], ['name' => 'Altofonte', 'country_code' => 'IT'], ['name' => 'Douglass', 'country_code' => 'US'], ['name' => 'Natuba', 'country_code' => 'BR'], ['name' => 'Maria Enzersdorf', 'country_code' => 'AT'], ['name' => 'Nova Europa', 'country_code' => 'BR'], ['name' => 'Tiztoutine', 'country_code' => 'MA'], ['name' => 'Jefferson', 'country_code' => 'US'], ['name' => 'Little Canada', 'country_code' => 'US'], ['name' => 'Rosaryville', 'country_code' => 'US'], ['name' => 'Wapakoneta', 'country_code' => 'US'], ['name' => 'Cavriago', 'country_code' => 'IT'], ['name' => 'Hambuhren', 'country_code' => 'DE'], ['name' => 'Alpine', 'country_code' => 'US'], ['name' => 'Perols', 'country_code' => 'FR'], ['name' => 'Lahstedt', 'country_code' => 'DE'], ['name' => 'San Vendemiano', 'country_code' => 'IT'], ['name' => 'Fuveau', 'country_code' => 'FR'], ['name' => 'Reiskirchen', 'country_code' => 'DE'], ['name' => 'Iramaia', 'country_code' => 'BR'], ['name' => 'Huittinen', 'country_code' => 'FI'], ['name' => 'Lyuboml ', 'country_code' => 'UA'], ['name' => 'Langhirano', 'country_code' => 'IT'], ['name' => 'Farmington', 'country_code' => 'US'], ['name' => 'Ivangorod', 'country_code' => 'RU'], ['name' => 'Douar Echbanat', 'country_code' => 'MA'], ['name' => 'Olekminsk', 'country_code' => 'RU'], ['name' => 'Volda', 'country_code' => 'NO'], ['name' => 'Doctor Phillips', 'country_code' => 'US'], ['name' => 'East Greenwich', 'country_code' => 'US'], ['name' => 'Warren', 'country_code' => 'US'], ['name' => 'Costesti', 'country_code' => 'RO'], ['name' => 'Beneditinos', 'country_code' => 'BR'], ['name' => 'Karkamis', 'country_code' => 'TR'], ['name' => 'Wittenbach', 'country_code' => 'CH'], ['name' => 'Exeter', 'country_code' => 'US'], ['name' => 'Martin', 'country_code' => 'US'], ['name' => 'Pitkyaranta', 'country_code' => 'RU'], ['name' => 'Gossau', 'country_code' => 'CH'], ['name' => 'Gifford', 'country_code' => 'US'], ['name' => 'Georgian Bluffs', 'country_code' => 'CA'], ['name' => 'Wendeburg', 'country_code' => 'DE'], ['name' => 'Bernalillo', 'country_code' => 'US'], ['name' => 'Oelsnitz', 'country_code' => 'DE'], ['name' => 'Kangning', 'country_code' => 'CN'], ['name' => 'Olevsk', 'country_code' => 'UA'], ['name' => 'Jaltocan', 'country_code' => 'MX'], ['name' => 'Great Missenden', 'country_code' => 'GB'], ['name' => 'Minobu', 'country_code' => 'JP'], ['name' => 'Aradeo', 'country_code' => 'IT'], ['name' => 'Pine Castle', 'country_code' => 'US'], ['name' => 'Mios', 'country_code' => 'FR'], ['name' => 'Point Pleasant', 'country_code' => 'US'], ['name' => 'La Farlede', 'country_code' => 'FR'], ['name' => 'Tomblaine', 'country_code' => 'FR'], ['name' => 'Cape Canaveral', 'country_code' => 'US'], ['name' => 'Bogen', 'country_code' => 'DE'], ['name' => 'Sweetwater', 'country_code' => 'US'], ['name' => 'Brikcha', 'country_code' => 'MA'], ['name' => 'Neuenhof', 'country_code' => 'CH'], ['name' => 'Fairview Shores', 'country_code' => 'US'], ['name' => 'Worth', 'country_code' => 'US'], ['name' => 'Pulpi', 'country_code' => 'ES'], ['name' => 'Rio Acima', 'country_code' => 'BR'], ['name' => 'Portage', 'country_code' => 'US'], ['name' => 'Shenjiaba', 'country_code' => 'CN'], ['name' => 'Tanaina', 'country_code' => 'US'], ['name' => 'Vigasio', 'country_code' => 'IT'], ['name' => 'Salanso', 'country_code' => 'BF'], ['name' => 'Arvorezinha', 'country_code' => 'BR'], ['name' => 'Fort William', 'country_code' => 'GB'], ['name' => 'Sudogda', 'country_code' => 'RU'], ['name' => 'Haikoucun', 'country_code' => 'CN'], ['name' => 'Santiago', 'country_code' => 'PE'], ['name' => 'Bedford Heights', 'country_code' => 'US'], ['name' => 'Bujari', 'country_code' => 'BR'], ['name' => 'Altenberge', 'country_code' => 'DE'], ['name' => 'Candas', 'country_code' => 'ES'], ['name' => 'Zuyevka', 'country_code' => 'RU'], ['name' => 'Hull', 'country_code' => 'US'], ['name' => 'Nanfang', 'country_code' => 'CN'], ['name' => 'Miribel', 'country_code' => 'FR'], ['name' => 'Sylva', 'country_code' => 'RU'], ['name' => 'Bogue', 'country_code' => 'MR'], ['name' => 'Morlenbach', 'country_code' => 'DE'], ['name' => 'Phon Charoen', 'country_code' => 'TH'], ['name' => 'Oulad Slim', 'country_code' => 'MA'], ['name' => 'Fox Lake', 'country_code' => 'US'], ['name' => 'Cittanova', 'country_code' => 'IT'], ['name' => 'Pembroke Dock', 'country_code' => 'GB'], ['name' => 'Sovata', 'country_code' => 'RO'], ['name' => 'Ivankiv', 'country_code' => 'UA'], ['name' => 'Cristino Castro', 'country_code' => 'BR'], ['name' => 'Oak Hills', 'country_code' => 'US'], ['name' => 'San Juan La Laguna', 'country_code' => 'GT'], ['name' => 'Millstone', 'country_code' => 'US'], ['name' => 'Tiddas', 'country_code' => 'MA'], ['name' => 'Linthicum', 'country_code' => 'US'], ['name' => 'Schwaig', 'country_code' => 'DE'], ['name' => 'Fountain Inn', 'country_code' => 'US'], ['name' => 'Cabanaquinta', 'country_code' => 'ES'], ['name' => 'New Baltimore', 'country_code' => 'US'], ['name' => 'Grossburgwedel', 'country_code' => 'DE'], ['name' => 'Parana', 'country_code' => 'BR'], ['name' => 'Wellington', 'country_code' => 'US'], ['name' => 'Beni Oulid', 'country_code' => 'MA'], ['name' => 'Awfouss', 'country_code' => 'MA'], ['name' => 'Quinto di Treviso', 'country_code' => 'IT'], ['name' => 'Nevelsk', 'country_code' => 'RU'], ['name' => 'Kendallville', 'country_code' => 'US'], ['name' => 'Krasnoilsk', 'country_code' => 'UA'], ['name' => 'Bomporto', 'country_code' => 'IT'], ['name' => 'Coroneo', 'country_code' => 'MX'], ['name' => 'Raymond', 'country_code' => 'US'], ['name' => 'Molango', 'country_code' => 'MX'], ['name' => 'Panaon', 'country_code' => 'PH'], ['name' => 'Sumner', 'country_code' => 'US'], ['name' => 'Volpago del Montello', 'country_code' => 'IT'], ['name' => 'Felling', 'country_code' => 'GB'], ['name' => 'Hughenden', 'country_code' => 'GB'], ['name' => 'Tangermunde', 'country_code' => 'DE'], ['name' => 'Limoux', 'country_code' => 'FR'], ['name' => 'Roseira', 'country_code' => 'BR'], ['name' => 'Ban Klang', 'country_code' => 'TH'], ['name' => 'Werlte', 'country_code' => 'DE'], ['name' => 'Corral de Bustos', 'country_code' => 'AR'], ['name' => 'Pine Hill', 'country_code' => 'US'], ['name' => 'Planura', 'country_code' => 'BR'], ['name' => 'Rawdon', 'country_code' => 'CA'], ['name' => 'Riachuelo', 'country_code' => 'BR'], ['name' => 'Forestville', 'country_code' => 'US'], ['name' => 'Tha Muang', 'country_code' => 'TH'], ['name' => 'Anrochte', 'country_code' => 'DE'], ['name' => 'Hudson', 'country_code' => 'US'], ['name' => 'Shasta Lake', 'country_code' => 'US'], ['name' => 'Kragero', 'country_code' => 'NO'], ['name' => 'Bordighera', 'country_code' => 'IT'], ['name' => 'Carmen', 'country_code' => 'PH'], ['name' => 'Hamilton', 'country_code' => 'AU'], ['name' => 'Lehigh', 'country_code' => 'US'], ['name' => 'Campbellton', 'country_code' => 'CA'], ['name' => 'Appleton', 'country_code' => 'GB'], ['name' => 'Dayton', 'country_code' => 'US'], ['name' => 'Belaya Kholunitsa', 'country_code' => 'RU'], ['name' => 'Rodeo', 'country_code' => 'US'], ['name' => 'View Royal', 'country_code' => 'CA'], ['name' => 'Luanco', 'country_code' => 'ES'], ['name' => 'Te Puke', 'country_code' => 'NZ'], ['name' => 'Worcester', 'country_code' => 'US'], ['name' => 'Pirai do Norte', 'country_code' => 'BR'], ['name' => 'West Point', 'country_code' => 'US'], ['name' => 'Vidor', 'country_code' => 'US'], ['name' => 'Leones', 'country_code' => 'AR'], ['name' => 'Tutrakan', 'country_code' => 'BG'], ['name' => 'Weil im Schonbuch', 'country_code' => 'DE'], ['name' => 'Terralba', 'country_code' => 'IT'], ['name' => 'Jaguaribara', 'country_code' => 'BR'], ['name' => 'Cajobi', 'country_code' => 'BR'], ['name' => 'Pasewalk', 'country_code' => 'DE'], ['name' => 'Ianca', 'country_code' => 'RO'], ['name' => 'Jaqma', 'country_code' => 'MA'], ['name' => 'New Port Richey East', 'country_code' => 'US'], ['name' => 'Bellefontaine Neighbors', 'country_code' => 'US'], ['name' => 'Portet-sur-Garonne', 'country_code' => 'FR'], ['name' => 'Salinas', 'country_code' => 'UY'], ['name' => 'Dar El Kebdani', 'country_code' => 'MA'], ['name' => 'Vermilion', 'country_code' => 'US'], ['name' => 'Calatrava', 'country_code' => 'PH'], ['name' => 'Lyngdal', 'country_code' => 'NO'], ['name' => 'South Union', 'country_code' => 'US'], ['name' => 'Itamogi', 'country_code' => 'BR'], ['name' => 'Puerto Quijarro', 'country_code' => 'BO'], ['name' => 'Morsbach', 'country_code' => 'DE'], ['name' => 'El Realejo', 'country_code' => 'NI'], ['name' => 'Quetigny', 'country_code' => 'FR'], ['name' => 'Dolhasca', 'country_code' => 'RO'], ['name' => 'Lipova', 'country_code' => 'RO'], ['name' => 'Catunda', 'country_code' => 'BR'], ['name' => 'Harfleur', 'country_code' => 'FR'], ['name' => 'Vaprio d Adda', 'country_code' => 'IT'], ['name' => 'Roche-la-Moliere', 'country_code' => 'FR'], ['name' => 'Kapuvar', 'country_code' => 'HU'], ['name' => 'Bonham', 'country_code' => 'US'], ['name' => 'Kapyl ', 'country_code' => 'BY'], ['name' => 'Bad Frankenhausen', 'country_code' => 'DE'], ['name' => 'Bowen', 'country_code' => 'AU'], ['name' => 'Frydlant nad Ostravici', 'country_code' => 'CZ'], ['name' => 'Kennett', 'country_code' => 'US'], ['name' => 'Tokol', 'country_code' => 'HU'], ['name' => 'Verucchio', 'country_code' => 'IT'], ['name' => 'Heves', 'country_code' => 'HU'], ['name' => 'Prestonpans', 'country_code' => 'GB'], ['name' => 'Verkhnodniprovsk', 'country_code' => 'UA'], ['name' => 'Pilar', 'country_code' => 'PH'], ['name' => 'Qiushanxiang', 'country_code' => 'CN'], ['name' => 'Troy', 'country_code' => 'US'], ['name' => 'Fort Bragg', 'country_code' => 'US'], ['name' => 'Madridejos', 'country_code' => 'ES'], ['name' => 'Koflach', 'country_code' => 'AT'], ['name' => 'Biot', 'country_code' => 'FR'], ['name' => 'Steinau an der Strasse', 'country_code' => 'DE'], ['name' => 'Klipphausen', 'country_code' => 'DE'], ['name' => 'Borgosatollo', 'country_code' => 'IT'], ['name' => 'Lyons', 'country_code' => 'US'], ['name' => 'Sylva', 'country_code' => 'RU'], ['name' => 'Corumba de Goias', 'country_code' => 'BR'], ['name' => 'Amurrio', 'country_code' => 'ES'], ['name' => 'Werneck', 'country_code' => 'DE'], ['name' => 'Maria Pinto', 'country_code' => 'CL'], ['name' => 'Kut Chap', 'country_code' => 'TH'], ['name' => 'Neuenstadt am Kocher', 'country_code' => 'DE'], ['name' => 'Bounaamane', 'country_code' => 'MA'], ['name' => 'Ardino', 'country_code' => 'BG'], ['name' => 'Urucania', 'country_code' => 'BR'], ['name' => 'Wells', 'country_code' => 'US'], ['name' => 'Bernay', 'country_code' => 'FR'], ['name' => 'Miami Shores', 'country_code' => 'US'], ['name' => 'Letychiv', 'country_code' => 'UA'], ['name' => 'Shamva', 'country_code' => 'ZW'], ['name' => 'Murfatlar', 'country_code' => 'RO'], ['name' => 'Munchberg', 'country_code' => 'DE'], ['name' => 'Vaiano', 'country_code' => 'IT'], ['name' => 'Bethanie', 'country_code' => 'NA'], ['name' => 'Levanger', 'country_code' => 'NO'], ['name' => 'Kenzingen', 'country_code' => 'DE'], ['name' => 'San Felice Circeo', 'country_code' => 'IT'], ['name' => 'Forde', 'country_code' => 'NO'], ['name' => 'Kirkel', 'country_code' => 'DE'], ['name' => 'Capriolo', 'country_code' => 'IT'], ['name' => 'Essey-les-Nancy', 'country_code' => 'FR'], ['name' => 'Taksimo', 'country_code' => 'RU'], ['name' => 'Buenopolis', 'country_code' => 'BR'], ['name' => 'Fortuna', 'country_code' => 'ES'], ['name' => 'Korolevo', 'country_code' => 'UA'], ['name' => 'Aydarken', 'country_code' => 'KG'], ['name' => 'Nagyatad', 'country_code' => 'HU'], ['name' => 'Bela Vista de Minas', 'country_code' => 'BR'], ['name' => 'Aulendorf', 'country_code' => 'DE'], ['name' => 'Columbia', 'country_code' => 'US'], ['name' => 'Oostzaan', 'country_code' => 'NL'], ['name' => 'Lukovit', 'country_code' => 'BG'], ['name' => 'Payerne', 'country_code' => 'CH'], ['name' => 'Vignate', 'country_code' => 'IT'], ['name' => 'Beverly Hills', 'country_code' => 'US'], ['name' => 'West Hanover', 'country_code' => 'US'], ['name' => 'Conceicao da Aparecida', 'country_code' => 'BR'], ['name' => 'Sobral de Monte Agraco', 'country_code' => 'PT'], ['name' => 'Goito', 'country_code' => 'IT'], ['name' => 'Konigsbach-Stein', 'country_code' => 'DE'], ['name' => 'Lexington', 'country_code' => 'US'], ['name' => 'Neuenhaus', 'country_code' => 'DE'], ['name' => 'Teocuitatlan de Corona', 'country_code' => 'MX'], ['name' => 'Richmond Heights', 'country_code' => 'US'], ['name' => 'Buzdyak', 'country_code' => 'RU'], ['name' => 'Ban Bong Tai', 'country_code' => 'TH'], ['name' => 'Harrison', 'country_code' => 'US'], ['name' => 'Csorna', 'country_code' => 'HU'], ['name' => 'Mariluz', 'country_code' => 'BR'], ['name' => 'Marpingen', 'country_code' => 'DE'], ['name' => 'Sedona', 'country_code' => 'US'], ['name' => 'San Vicente de Castellet', 'country_code' => 'ES'], ['name' => 'Ksar Lmajaz', 'country_code' => 'MA'], ['name' => 'Ben Nasseur', 'country_code' => 'DZ'], ['name' => 'Biandanshan', 'country_code' => 'CN'], ['name' => 'Ninheira', 'country_code' => 'BR'], ['name' => 'Santa Teresa', 'country_code' => 'BR'], ['name' => 'Lenguazaque', 'country_code' => 'CO'], ['name' => 'Santa Maria Madalena', 'country_code' => 'BR'], ['name' => 'Ottendorf-Okrilla', 'country_code' => 'DE'], ['name' => 'Summerville', 'country_code' => 'US'], ['name' => 'Volterra', 'country_code' => 'IT'], ['name' => 'Crosia', 'country_code' => 'IT'], ['name' => 'Januario Cicco', 'country_code' => 'BR'], ['name' => 'Saint-Gregoire', 'country_code' => 'FR'], ['name' => 'Bieber', 'country_code' => 'DE'], ['name' => 'Francisco Badaro', 'country_code' => 'BR'], ['name' => 'Dettingen an der Erms', 'country_code' => 'DE'], ['name' => 'Vytegra', 'country_code' => 'RU'], ['name' => 'Chavinda', 'country_code' => 'MX'], ['name' => 'Welkenraedt', 'country_code' => 'BE'], ['name' => 'Union City', 'country_code' => 'US'], ['name' => 'Aghbalou n Kerdous', 'country_code' => 'MA'], ['name' => 'Vernon', 'country_code' => 'US'], ['name' => 'South Huntington', 'country_code' => 'US'], ['name' => 'Carmaux', 'country_code' => 'FR'], ['name' => 'Fort Madison', 'country_code' => 'US'], ['name' => 'Aich', 'country_code' => 'DE'], ['name' => 'Nor Hachn', 'country_code' => 'AM'], ['name' => 'Santa Cruz do Arari', 'country_code' => 'BR'], ['name' => 'Campos Lindos', 'country_code' => 'BR'], ['name' => 'Tyukalinsk', 'country_code' => 'RU'], ['name' => 'Banska Stiavnica', 'country_code' => 'SK'], ['name' => 'Frouzins', 'country_code' => 'FR'], ['name' => 'Montemarciano', 'country_code' => 'IT'], ['name' => 'Coldstream', 'country_code' => 'CA'], ['name' => 'Mandello del Lario', 'country_code' => 'IT'], ['name' => 'Natonin', 'country_code' => 'PH'], ['name' => 'Bowdon', 'country_code' => 'GB'], ['name' => 'Nanticoke', 'country_code' => 'US'], ['name' => 'Bad Ems', 'country_code' => 'DE'], ['name' => 'Santa Terezinha de Goias', 'country_code' => 'BR'], ['name' => 'Blairgowrie', 'country_code' => 'GB'], ['name' => 'Cermenate', 'country_code' => 'IT'], ['name' => 'Chester', 'country_code' => 'CA'], ['name' => 'Sgamna', 'country_code' => 'MA'], ['name' => 'Argayash', 'country_code' => 'RU'], ['name' => 'Brumath', 'country_code' => 'FR'], ['name' => 'Teteven', 'country_code' => 'BG'], ['name' => 'Santo Stefano di Magra', 'country_code' => 'IT'], ['name' => 'Hillsdale', 'country_code' => 'US'], ['name' => 'Queens', 'country_code' => 'CA'], ['name' => 'Kambarka', 'country_code' => 'RU'], ['name' => 'Bilenke', 'country_code' => 'UA'], ['name' => 'Comstock Park', 'country_code' => 'US'], ['name' => 'Burgau', 'country_code' => 'DE'], ['name' => 'El Alamo', 'country_code' => 'ES'], ['name' => 'Dores de Campos', 'country_code' => 'BR'], ['name' => 'Fredonia', 'country_code' => 'US'], ['name' => 'Rayen', 'country_code' => 'IR'], ['name' => 'Petrolina de Goias', 'country_code' => 'BR'], ['name' => 'Novi di Modena', 'country_code' => 'IT'], ['name' => 'Soyaux', 'country_code' => 'FR'], ['name' => 'Sermoneta', 'country_code' => 'IT'], ['name' => 'Rouvroy', 'country_code' => 'FR'], ['name' => 'Helena-West Helena', 'country_code' => 'US'], ['name' => 'Chatham', 'country_code' => 'US'], ['name' => 'Park Forest Village', 'country_code' => 'US'], ['name' => 'Nehoiu', 'country_code' => 'RO'], ['name' => 'Forest Acres', 'country_code' => 'US'], ['name' => 'Oakengates', 'country_code' => 'GB'], ['name' => 'Coal', 'country_code' => 'US'], ['name' => 'Tha Mai', 'country_code' => 'TH'], ['name' => 'Reading', 'country_code' => 'US'], ['name' => 'Zaozernyy', 'country_code' => 'RU'], ['name' => 'Sixaola', 'country_code' => 'CR'], ['name' => 'Groairas', 'country_code' => 'BR'], ['name' => 'Hecelchakan', 'country_code' => 'MX'], ['name' => 'Morrovalle', 'country_code' => 'IT'], ['name' => 'London Colney', 'country_code' => 'GB'], ['name' => 'Santa Clara La Laguna', 'country_code' => 'GT'], ['name' => 'Vashon', 'country_code' => 'US'], ['name' => 'Grand-Couronne', 'country_code' => 'FR'], ['name' => 'Nieuw-Lekkerland', 'country_code' => 'NL'], ['name' => 'Canton', 'country_code' => 'US'], ['name' => 'Alvorada do Sul', 'country_code' => 'BR'], ['name' => 'Coroaci', 'country_code' => 'BR'], ['name' => 'Weston', 'country_code' => 'US'], ['name' => 'San Jose de Feliciano', 'country_code' => 'AR'], ['name' => 'Fiumefreddo di Sicilia', 'country_code' => 'IT'], ['name' => 'Miradouro', 'country_code' => 'BR'], ['name' => 'Kilkunda', 'country_code' => 'IN'], ['name' => 'Augustdorf', 'country_code' => 'DE'], ['name' => 'Sant Egidio alla Vibrata', 'country_code' => 'IT'], ['name' => 'Corfe Mullen', 'country_code' => 'GB'], ['name' => 'Pliezhausen', 'country_code' => 'DE'], ['name' => 'Ertil', 'country_code' => 'RU'], ['name' => 'Chivhu', 'country_code' => 'ZW'], ['name' => 'Arden Hills', 'country_code' => 'US'], ['name' => 'Sidi Rahhal', 'country_code' => 'MA'], ['name' => 'Lillers', 'country_code' => 'FR'], ['name' => 'Pine Ridge', 'country_code' => 'US'], ['name' => 'Selkirk', 'country_code' => 'CA'], ['name' => 'Saint-Felicien', 'country_code' => 'CA'], ['name' => 'Haelen', 'country_code' => 'NL'], ['name' => 'Marano Vicentino', 'country_code' => 'IT'], ['name' => 'Medulla', 'country_code' => 'US'], ['name' => 'Sao Francisco', 'country_code' => 'BR'], ['name' => 'Lanskroun', 'country_code' => 'CZ'], ['name' => 'Slatina', 'country_code' => 'HR'], ['name' => 'Independence', 'country_code' => 'US'], ['name' => 'Liphook', 'country_code' => 'GB'], ['name' => 'Rubim', 'country_code' => 'BR'], ['name' => 'Doraville', 'country_code' => 'US'], ['name' => 'Oster', 'country_code' => 'UA'], ['name' => 'Rum', 'country_code' => 'AT'], ['name' => 'Busca', 'country_code' => 'IT'], ['name' => 'Steinen', 'country_code' => 'DE'], ['name' => 'Caldera', 'country_code' => 'CL'], ['name' => 'Hawkesbury', 'country_code' => 'CA'], ['name' => 'Soverato Marina', 'country_code' => 'IT'], ['name' => 'La tamna', 'country_code' => 'MA'], ['name' => 'Sao Joao d Alianca', 'country_code' => 'BR'], ['name' => 'Moimenta da Beira', 'country_code' => 'PT'], ['name' => 'Santa Isabel Cholula', 'country_code' => 'MX'], ['name' => 'Birkenau', 'country_code' => 'DE'], ['name' => 'Coronel Freitas', 'country_code' => 'BR'], ['name' => 'Nordkirchen', 'country_code' => 'DE'], ['name' => 'Plattekill', 'country_code' => 'US'], ['name' => 'Lonquimay', 'country_code' => 'CL'], ['name' => 'Meuselwitz', 'country_code' => 'DE'], ['name' => 'Cypress Gardens', 'country_code' => 'US'], ['name' => 'Itape', 'country_code' => 'BR'], ['name' => 'Taufkirchen', 'country_code' => 'DE'], ['name' => 'Eumseong', 'country_code' => 'KR'], ['name' => 'Lugovoy', 'country_code' => 'KZ'], ['name' => 'Pebble Creek', 'country_code' => 'US'], ['name' => 'Martinopole', 'country_code' => 'BR'], ['name' => 'Mucuge', 'country_code' => 'BR'], ['name' => 'Melvindale', 'country_code' => 'US'], ['name' => 'Fanzhao', 'country_code' => 'CN'], ['name' => 'Wildberg', 'country_code' => 'DE'], ['name' => 'Elmas', 'country_code' => 'IT'], ['name' => 'Sauk Village', 'country_code' => 'US'], ['name' => 'Bisignano', 'country_code' => 'IT'], ['name' => 'Ronda Alta', 'country_code' => 'BR'], ['name' => 'Marawi', 'country_code' => 'SD'], ['name' => 'Pescaria Brava', 'country_code' => 'BR'], ['name' => 'Clearfield', 'country_code' => 'US'], ['name' => 'Andergrove', 'country_code' => 'AU'], ['name' => 'Radyvyliv', 'country_code' => 'UA'], ['name' => 'Pella', 'country_code' => 'US'], ['name' => 'Charala', 'country_code' => 'CO'], ['name' => 'Luza', 'country_code' => 'RU'], ['name' => 'Terra Nova', 'country_code' => 'BR'], ['name' => 'Calasparra', 'country_code' => 'ES'], ['name' => 'Tarashcha', 'country_code' => 'UA'], ['name' => 'Cuorgne', 'country_code' => 'IT'], ['name' => 'Oppeano', 'country_code' => 'IT'], ['name' => 'Vetraz-Monthoux', 'country_code' => 'FR'], ['name' => 'Wingles', 'country_code' => 'FR'], ['name' => 'Sedico', 'country_code' => 'IT'], ['name' => 'Blumberg', 'country_code' => 'DE'], ['name' => 'Bad Orb', 'country_code' => 'DE'], ['name' => 'Pires Ferreira', 'country_code' => 'BR'], ['name' => 'Sparta', 'country_code' => 'US'], ['name' => 'Flamanzi', 'country_code' => 'RO'], ['name' => 'Box Elder', 'country_code' => 'US'], ['name' => 'Middle Island', 'country_code' => 'US'], ['name' => 'Friedeburg', 'country_code' => 'DE'], ['name' => 'Roberval', 'country_code' => 'CA'], ['name' => 'Bad Wildbad', 'country_code' => 'DE'], ['name' => 'Borzna', 'country_code' => 'UA'], ['name' => 'Brandizzo', 'country_code' => 'IT'], ['name' => 'Jemaat Oulad Mhamed', 'country_code' => 'MA'], ['name' => 'Shyroke', 'country_code' => 'UA'], ['name' => 'Sniatyn', 'country_code' => 'UA'], ['name' => 'Sainte-Agathe-des-Monts', 'country_code' => 'CA'], ['name' => 'Qovlar', 'country_code' => 'AZ'], ['name' => 'Pithiviers', 'country_code' => 'FR'], ['name' => 'Steinfeld', 'country_code' => 'DE'], ['name' => 'Emsburen', 'country_code' => 'DE'], ['name' => 'Catanduvas', 'country_code' => 'BR'], ['name' => 'Teplodar', 'country_code' => 'UA'], ['name' => 'Kenafif', 'country_code' => 'MA'], ['name' => 'Mstsislaw', 'country_code' => 'BY'], ['name' => 'Barrington', 'country_code' => 'US'], ['name' => 'Launaguet', 'country_code' => 'FR'], ['name' => 'Oggiono', 'country_code' => 'IT'], ['name' => 'North Dumfries', 'country_code' => 'CA'], ['name' => 'Carqueiranne', 'country_code' => 'FR'], ['name' => 'Medina', 'country_code' => 'CO'], ['name' => 'Tutzing', 'country_code' => 'DE'], ['name' => 'Houthulst', 'country_code' => 'BE'], ['name' => 'Rehburg-Loccum', 'country_code' => 'DE'], ['name' => 'Pechea', 'country_code' => 'RO'], ['name' => 'Csomor', 'country_code' => 'HU'], ['name' => 'Governador Archer', 'country_code' => 'BR'], ['name' => 'Ainring', 'country_code' => 'DE'], ['name' => 'Fort Lupton', 'country_code' => 'US'], ['name' => 'Nong Ki', 'country_code' => 'TH'], ['name' => 'Simbach am Inn', 'country_code' => 'DE'], ['name' => 'Rideau Lakes', 'country_code' => 'CA'], ['name' => 'Luis Gomes', 'country_code' => 'BR'], ['name' => 'Tolmezzo', 'country_code' => 'IT'], ['name' => 'Asola', 'country_code' => 'IT'], ['name' => 'Victoria', 'country_code' => 'US'], ['name' => 'Alesd', 'country_code' => 'RO'], ['name' => 'Goytapa', 'country_code' => 'AZ'], ['name' => 'Wahlstedt', 'country_code' => 'DE'], ['name' => 'Niebull', 'country_code' => 'DE'], ['name' => 'Castellamonte', 'country_code' => 'IT'], ['name' => 'Za roura', 'country_code' => 'MA'], ['name' => 'Gunbarrel', 'country_code' => 'US'], ['name' => 'Bluffton', 'country_code' => 'US'], ['name' => 'Lizzano', 'country_code' => 'IT'], ['name' => 'Kushijima', 'country_code' => 'JP'], ['name' => 'Kirchzarten', 'country_code' => 'DE'], ['name' => 'Sechelt', 'country_code' => 'CA'], ['name' => 'Cetraro', 'country_code' => 'IT'], ['name' => 'Santa Maria de Palautordera', 'country_code' => 'ES'], ['name' => 'Prelouc', 'country_code' => 'CZ'], ['name' => 'Waverly', 'country_code' => 'US'], ['name' => 'Pullach im Isartal', 'country_code' => 'DE'], ['name' => 'Altusried', 'country_code' => 'DE'], ['name' => 'Aldenham', 'country_code' => 'GB'], ['name' => 'Tissaf', 'country_code' => 'MA'], ['name' => 'Molsheim', 'country_code' => 'FR'], ['name' => 'Jocoro', 'country_code' => 'SV'], ['name' => 'Looc', 'country_code' => 'PH'], ['name' => 'Mikhaylov', 'country_code' => 'RU'], ['name' => 'Skidal ', 'country_code' => 'BY'], ['name' => 'Beccles', 'country_code' => 'GB'], ['name' => 'Souama', 'country_code' => 'DZ'], ['name' => 'Cingoli', 'country_code' => 'IT'], ['name' => 'Takahama', 'country_code' => 'JP'], ['name' => 'Alto Piquiri', 'country_code' => 'BR'], ['name' => 'Fife', 'country_code' => 'US'], ['name' => 'Lehman', 'country_code' => 'US'], ['name' => 'Phak Hai', 'country_code' => 'TH'], ['name' => 'Sinimbu', 'country_code' => 'BR'], ['name' => 'Caatiba', 'country_code' => 'BR'], ['name' => 'Almoloya del Rio', 'country_code' => 'MX'], ['name' => 'Le Passage', 'country_code' => 'FR'], ['name' => 'Ouistreham', 'country_code' => 'FR'], ['name' => 'Kokoszki', 'country_code' => 'PL'], ['name' => 'Kawara', 'country_code' => 'JP'], ['name' => 'Assendelft', 'country_code' => 'NL'], ['name' => 'Kampong Tunah Jambu', 'country_code' => 'BN'], ['name' => 'Sofiivka', 'country_code' => 'UA'], ['name' => 'Covasna', 'country_code' => 'RO'], ['name' => 'Somers Point', 'country_code' => 'US'], ['name' => 'Balangkayan', 'country_code' => 'PH'], ['name' => 'Novo Horizonte', 'country_code' => 'BR'], ['name' => 'Woodmere', 'country_code' => 'US'], ['name' => 'Naters', 'country_code' => 'CH'], ['name' => 'Granada', 'country_code' => 'CO'], ['name' => 'Alguazas', 'country_code' => 'ES'], ['name' => 'Mazamet', 'country_code' => 'FR'], ['name' => 'Seye', 'country_code' => 'MX'], ['name' => 'Pernes-les-Fontaines', 'country_code' => 'FR'], ['name' => 'Nove Mesto na Morave', 'country_code' => 'CZ'], ['name' => 'Yermolino', 'country_code' => 'RU'], ['name' => 'Moree', 'country_code' => 'AU'], ['name' => 'Ban Bu Sung', 'country_code' => 'TH'], ['name' => 'Cachoeira dos Indios', 'country_code' => 'BR'], ['name' => 'Willstatt', 'country_code' => 'DE'], ['name' => 'Racconigi', 'country_code' => 'IT'], ['name' => 'Byarozawka', 'country_code' => 'BY'], ['name' => 'Pogliano Milanese', 'country_code' => 'IT'], ['name' => 'Laakirchen', 'country_code' => 'AT'], ['name' => 'Canapolis', 'country_code' => 'BR'], ['name' => 'Calcoene', 'country_code' => 'BR'], ['name' => 'Bucine', 'country_code' => 'IT'], ['name' => 'Magstadt', 'country_code' => 'DE'], ['name' => 'Tocina', 'country_code' => 'ES'], ['name' => 'Caem', 'country_code' => 'BR'], ['name' => 'Sung Noen', 'country_code' => 'TH'], ['name' => 'Gages Lake', 'country_code' => 'US'], ['name' => 'Embrach', 'country_code' => 'CH'], ['name' => 'Haxby', 'country_code' => 'GB'], ['name' => 'Asbury Lake', 'country_code' => 'US'], ['name' => 'Saint-Loubes', 'country_code' => 'FR'], ['name' => 'Pike Road', 'country_code' => 'US'], ['name' => 'Mainaschaff', 'country_code' => 'DE'], ['name' => 'Mengibar', 'country_code' => 'ES'], ['name' => 'Ozimek', 'country_code' => 'PL'], ['name' => 'Opochka', 'country_code' => 'RU'], ['name' => 'Jucurucu', 'country_code' => 'BR'], ['name' => 'Havre', 'country_code' => 'US'], ['name' => 'Gavirate', 'country_code' => 'IT'], ['name' => 'Snohomish', 'country_code' => 'US'], ['name' => 'Southampton', 'country_code' => 'US'], ['name' => 'Heubach', 'country_code' => 'DE'], ['name' => 'Singera', 'country_code' => 'MD'], ['name' => 'La Mision', 'country_code' => 'MX'], ['name' => 'Ipuiuna', 'country_code' => 'BR'], ['name' => 'Salvatierra de Mino', 'country_code' => 'ES'], ['name' => 'Welwyn', 'country_code' => 'GB'], ['name' => 'Paranaiguana', 'country_code' => 'BR'], ['name' => 'Yaotsu', 'country_code' => 'JP'], ['name' => 'Choele Choel', 'country_code' => 'AR'], ['name' => 'Argelato', 'country_code' => 'IT'], ['name' => 'Ech Chaibat', 'country_code' => 'MA'], ['name' => 'Wald', 'country_code' => 'CH'], ['name' => 'Al Wafrah', 'country_code' => 'KW'], ['name' => 'Bruino', 'country_code' => 'IT'], ['name' => 'Waynesville', 'country_code' => 'US'], ['name' => 'Glocester', 'country_code' => 'US'], ['name' => 'Rinopolis', 'country_code' => 'BR'], ['name' => 'Auterive', 'country_code' => 'FR'], ['name' => 'Clarion', 'country_code' => 'US'], ['name' => 'Kutztown', 'country_code' => 'US'], ['name' => 'Zavolzhsk', 'country_code' => 'RU'], ['name' => 'Iwashita', 'country_code' => 'JP'], ['name' => 'Schotten', 'country_code' => 'DE'], ['name' => 'Tolbazy', 'country_code' => 'RU'], ['name' => 'Steinhaus', 'country_code' => 'CH'], ['name' => 'Binefar', 'country_code' => 'ES'], ['name' => 'Agua Branca', 'country_code' => 'BR'], ['name' => 'Salaverry', 'country_code' => 'PE'], ['name' => 'Sovicille', 'country_code' => 'IT'], ['name' => 'Conway', 'country_code' => 'US'], ['name' => 'Danville', 'country_code' => 'US'], ['name' => 'Southport', 'country_code' => 'US'], ['name' => 'Keuruu', 'country_code' => 'FI'], ['name' => 'Vienna', 'country_code' => 'US'], ['name' => 'Ipupiara', 'country_code' => 'BR'], ['name' => 'Grosshansdorf', 'country_code' => 'DE'], ['name' => 'Manville', 'country_code' => 'US'], ['name' => 'Southborough', 'country_code' => 'US'], ['name' => 'Bel Air', 'country_code' => 'US'], ['name' => 'Warr Acres', 'country_code' => 'US'], ['name' => 'Franklin', 'country_code' => 'US'], ['name' => 'Lysa nad Labem', 'country_code' => 'CZ'], ['name' => 'Rudesheim am Rhein', 'country_code' => 'DE'], ['name' => 'Judenburg', 'country_code' => 'AT'], ['name' => 'Illora', 'country_code' => 'ES'], ['name' => 'Foz', 'country_code' => 'ES'], ['name' => 'Tipp City', 'country_code' => 'US'], ['name' => 'Sulzbach', 'country_code' => 'DE'], ['name' => 'Aruana', 'country_code' => 'BR'], ['name' => 'Klotze', 'country_code' => 'DE'], ['name' => 'Struthers', 'country_code' => 'US'], ['name' => 'Lincoln Park', 'country_code' => 'US'], ['name' => 'Chapel en le Frith', 'country_code' => 'GB'], ['name' => 'North Glengarry', 'country_code' => 'CA'], ['name' => 'Kurort Steinbach-Hallenberg', 'country_code' => 'DE'], ['name' => 'Satipo', 'country_code' => 'PE'], ['name' => 'Puentes de Garcia Rodriguez', 'country_code' => 'ES'], ['name' => 'Zaggota', 'country_code' => 'MA'], ['name' => 'Kamalasai', 'country_code' => 'TH'], ['name' => 'Digora', 'country_code' => 'RU'], ['name' => 'Waldwick', 'country_code' => 'US'], ['name' => 'Gambolo', 'country_code' => 'IT'], ['name' => 'Melendugno', 'country_code' => 'IT'], ['name' => 'Conde-sur-l Escaut', 'country_code' => 'FR'], ['name' => 'Shawano', 'country_code' => 'US'], ['name' => 'Poienile de sub Munte', 'country_code' => 'RO'], ['name' => 'Fairview', 'country_code' => 'US'], ['name' => 'Red Bank', 'country_code' => 'US'], ['name' => 'Mountsorrel', 'country_code' => 'GB'], ['name' => 'Meldola', 'country_code' => 'IT'], ['name' => 'Cabries', 'country_code' => 'FR'], ['name' => 'Maiquinique', 'country_code' => 'BR'], ['name' => 'Lescar', 'country_code' => 'FR'], ['name' => 'College', 'country_code' => 'US'], ['name' => 'Macomer', 'country_code' => 'IT'], ['name' => 'Alfredo Wagner', 'country_code' => 'BR'], ['name' => 'Krivodanovka', 'country_code' => 'RU'], ['name' => 'Nova Veneza', 'country_code' => 'BR'], ['name' => 'Oberhausen-Rheinhausen', 'country_code' => 'DE'], ['name' => 'Nogliki', 'country_code' => 'RU'], ['name' => 'Nideggen', 'country_code' => 'DE'], ['name' => 'South Huron', 'country_code' => 'CA'], ['name' => 'Dylym', 'country_code' => 'RU'], ['name' => 'Mengen', 'country_code' => 'DE'], ['name' => 'Brembate', 'country_code' => 'IT'], ['name' => 'Progress', 'country_code' => 'US'], ['name' => 'Marieville', 'country_code' => 'CA'], ['name' => 'Wiang Sa', 'country_code' => 'TH'], ['name' => 'Fairmount', 'country_code' => 'US'], ['name' => 'Ontario', 'country_code' => 'US'], ['name' => 'Pintuyan', 'country_code' => 'PH'], ['name' => 'Mori', 'country_code' => 'IT'], ['name' => 'Wolfersheim', 'country_code' => 'DE'], ['name' => 'Bou Nouh', 'country_code' => 'DZ'], ['name' => 'Rosstal', 'country_code' => 'DE'], ['name' => 'Old Saybrook', 'country_code' => 'US'], ['name' => ' Ain Leuh', 'country_code' => 'MA'], ['name' => 'Kirkland', 'country_code' => 'US'], ['name' => 'Arques', 'country_code' => 'FR'], ['name' => 'Hongliuwan', 'country_code' => 'CN'], ['name' => 'Cedar Hills', 'country_code' => 'US'], ['name' => 'Hobart', 'country_code' => 'US'], ['name' => 'Dallgow-Doberitz', 'country_code' => 'DE'], ['name' => 'Le Mars', 'country_code' => 'US'], ['name' => 'Radisani', 'country_code' => 'MK'], ['name' => 'Caudete', 'country_code' => 'ES'], ['name' => 'Crigglestone', 'country_code' => 'GB'], ['name' => 'Acucena', 'country_code' => 'BR'], ['name' => 'Cresson', 'country_code' => 'US'], ['name' => 'Standish', 'country_code' => 'US'], ['name' => 'Harrisonville', 'country_code' => 'US'], ['name' => 'Makale', 'country_code' => 'ID'], ['name' => 'Sannicandro di Bari', 'country_code' => 'IT'], ['name' => 'Divonne-les-Bains', 'country_code' => 'FR'], ['name' => 'Kummersbruck', 'country_code' => 'DE'], ['name' => 'Asagi Ayibli', 'country_code' => 'AZ'], ['name' => 'Clinton', 'country_code' => 'US'], ['name' => 'San Agustin de las Juntas', 'country_code' => 'MX'], ['name' => 'Kosching', 'country_code' => 'DE'], ['name' => 'Brandon', 'country_code' => 'US'], ['name' => 'Metsamor', 'country_code' => 'AM'], ['name' => 'Littleton', 'country_code' => 'US'], ['name' => 'Carneirinho', 'country_code' => 'BR'], ['name' => 'Ikryanoye', 'country_code' => 'RU'], ['name' => 'Tsuno', 'country_code' => 'JP'], ['name' => 'Lenggries', 'country_code' => 'DE'], ['name' => 'Aire-sur-la-Lys', 'country_code' => 'FR'], ['name' => 'Taghbalt', 'country_code' => 'MA'], ['name' => 'Milford', 'country_code' => 'US'], ['name' => 'Tiana', 'country_code' => 'ES'], ['name' => 'Tarnok', 'country_code' => 'HU'], ['name' => 'Le Beausset', 'country_code' => 'FR'], ['name' => 'Nolensville', 'country_code' => 'US'], ['name' => 'Kosh-Agach', 'country_code' => 'RU'], ['name' => 'Inverigo', 'country_code' => 'IT'], ['name' => 'Ivancice', 'country_code' => 'CZ'], ['name' => 'Kargopol', 'country_code' => 'RU'], ['name' => 'San Pancrazio Salentino', 'country_code' => 'IT'], ['name' => 'Figeac', 'country_code' => 'FR'], ['name' => 'Garlasco', 'country_code' => 'IT'], ['name' => 'Rodinghausen', 'country_code' => 'DE'], ['name' => 'Isabela', 'country_code' => 'PR'], ['name' => 'Wood River', 'country_code' => 'US'], ['name' => 'Friendly', 'country_code' => 'US'], ['name' => 'Ban Ratchakrut', 'country_code' => 'TH'], ['name' => 'Hoek van Holland', 'country_code' => 'NL'], ['name' => 'Ollerton', 'country_code' => 'GB'], ['name' => 'Barga', 'country_code' => 'IT'], ['name' => 'Kubrat', 'country_code' => 'BG'], ['name' => 'Sleepy Hollow', 'country_code' => 'US'], ['name' => 'Caspe', 'country_code' => 'ES'], ['name' => 'Euxton', 'country_code' => 'GB'], ['name' => 'Colindres', 'country_code' => 'ES'], ['name' => 'Sankt Andra', 'country_code' => 'AT'], ['name' => 'Surany', 'country_code' => 'SK'], ['name' => 'Fair Oaks Ranch', 'country_code' => 'US'], ['name' => 'Robore', 'country_code' => 'BO'], ['name' => 'Sipacate', 'country_code' => 'GT'], ['name' => 'Heteren', 'country_code' => 'NL'], ['name' => 'Bou nane', 'country_code' => 'MA'], ['name' => 'North Versailles', 'country_code' => 'US'], ['name' => 'Nohfelden', 'country_code' => 'DE'], ['name' => 'Valea lui Mihai', 'country_code' => 'RO'], ['name' => 'Monteriggioni', 'country_code' => 'IT'], ['name' => 'Lentvaris', 'country_code' => 'LT'], ['name' => 'Merzenich', 'country_code' => 'DE'], ['name' => 'Moba', 'country_code' => 'CD'], ['name' => 'Holmen', 'country_code' => 'US'], ['name' => 'Croydon', 'country_code' => 'US'], ['name' => 'San Pedro Huamelula', 'country_code' => 'MX'], ['name' => 'Santa Maria Ajoloapan', 'country_code' => 'MX'], ['name' => 'Tay', 'country_code' => 'CA'], ['name' => 'Santa Margherita Ligure', 'country_code' => 'IT'], ['name' => 'Coweta', 'country_code' => 'US'], ['name' => 'Suaita', 'country_code' => 'CO'], ['name' => 'Dubove', 'country_code' => 'UA'], ['name' => 'Villamarchante', 'country_code' => 'ES'], ['name' => 'Ohrdruf', 'country_code' => 'DE'], ['name' => 'Fairmont', 'country_code' => 'US'], ['name' => 'Coycoyan de las Flores', 'country_code' => 'MX'], ['name' => 'Valozhyn', 'country_code' => 'BY'], ['name' => 'Moravska Trebova', 'country_code' => 'CZ'], ['name' => 'Warrenton', 'country_code' => 'US'], ['name' => 'Volodarsk', 'country_code' => 'RU'], ['name' => 'Gassino Torinese', 'country_code' => 'IT'], ['name' => 'Caraibas', 'country_code' => 'BR'], ['name' => 'Wielsbeke', 'country_code' => 'BE'], ['name' => 'Purkersdorf', 'country_code' => 'AT'], ['name' => 'Kami-kawabe', 'country_code' => 'JP'], ['name' => 'Tafersit', 'country_code' => 'MA'], ['name' => 'San Juan', 'country_code' => 'PH'], ['name' => 'Progress Village', 'country_code' => 'US'], ['name' => 'Nogent-le-Rotrou', 'country_code' => 'FR'], ['name' => 'Pleasant Hill', 'country_code' => 'US'], ['name' => 'Galleh Dar', 'country_code' => 'IR'], ['name' => 'Taltal', 'country_code' => 'CL'], ['name' => 'Vuktyl', 'country_code' => 'RU'], ['name' => 'Senanga', 'country_code' => 'ZM'], ['name' => 'Maisenhausen', 'country_code' => 'DE'], ['name' => 'Waggaman', 'country_code' => 'US'], ['name' => 'Alajarvi', 'country_code' => 'FI'], ['name' => 'Aveley', 'country_code' => 'GB'], ['name' => 'Kirchlinteln', 'country_code' => 'DE'], ['name' => 'Non Sung', 'country_code' => 'TH'], ['name' => 'Buckie', 'country_code' => 'GB'], ['name' => 'Hiranai', 'country_code' => 'JP'], ['name' => 'Jerez', 'country_code' => 'GT'], ['name' => 'Laurens', 'country_code' => 'US'], ['name' => 'Hoeselt', 'country_code' => 'BE'], ['name' => 'Uchoa', 'country_code' => 'BR'], ['name' => 'Midland', 'country_code' => 'US'], ['name' => 'Bull Mountain', 'country_code' => 'US'], ['name' => 'Flat Rock', 'country_code' => 'US'], ['name' => 'Saint-Amand-Montrond', 'country_code' => 'FR'], ['name' => 'Quartz Hill', 'country_code' => 'US'], ['name' => 'Niederhasli', 'country_code' => 'CH'], ['name' => 'Molalla', 'country_code' => 'US'], ['name' => 'Gar', 'country_code' => 'CN'], ['name' => 'Bonfinopolis', 'country_code' => 'BR'], ['name' => 'Bude', 'country_code' => 'GB'], ['name' => 'Hlinsko', 'country_code' => 'CZ'], ['name' => 'Scotchtown', 'country_code' => 'US'], ['name' => 'Pyetrykaw', 'country_code' => 'BY'], ['name' => 'Giesen', 'country_code' => 'DE'], ['name' => 'Alden', 'country_code' => 'US'], ['name' => 'River Vale', 'country_code' => 'US'], ['name' => 'Fort Oglethorpe', 'country_code' => 'US'], ['name' => 'Pinos Puente', 'country_code' => 'ES'], ['name' => 'Visbek', 'country_code' => 'DE'], ['name' => 'Ratne', 'country_code' => 'UA'], ['name' => 'Saint-Pierre-du-Mont', 'country_code' => 'FR'], ['name' => 'Lapinlahti', 'country_code' => 'FI'], ['name' => 'Alkhan-Yurt', 'country_code' => 'RU'], ['name' => 'Tarhjicht', 'country_code' => 'MA'], ['name' => 'Darabani', 'country_code' => 'RO'], ['name' => 'Ruffano', 'country_code' => 'IT'], ['name' => 'Magnago', 'country_code' => 'IT'], ['name' => 'Campobello di Licata', 'country_code' => 'IT'], ['name' => 'Boves', 'country_code' => 'IT'], ['name' => 'Alcoa', 'country_code' => 'US'], ['name' => 'Vlist', 'country_code' => 'NL'], ['name' => 'Boudinar', 'country_code' => 'MA'], ['name' => 'Fernan-Nunez', 'country_code' => 'ES'], ['name' => 'Lake Arbor', 'country_code' => 'US'], ['name' => 'Rute', 'country_code' => 'ES'], ['name' => 'Ii', 'country_code' => 'FI'], ['name' => 'Garden Acres', 'country_code' => 'US'], ['name' => 'Toging am Inn', 'country_code' => 'DE'], ['name' => 'Miandasht', 'country_code' => 'IR'], ['name' => 'Bad Konig', 'country_code' => 'DE'], ['name' => 'Pasian di Prato', 'country_code' => 'IT'], ['name' => 'Oued Laou', 'country_code' => 'MA'], ['name' => 'Mont-Saint-Martin', 'country_code' => 'FR'], ['name' => 'Blain', 'country_code' => 'FR'], ['name' => 'Pereshchepyne', 'country_code' => 'UA'], ['name' => 'Anisio de Abreu', 'country_code' => 'BR'], ['name' => 'Daruvar', 'country_code' => 'HR'], ['name' => 'Santa Cruz Atizapan', 'country_code' => 'MX'], ['name' => 'Dongcha', 'country_code' => 'CN'], ['name' => 'Goldenstedt', 'country_code' => 'DE'], ['name' => 'Liesveld', 'country_code' => 'NL'], ['name' => 'Orland', 'country_code' => 'US'], ['name' => 'Cuicatlan', 'country_code' => 'MX'], ['name' => 'Fouesnant', 'country_code' => 'FR'], ['name' => 'Itatiaiucu', 'country_code' => 'BR'], ['name' => 'Helotes', 'country_code' => 'US'], ['name' => 'Saint-Jean-le-Blanc', 'country_code' => 'FR'], ['name' => 'Sorkheh', 'country_code' => 'IR'], ['name' => 'Leppavirta', 'country_code' => 'FI'], ['name' => 'Mareno di Piave', 'country_code' => 'IT'], ['name' => 'Aytre', 'country_code' => 'FR'], ['name' => 'Bee Ridge', 'country_code' => 'US'], ['name' => 'Gessate', 'country_code' => 'IT'], ['name' => 'Ploermel', 'country_code' => 'FR'], ['name' => 'Haddington', 'country_code' => 'GB'], ['name' => 'Constantina', 'country_code' => 'BR'], ['name' => 'Frickenhausen', 'country_code' => 'DE'], ['name' => 'Monte Escobedo', 'country_code' => 'MX'], ['name' => 'Amatenango del Valle', 'country_code' => 'MX'], ['name' => 'Sande', 'country_code' => 'NO'], ['name' => 'Merville', 'country_code' => 'FR'], ['name' => 'Liminka', 'country_code' => 'FI'], ['name' => 'Estavayer-le-Lac', 'country_code' => 'CH'], ['name' => 'Key Largo', 'country_code' => 'US'], ['name' => 'Masquefa', 'country_code' => 'ES'], ['name' => 'Kourimat', 'country_code' => 'MA'], ['name' => 'Ribadeo', 'country_code' => 'ES'], ['name' => 'Lambesc', 'country_code' => 'FR'], ['name' => 'Piedras Blancas', 'country_code' => 'ES'], ['name' => 'Boucau', 'country_code' => 'FR'], ['name' => 'Saint-Doulchard', 'country_code' => 'FR'], ['name' => 'Nea Moudania', 'country_code' => 'GR'], ['name' => 'Outa Bouabane', 'country_code' => 'MA'], ['name' => 'Westphalia', 'country_code' => 'US'], ['name' => 'Worth', 'country_code' => 'GB'], ['name' => 'Umburetama', 'country_code' => 'BR'], ['name' => 'Conselice', 'country_code' => 'IT'], ['name' => 'Foix', 'country_code' => 'FR'], ['name' => 'Wabash', 'country_code' => 'US'], ['name' => 'Pokrovske', 'country_code' => 'UA'], ['name' => 'Saint-Remy-de-Provence', 'country_code' => 'FR'], ['name' => 'Zell am See', 'country_code' => 'AT'], ['name' => 'Gunnedah', 'country_code' => 'AU'], ['name' => 'Zaozersk', 'country_code' => 'RU'], ['name' => 'Itapeva', 'country_code' => 'BR'], ['name' => 'East Bradford', 'country_code' => 'US'], ['name' => 'Novyye Atagi', 'country_code' => 'RU'], ['name' => 'Bad Breisig', 'country_code' => 'DE'], ['name' => 'Saint-Lys', 'country_code' => 'FR'], ['name' => 'Montescaglioso', 'country_code' => 'IT'], ['name' => 'Garliava', 'country_code' => 'LT'], ['name' => 'Bad Gandersheim', 'country_code' => 'DE'], ['name' => 'Deruta', 'country_code' => 'IT'], ['name' => 'Winterville', 'country_code' => 'US'], ['name' => 'Capim Branco', 'country_code' => 'BR'], ['name' => 'Ilsfeld', 'country_code' => 'DE'], ['name' => 'Pia', 'country_code' => 'FR'], ['name' => 'Bogande', 'country_code' => 'BF'], ['name' => 'Urzhum', 'country_code' => 'RU'], ['name' => 'Byalynichy', 'country_code' => 'BY'], ['name' => 'Ramsey', 'country_code' => 'GB'], ['name' => 'Castel Bolognese', 'country_code' => 'IT'], ['name' => 'Porto Rafti', 'country_code' => 'GR'], ['name' => 'Cosne sur Loire', 'country_code' => 'FR'], ['name' => 'Jilotlan de los Dolores', 'country_code' => 'MX'], ['name' => 'Vargem', 'country_code' => 'BR'], ['name' => 'Clay', 'country_code' => 'US'], ['name' => 'Celebration', 'country_code' => 'US'], ['name' => 'Saarijarvi', 'country_code' => 'FI'], ['name' => 'Arteaga', 'country_code' => 'MX'], ['name' => 'Temiskaming Shores', 'country_code' => 'CA'], ['name' => 'Wilnecote', 'country_code' => 'GB'], ['name' => 'Carregal do Sal', 'country_code' => 'PT'], ['name' => 'Towcester', 'country_code' => 'GB'], ['name' => 'Caldas de Reyes', 'country_code' => 'ES'], ['name' => 'St. Albans', 'country_code' => 'US'], ['name' => 'Altmunster', 'country_code' => 'AT'], ['name' => 'Talachyn', 'country_code' => 'BY'], ['name' => 'Berd', 'country_code' => 'AM'], ['name' => 'Poggio Renatico', 'country_code' => 'IT'], ['name' => 'Fallanden', 'country_code' => 'CH'], ['name' => 'Mirante', 'country_code' => 'BR'], ['name' => 'Mission', 'country_code' => 'US'], ['name' => 'Margarita', 'country_code' => 'CO'], ['name' => 'Monticello Conte Otto', 'country_code' => 'IT'], ['name' => 'Osthofen', 'country_code' => 'DE'], ['name' => 'Pantano Grande', 'country_code' => 'BR'], ['name' => 'Trancoso', 'country_code' => 'PT'], ['name' => 'Oulunsalo', 'country_code' => 'FI'], ['name' => 'Berwick', 'country_code' => 'US'], ['name' => 'Grossrohrsdorf', 'country_code' => 'DE'], ['name' => 'Lago Ranco', 'country_code' => 'CL'], ['name' => 'Nong Wua So', 'country_code' => 'TH'], ['name' => 'Alachua', 'country_code' => 'US'], ['name' => 'Magny-les-Hameaux', 'country_code' => 'FR'], ['name' => 'Aarburg', 'country_code' => 'CH'], ['name' => 'San Giovanni in Marignano', 'country_code' => 'IT'], ['name' => 'Nea Artaki', 'country_code' => 'GR'], ['name' => 'Kinnelon', 'country_code' => 'US'], ['name' => 'Worsborough', 'country_code' => 'GB'], ['name' => 'Ventnor City', 'country_code' => 'US'], ['name' => 'Colts Neck', 'country_code' => 'US'], ['name' => 'Fuente Palmera', 'country_code' => 'ES'], ['name' => 'Rockcreek', 'country_code' => 'US'], ['name' => 'Bellinzago Novarese', 'country_code' => 'IT'], ['name' => 'Qiziltepa', 'country_code' => 'UZ'], ['name' => 'Mezobereny', 'country_code' => 'HU'], ['name' => 'Resana', 'country_code' => 'IT'], ['name' => 'Chimay', 'country_code' => 'BE'], ['name' => 'Rothrist', 'country_code' => 'CH'], ['name' => 'Emmett', 'country_code' => 'US'], ['name' => 'Brandis', 'country_code' => 'DE'], ['name' => 'Sugar Grove', 'country_code' => 'US'], ['name' => 'Kushnarenkovo', 'country_code' => 'RU'], ['name' => 'Beuvry', 'country_code' => 'FR'], ['name' => 'Bockenem', 'country_code' => 'DE'], ['name' => 'River Grove', 'country_code' => 'US'], ['name' => 'Toudja', 'country_code' => 'DZ'], ['name' => 'Revel', 'country_code' => 'FR'], ['name' => 'Hinton', 'country_code' => 'CA'], ['name' => 'Zinkiv', 'country_code' => 'UA'], ['name' => 'Saint-Sauveur', 'country_code' => 'CA'], ['name' => 'Great Billing', 'country_code' => 'GB'], ['name' => 'Titu', 'country_code' => 'RO'], ['name' => 'Lucon', 'country_code' => 'FR'], ['name' => 'Quesnel', 'country_code' => 'CA'], ['name' => 'Pilar', 'country_code' => 'PH'], ['name' => 'South Lebanon', 'country_code' => 'US'], ['name' => 'Torrinha', 'country_code' => 'BR'], ['name' => 'Mora', 'country_code' => 'ES'], ['name' => 'Varna', 'country_code' => 'RU'], ['name' => 'Ruoqiang', 'country_code' => 'CN'], ['name' => 'Pierrelaye', 'country_code' => 'FR'], ['name' => 'Ashukino', 'country_code' => 'RU'], ['name' => 'Norosi', 'country_code' => 'CO'], ['name' => 'Dodworth', 'country_code' => 'GB'], ['name' => 'Pingree Grove', 'country_code' => 'US'], ['name' => 'Ellon', 'country_code' => 'GB'], ['name' => 'Middleton', 'country_code' => 'US'], ['name' => 'Fort Irwin', 'country_code' => 'US'], ['name' => 'Sherborne', 'country_code' => 'GB'], ['name' => 'Ananas', 'country_code' => 'BR'], ['name' => 'Vries', 'country_code' => 'NL'], ['name' => 'Northampton', 'country_code' => 'US'], ['name' => 'Matadepera', 'country_code' => 'ES'], ['name' => 'Serafimovskiy', 'country_code' => 'RU'], ['name' => 'Nueva Guadalupe', 'country_code' => 'SV'], ['name' => 'Bueng Khong Long', 'country_code' => 'TH'], ['name' => 'Kobeliaky', 'country_code' => 'UA'], ['name' => 'Beilngries', 'country_code' => 'DE'], ['name' => 'Berezivka', 'country_code' => 'UA'], ['name' => 'Gudensberg', 'country_code' => 'DE'], ['name' => 'Makariv', 'country_code' => 'UA'], ['name' => 'Sarapui', 'country_code' => 'BR'], ['name' => 'Belomorsk', 'country_code' => 'RU'], ['name' => 'Broni', 'country_code' => 'IT'], ['name' => 'Ellisville', 'country_code' => 'US'], ['name' => 'Piombino Dese', 'country_code' => 'IT'], ['name' => 'Muurame', 'country_code' => 'FI'], ['name' => 'Litovel', 'country_code' => 'CZ'], ['name' => 'La Salvetat-Saint-Gilles', 'country_code' => 'FR'], ['name' => 'Madera Acres', 'country_code' => 'US'], ['name' => 'Bad Liebenzell', 'country_code' => 'DE'], ['name' => 'Roztoky', 'country_code' => 'CZ'], ['name' => 'Gloucester Point', 'country_code' => 'US'], ['name' => 'Elizabethtown-Kitley', 'country_code' => 'CA'], ['name' => 'Photharam', 'country_code' => 'TH'], ['name' => 'Burgos', 'country_code' => 'PH'], ['name' => 'Pluderhausen', 'country_code' => 'DE'], ['name' => 'Brandywine', 'country_code' => 'US'], ['name' => 'Morinville', 'country_code' => 'CA'], ['name' => 'Chom Thong', 'country_code' => 'TH'], ['name' => 'Hohr-Grenzhausen', 'country_code' => 'DE'], ['name' => 'La Tour-du-Pin', 'country_code' => 'FR'], ['name' => 'Mikun', 'country_code' => 'RU'], ['name' => 'Hateg', 'country_code' => 'RO'], ['name' => 'Veauche', 'country_code' => 'FR'], ['name' => 'Brewster', 'country_code' => 'US'], ['name' => 'T q ibuli', 'country_code' => 'GE'], ['name' => 'Artigues-pres-Bordeaux', 'country_code' => 'FR'], ['name' => 'Oldenburg in Holstein', 'country_code' => 'DE'], ['name' => 'Nersingen', 'country_code' => 'DE'], ['name' => 'Saint-Barthelemy-d Anjou', 'country_code' => 'FR'], ['name' => 'Matamata', 'country_code' => 'NZ'], ['name' => 'Carroll', 'country_code' => 'US'], ['name' => 'Carlton Colville', 'country_code' => 'GB'], ['name' => 'Schlitz', 'country_code' => 'DE'], ['name' => 'Zorneding', 'country_code' => 'DE'], ['name' => 'Port Townsend', 'country_code' => 'US'], ['name' => 'Ban Krot', 'country_code' => 'TH'], ['name' => 'Coffeyville', 'country_code' => 'US'], ['name' => 'Suntar', 'country_code' => 'RU'], ['name' => 'Heilsbronn', 'country_code' => 'DE'], ['name' => 'Osterburg', 'country_code' => 'DE'], ['name' => 'Chillicothe', 'country_code' => 'US'], ['name' => 'Lake Barcroft', 'country_code' => 'US'], ['name' => 'Burtonsville', 'country_code' => 'US'], ['name' => 'Skopin', 'country_code' => 'RU'], ['name' => 'Wamel', 'country_code' => 'NL'], ['name' => 'Franklin', 'country_code' => 'US'], ['name' => 'Robertsdale', 'country_code' => 'US'], ['name' => 'Halikko', 'country_code' => 'FI'], ['name' => 'Triuggio', 'country_code' => 'IT'], ['name' => 'Aizenay', 'country_code' => 'FR'], ['name' => 'Almusafes', 'country_code' => 'ES'], ['name' => 'Dolianova', 'country_code' => 'IT'], ['name' => 'Mozzate', 'country_code' => 'IT'], ['name' => 'Masku', 'country_code' => 'FI'], ['name' => 'Baker City', 'country_code' => 'US'], ['name' => 'Dorogobuzh', 'country_code' => 'RU'], ['name' => 'Tisnov', 'country_code' => 'CZ'], ['name' => 'Totma', 'country_code' => 'RU'], ['name' => 'Sorbolo', 'country_code' => 'IT'], ['name' => 'Everswinkel', 'country_code' => 'DE'], ['name' => 'Vardenik', 'country_code' => 'AM'], ['name' => 'Florania', 'country_code' => 'BR'], ['name' => 'Cobham', 'country_code' => 'GB'], ['name' => 'Chiang Klang', 'country_code' => 'TH'], ['name' => 'Itasca', 'country_code' => 'US'], ['name' => 'Grey Highlands', 'country_code' => 'CA'], ['name' => 'Atherstone', 'country_code' => 'GB'], ['name' => 'Sidi Bou Othmane', 'country_code' => 'MA'], ['name' => 'Ware', 'country_code' => 'US'], ['name' => 'Margny-les-Compiegne', 'country_code' => 'FR'], ['name' => 'Jennings', 'country_code' => 'US'], ['name' => 'Folignano', 'country_code' => 'IT'], ['name' => 'Axixa do Tocantins', 'country_code' => 'BR'], ['name' => 'Thap Khlo', 'country_code' => 'TH'], ['name' => 'Guntramsdorf', 'country_code' => 'AT'], ['name' => 'Villarrubia de los Ojos', 'country_code' => 'ES'], ['name' => 'Tadla', 'country_code' => 'MA'], ['name' => 'Woodbury', 'country_code' => 'US'], ['name' => 'Leeton', 'country_code' => 'AU'], ['name' => 'Mentone', 'country_code' => 'US'], ['name' => 'Little River', 'country_code' => 'US'], ['name' => 'Alcarraz', 'country_code' => 'ES'], ['name' => 'Mittagong', 'country_code' => 'AU'], ['name' => 'Biei', 'country_code' => 'JP'], ['name' => 'Spelle', 'country_code' => 'DE'], ['name' => 'Vega Alta', 'country_code' => 'PR'], ['name' => 'Cody', 'country_code' => 'US'], ['name' => 'Mooresville', 'country_code' => 'US'], ['name' => 'Nyurba', 'country_code' => 'RU'], ['name' => 'Conning Towers Nautilus Park', 'country_code' => 'US'], ['name' => 'Albano Sant Alessandro', 'country_code' => 'IT'], ['name' => 'Mae Rim', 'country_code' => 'TH'], ['name' => 'Ostercappeln', 'country_code' => 'DE'], ['name' => 'Treillieres', 'country_code' => 'FR'], ['name' => 'Matelica', 'country_code' => 'IT'], ['name' => 'Aklim', 'country_code' => 'MA'], ['name' => 'Flero', 'country_code' => 'IT'], ['name' => 'Sorisole', 'country_code' => 'IT'], ['name' => 'Souffelweyersheim', 'country_code' => 'FR'], ['name' => 'Aulnoye-Aymeries', 'country_code' => 'FR'], ['name' => 'Aghbalou Aqourar', 'country_code' => 'MA'], ['name' => 'Suzdal', 'country_code' => 'RU'], ['name' => 'Kemberg', 'country_code' => 'DE'], ['name' => 'George Mason', 'country_code' => 'US'], ['name' => 'Caturama', 'country_code' => 'BR'], ['name' => 'Hostotipaquillo', 'country_code' => 'MX'], ['name' => 'Fort Salonga', 'country_code' => 'US'], ['name' => 'Studenka', 'country_code' => 'CZ'], ['name' => 'Russellville', 'country_code' => 'US'], ['name' => 'Tweed Heads', 'country_code' => 'AU'], ['name' => 'Annan', 'country_code' => 'GB'], ['name' => 'Podu Iloaiei', 'country_code' => 'RO'], ['name' => 'Hattula', 'country_code' => 'FI'], ['name' => 'Nordwalde', 'country_code' => 'DE'], ['name' => 'Mendicino', 'country_code' => 'IT'], ['name' => 'Sevilla La Nueva', 'country_code' => 'ES'], ['name' => 'North Bend', 'country_code' => 'US'], ['name' => 'Clarksville', 'country_code' => 'US'], ['name' => 'Grimmen', 'country_code' => 'DE'], ['name' => 'Loria', 'country_code' => 'IT'], ['name' => 'Eisenberg', 'country_code' => 'DE'], ['name' => 'Redon', 'country_code' => 'FR'], ['name' => 'Basse-Goulaine', 'country_code' => 'FR'], ['name' => 'Neustadt', 'country_code' => 'DE'], ['name' => 'Wagner', 'country_code' => 'BR'], ['name' => 'Sarkad', 'country_code' => 'HU'], ['name' => 'Philipsburg', 'country_code' => 'US'], ['name' => 'Denham Springs', 'country_code' => 'US'], ['name' => 'Cardeal da Silva', 'country_code' => 'BR'], ['name' => 'Glencoe', 'country_code' => 'NZ'], ['name' => 'Scaggsville', 'country_code' => 'US'], ['name' => 'Corte Madera', 'country_code' => 'US'], ['name' => 'Umbrete', 'country_code' => 'ES'], ['name' => 'Douar Lehouifrat', 'country_code' => 'MA'], ['name' => 'Oberstdorf', 'country_code' => 'DE'], ['name' => 'Akhuryan', 'country_code' => 'AM'], ['name' => 'Jewett City', 'country_code' => 'US'], ['name' => 'Cuero', 'country_code' => 'US'], ['name' => 'Butler', 'country_code' => 'US'], ['name' => 'Fauske', 'country_code' => 'NO'], ['name' => 'Argostoli', 'country_code' => 'GR'], ['name' => 'Grado', 'country_code' => 'ES'], ['name' => 'Felpham', 'country_code' => 'GB'], ['name' => 'Nopaltepec', 'country_code' => 'MX'], ['name' => 'Sangeorz-Bai', 'country_code' => 'RO'], ['name' => 'Ussel', 'country_code' => 'FR'], ['name' => 'Sidi Ahmed El Khadir', 'country_code' => 'MA'], ['name' => 'Budd Lake', 'country_code' => 'US'], ['name' => 'La Ravoire', 'country_code' => 'FR'], ['name' => 'San Pedro', 'country_code' => 'CL'], ['name' => 'Vesele', 'country_code' => 'UA'], ['name' => 'Pizzo', 'country_code' => 'IT'], ['name' => 'Nakao', 'country_code' => 'JP'], ['name' => 'Columbia City', 'country_code' => 'US'], ['name' => 'Aleksandrov Gay', 'country_code' => 'RU'], ['name' => 'Punta del Este', 'country_code' => 'UY'], ['name' => 'Voitsberg', 'country_code' => 'AT'], ['name' => 'Yalaguina', 'country_code' => 'NI'], ['name' => 'Zafferana Etnea', 'country_code' => 'IT'], ['name' => 'Kittery', 'country_code' => 'US'], ['name' => 'Nolinsk', 'country_code' => 'RU'], ['name' => 'Ingre', 'country_code' => 'FR'], ['name' => 'Liteni', 'country_code' => 'RO'], ['name' => 'Blacklick Estates', 'country_code' => 'US'], ['name' => 'Alsbach-Hahnlein', 'country_code' => 'DE'], ['name' => 'Huaniqueo de Morales', 'country_code' => 'MX'], ['name' => 'Idanha-a-Nova', 'country_code' => 'PT'], ['name' => 'Bearsted', 'country_code' => 'GB'], ['name' => 'Farsund', 'country_code' => 'NO'], ['name' => 'Halen', 'country_code' => 'BE'], ['name' => 'Bni Boufrah', 'country_code' => 'MA'], ['name' => 'East Aurora', 'country_code' => 'US'], ['name' => 'Southwick', 'country_code' => 'US'], ['name' => 'Nove Mesto nad Metuji', 'country_code' => 'CZ'], ['name' => 'Loudeac', 'country_code' => 'FR'], ['name' => 'Heiligenhafen', 'country_code' => 'DE'], ['name' => 'Shchuchye', 'country_code' => 'RU'], ['name' => 'Akabira', 'country_code' => 'JP'], ['name' => 'Rio Vista', 'country_code' => 'US'], ['name' => 'Imias', 'country_code' => 'CU'], ['name' => 'Dungarvan', 'country_code' => 'IE'], ['name' => 'Herkimer', 'country_code' => 'US'], ['name' => 'Philipstown', 'country_code' => 'US'], ['name' => 'Alexandria', 'country_code' => 'US'], ['name' => 'Wehrheim', 'country_code' => 'DE'], ['name' => 'Eidson Road', 'country_code' => 'US'], ['name' => 'Dushanove', 'country_code' => 'XK'], ['name' => 'Bisingen', 'country_code' => 'DE'], ['name' => 'Ehningen', 'country_code' => 'DE'], ['name' => 'Leguevin', 'country_code' => 'FR'], ['name' => 'San Marzano di San Giuseppe', 'country_code' => 'IT'], ['name' => 'Saint-Aubin-les-Elbeuf', 'country_code' => 'FR'], ['name' => 'Stratford', 'country_code' => 'CA'], ['name' => 'Lavis', 'country_code' => 'IT'], ['name' => 'Prospect', 'country_code' => 'US'], ['name' => 'Plains', 'country_code' => 'US'], ['name' => 'Boaz', 'country_code' => 'US'], ['name' => 'Cuellar', 'country_code' => 'ES'], ['name' => 'Kawanishicho', 'country_code' => 'JP'], ['name' => 'Benalla', 'country_code' => 'AU'], ['name' => 'Pleasant Valley', 'country_code' => 'US'], ['name' => 'Foiano della Chiana', 'country_code' => 'IT'], ['name' => 'Chesapeake Ranch Estates', 'country_code' => 'US'], ['name' => 'La Matanza de Acentejo', 'country_code' => 'ES'], ['name' => 'Countryside', 'country_code' => 'US'], ['name' => 'Porto Tolle', 'country_code' => 'IT'], ['name' => 'Matlock', 'country_code' => 'GB'], ['name' => 'Cavriglia', 'country_code' => 'IT'], ['name' => 'Maserada sul Piave', 'country_code' => 'IT'], ['name' => 'St. Francis', 'country_code' => 'US'], ['name' => 'Awans', 'country_code' => 'BE'], ['name' => 'Holywell', 'country_code' => 'GB'], ['name' => 'Alhendin', 'country_code' => 'ES'], ['name' => 'Pasil', 'country_code' => 'PH'], ['name' => 'Schmitten', 'country_code' => 'DE'], ['name' => 'Kola', 'country_code' => 'RU'], ['name' => 'Hohenmolsen', 'country_code' => 'DE'], ['name' => 'Seysses', 'country_code' => 'FR'], ['name' => 'Formoso', 'country_code' => 'BR'], ['name' => 'Tzitzio', 'country_code' => 'MX'], ['name' => 'Visselhovede', 'country_code' => 'DE'], ['name' => 'Dassel', 'country_code' => 'DE'], ['name' => 'Holualoa', 'country_code' => 'US'], ['name' => 'Immingham', 'country_code' => 'GB'], ['name' => 'Bersted', 'country_code' => 'GB'], ['name' => 'Swanage', 'country_code' => 'GB'], ['name' => 'East Rutherford', 'country_code' => 'US'], ['name' => 'Pechory', 'country_code' => 'RU'], ['name' => 'Williston', 'country_code' => 'US'], ['name' => 'Frei Inocencio', 'country_code' => 'BR'], ['name' => 'Valerik', 'country_code' => 'RU'], ['name' => 'Fort Valley', 'country_code' => 'US'], ['name' => 'Joigny', 'country_code' => 'FR'], ['name' => 'Castelleone', 'country_code' => 'IT'], ['name' => 'Laubach', 'country_code' => 'DE'], ['name' => 'Commerce', 'country_code' => 'US'], ['name' => 'Alfred and Plantagenet', 'country_code' => 'CA'], ['name' => 'West Tawakoni', 'country_code' => 'US'], ['name' => 'Irigny', 'country_code' => 'FR'], ['name' => 'Ilsenburg', 'country_code' => 'DE'], ['name' => 'Tryavna', 'country_code' => 'BG'], ['name' => 'Olivares', 'country_code' => 'ES'], ['name' => 'Schonwalde-Siedlung', 'country_code' => 'DE'], ['name' => 'Monte Porzio Catone', 'country_code' => 'IT'], ['name' => 'Khodoriv', 'country_code' => 'UA'], ['name' => 'Antonio Dias', 'country_code' => 'BR'], ['name' => 'Warrenton', 'country_code' => 'US'], ['name' => 'Marysville', 'country_code' => 'US'], ['name' => 'Marlton', 'country_code' => 'US'], ['name' => 'Greenville', 'country_code' => 'US'], ['name' => 'Attnang-Puchheim', 'country_code' => 'AT'], ['name' => 'Ledbury', 'country_code' => 'GB'], ['name' => 'Krasnogvardeyskoye', 'country_code' => 'RU'], ['name' => 'Ayntap', 'country_code' => 'AM'], ['name' => 'Nepi', 'country_code' => 'IT'], ['name' => 'Fiesso d Artico', 'country_code' => 'IT'], ['name' => 'Douar Messassa', 'country_code' => 'MA'], ['name' => 'Lesquin', 'country_code' => 'FR'], ['name' => 'Alfaro', 'country_code' => 'ES'], ['name' => 'Stary Sacz', 'country_code' => 'PL'], ['name' => 'Burlington', 'country_code' => 'US'], ['name' => 'Candiota', 'country_code' => 'BR'], ['name' => 'Rio del Mar', 'country_code' => 'US'], ['name' => 'La Victoria de Acentejo', 'country_code' => 'ES'], ['name' => 'Brand-Erbisdorf', 'country_code' => 'DE'], ['name' => 'Harsova', 'country_code' => 'RO'], ['name' => 'Couzeix', 'country_code' => 'FR'], ['name' => 'Solsona', 'country_code' => 'ES'], ['name' => 'Oulad Imloul', 'country_code' => 'MA'], ['name' => 'Picture Rocks', 'country_code' => 'US'], ['name' => 'Aguia Branca', 'country_code' => 'BR'], ['name' => 'Penn', 'country_code' => 'US'], ['name' => 'Besozzo', 'country_code' => 'IT'], ['name' => 'Zwiesel', 'country_code' => 'DE'], ['name' => 'Cameron', 'country_code' => 'US'], ['name' => 'Waterford', 'country_code' => 'US'], ['name' => 'Memphis', 'country_code' => 'US'], ['name' => 'Pinhel', 'country_code' => 'PT'], ['name' => 'Traversetolo', 'country_code' => 'IT'], ['name' => 'Masera di Padova', 'country_code' => 'IT'], ['name' => 'Mont-Tremblant', 'country_code' => 'CA'], ['name' => 'Martensville', 'country_code' => 'CA'], ['name' => 'Barleben', 'country_code' => 'DE'], ['name' => 'Fort Stewart', 'country_code' => 'US'], ['name' => 'Hartford', 'country_code' => 'US'], ['name' => 'Costa Volpino', 'country_code' => 'IT'], ['name' => 'Port Wentworth', 'country_code' => 'US'], ['name' => 'Yorkshire', 'country_code' => 'US'], ['name' => 'Uracoa', 'country_code' => 'VE'], ['name' => 'Scionzier', 'country_code' => 'FR'], ['name' => 'Hermantown', 'country_code' => 'US'], ['name' => 'Zadonsk', 'country_code' => 'RU'], ['name' => 'Irthlingborough', 'country_code' => 'GB'], ['name' => 'Winfield', 'country_code' => 'US'], ['name' => 'Striano', 'country_code' => 'IT'], ['name' => 'Twist', 'country_code' => 'DE'], ['name' => 'Alcanar', 'country_code' => 'ES'], ['name' => 'Oxford', 'country_code' => 'US'], ['name' => 'Manduri', 'country_code' => 'BR'], ['name' => 'Coleford', 'country_code' => 'GB'], ['name' => 'Cold Springs', 'country_code' => 'US'], ['name' => 'Golbey', 'country_code' => 'FR'], ['name' => 'Powdersville', 'country_code' => 'US'], ['name' => 'La Plata', 'country_code' => 'US'], ['name' => 'Merrill', 'country_code' => 'US'], ['name' => 'Luckau', 'country_code' => 'DE'], ['name' => 'Oststeinbek', 'country_code' => 'DE'], ['name' => 'Bithlo', 'country_code' => 'US'], ['name' => 'Penn Forest', 'country_code' => 'US'], ['name' => 'Rondon', 'country_code' => 'BR'], ['name' => 'Gatteo', 'country_code' => 'IT'], ['name' => 'Landivisiau', 'country_code' => 'FR'], ['name' => 'Santa Lucia di Piave', 'country_code' => 'IT'], ['name' => 'Chevy Chase', 'country_code' => 'US'], ['name' => 'Borogani', 'country_code' => 'MD'], ['name' => 'Wadebridge', 'country_code' => 'GB'], ['name' => 'San Juan del Puerto', 'country_code' => 'ES'], ['name' => 'Paula Candido', 'country_code' => 'BR'], ['name' => 'Worpswede', 'country_code' => 'DE'], ['name' => 'Elsenfeld', 'country_code' => 'DE'], ['name' => 'Zschopau', 'country_code' => 'DE'], ['name' => 'Trebbin', 'country_code' => 'DE'], ['name' => 'Valsequillo de Gran Canaria', 'country_code' => 'ES'], ['name' => 'Sierning', 'country_code' => 'AT'], ['name' => 'Wilmore', 'country_code' => 'US'], ['name' => 'Saint-Raymond', 'country_code' => 'CA'], ['name' => 'Bilozerka', 'country_code' => 'UA'], ['name' => 'San Pedro Ixtlahuaca', 'country_code' => 'MX'], ['name' => 'Audley', 'country_code' => 'GB'], ['name' => 'Saint-Sulpice-la-Pointe', 'country_code' => 'FR'], ['name' => 'Rainbow City', 'country_code' => 'US'], ['name' => 'Levokumskoye', 'country_code' => 'RU'], ['name' => 'Saint-Pierre-les-Elbeuf', 'country_code' => 'FR'], ['name' => 'Brugnera', 'country_code' => 'IT'], ['name' => 'Mizhhiria', 'country_code' => 'UA'], ['name' => 'Velyka Dymerka', 'country_code' => 'UA'], ['name' => 'Miajadas', 'country_code' => 'ES'], ['name' => 'Santiponce', 'country_code' => 'ES'], ['name' => 'Santa Maria', 'country_code' => 'AR'], ['name' => 'Howell', 'country_code' => 'US'], ['name' => 'Pleasant Grove', 'country_code' => 'US'], ['name' => 'Blackhawk', 'country_code' => 'US'], ['name' => 'Palmeira d Oeste', 'country_code' => 'BR'], ['name' => 'Libercourt', 'country_code' => 'FR'], ['name' => 'Emu Plains', 'country_code' => 'AU'], ['name' => 'Ubbergen', 'country_code' => 'NL'], ['name' => 'Hope', 'country_code' => 'US'], ['name' => 'Roxboro', 'country_code' => 'US'], ['name' => 'Cebazat', 'country_code' => 'FR'], ['name' => 'Sarahs', 'country_code' => 'TM'], ['name' => 'Bishop', 'country_code' => 'US'], ['name' => 'Petersberg', 'country_code' => 'DE'], ['name' => 'Kanchanadit', 'country_code' => 'TH'], ['name' => 'Breuillet', 'country_code' => 'FR'], ['name' => 'Middletown', 'country_code' => 'US'], ['name' => 'Greenville', 'country_code' => 'US'], ['name' => 'Tatoufet', 'country_code' => 'MA'], ['name' => 'Pizarra', 'country_code' => 'ES'], ['name' => 'Puebla del Caraminal', 'country_code' => 'ES'], ['name' => 'Cepin', 'country_code' => 'HR'], ['name' => 'Obersiggenthal', 'country_code' => 'CH'], ['name' => 'Valreas', 'country_code' => 'FR'], ['name' => 'Sankt Johann in Tirol', 'country_code' => 'AT'], ['name' => 'St. Pete Beach', 'country_code' => 'US'], ['name' => 'Rice Lake', 'country_code' => 'US'], ['name' => 'Lototla', 'country_code' => 'MX'], ['name' => 'Hayle', 'country_code' => 'GB'], ['name' => 'Zawyat Sidi Ben Hamdoun', 'country_code' => 'MA'], ['name' => 'Bang Khla', 'country_code' => 'TH'], ['name' => 'Bakaly', 'country_code' => 'RU'], ['name' => 'Bunol', 'country_code' => 'ES'], ['name' => 'La Grande-Motte', 'country_code' => 'FR'], ['name' => 'Manuel Urbano', 'country_code' => 'BR'], ['name' => 'North Gates', 'country_code' => 'US'], ['name' => 'Bezliudivka', 'country_code' => 'UA'], ['name' => 'Vares', 'country_code' => 'BA'], ['name' => 'Reinfeld', 'country_code' => 'DE'], ['name' => 'Gore', 'country_code' => 'ET'], ['name' => 'Altlandsberg', 'country_code' => 'DE'], ['name' => 'Alderwood Manor', 'country_code' => 'US'], ['name' => 'Thurso', 'country_code' => 'GB'], ['name' => 'Ingenbohl', 'country_code' => 'CH'], ['name' => 'Niesky', 'country_code' => 'DE'], ['name' => 'Lwowek Slaski', 'country_code' => 'PL'], ['name' => 'Capriate San Gervasio', 'country_code' => 'IT'], ['name' => 'Bni Gmil', 'country_code' => 'MA'], ['name' => 'Paray-le-Monial', 'country_code' => 'FR'], ['name' => 'Sugbongkogon', 'country_code' => 'PH'], ['name' => 'El Campo', 'country_code' => 'ES'], ['name' => 'Ehringshausen', 'country_code' => 'DE'], ['name' => 'Yamakita', 'country_code' => 'JP'], ['name' => 'Casorate Primo', 'country_code' => 'IT'], ['name' => 'Tombos', 'country_code' => 'BR'], ['name' => 'Ecorse', 'country_code' => 'US'], ['name' => 'Ouroeste', 'country_code' => 'BR'], ['name' => 'Harleysville', 'country_code' => 'US'], ['name' => 'Schubelbach', 'country_code' => 'CH'], ['name' => 'Fairview', 'country_code' => 'US'], ['name' => 'Reichenbach an der Fils', 'country_code' => 'DE'], ['name' => 'Tanudan', 'country_code' => 'PH'], ['name' => 'Treorchy', 'country_code' => 'GB'], ['name' => 'The Village', 'country_code' => 'US'], ['name' => 'Mount Holly', 'country_code' => 'US'], ['name' => 'Oudenburg', 'country_code' => 'BE'], ['name' => 'Woodbury', 'country_code' => 'US'], ['name' => 'Langnau', 'country_code' => 'CH'], ['name' => 'Furstenau', 'country_code' => 'DE'], ['name' => 'Japura', 'country_code' => 'BR'], ['name' => 'Senmanat', 'country_code' => 'ES'], ['name' => 'Burela de Cabo', 'country_code' => 'ES'], ['name' => 'Chita', 'country_code' => 'CO'], ['name' => 'Edeleny', 'country_code' => 'HU'], ['name' => 'Eagle Point', 'country_code' => 'US'], ['name' => 'Alayor', 'country_code' => 'ES'], ['name' => 'Craig', 'country_code' => 'US'], ['name' => 'Willoughby Hills', 'country_code' => 'US'], ['name' => 'Nalbach', 'country_code' => 'DE'], ['name' => 'Voreppe', 'country_code' => 'FR'], ['name' => 'Castel Gandolfo', 'country_code' => 'IT'], ['name' => 'Pohrebyshche', 'country_code' => 'UA'], ['name' => 'Walterboro', 'country_code' => 'US'], ['name' => 'Hazle', 'country_code' => 'US'], ['name' => 'Amherst', 'country_code' => 'CA'], ['name' => 'Arenys de Munt', 'country_code' => 'ES'], ['name' => 'Legnaro', 'country_code' => 'IT'], ['name' => 'White Meadow Lake', 'country_code' => 'US'], ['name' => 'Sankt Valentin', 'country_code' => 'AT'], ['name' => 'Istrana', 'country_code' => 'IT'], ['name' => 'Mount Vista', 'country_code' => 'US'], ['name' => 'Lowell', 'country_code' => 'US'], ['name' => 'Luchow', 'country_code' => 'DE'], ['name' => 'Fossombrone', 'country_code' => 'IT'], ['name' => 'El Amim', 'country_code' => 'MA'], ['name' => 'Neuried', 'country_code' => 'DE'], ['name' => 'Rehau', 'country_code' => 'DE'], ['name' => 'Ecatzingo', 'country_code' => 'MX'], ['name' => 'Ban Tha Phra', 'country_code' => 'TH'], ['name' => 'Silsbee', 'country_code' => 'US'], ['name' => 'Tadworth', 'country_code' => 'GB'], ['name' => 'Sturbridge', 'country_code' => 'US'], ['name' => 'Sebnitz', 'country_code' => 'DE'], ['name' => 'Viagrande', 'country_code' => 'IT'], ['name' => 'Orchies', 'country_code' => 'FR'], ['name' => 'Burayevo', 'country_code' => 'RU'], ['name' => 'Aragona', 'country_code' => 'IT'], ['name' => 'Usworth', 'country_code' => 'GB'], ['name' => 'Coulaines', 'country_code' => 'FR'], ['name' => 'Harvard', 'country_code' => 'US'], ['name' => 'Pagqen', 'country_code' => 'CN'], ['name' => 'Villa Castelli', 'country_code' => 'IT'], ['name' => 'Hostivice', 'country_code' => 'CZ'], ['name' => 'Marnate', 'country_code' => 'IT'], ['name' => 'La Loggia', 'country_code' => 'IT'], ['name' => 'Central City', 'country_code' => 'US'], ['name' => 'Elne', 'country_code' => 'FR'], ['name' => 'Shanklin', 'country_code' => 'GB'], ['name' => 'Obernkirchen', 'country_code' => 'DE'], ['name' => 'Tell City', 'country_code' => 'US'], ['name' => 'Belley', 'country_code' => 'FR'], ['name' => 'Odobesti', 'country_code' => 'RO'], ['name' => 'Oberentfelden', 'country_code' => 'CH'], ['name' => 'Sawbridgeworth', 'country_code' => 'GB'], ['name' => 'Aschheim', 'country_code' => 'DE'], ['name' => 'Bansko', 'country_code' => 'BG'], ['name' => 'Neu Bleckede', 'country_code' => 'DE'], ['name' => 'Nueva Era', 'country_code' => 'PH'], ['name' => 'Lambertville', 'country_code' => 'US'], ['name' => 'San Fausto de Campcentellas', 'country_code' => 'ES'], ['name' => 'Ikeda', 'country_code' => 'JP'], ['name' => 'Palomares del Rio', 'country_code' => 'ES'], ['name' => 'Roxborough Park', 'country_code' => 'US'], ['name' => 'Colmenarejo', 'country_code' => 'ES'], ['name' => 'Rye Brook', 'country_code' => 'US'], ['name' => 'Reedsburg', 'country_code' => 'US'], ['name' => 'Gomaringen', 'country_code' => 'DE'], ['name' => 'Cervera', 'country_code' => 'ES'], ['name' => 'Agudos do Sul', 'country_code' => 'BR'], ['name' => 'Laurel', 'country_code' => 'US'], ['name' => 'Fair Oaks', 'country_code' => 'US'], ['name' => 'Sassnitz', 'country_code' => 'DE'], ['name' => 'Gonfreville-l Orcher', 'country_code' => 'FR'], ['name' => 'Zacualpan de Amilpas', 'country_code' => 'MX'], ['name' => 'DuPont', 'country_code' => 'US'], ['name' => 'Runkel', 'country_code' => 'DE'], ['name' => 'Sao Domingos', 'country_code' => 'BR'], ['name' => 'Schaafheim', 'country_code' => 'DE'], ['name' => 'Hebron', 'country_code' => 'US'], ['name' => 'Miltenberg', 'country_code' => 'DE'], ['name' => 'Nyzhnohirskyi', 'country_code' => 'UA'], ['name' => 'Mound', 'country_code' => 'US'], ['name' => 'Jessup', 'country_code' => 'US'], ['name' => 'Mosciano Sant Angelo', 'country_code' => 'IT'], ['name' => 'Boiling Springs', 'country_code' => 'US'], ['name' => 'Nakoushi', 'country_code' => 'JP'], ['name' => 'Aleksandrovsk-Sakhalinskiy', 'country_code' => 'RU'], ['name' => 'Wallerfangen', 'country_code' => 'DE'], ['name' => 'Puerto Morelos', 'country_code' => 'MX'], ['name' => 'Wakefield-Peacedale', 'country_code' => 'US'], ['name' => 'Erwin', 'country_code' => 'US'], ['name' => 'Savignano sul Panaro', 'country_code' => 'IT'], ['name' => 'Huedin', 'country_code' => 'RO'], ['name' => 'Waltenhofen', 'country_code' => 'DE'], ['name' => 'Rigby', 'country_code' => 'US'], ['name' => 'Rudnya', 'country_code' => 'RU'], ['name' => 'Aniskino', 'country_code' => 'RU'], ['name' => 'Martano', 'country_code' => 'IT'], ['name' => 'Caracuaro', 'country_code' => 'MX'], ['name' => 'Fort Stockton', 'country_code' => 'US'], ['name' => 'Buriti Alegre', 'country_code' => 'BR'], ['name' => 'Gaggiano', 'country_code' => 'IT'], ['name' => 'Onnaing', 'country_code' => 'FR'], ['name' => 'Iseo', 'country_code' => 'IT'], ['name' => 'Le Mesnil-Esnard', 'country_code' => 'FR'], ['name' => 'Dietlikon', 'country_code' => 'CH'], ['name' => 'Lesnoy Gorodok', 'country_code' => 'RU'], ['name' => 'Belvedere Marittimo', 'country_code' => 'IT'], ['name' => 'Ramara', 'country_code' => 'CA'], ['name' => 'Aadorf', 'country_code' => 'CH'], ['name' => 'Lamarao', 'country_code' => 'BR'], ['name' => 'Airway Heights', 'country_code' => 'US'], ['name' => 'Minano', 'country_code' => 'JP'], ['name' => 'Sindos', 'country_code' => 'GR'], ['name' => 'Riacho dos Machados', 'country_code' => 'BR'], ['name' => 'Planaltino', 'country_code' => 'BR'], ['name' => 'Juraqan', 'country_code' => 'IR'], ['name' => 'Vettweiss', 'country_code' => 'DE'], ['name' => 'Olst', 'country_code' => 'NL'], ['name' => 'Yutsa', 'country_code' => 'RU'], ['name' => 'Santanopolis', 'country_code' => 'BR'], ['name' => 'Castellabate', 'country_code' => 'IT'], ['name' => 'Wustermark', 'country_code' => 'DE'], ['name' => 'Tanfield', 'country_code' => 'GB'], ['name' => 'Parsons', 'country_code' => 'US'], ['name' => 'Parabita', 'country_code' => 'IT'], ['name' => 'Rauenberg', 'country_code' => 'DE'], ['name' => 'Zwenkau', 'country_code' => 'DE'], ['name' => 'Ortuella', 'country_code' => 'ES'], ['name' => 'Wertingen', 'country_code' => 'DE'], ['name' => 'Fayetteville', 'country_code' => 'US'], ['name' => 'Townsend', 'country_code' => 'US'], ['name' => 'Larmor-Plage', 'country_code' => 'FR'], ['name' => 'El Molar', 'country_code' => 'ES'], ['name' => 'Polinya', 'country_code' => 'ES'], ['name' => 'Gooik', 'country_code' => 'BE'], ['name' => 'Meadowbrook', 'country_code' => 'US'], ['name' => 'Sidi El Hattab', 'country_code' => 'MA'], ['name' => 'Olho d Agua do Casado', 'country_code' => 'BR'], ['name' => 'Chiasso', 'country_code' => 'CH'], ['name' => 'Lititz', 'country_code' => 'US'], ['name' => 'Marcy', 'country_code' => 'US'], ['name' => 'Leeds and the Thousand Islands', 'country_code' => 'CA'], ['name' => 'Siler City', 'country_code' => 'US'], ['name' => 'Buchs', 'country_code' => 'CH'], ['name' => 'Filottrano', 'country_code' => 'IT'], ['name' => 'Varzea do Poco', 'country_code' => 'BR'], ['name' => 'Platte City', 'country_code' => 'US'], ['name' => 'Lantana', 'country_code' => 'US'], ['name' => 'Carignan', 'country_code' => 'CA'], ['name' => 'La Chapelle d Armentieres', 'country_code' => 'FR'], ['name' => 'Dunblane', 'country_code' => 'GB'], ['name' => 'Brockton', 'country_code' => 'CA'], ['name' => 'Bezhetsk', 'country_code' => 'RU'], ['name' => 'Woodfield', 'country_code' => 'US'], ['name' => 'Codsall', 'country_code' => 'GB'], ['name' => 'Mount Airy', 'country_code' => 'US'], ['name' => 'Mhajar', 'country_code' => 'MA'], ['name' => 'Farsala', 'country_code' => 'GR'], ['name' => 'Carignano', 'country_code' => 'IT'], ['name' => 'Ter Aar', 'country_code' => 'NL'], ['name' => 'Budenheim', 'country_code' => 'DE'], ['name' => 'Kirs', 'country_code' => 'RU'], ['name' => 'Andre Fernandes', 'country_code' => 'BR'], ['name' => 'Mohelnice', 'country_code' => 'CZ'], ['name' => 'Missaglia', 'country_code' => 'IT'], ['name' => 'Cervello', 'country_code' => 'ES'], ['name' => 'Shira', 'country_code' => 'RU'], ['name' => 'Sudlohn', 'country_code' => 'DE'], ['name' => 'Maravilha', 'country_code' => 'BR'], ['name' => 'Aniva', 'country_code' => 'RU'], ['name' => 'Dubrovytsya', 'country_code' => 'UA'], ['name' => 'Carencro', 'country_code' => 'US'], ['name' => 'Au', 'country_code' => 'CH'], ['name' => 'Lillebonne', 'country_code' => 'FR'], ['name' => 'Lovosice', 'country_code' => 'CZ'], ['name' => 'Asolo', 'country_code' => 'IT'], ['name' => 'Sabangan', 'country_code' => 'PH'], ['name' => 'Sutton', 'country_code' => 'US'], ['name' => 'La Ferte-Bernard', 'country_code' => 'FR'], ['name' => 'Winslow', 'country_code' => 'US'], ['name' => 'Ruidoso', 'country_code' => 'US'], ['name' => 'Laghzawna', 'country_code' => 'MA'], ['name' => 'Pandino', 'country_code' => 'IT'], ['name' => 'Gramsh', 'country_code' => 'AL'], ['name' => 'South Strabane', 'country_code' => 'US'], ['name' => 'Araujos', 'country_code' => 'BR'], ['name' => 'Ocsa', 'country_code' => 'HU'], ['name' => 'Tissint', 'country_code' => 'MA'], ['name' => 'Hunduan', 'country_code' => 'PH'], ['name' => 'Hondo', 'country_code' => 'US'], ['name' => 'Miles City', 'country_code' => 'US'], ['name' => 'Grigoriopol', 'country_code' => 'MD'], ['name' => 'Trebisacce', 'country_code' => 'IT'], ['name' => 'Harqalah', 'country_code' => 'TN'], ['name' => 'Brownsville', 'country_code' => 'US'], ['name' => 'Wallan', 'country_code' => 'AU'], ['name' => 'Maidencreek', 'country_code' => 'US'], ['name' => 'Granada', 'country_code' => 'CO'], ['name' => 'Cullar-Vega', 'country_code' => 'ES'], ['name' => 'Manistee', 'country_code' => 'US'], ['name' => 'Teisendorf', 'country_code' => 'DE'], ['name' => 'Rayne', 'country_code' => 'US'], ['name' => 'Sauzal', 'country_code' => 'ES'], ['name' => 'Wunsiedel', 'country_code' => 'DE'], ['name' => 'Dielheim', 'country_code' => 'DE'], ['name' => 'Bad Laer', 'country_code' => 'DE'], ['name' => 'Castelli', 'country_code' => 'AR'], ['name' => 'Augusta', 'country_code' => 'US'], ['name' => 'Carbonita', 'country_code' => 'BR'], ['name' => 'Le Muy', 'country_code' => 'FR'], ['name' => 'Gammasa', 'country_code' => 'MA'], ['name' => 'Orivesi', 'country_code' => 'FI'], ['name' => 'Varzedo', 'country_code' => 'BR'], ['name' => 'Spata', 'country_code' => 'GR'], ['name' => 'Krasnoslobodsk', 'country_code' => 'RU'], ['name' => 'Ichenhausen', 'country_code' => 'DE'], ['name' => 'New Richmond', 'country_code' => 'US'], ['name' => 'Greenwood', 'country_code' => 'US'], ['name' => 'Ameskroud', 'country_code' => 'MA'], ['name' => 'Laufenburg (Baden)', 'country_code' => 'DE'], ['name' => 'Gouvieux', 'country_code' => 'FR'], ['name' => 'Sao Sebastiao do Alto', 'country_code' => 'BR'], ['name' => 'Krichim', 'country_code' => 'BG'], ['name' => 'Lidzbark', 'country_code' => 'PL'], ['name' => 'Tenabo', 'country_code' => 'MX'], ['name' => 'Noventa Vicentina', 'country_code' => 'IT'], ['name' => 'Monticello', 'country_code' => 'US'], ['name' => 'Treia', 'country_code' => 'IT'], ['name' => 'St. Stephens', 'country_code' => 'US'], ['name' => 'Santa Comba', 'country_code' => 'ES'], ['name' => 'Little Falls', 'country_code' => 'US'], ['name' => 'Panganiban', 'country_code' => 'PH'], ['name' => 'Great Dunmow', 'country_code' => 'GB'], ['name' => 'Braslaw', 'country_code' => 'BY'], ['name' => 'Pirambu', 'country_code' => 'BR'], ['name' => 'Verkhneyarkeyevo', 'country_code' => 'RU'], ['name' => 'Kandel', 'country_code' => 'DE'], ['name' => 'Bryan', 'country_code' => 'US'], ['name' => 'La Bruyere', 'country_code' => 'BE'], ['name' => 'Groenlo', 'country_code' => 'NL'], ['name' => 'Amityville', 'country_code' => 'US'], ['name' => 'Lamorlaye', 'country_code' => 'FR'], ['name' => 'Porcari', 'country_code' => 'IT'], ['name' => 'Tomah', 'country_code' => 'US'], ['name' => 'Narpes', 'country_code' => 'FI'], ['name' => 'Tysmenytsia', 'country_code' => 'UA'], ['name' => 'Sene', 'country_code' => 'FR'], ['name' => 'Reinach', 'country_code' => 'CH'], ['name' => 'Douar Ezzerarda', 'country_code' => 'MA'], ['name' => 'San Antonio', 'country_code' => 'PH'], ['name' => 'Cavalcante', 'country_code' => 'BR'], ['name' => 'Brunswick', 'country_code' => 'US'], ['name' => 'Le Mont-sur-Lausanne', 'country_code' => 'CH'], ['name' => 'Usakos', 'country_code' => 'NA'], ['name' => 'Bovalino Marina', 'country_code' => 'IT'], ['name' => 'Morieres-les-Avignon', 'country_code' => 'FR'], ['name' => 'Campo Ere', 'country_code' => 'BR'], ['name' => 'Navoloki', 'country_code' => 'RU'], ['name' => 'Sompting', 'country_code' => 'GB'], ['name' => 'Unieux', 'country_code' => 'FR'], ['name' => 'Roanoke', 'country_code' => 'US'], ['name' => 'Argoncilhe', 'country_code' => 'PT'], ['name' => 'Francisville', 'country_code' => 'US'], ['name' => 'Hickam Housing', 'country_code' => 'US'], ['name' => 'Laurentian Valley', 'country_code' => 'CA'], ['name' => 'Muro del Alcoy', 'country_code' => 'ES'], ['name' => 'Navasota', 'country_code' => 'US'], ['name' => 'Le Rheu', 'country_code' => 'FR'], ['name' => 'Erdokertes', 'country_code' => 'HU'], ['name' => 'Calusco d Adda', 'country_code' => 'IT'], ['name' => 'Eemnes', 'country_code' => 'NL'], ['name' => 'Elsloo', 'country_code' => 'NL'], ['name' => 'Coccaglio', 'country_code' => 'IT'], ['name' => 'Schlangen', 'country_code' => 'DE'], ['name' => 'Bandol', 'country_code' => 'FR'], ['name' => 'Irshava', 'country_code' => 'UA'], ['name' => 'Igarata', 'country_code' => 'BR'], ['name' => 'Livron-sur-Drome', 'country_code' => 'FR'], ['name' => 'Flowood', 'country_code' => 'US'], ['name' => 'Pryor Creek', 'country_code' => 'US'], ['name' => 'Ouled Rached', 'country_code' => 'DZ'], ['name' => 'Hingyon', 'country_code' => 'PH'], ['name' => 'Parempuyre', 'country_code' => 'FR'], ['name' => 'Kargat', 'country_code' => 'RU'], ['name' => 'Nea Peramos', 'country_code' => 'GR'], ['name' => 'Currumbin', 'country_code' => 'AU'], ['name' => 'Bardmoor', 'country_code' => 'US'], ['name' => 'East St. Paul', 'country_code' => 'CA'], ['name' => 'Crissier', 'country_code' => 'CH'], ['name' => 'Perigny', 'country_code' => 'FR'], ['name' => 'Santa Coloma de Cervello', 'country_code' => 'ES'], ['name' => 'Ifigha', 'country_code' => 'DZ'], ['name' => 'Bloomfield', 'country_code' => 'US'], ['name' => 'Cairo', 'country_code' => 'US'], ['name' => 'Tonneins', 'country_code' => 'FR'], ['name' => 'Rafelbunol', 'country_code' => 'ES'], ['name' => 'Castegnato', 'country_code' => 'IT'], ['name' => 'Tayr Ma lah', 'country_code' => 'SY'], ['name' => 'Aidlingen', 'country_code' => 'DE'], ['name' => 'Rio das Flores', 'country_code' => 'BR'], ['name' => 'Dayton', 'country_code' => 'US'], ['name' => 'Siteia', 'country_code' => 'GR'], ['name' => 'Kyritz', 'country_code' => 'DE'], ['name' => 'Boonville', 'country_code' => 'US'], ['name' => 'Les Sorinieres', 'country_code' => 'FR'], ['name' => 'Richterich', 'country_code' => 'DE'], ['name' => 'Putnam', 'country_code' => 'US'], ['name' => 'Bli Bli', 'country_code' => 'AU'], ['name' => 'Louisville', 'country_code' => 'US'], ['name' => 'Beverly Hills', 'country_code' => 'US'], ['name' => 'Salisbury', 'country_code' => 'US'], ['name' => 'Baia Formosa', 'country_code' => 'BR'], ['name' => 'Nova Paka', 'country_code' => 'CZ'], ['name' => 'Nieuwleusen', 'country_code' => 'NL'], ['name' => 'Brownfield', 'country_code' => 'US'], ['name' => 'Tvrdosin', 'country_code' => 'SK'], ['name' => 'Clay Cross', 'country_code' => 'GB'], ['name' => 'Caputira', 'country_code' => 'BR'], ['name' => 'Cappelle-la-Grande', 'country_code' => 'FR'], ['name' => 'Santa Maria de Cayon', 'country_code' => 'ES'], ['name' => 'Hackettstown', 'country_code' => 'US'], ['name' => 'Pesca', 'country_code' => 'CO'], ['name' => 'Stuarts Draft', 'country_code' => 'US'], ['name' => 'Bay Minette', 'country_code' => 'US'], ['name' => 'Isbergues', 'country_code' => 'FR'], ['name' => 'Monteforte d Alpone', 'country_code' => 'IT'], ['name' => 'Lorraine', 'country_code' => 'CA'], ['name' => 'Khotyn', 'country_code' => 'UA'], ['name' => 'Golden Hills', 'country_code' => 'US'], ['name' => 'Thompson', 'country_code' => 'US'], ['name' => 'Verkhneuralsk', 'country_code' => 'RU'], ['name' => 'Podenzano', 'country_code' => 'IT'], ['name' => 'Edwards', 'country_code' => 'US'], ['name' => 'Nagykallo', 'country_code' => 'HU'], ['name' => 'Ariranha', 'country_code' => 'BR'], ['name' => 'Loreto', 'country_code' => 'PH'], ['name' => 'Masandra', 'country_code' => 'UA'], ['name' => 'Woodmoor', 'country_code' => 'US'], ['name' => 'Liberty', 'country_code' => 'US'], ['name' => 'Ipiranga do Piaui', 'country_code' => 'BR'], ['name' => 'Pfedelbach', 'country_code' => 'DE'], ['name' => 'Vendin-le-Vieil', 'country_code' => 'FR'], ['name' => 'Segni', 'country_code' => 'IT'], ['name' => 'Saline', 'country_code' => 'US'], ['name' => 'Catral', 'country_code' => 'ES'], ['name' => 'Villars', 'country_code' => 'FR'], ['name' => 'Courcelles-les-Lens', 'country_code' => 'FR'], ['name' => 'St. Augustine Shores', 'country_code' => 'US'], ['name' => 'Madras', 'country_code' => 'US'], ['name' => 'Ineu', 'country_code' => 'RO'], ['name' => 'San Sebastian de la Gomera', 'country_code' => 'ES'], ['name' => 'Pietra Ligure', 'country_code' => 'IT'], ['name' => 'Catuipe', 'country_code' => 'BR'], ['name' => 'Caluco', 'country_code' => 'SV'], ['name' => 'Kaleybar', 'country_code' => 'IR'], ['name' => 'Vallet', 'country_code' => 'FR'], ['name' => 'Cherasco', 'country_code' => 'IT'], ['name' => 'Vallendar', 'country_code' => 'DE'], ['name' => 'Clinton', 'country_code' => 'US'], ['name' => 'Porangaba', 'country_code' => 'BR'], ['name' => 'Banaruyeh', 'country_code' => 'IR'], ['name' => 'Hohenhameln', 'country_code' => 'DE'], ['name' => 'Ngaruawahia', 'country_code' => 'NZ'], ['name' => 'Lacchiarella', 'country_code' => 'IT'], ['name' => 'Le Petit-Couronne', 'country_code' => 'FR'], ['name' => 'Heath', 'country_code' => 'US'], ['name' => 'Sainte-Julienne', 'country_code' => 'CA'], ['name' => 'Claymont', 'country_code' => 'US'], ['name' => 'Tirano', 'country_code' => 'IT'], ['name' => 'Zanica', 'country_code' => 'IT'], ['name' => 'Chaponost', 'country_code' => 'FR'], ['name' => 'Shimizu', 'country_code' => 'JP'], ['name' => 'Blackfalds', 'country_code' => 'CA'], ['name' => 'Stansbury Park', 'country_code' => 'US'], ['name' => 'Rotonda', 'country_code' => 'US'], ['name' => 'Marlboro Village', 'country_code' => 'US'], ['name' => 'Luzzi', 'country_code' => 'IT'], ['name' => 'Belousovo', 'country_code' => 'RU'], ['name' => 'Lenoir City', 'country_code' => 'US'], ['name' => 'Reggiolo', 'country_code' => 'IT'], ['name' => 'Birch Bay', 'country_code' => 'US'], ['name' => 'Portland', 'country_code' => 'US'], ['name' => 'Edingerhof', 'country_code' => 'DE'], ['name' => 'Smilde', 'country_code' => 'NL'], ['name' => 'Coqueiral', 'country_code' => 'BR'], ['name' => 'Hartland', 'country_code' => 'US'], ['name' => 'Nakhon Thai', 'country_code' => 'TH'], ['name' => 'Waihee-Waiehu', 'country_code' => 'US'], ['name' => 'Landquart', 'country_code' => 'CH'], ['name' => 'Sint-Martens-Lennik', 'country_code' => 'BE'], ['name' => 'Moore', 'country_code' => 'US'], ['name' => 'College Place', 'country_code' => 'US'], ['name' => 'Svit', 'country_code' => 'SK'], ['name' => 'Liberty', 'country_code' => 'US'], ['name' => 'Inveruno', 'country_code' => 'IT'], ['name' => 'Trumpington', 'country_code' => 'GB'], ['name' => 'Bad Bevensen', 'country_code' => 'DE'], ['name' => 'Stevenston', 'country_code' => 'GB'], ['name' => 'Montoro', 'country_code' => 'ES'], ['name' => 'Vel ke Kapusany', 'country_code' => 'SK'], ['name' => 'Nong Kung Si', 'country_code' => 'TH'], ['name' => 'Teolo', 'country_code' => 'IT'], ['name' => 'Holten', 'country_code' => 'NL'], ['name' => 'Velykyi Bychkiv', 'country_code' => 'UA'], ['name' => 'Capbreton', 'country_code' => 'FR'], ['name' => 'Cisterniga', 'country_code' => 'ES'], ['name' => 'Hombrechtikon', 'country_code' => 'CH'], ['name' => 'Zimmerman', 'country_code' => 'US'], ['name' => 'Hemau', 'country_code' => 'DE'], ['name' => 'Freetown', 'country_code' => 'US'], ['name' => 'Hohenbrunn', 'country_code' => 'DE'], ['name' => 'Biblis', 'country_code' => 'DE'], ['name' => 'Zorbig', 'country_code' => 'DE'], ['name' => 'Newfane', 'country_code' => 'US'], ['name' => 'Dardilly', 'country_code' => 'FR'], ['name' => 'Wesley Chapel', 'country_code' => 'US'], ['name' => 'Burscough', 'country_code' => 'GB'], ['name' => 'Malahide', 'country_code' => 'CA'], ['name' => 'Shijak', 'country_code' => 'AL'], ['name' => 'Urbach', 'country_code' => 'DE'], ['name' => 'Suwannaphum', 'country_code' => 'TH'], ['name' => 'Didymoteicho', 'country_code' => 'GR'], ['name' => 'Seddouk Oufella', 'country_code' => 'DZ'], ['name' => 'Detroit Lakes', 'country_code' => 'US'], ['name' => 'Gerstungen', 'country_code' => 'DE'], ['name' => 'La Fare-les-Oliviers', 'country_code' => 'FR'], ['name' => 'Gonzaga', 'country_code' => 'IT'], ['name' => 'Hunenberg', 'country_code' => 'CH'], ['name' => 'Fultondale', 'country_code' => 'US'], ['name' => 'Tlahuiltepa', 'country_code' => 'MX'], ['name' => 'North College Hill', 'country_code' => 'US'], ['name' => 'Sao Jose do Cerrito', 'country_code' => 'BR'], ['name' => 'Herculandia', 'country_code' => 'BR'], ['name' => 'Torgelow', 'country_code' => 'DE'], ['name' => 'Gnarrenburg', 'country_code' => 'DE'], ['name' => 'Pozo Almonte', 'country_code' => 'CL'], ['name' => 'Tanakoub', 'country_code' => 'MA'], ['name' => 'Westerland', 'country_code' => 'DE'], ['name' => 'Casteloes de Cepeda', 'country_code' => 'PT'], ['name' => 'Horodenka', 'country_code' => 'UA'], ['name' => 'Cape Elizabeth', 'country_code' => 'US'], ['name' => 'Tecklenburg', 'country_code' => 'DE'], ['name' => 'Cross Lanes', 'country_code' => 'US'], ['name' => 'Lo Miranda', 'country_code' => 'CL'], ['name' => 'Benner', 'country_code' => 'US'], ['name' => 'Fuldabruck', 'country_code' => 'DE'], ['name' => 'Zavyalovo', 'country_code' => 'RU'], ['name' => 'Wolfurt', 'country_code' => 'AT'], ['name' => 'Oulad Cherif', 'country_code' => 'MA'], ['name' => 'Santa Maria del Tule', 'country_code' => 'MX'], ['name' => 'Chotebor', 'country_code' => 'CZ'], ['name' => 'Marathon', 'country_code' => 'US'], ['name' => 'Westwood', 'country_code' => 'US'], ['name' => 'Sidi Lahsene', 'country_code' => 'MA'], ['name' => 'Mendig', 'country_code' => 'DE'], ['name' => 'Valky', 'country_code' => 'UA'], ['name' => 'Altenbeken', 'country_code' => 'DE'], ['name' => 'Salto Grande', 'country_code' => 'BR'], ['name' => 'Biberist', 'country_code' => 'CH'], ['name' => 'Kolkwitz', 'country_code' => 'DE'], ['name' => 'Lexington', 'country_code' => 'US'], ['name' => 'Blackstone', 'country_code' => 'US'], ['name' => 'Bohemia', 'country_code' => 'US'], ['name' => 'Hernando', 'country_code' => 'US'], ['name' => 'Dumont', 'country_code' => 'BR'], ['name' => 'Hawkinge', 'country_code' => 'GB'], ['name' => 'Pokrovsk', 'country_code' => 'RU'], ['name' => 'Troina', 'country_code' => 'IT'], ['name' => 'Malalbergo', 'country_code' => 'IT'], ['name' => 'Nizhniye Sergi', 'country_code' => 'RU'], ['name' => 'Bad Liebenwerda', 'country_code' => 'DE'], ['name' => 'Neshannock', 'country_code' => 'US'], ['name' => 'Natividade', 'country_code' => 'BR'], ['name' => 'Currie', 'country_code' => 'GB'], ['name' => 'Kalanchak', 'country_code' => 'UA'], ['name' => 'Melgaco', 'country_code' => 'PT'], ['name' => 'Hastings', 'country_code' => 'US'], ['name' => 'Cheat Lake', 'country_code' => 'US'], ['name' => 'Harahan', 'country_code' => 'US'], ['name' => 'Paszto', 'country_code' => 'HU'], ['name' => 'Sredets', 'country_code' => 'BG'], ['name' => 'Le Thor', 'country_code' => 'FR'], ['name' => 'Washington Terrace', 'country_code' => 'US'], ['name' => 'Salzhemmendorf', 'country_code' => 'DE'], ['name' => 'Sultan', 'country_code' => 'US'], ['name' => 'Wendover', 'country_code' => 'GB'], ['name' => 'Pong Nam Ron', 'country_code' => 'TH'], ['name' => 'Muncy', 'country_code' => 'US'], ['name' => 'Madeira', 'country_code' => 'US'], ['name' => 'Colorno', 'country_code' => 'IT'], ['name' => 'Princes Risborough', 'country_code' => 'GB'], ['name' => 'Saidia', 'country_code' => 'MA'], ['name' => 'Abaira', 'country_code' => 'BR'], ['name' => 'Valldoreix', 'country_code' => 'ES'], ['name' => 'Carneiros', 'country_code' => 'BR'], ['name' => 'Anthony', 'country_code' => 'US'], ['name' => 'Obukhivka', 'country_code' => 'UA'], ['name' => 'Rosario do Catete', 'country_code' => 'BR'], ['name' => 'Clermont-l Herault', 'country_code' => 'FR'], ['name' => 'Lempdes', 'country_code' => 'FR'], ['name' => 'Gridley', 'country_code' => 'US'], ['name' => 'Washington', 'country_code' => 'US'], ['name' => 'Saint-Paul-Trois-Chateaux', 'country_code' => 'FR'], ['name' => 'Heroldsberg', 'country_code' => 'DE'], ['name' => 'San Fructuoso de Bages', 'country_code' => 'ES'], ['name' => 'Ziebice', 'country_code' => 'PL'], ['name' => 'Veliki Preslav', 'country_code' => 'BG'], ['name' => 'Kendall Park', 'country_code' => 'US'], ['name' => 'Douar Snada', 'country_code' => 'MA'], ['name' => 'Haram', 'country_code' => 'NO'], ['name' => 'Manchester', 'country_code' => 'US'], ['name' => 'Saint-Claude', 'country_code' => 'FR'], ['name' => 'Skovorodino', 'country_code' => 'RU'], ['name' => 'Mittenwalde', 'country_code' => 'DE'], ['name' => 'Roquevaire', 'country_code' => 'FR'], ['name' => 'Furth im Wald', 'country_code' => 'DE'], ['name' => 'Walworth', 'country_code' => 'US'], ['name' => 'Kamien Pomorski', 'country_code' => 'PL'], ['name' => 'Soresina', 'country_code' => 'IT'], ['name' => 'Girard', 'country_code' => 'US'], ['name' => 'Montagnana', 'country_code' => 'IT'], ['name' => 'Coronel Murta', 'country_code' => 'BR'], ['name' => 'Hirayama', 'country_code' => 'JP'], ['name' => 'Moss Vale', 'country_code' => 'AU'], ['name' => 'I-n-Amenas', 'country_code' => 'DZ'], ['name' => 'Hillview', 'country_code' => 'US'], ['name' => 'Burlington', 'country_code' => 'US'], ['name' => 'Stryzhavka', 'country_code' => 'UA'], ['name' => 'Almargem', 'country_code' => 'PT'], ['name' => 'Baluntaicun', 'country_code' => 'CN'], ['name' => 'Oromocto', 'country_code' => 'CA'], ['name' => 'La Cruz', 'country_code' => 'CR'], ['name' => 'Ponte Buggianese', 'country_code' => 'IT'], ['name' => 'Steger', 'country_code' => 'US'], ['name' => 'Sans Souci', 'country_code' => 'US'], ['name' => 'Serramanna', 'country_code' => 'IT'], ['name' => 'Tarcento', 'country_code' => 'IT'], ['name' => 'Tineo', 'country_code' => 'ES'], ['name' => 'White Marsh', 'country_code' => 'US'], ['name' => 'Yaxley', 'country_code' => 'GB'], ['name' => 'Sidi Ouassay', 'country_code' => 'MA'], ['name' => 'Spanish Fort', 'country_code' => 'US'], ['name' => 'Krompachy', 'country_code' => 'SK'], ['name' => 'Savenay', 'country_code' => 'FR'], ['name' => 'Longvic', 'country_code' => 'FR'], ['name' => 'Windisch', 'country_code' => 'CH'], ['name' => 'Wanaka', 'country_code' => 'NZ'], ['name' => 'Notre-Dame-de-Gravenchon', 'country_code' => 'FR'], ['name' => 'Chtiba', 'country_code' => 'MA'], ['name' => 'Lake Elmo', 'country_code' => 'US'], ['name' => 'Bethalto', 'country_code' => 'US'], ['name' => 'Dallas', 'country_code' => 'US'], ['name' => 'Obyachevo', 'country_code' => 'RU'], ['name' => 'Brewood', 'country_code' => 'GB'], ['name' => 'Trittau', 'country_code' => 'DE'], ['name' => 'Bir Tam Tam', 'country_code' => 'MA'], ['name' => 'Cloverdale', 'country_code' => 'US'], ['name' => 'Copceac', 'country_code' => 'MD'], ['name' => 'Achicourt', 'country_code' => 'FR'], ['name' => 'Borgoricco', 'country_code' => 'IT'], ['name' => 'Independent Hill', 'country_code' => 'US'], ['name' => 'Mendon', 'country_code' => 'US'], ['name' => 'Crawford', 'country_code' => 'US'], ['name' => 'Malzeville', 'country_code' => 'FR'], ['name' => 'Furtwangen im Schwarzwald', 'country_code' => 'DE'], ['name' => 'Sabinanigo', 'country_code' => 'ES'], ['name' => 'Gretz-Armainvilliers', 'country_code' => 'FR'], ['name' => 'Unterageri', 'country_code' => 'CH'], ['name' => 'Santo Domingo Petapa', 'country_code' => 'MX'], ['name' => 'Abdurahmoni Jomi', 'country_code' => 'TJ'], ['name' => 'Good Hope', 'country_code' => 'US'], ['name' => 'Luzzara', 'country_code' => 'IT'], ['name' => 'Checy', 'country_code' => 'FR'], ['name' => 'Lynwood', 'country_code' => 'US'], ['name' => 'Basalt', 'country_code' => 'US'], ['name' => 'Ivins', 'country_code' => 'US'], ['name' => 'Egg', 'country_code' => 'CH'], ['name' => 'Neuhaus am Rennweg', 'country_code' => 'DE'], ['name' => 'Tibana', 'country_code' => 'CO'], ['name' => 'Fujisawacho-niinuma', 'country_code' => 'JP'], ['name' => 'Suances', 'country_code' => 'ES'], ['name' => 'Curno', 'country_code' => 'IT'], ['name' => 'Wagoner', 'country_code' => 'US'], ['name' => 'Elsfleth', 'country_code' => 'DE'], ['name' => 'Nagaoki', 'country_code' => 'JP'], ['name' => 'Olds', 'country_code' => 'CA'], ['name' => 'Piriapolis', 'country_code' => 'UY'], ['name' => 'Verdello', 'country_code' => 'IT'], ['name' => 'Plainville', 'country_code' => 'US'], ['name' => 'Zychlin', 'country_code' => 'PL'], ['name' => 'Brimington', 'country_code' => 'GB'], ['name' => 'Segorbe', 'country_code' => 'ES'], ['name' => 'Bethel', 'country_code' => 'US'], ['name' => 'Mwaline al Oued', 'country_code' => 'MA'], ['name' => 'Roussillon', 'country_code' => 'FR'], ['name' => 'St. Marys', 'country_code' => 'US'], ['name' => 'Elwood', 'country_code' => 'US'], ['name' => 'Zogno', 'country_code' => 'IT'], ['name' => 'Waldheim', 'country_code' => 'DE'], ['name' => 'Horokhiv', 'country_code' => 'UA'], ['name' => 'San Cesario di Lecce', 'country_code' => 'IT'], ['name' => 'Aratuipe', 'country_code' => 'BR'], ['name' => 'Karis', 'country_code' => 'FI'], ['name' => 'Salcea', 'country_code' => 'RO'], ['name' => 'Timmendorfer Strand', 'country_code' => 'DE'], ['name' => 'Sitio Novo de Goias', 'country_code' => 'BR'], ['name' => 'Redding', 'country_code' => 'US'], ['name' => 'Neuotting', 'country_code' => 'DE'], ['name' => 'Bloomingdale', 'country_code' => 'US'], ['name' => 'Parakar', 'country_code' => 'AM'], ['name' => 'Sullivan', 'country_code' => 'US'], ['name' => 'Rensselaer', 'country_code' => 'US'], ['name' => 'Clifton Springs', 'country_code' => 'AU'], ['name' => 'Tournan-en-Brie', 'country_code' => 'FR'], ['name' => 'Tinajdad', 'country_code' => 'MA'], ['name' => 'Ortenberg', 'country_code' => 'DE'], ['name' => 'Petilia Policastro', 'country_code' => 'IT'], ['name' => 'Mikhaylovka', 'country_code' => 'RU'], ['name' => 'Hallstadt', 'country_code' => 'DE'], ['name' => 'Woltersdorf', 'country_code' => 'DE'], ['name' => 'Memmelsdorf', 'country_code' => 'DE'], ['name' => 'Akat Amnuai', 'country_code' => 'TH'], ['name' => 'Bingham', 'country_code' => 'GB'], ['name' => 'Abalessa', 'country_code' => 'DZ'], ['name' => 'Perkiomen', 'country_code' => 'US'], ['name' => 'Audubon', 'country_code' => 'US'], ['name' => 'Verdejante', 'country_code' => 'BR'], ['name' => 'Aviano', 'country_code' => 'IT'], ['name' => 'Calimesa', 'country_code' => 'US'], ['name' => 'Dunn Loring', 'country_code' => 'US'], ['name' => 'Modra', 'country_code' => 'SK'], ['name' => 'Plon', 'country_code' => 'DE'], ['name' => 'Monteroni d Arbia', 'country_code' => 'IT'], ['name' => 'Flossmoor', 'country_code' => 'US'], ['name' => 'Beckett Ridge', 'country_code' => 'US'], ['name' => 'Plymouth', 'country_code' => 'US'], ['name' => 'Ridgefield', 'country_code' => 'US'], ['name' => 'Bruchhausen-Vilsen', 'country_code' => 'DE'], ['name' => 'Shaftesbury', 'country_code' => 'GB'], ['name' => 'Hooper', 'country_code' => 'US'], ['name' => 'Castagneto Carducci', 'country_code' => 'IT'], ['name' => 'Tombolo', 'country_code' => 'IT'], ['name' => 'Minyar', 'country_code' => 'RU'], ['name' => 'Rathdrum', 'country_code' => 'US'], ['name' => 'Bichura', 'country_code' => 'RU'], ['name' => 'Villa Chalcatongo de Hidalgo', 'country_code' => 'MX'], ['name' => 'Thief River Falls', 'country_code' => 'US'], ['name' => 'Kressbronn am Bodensee', 'country_code' => 'DE'], ['name' => 'Canilla', 'country_code' => 'GT'], ['name' => 'Thorigne-Fouillard', 'country_code' => 'FR'], ['name' => 'San Zenon', 'country_code' => 'CO'], ['name' => 'Fairview', 'country_code' => 'US'], ['name' => 'Devnya', 'country_code' => 'BG'], ['name' => 'Saint-Philbert-de-Grand-Lieu', 'country_code' => 'FR'], ['name' => 'Pa in Chaf', 'country_code' => 'IR'], ['name' => 'Oudover', 'country_code' => 'NL'], ['name' => 'Palmeiras', 'country_code' => 'BR'], ['name' => 'Katoomba', 'country_code' => 'AU'], ['name' => 'Ystradgynlais', 'country_code' => 'GB'], ['name' => 'Terra Roxa', 'country_code' => 'BR'], ['name' => 'Urania', 'country_code' => 'BR'], ['name' => 'Chadan', 'country_code' => 'RU'], ['name' => 'Iijima', 'country_code' => 'JP'], ['name' => 'Whitnash', 'country_code' => 'GB'], ['name' => 'Fairview', 'country_code' => 'US'], ['name' => 'Kisslegg', 'country_code' => 'DE'], ['name' => 'Lorgues', 'country_code' => 'FR'], ['name' => 'Estanzuelas', 'country_code' => 'SV'], ['name' => 'Anaconda', 'country_code' => 'US'], ['name' => 'Seini', 'country_code' => 'RO'], ['name' => 'Duchcov', 'country_code' => 'CZ'], ['name' => 'Waziers', 'country_code' => 'FR'], ['name' => 'Nangis', 'country_code' => 'FR'], ['name' => 'Huron East', 'country_code' => 'CA'], ['name' => 'Castelnuovo Berardenga', 'country_code' => 'IT'], ['name' => 'Murrells Inlet', 'country_code' => 'US'], ['name' => 'Kaeng Khro', 'country_code' => 'TH'], ['name' => 'Oberriet', 'country_code' => 'CH'], ['name' => 'Tulbagh', 'country_code' => 'ZA'], ['name' => 'Gtarna', 'country_code' => 'MA'], ['name' => 'Borgholzhausen', 'country_code' => 'DE'], ['name' => 'Cockermouth', 'country_code' => 'GB'], ['name' => 'Grabels', 'country_code' => 'FR'], ['name' => 'Velyki Luchky', 'country_code' => 'UA'], ['name' => 'Binasco', 'country_code' => 'IT'], ['name' => 'Union', 'country_code' => 'US'], ['name' => 'Boukhralfa', 'country_code' => 'DZ'], ['name' => 'Muhlhausen', 'country_code' => 'DE'], ['name' => 'El Espinar', 'country_code' => 'ES'], ['name' => 'Iguidiy', 'country_code' => 'MA'], ['name' => 'Coutances', 'country_code' => 'FR'], ['name' => 'Lachen', 'country_code' => 'CH'], ['name' => 'Woodburn', 'country_code' => 'US'], ['name' => 'Le Teil', 'country_code' => 'FR'], ['name' => 'Challapata', 'country_code' => 'BO'], ['name' => 'Elze', 'country_code' => 'DE'], ['name' => 'Schulzendorf', 'country_code' => 'DE'], ['name' => 'Civitella in Val di Chiana', 'country_code' => 'IT'], ['name' => 'Freystadt', 'country_code' => 'DE'], ['name' => 'Guardiagrele', 'country_code' => 'IT'], ['name' => 'Monett', 'country_code' => 'US'], ['name' => 'Cogoleto', 'country_code' => 'IT'], ['name' => 'Doberlug-Kirchhain', 'country_code' => 'DE'], ['name' => 'Tarusa', 'country_code' => 'RU'], ['name' => 'Velden am Worthersee', 'country_code' => 'AT'], ['name' => 'Bolokhovo', 'country_code' => 'RU'], ['name' => 'Embalse', 'country_code' => 'AR'], ['name' => 'Sangeorgiu de Mures', 'country_code' => 'RO'], ['name' => 'Almagro', 'country_code' => 'PH'], ['name' => 'Mnichovo Hradiste', 'country_code' => 'CZ'], ['name' => 'Grinnell', 'country_code' => 'US'], ['name' => 'Jersey Shore', 'country_code' => 'US'], ['name' => 'Cutrofiano', 'country_code' => 'IT'], ['name' => 'Grosse Pointe Farms', 'country_code' => 'US'], ['name' => 'Rapid Valley', 'country_code' => 'US'], ['name' => 'Thung Sai', 'country_code' => 'TH'], ['name' => 'Tiachiv', 'country_code' => 'UA'], ['name' => 'Kosum Phisai', 'country_code' => 'TH'], ['name' => 'Linganore', 'country_code' => 'US'], ['name' => 'Edgewater', 'country_code' => 'US'], ['name' => 'Vergiate', 'country_code' => 'IT'], ['name' => 'Nittenau', 'country_code' => 'DE'], ['name' => 'Sao Jorge d Oeste', 'country_code' => 'BR'], ['name' => 'Farra di Soligo', 'country_code' => 'IT'], ['name' => 'Stara Tura', 'country_code' => 'SK'], ['name' => 'Atmore', 'country_code' => 'US'], ['name' => 'Somero', 'country_code' => 'FI'], ['name' => 'Roccastrada', 'country_code' => 'IT'], ['name' => 'Trissino', 'country_code' => 'IT'], ['name' => 'Whitwick', 'country_code' => 'GB'], ['name' => 'Felino', 'country_code' => 'IT'], ['name' => 'Guananico', 'country_code' => 'DO'], ['name' => 'Kharovsk', 'country_code' => 'RU'], ['name' => 'Dzhalka', 'country_code' => 'RU'], ['name' => 'West Caln', 'country_code' => 'US'], ['name' => 'Waldenbuch', 'country_code' => 'DE'], ['name' => 'Loeches', 'country_code' => 'ES'], ['name' => 'Rada Tilly', 'country_code' => 'AR'], ['name' => 'Economy', 'country_code' => 'US'], ['name' => 'Kratovo', 'country_code' => 'RU'], ['name' => 'Emerainville', 'country_code' => 'FR'], ['name' => 'Villa Morelos', 'country_code' => 'MX'], ['name' => 'Plymouth', 'country_code' => 'US'], ['name' => 'Burton', 'country_code' => 'US'], ['name' => 'Chitcani', 'country_code' => 'MD'], ['name' => 'Berthoud', 'country_code' => 'US'], ['name' => 'Bellerive-sur-Allier', 'country_code' => 'FR'], ['name' => 'Epanomi', 'country_code' => 'GR'], ['name' => 'Whitestown', 'country_code' => 'US'], ['name' => 'Galbiate', 'country_code' => 'IT'], ['name' => 'Portlethen', 'country_code' => 'GB'], ['name' => 'Queven', 'country_code' => 'FR'], ['name' => 'Breckerfeld', 'country_code' => 'DE'], ['name' => 'San Elizario', 'country_code' => 'US'], ['name' => 'Dillon', 'country_code' => 'US'], ['name' => 'L Isle-Jourdain', 'country_code' => 'FR'], ['name' => 'Herzberg', 'country_code' => 'DE'], ['name' => 'Siklos', 'country_code' => 'HU'], ['name' => 'Clinton', 'country_code' => 'US'], ['name' => 'Tha Luang', 'country_code' => 'TH'], ['name' => 'Livno', 'country_code' => 'BA'], ['name' => 'Casca', 'country_code' => 'BR'], ['name' => 'Tiburon', 'country_code' => 'US'], ['name' => 'Monmouth', 'country_code' => 'US'], ['name' => 'Silves', 'country_code' => 'BR'], ['name' => 'Highland Park', 'country_code' => 'US'], ['name' => 'Queensferry', 'country_code' => 'GB'], ['name' => 'Sugarmill Woods', 'country_code' => 'US'], ['name' => 'Grenade', 'country_code' => 'FR'], ['name' => 'Dorverden', 'country_code' => 'DE'], ['name' => 'Vinhais', 'country_code' => 'PT'], ['name' => 'Golden Valley', 'country_code' => 'US'], ['name' => 'Verkhnyaya Tura', 'country_code' => 'RU'], ['name' => 'Northwest Harborcreek', 'country_code' => 'US'], ['name' => 'Lancon-Provence', 'country_code' => 'FR'], ['name' => 'Hoevelaken', 'country_code' => 'NL'], ['name' => 'Erzhausen', 'country_code' => 'DE'], ['name' => 'Kuvshinovo', 'country_code' => 'RU'], ['name' => 'Lunner', 'country_code' => 'NO'], ['name' => 'Chrysoupoli', 'country_code' => 'GR'], ['name' => 'Muhos', 'country_code' => 'FI'], ['name' => 'Waldfeucht', 'country_code' => 'DE'], ['name' => 'Jeannette', 'country_code' => 'US'], ['name' => 'Policka', 'country_code' => 'CZ'], ['name' => 'Rafard', 'country_code' => 'BR'], ['name' => 'Bellheim', 'country_code' => 'DE'], ['name' => 'Marlton', 'country_code' => 'US'], ['name' => 'Werneuchen', 'country_code' => 'DE'], ['name' => 'Guerrero', 'country_code' => 'MX'], ['name' => 'Armadale', 'country_code' => 'GB'], ['name' => 'Swalmen', 'country_code' => 'NL'], ['name' => 'Windermere', 'country_code' => 'GB'], ['name' => 'Sutherlin', 'country_code' => 'US'], ['name' => 'Had Dra', 'country_code' => 'MA'], ['name' => 'Bolnisi', 'country_code' => 'GE'], ['name' => 'Abcoude', 'country_code' => 'NL'], ['name' => 'Khoni', 'country_code' => 'GE'], ['name' => 'Wollert', 'country_code' => 'AU'], ['name' => 'Picnic Point', 'country_code' => 'US'], ['name' => 'Villafranca Tirrena', 'country_code' => 'IT'], ['name' => 'Obernburg am Main', 'country_code' => 'DE'], ['name' => 'Barrington', 'country_code' => 'US'], ['name' => 'Newmarket', 'country_code' => 'US'], ['name' => 'Villa Guardia', 'country_code' => 'IT'], ['name' => 'Hirson', 'country_code' => 'FR'], ['name' => 'Rivesaltes', 'country_code' => 'FR'], ['name' => 'Seaside', 'country_code' => 'US'], ['name' => 'Nort-sur-Erdre', 'country_code' => 'FR'], ['name' => 'Sint-Martens-Latem', 'country_code' => 'BE'], ['name' => 'Kelso', 'country_code' => 'AU'], ['name' => 'Subiaco', 'country_code' => 'IT'], ['name' => 'Ceprano', 'country_code' => 'IT'], ['name' => 'Campogalliano', 'country_code' => 'IT'], ['name' => 'Merrimac', 'country_code' => 'AU'], ['name' => 'Laveno-Mombello', 'country_code' => 'IT'], ['name' => 'Marshall', 'country_code' => 'US'], ['name' => 'Privas', 'country_code' => 'FR'], ['name' => 'North Codorus', 'country_code' => 'US'], ['name' => 'Volvera', 'country_code' => 'IT'], ['name' => 'Binisalem', 'country_code' => 'ES'], ['name' => 'Livingston', 'country_code' => 'US'], ['name' => 'Morlupo', 'country_code' => 'IT'], ['name' => 'Neves Paulista', 'country_code' => 'BR'], ['name' => 'Entraigues-sur-la-Sorgue', 'country_code' => 'FR'], ['name' => 'Fort Polk South', 'country_code' => 'US'], ['name' => 'Cherry Hinton', 'country_code' => 'GB'], ['name' => 'Micco', 'country_code' => 'US'], ['name' => 'Hornsea', 'country_code' => 'GB'], ['name' => 'Santa Rita de Caldas', 'country_code' => 'BR'], ['name' => 'Flekkefjord', 'country_code' => 'NO'], ['name' => 'Kozova', 'country_code' => 'UA'], ['name' => 'Puig', 'country_code' => 'ES'], ['name' => 'Ballenstedt', 'country_code' => 'DE'], ['name' => 'Chanute', 'country_code' => 'US'], ['name' => 'Beecher', 'country_code' => 'US'], ['name' => 'Linselles', 'country_code' => 'FR'], ['name' => 'Rakitovo', 'country_code' => 'BG'], ['name' => 'Libonik', 'country_code' => 'AL'], ['name' => 'Ayr', 'country_code' => 'AU'], ['name' => 'Stanley', 'country_code' => 'CA'], ['name' => 'Monistrol-sur-Loire', 'country_code' => 'FR'], ['name' => 'Indianola', 'country_code' => 'US'], ['name' => 'San Giorgio di Piano', 'country_code' => 'IT'], ['name' => 'Ferryhill', 'country_code' => 'GB'], ['name' => 'Uspenka', 'country_code' => 'UA'], ['name' => 'Brewer', 'country_code' => 'US'], ['name' => 'Sande', 'country_code' => 'DE'], ['name' => 'Candeal', 'country_code' => 'BR'], ['name' => 'Albinea', 'country_code' => 'IT'], ['name' => 'Corozal', 'country_code' => 'PR'], ['name' => 'La Grange', 'country_code' => 'US'], ['name' => 'McFarland', 'country_code' => 'US'], ['name' => 'Silver Springs Shores', 'country_code' => 'US'], ['name' => 'Shelby', 'country_code' => 'US'], ['name' => 'Weare', 'country_code' => 'US'], ['name' => 'Rhymney', 'country_code' => 'GB'], ['name' => 'Pineville', 'country_code' => 'US'], ['name' => 'Wervershoof', 'country_code' => 'NL'], ['name' => 'Thap Than', 'country_code' => 'TH'], ['name' => 'Tregueux', 'country_code' => 'FR'], ['name' => 'Montalto di Castro', 'country_code' => 'IT'], ['name' => 'Sint-Amands', 'country_code' => 'BE'], ['name' => 'Cavenago di Brianza', 'country_code' => 'IT'], ['name' => 'La Ricamarie', 'country_code' => 'FR'], ['name' => 'Woodway', 'country_code' => 'US'], ['name' => 'Queimada Nova', 'country_code' => 'BR'], ['name' => 'Oakbrook', 'country_code' => 'US'], ['name' => 'Valley Cottage', 'country_code' => 'US'], ['name' => 'Lindstrom', 'country_code' => 'US'], ['name' => 'Littleport', 'country_code' => 'GB'], ['name' => 'Pomichna', 'country_code' => 'UA'], ['name' => 'Shiprock', 'country_code' => 'US'], ['name' => 'Zawyat Sidi al Mekki', 'country_code' => 'MA'], ['name' => 'Cinderford', 'country_code' => 'GB'], ['name' => 'Babadag', 'country_code' => 'RO'], ['name' => 'St. Anthony', 'country_code' => 'US'], ['name' => 'Busteni', 'country_code' => 'RO'], ['name' => 'Peymeinade', 'country_code' => 'FR'], ['name' => 'Jauru', 'country_code' => 'BR'], ['name' => 'Koekelare', 'country_code' => 'BE'], ['name' => 'Uricani', 'country_code' => 'RO'], ['name' => 'Presque Isle', 'country_code' => 'US'], ['name' => 'East Haddam', 'country_code' => 'US'], ['name' => 'Manzanares el Real', 'country_code' => 'ES'], ['name' => 'Worplesdon', 'country_code' => 'GB'], ['name' => 'Volkach', 'country_code' => 'DE'], ['name' => 'Karkkila', 'country_code' => 'FI'], ['name' => 'Puerto Octay', 'country_code' => 'CL'], ['name' => 'Engerwitzdorf', 'country_code' => 'AT'], ['name' => 'Ochsenhausen', 'country_code' => 'DE'], ['name' => 'Hamlin', 'country_code' => 'US'], ['name' => 'Santa Venerina', 'country_code' => 'IT'], ['name' => 'San Francisco Ixhuatan', 'country_code' => 'MX'], ['name' => 'Saint-Germain-les-Corbeil', 'country_code' => 'FR'], ['name' => 'Manteno', 'country_code' => 'US'], ['name' => 'Yelnya', 'country_code' => 'RU'], ['name' => 'Vera Cruz do Oeste', 'country_code' => 'BR'], ['name' => 'Pocrane', 'country_code' => 'BR'], ['name' => 'Lake Mohawk', 'country_code' => 'US'], ['name' => 'Crest', 'country_code' => 'FR'], ['name' => 'Wenzenbach', 'country_code' => 'DE'], ['name' => 'Mbamba Bay', 'country_code' => 'TZ'], ['name' => 'Dexter', 'country_code' => 'US'], ['name' => 'Diss', 'country_code' => 'GB'], ['name' => 'Delta', 'country_code' => 'US'], ['name' => 'Szentgotthard', 'country_code' => 'HU'], ['name' => 'Foum Zguid', 'country_code' => 'MA'], ['name' => 'Smimou', 'country_code' => 'MA'], ['name' => 'Dobris', 'country_code' => 'CZ'], ['name' => 'Chamical', 'country_code' => 'AR'], ['name' => 'Chop', 'country_code' => 'UA'], ['name' => 'Fully', 'country_code' => 'CH'], ['name' => 'Piovene Rocchette', 'country_code' => 'IT'], ['name' => 'Mechanicsburg', 'country_code' => 'US'], ['name' => 'Albion', 'country_code' => 'US'], ['name' => 'Chyhyryn', 'country_code' => 'UA'], ['name' => 'Merstham', 'country_code' => 'GB'], ['name' => 'Springfield', 'country_code' => 'US'], ['name' => 'Domerat', 'country_code' => 'FR'], ['name' => 'Tepechitlan', 'country_code' => 'MX'], ['name' => 'Banak', 'country_code' => 'IR'], ['name' => 'Haiku-Pauwela', 'country_code' => 'US'], ['name' => 'Vel ky Meder', 'country_code' => 'SK'], ['name' => 'Skidaway Island', 'country_code' => 'US'], ['name' => 'LaSalle', 'country_code' => 'US'] ]); DB::table('cities')->insert([ ['name' => 'Fairfield Glade', 'country_code' => 'US'], ['name' => 'Belleville', 'country_code' => 'FR'], ['name' => 'Waseca', 'country_code' => 'US'], ['name' => 'Fehrbellin', 'country_code' => 'DE'], ['name' => 'Breganze', 'country_code' => 'IT'], ['name' => 'Psyzh', 'country_code' => 'RU'], ['name' => 'Chocen', 'country_code' => 'CZ'], ['name' => 'Sarlat-la-Caneda', 'country_code' => 'FR'], ['name' => 'Great Cornard', 'country_code' => 'GB'], ['name' => 'Terville', 'country_code' => 'FR'], ['name' => 'Potiragua', 'country_code' => 'BR'], ['name' => 'Monastyryshche', 'country_code' => 'UA'], ['name' => 'Marguerittes', 'country_code' => 'FR'], ['name' => 'Garching an der Alz', 'country_code' => 'DE'], ['name' => 'Murphysboro', 'country_code' => 'US'], ['name' => 'Santo Tomas de los Platanos', 'country_code' => 'MX'], ['name' => 'East Nottingham', 'country_code' => 'US'], ['name' => 'Bumbesti-Jiu', 'country_code' => 'RO'], ['name' => 'Florstadt', 'country_code' => 'DE'], ['name' => 'Nuqui', 'country_code' => 'CO'], ['name' => 'Noisy-le-Roi', 'country_code' => 'FR'], ['name' => 'Morpara', 'country_code' => 'BR'], ['name' => 'Fallston', 'country_code' => 'US'], ['name' => 'Triangle', 'country_code' => 'US'], ['name' => 'Saint-Vallier', 'country_code' => 'FR'], ['name' => 'San Pablo Villa de Mitla', 'country_code' => 'MX'], ['name' => 'Kui Buri', 'country_code' => 'TH'], ['name' => 'Kiskunlachaza', 'country_code' => 'HU'], ['name' => 'Borgo', 'country_code' => 'FR'], ['name' => 'Chester', 'country_code' => 'US'], ['name' => 'Sabaoani', 'country_code' => 'RO'], ['name' => 'Horden', 'country_code' => 'GB'], ['name' => 'Vicopisano', 'country_code' => 'IT'], ['name' => 'Minerbio', 'country_code' => 'IT'], ['name' => 'Parque del Plata', 'country_code' => 'UY'], ['name' => 'Derby', 'country_code' => 'US'], ['name' => 'Penetanguishene', 'country_code' => 'CA'], ['name' => 'Byfleet', 'country_code' => 'GB'], ['name' => 'Ala', 'country_code' => 'IT'], ['name' => 'Schleiz', 'country_code' => 'DE'], ['name' => 'Lacombe', 'country_code' => 'US'], ['name' => 'Povarovo', 'country_code' => 'RU'], ['name' => 'Felida', 'country_code' => 'US'], ['name' => 'Dashouping', 'country_code' => 'CN'], ['name' => 'Velaux', 'country_code' => 'FR'], ['name' => 'Tlumach', 'country_code' => 'UA'], ['name' => 'Macedon', 'country_code' => 'US'], ['name' => 'Itapiranga', 'country_code' => 'BR'], ['name' => 'Naunhof', 'country_code' => 'DE'], ['name' => 'Entre Ijuis', 'country_code' => 'BR'], ['name' => 'Airola', 'country_code' => 'IT'], ['name' => 'Kusterdingen', 'country_code' => 'DE'], ['name' => 'Thames', 'country_code' => 'NZ'], ['name' => 'Rain', 'country_code' => 'DE'], ['name' => 'Sekimachi', 'country_code' => 'JP'], ['name' => 'Eslohe', 'country_code' => 'DE'], ['name' => 'Hermsdorf', 'country_code' => 'DE'], ['name' => 'Summit', 'country_code' => 'US'], ['name' => 'Clinton', 'country_code' => 'US'], ['name' => 'Salach', 'country_code' => 'DE'], ['name' => 'Auerbach', 'country_code' => 'DE'], ['name' => 'Qualicum Beach', 'country_code' => 'CA'], ['name' => 'Tepetitlan', 'country_code' => 'MX'], ['name' => 'Floro', 'country_code' => 'NO'], ['name' => 'Neuville-sur-Saone', 'country_code' => 'FR'], ['name' => 'San Ramon', 'country_code' => 'UY'], ['name' => 'Almagro', 'country_code' => 'ES'], ['name' => 'Sautron', 'country_code' => 'FR'], ['name' => 'Hanko', 'country_code' => 'FI'], ['name' => 'Lake Arrowhead', 'country_code' => 'US'], ['name' => 'Clusone', 'country_code' => 'IT'], ['name' => 'Paulo de Faria', 'country_code' => 'BR'], ['name' => 'Iskourane', 'country_code' => 'MA'], ['name' => 'Oakwood', 'country_code' => 'US'], ['name' => 'Bockhorn', 'country_code' => 'DE'], ['name' => 'Sturgeon Bay', 'country_code' => 'US'], ['name' => 'Mikhaylovsk', 'country_code' => 'RU'], ['name' => 'Deutsch-Wagram', 'country_code' => 'AT'], ['name' => 'Harrisburg', 'country_code' => 'US'], ['name' => 'Liman', 'country_code' => 'AZ'], ['name' => 'Eceabat', 'country_code' => 'TR'], ['name' => 'Independence', 'country_code' => 'US'], ['name' => 'Meine', 'country_code' => 'DE'], ['name' => 'Quibala', 'country_code' => 'AO'], ['name' => 'Taxkorgan', 'country_code' => 'CN'], ['name' => 'Jouy-en-Josas', 'country_code' => 'FR'], ['name' => 'Lequile', 'country_code' => 'IT'], ['name' => 'Forestdale', 'country_code' => 'US'], ['name' => 'San Giuseppe Iato', 'country_code' => 'IT'], ['name' => 'Capri', 'country_code' => 'IT'], ['name' => 'Achacachi', 'country_code' => 'BO'], ['name' => 'Orte', 'country_code' => 'IT'], ['name' => 'Suoyarvi', 'country_code' => 'RU'], ['name' => 'Nordheim', 'country_code' => 'DE'], ['name' => 'Serafimovich', 'country_code' => 'RU'], ['name' => 'Hilzingen', 'country_code' => 'DE'], ['name' => 'Boonton', 'country_code' => 'US'], ['name' => 'Penig', 'country_code' => 'DE'], ['name' => 'Camenca', 'country_code' => 'MD'], ['name' => 'Ilarionove', 'country_code' => 'UA'], ['name' => 'Oak Grove', 'country_code' => 'US'], ['name' => 'Harrodsburg', 'country_code' => 'US'], ['name' => 'Sheffield Lake', 'country_code' => 'US'], ['name' => 'Saint-Chamas', 'country_code' => 'FR'], ['name' => 'Pedrinhas', 'country_code' => 'BR'], ['name' => 'Morada Nova de Minas', 'country_code' => 'BR'], ['name' => 'Silleda', 'country_code' => 'ES'], ['name' => 'Tarrafas', 'country_code' => 'BR'], ['name' => 'Topchikha', 'country_code' => 'RU'], ['name' => 'Malhada de Pedras', 'country_code' => 'BR'], ['name' => 'Szerencs', 'country_code' => 'HU'], ['name' => 'Baia da Traicao', 'country_code' => 'BR'], ['name' => 'Cedar Hills', 'country_code' => 'US'], ['name' => 'Belsh', 'country_code' => 'AL'], ['name' => 'Upper Leacock', 'country_code' => 'US'], ['name' => 'Ararat', 'country_code' => 'AU'], ['name' => 'Kozlovka', 'country_code' => 'RU'], ['name' => 'Ait Ouaoumana', 'country_code' => 'MA'], ['name' => 'Aledo', 'country_code' => 'US'], ['name' => 'Makhambet', 'country_code' => 'KZ'], ['name' => 'Sellersburg', 'country_code' => 'US'], ['name' => 'Cordisburgo', 'country_code' => 'BR'], ['name' => 'Charters Towers', 'country_code' => 'AU'], ['name' => 'Stadtilm', 'country_code' => 'DE'], ['name' => 'Blanchard', 'country_code' => 'US'], ['name' => 'Wattwil', 'country_code' => 'CH'], ['name' => 'San Jose de Gracia', 'country_code' => 'MX'], ['name' => 'Takua Pa', 'country_code' => 'TH'], ['name' => 'Lisbon', 'country_code' => 'US'], ['name' => 'Southside', 'country_code' => 'US'], ['name' => 'Whitehouse', 'country_code' => 'US'], ['name' => 'Sadanga', 'country_code' => 'PH'], ['name' => 'Merrydale', 'country_code' => 'US'], ['name' => 'Polaniec', 'country_code' => 'PL'], ['name' => 'South Abington', 'country_code' => 'US'], ['name' => 'Castelnuovo di Magra', 'country_code' => 'IT'], ['name' => 'Alvarado', 'country_code' => 'CO'], ['name' => 'Ait Ikkou', 'country_code' => 'MA'], ['name' => 'Caister-on-Sea', 'country_code' => 'GB'], ['name' => 'Sheffield', 'country_code' => 'US'], ['name' => 'St. Albans', 'country_code' => 'US'], ['name' => 'Brejao', 'country_code' => 'BR'], ['name' => 'Msemrir', 'country_code' => 'MA'], ['name' => 'Pudozh', 'country_code' => 'RU'], ['name' => 'Minervino Murge', 'country_code' => 'IT'], ['name' => 'Pittsgrove', 'country_code' => 'US'], ['name' => 'Sao Sebastiao da Amoreira', 'country_code' => 'BR'], ['name' => 'Langenzersdorf', 'country_code' => 'AT'], ['name' => 'Rossano Veneto', 'country_code' => 'IT'], ['name' => 'Ouricangas', 'country_code' => 'BR'], ['name' => 'Rainworth', 'country_code' => 'GB'], ['name' => 'Koror', 'country_code' => 'PW'], ['name' => 'Septemvri', 'country_code' => 'BG'], ['name' => 'Rye', 'country_code' => 'AU'], ['name' => 'Santa Maria Xadani', 'country_code' => 'MX'], ['name' => 'Bad Schussenried', 'country_code' => 'DE'], ['name' => 'Landstuhl', 'country_code' => 'DE'], ['name' => 'O Hara', 'country_code' => 'US'], ['name' => 'Oakland', 'country_code' => 'US'], ['name' => 'San Isidro', 'country_code' => 'PH'], ['name' => 'West Haven-Sylvan', 'country_code' => 'US'], ['name' => 'Innsbrook', 'country_code' => 'US'], ['name' => 'Rodelas', 'country_code' => 'BR'], ['name' => 'Imilchil', 'country_code' => 'MA'], ['name' => 'Marilandia do Sul', 'country_code' => 'BR'], ['name' => 'Palhano', 'country_code' => 'BR'], ['name' => 'Bad Lauchstadt', 'country_code' => 'DE'], ['name' => 'Anaurilandia', 'country_code' => 'BR'], ['name' => 'Evergreen', 'country_code' => 'US'], ['name' => 'Kolbuszowa', 'country_code' => 'PL'], ['name' => 'Vif', 'country_code' => 'FR'], ['name' => 'San Joaquin', 'country_code' => 'MX'], ['name' => 'Bad Bergzabern', 'country_code' => 'DE'], ['name' => 'Logan', 'country_code' => 'US'], ['name' => 'Vrable', 'country_code' => 'SK'], ['name' => 'Gilgit', 'country_code' => 'PK'], ['name' => 'Nova Bassano', 'country_code' => 'BR'], ['name' => 'Ak ordat', 'country_code' => 'ER'], ['name' => 'El Chol', 'country_code' => 'GT'], ['name' => 'Nierstein', 'country_code' => 'DE'], ['name' => 'Rignano sull Arno', 'country_code' => 'IT'], ['name' => 'Piliscsaba', 'country_code' => 'HU'], ['name' => 'Ciudad Cerralvo', 'country_code' => 'MX'], ['name' => 'Lenox', 'country_code' => 'US'], ['name' => 'Gresham Park', 'country_code' => 'US'], ['name' => 'Foritz', 'country_code' => 'DE'], ['name' => 'Oulad Rahal', 'country_code' => 'MA'], ['name' => 'Loenen', 'country_code' => 'NL'], ['name' => 'Bang Mun Nak', 'country_code' => 'TH'], ['name' => 'Bom Jardim de Goias', 'country_code' => 'BR'], ['name' => 'Congonhinhas', 'country_code' => 'BR'], ['name' => 'Bussy', 'country_code' => 'CH'], ['name' => 'Bouhlou', 'country_code' => 'MA'], ['name' => 'Buda-Kashalyova', 'country_code' => 'BY'], ['name' => 'Neya', 'country_code' => 'RU'], ['name' => 'Barth', 'country_code' => 'DE'], ['name' => 'Iaboutene', 'country_code' => 'MA'], ['name' => 'Notre-Dame-des-Prairies', 'country_code' => 'CA'], ['name' => 'Polesworth', 'country_code' => 'GB'], ['name' => 'Vallecrosia', 'country_code' => 'IT'], ['name' => 'Weilmunster', 'country_code' => 'DE'], ['name' => 'Hamilton', 'country_code' => 'US'], ['name' => 'Brecon', 'country_code' => 'GB'], ['name' => 'Hemmoor', 'country_code' => 'DE'], ['name' => 'Erchie', 'country_code' => 'IT'], ['name' => 'West Perth', 'country_code' => 'CA'], ['name' => 'Vestigne', 'country_code' => 'IT'], ['name' => 'Poteau', 'country_code' => 'US'], ['name' => 'Tona', 'country_code' => 'ES'], ['name' => 'Ponta do Sol', 'country_code' => 'PT'], ['name' => 'Old Orchard Beach', 'country_code' => 'US'], ['name' => 'Taftanaz', 'country_code' => 'SY'], ['name' => 'Moe', 'country_code' => 'AU'], ['name' => 'Roetgen', 'country_code' => 'DE'], ['name' => 'Cabo Rojo', 'country_code' => 'PR'], ['name' => 'Agadir Melloul', 'country_code' => 'MA'], ['name' => 'Douglas', 'country_code' => 'US'], ['name' => 'New Prague', 'country_code' => 'US'], ['name' => 'Cheste', 'country_code' => 'ES'], ['name' => 'Lajedo do Tabocal', 'country_code' => 'BR'], ['name' => 'Vaujours', 'country_code' => 'FR'], ['name' => 'Sao Jose da Bela Vista', 'country_code' => 'BR'], ['name' => 'Rreshen', 'country_code' => 'AL'], ['name' => 'Pa Sang', 'country_code' => 'TH'], ['name' => 'Taragi', 'country_code' => 'JP'], ['name' => 'Jackson', 'country_code' => 'US'], ['name' => 'Soeda', 'country_code' => 'JP'], ['name' => 'Icaraima', 'country_code' => 'BR'], ['name' => 'Woodbury', 'country_code' => 'US'], ['name' => 'Kodiak', 'country_code' => 'US'], ['name' => 'Kirk of Shotts', 'country_code' => 'GB'], ['name' => 'Schwarzenbruck', 'country_code' => 'DE'], ['name' => 'Cordeiros', 'country_code' => 'BR'], ['name' => 'San Lorenzo de Descardazar', 'country_code' => 'ES'], ['name' => 'Pratapolis', 'country_code' => 'BR'], ['name' => 'Guichen', 'country_code' => 'FR'], ['name' => 'Deniliquin', 'country_code' => 'AU'], ['name' => 'Pibrac', 'country_code' => 'FR'], ['name' => 'Cuggiono', 'country_code' => 'IT'], ['name' => 'Guamiranga', 'country_code' => 'BR'], ['name' => 'Altenerding', 'country_code' => 'DE'], ['name' => 'Castelnuovo di Porto', 'country_code' => 'IT'], ['name' => 'Aliquippa', 'country_code' => 'US'], ['name' => 'Valle de Guadalupe', 'country_code' => 'MX'], ['name' => 'Bridgeport', 'country_code' => 'US'], ['name' => 'Grossbottwar', 'country_code' => 'DE'], ['name' => 'Crolles', 'country_code' => 'FR'], ['name' => 'Berkeley', 'country_code' => 'US'], ['name' => 'Dinxperlo', 'country_code' => 'NL'], ['name' => 'Efringen-Kirchen', 'country_code' => 'DE'], ['name' => 'Santa Barbara do Sul', 'country_code' => 'BR'], ['name' => 'Riverdale', 'country_code' => 'US'], ['name' => 'Phimai', 'country_code' => 'TH'], ['name' => 'Darley', 'country_code' => 'AU'], ['name' => 'Lower Swatara', 'country_code' => 'US'], ['name' => 'Coutras', 'country_code' => 'FR'], ['name' => 'Amarzgane', 'country_code' => 'MA'], ['name' => 'Shopokov', 'country_code' => 'KG'], ['name' => 'Pianella', 'country_code' => 'IT'], ['name' => 'Uhldingen-Muhlhofen', 'country_code' => 'DE'], ['name' => 'Zoeterwoude', 'country_code' => 'NL'], ['name' => 'Covington', 'country_code' => 'US'], ['name' => 'Barlin', 'country_code' => 'FR'], ['name' => 'Horice', 'country_code' => 'CZ'], ['name' => 'Dornstadt', 'country_code' => 'DE'], ['name' => 'Mkazi', 'country_code' => 'KM'], ['name' => 'Sonsbeck', 'country_code' => 'DE'], ['name' => 'Balsamo', 'country_code' => 'BR'], ['name' => 'Castelbuono', 'country_code' => 'IT'], ['name' => 'El Marmouta', 'country_code' => 'MA'], ['name' => 'Rhinelander', 'country_code' => 'US'], ['name' => 'Seabrook', 'country_code' => 'US'], ['name' => 'San Jacinto', 'country_code' => 'UY'], ['name' => 'Otaki', 'country_code' => 'JP'], ['name' => 'Chartres-de-Bretagne', 'country_code' => 'FR'], ['name' => 'Ville Platte', 'country_code' => 'US'], ['name' => 'Cavan Monaghan', 'country_code' => 'CA'], ['name' => 'Olmsted Falls', 'country_code' => 'US'], ['name' => 'Boville Ernica', 'country_code' => 'IT'], ['name' => 'Woodbridge', 'country_code' => 'US'], ['name' => 'Mansfeld', 'country_code' => 'DE'], ['name' => 'Glencoe', 'country_code' => 'US'], ['name' => 'Lyaskovets', 'country_code' => 'BG'], ['name' => 'Kryzhopil', 'country_code' => 'UA'], ['name' => 'Poisy', 'country_code' => 'FR'], ['name' => 'Orange Park', 'country_code' => 'US'], ['name' => 'Agnita', 'country_code' => 'RO'], ['name' => 'Murzzuschlag', 'country_code' => 'AT'], ['name' => 'Kumphawapi', 'country_code' => 'TH'], ['name' => 'Semily', 'country_code' => 'CZ'], ['name' => 'Krumovgrad', 'country_code' => 'BG'], ['name' => 'Guajeru', 'country_code' => 'BR'], ['name' => 'Canal Winchester', 'country_code' => 'US'], ['name' => 'Absecon', 'country_code' => 'US'], ['name' => 'Kappeln', 'country_code' => 'DE'], ['name' => 'Yacimiento Rio Turbio', 'country_code' => 'AR'], ['name' => 'Yang Talat', 'country_code' => 'TH'], ['name' => 'Mazingarbe', 'country_code' => 'FR'], ['name' => 'Glens Falls North', 'country_code' => 'US'], ['name' => 'Palm Beach', 'country_code' => 'US'], ['name' => 'Origgio', 'country_code' => 'IT'], ['name' => 'Venelles', 'country_code' => 'FR'], ['name' => 'Casarsa della Delizia', 'country_code' => 'IT'], ['name' => 'Soltsy', 'country_code' => 'RU'], ['name' => 'Caimanera', 'country_code' => 'CU'], ['name' => 'West Donegal', 'country_code' => 'US'], ['name' => 'Gorodovikovsk', 'country_code' => 'RU'], ['name' => 'Ban Na', 'country_code' => 'TH'], ['name' => 'Balatonalmadi', 'country_code' => 'HU'], ['name' => 'Rochford', 'country_code' => 'GB'], ['name' => 'Nam Som', 'country_code' => 'TH'], ['name' => 'Molbergen', 'country_code' => 'DE'], ['name' => 'Old Colwyn', 'country_code' => 'GB'], ['name' => 'Cedral', 'country_code' => 'BR'], ['name' => 'Dentergem', 'country_code' => 'BE'], ['name' => 'Topsham', 'country_code' => 'US'], ['name' => 'Tiqqi', 'country_code' => 'MA'], ['name' => 'Armazem', 'country_code' => 'BR'], ['name' => 'Pribor', 'country_code' => 'CZ'], ['name' => 'Saint-Jean-de-Monts', 'country_code' => 'FR'], ['name' => 'Nanzhangcheng', 'country_code' => 'CN'], ['name' => 'Kuhmo', 'country_code' => 'FI'], ['name' => 'Sidi Dahbi', 'country_code' => 'MA'], ['name' => 'Heek', 'country_code' => 'DE'], ['name' => 'Tordesillas', 'country_code' => 'ES'], ['name' => 'North Sarasota', 'country_code' => 'US'], ['name' => 'Tomazina', 'country_code' => 'BR'], ['name' => 'Hurtgenwald', 'country_code' => 'DE'], ['name' => 'Hassi Berkane', 'country_code' => 'MA'], ['name' => 'Iles', 'country_code' => 'CO'], ['name' => 'Flieden', 'country_code' => 'DE'], ['name' => 'Franklin', 'country_code' => 'US'], ['name' => 'Richmond Heights', 'country_code' => 'US'], ['name' => 'Redencao do Gurgueia', 'country_code' => 'BR'], ['name' => 'Oakville', 'country_code' => 'US'], ['name' => 'Kukrahill', 'country_code' => 'NI'], ['name' => 'Santa Barbara', 'country_code' => 'MX'], ['name' => 'Arnprior', 'country_code' => 'CA'], ['name' => 'Clanton', 'country_code' => 'US'], ['name' => 'Borsdorf', 'country_code' => 'DE'], ['name' => 'Conthey', 'country_code' => 'CH'], ['name' => 'Prata di Pordenone', 'country_code' => 'IT'], ['name' => 'Bad Sooden-Allendorf', 'country_code' => 'DE'], ['name' => 'Heel', 'country_code' => 'NL'], ['name' => 'Padul', 'country_code' => 'ES'], ['name' => 'Roznov', 'country_code' => 'RO'], ['name' => 'Mariinskiy Posad', 'country_code' => 'RU'], ['name' => 'Tirschenreuth', 'country_code' => 'DE'], ['name' => 'Kuppenheim', 'country_code' => 'DE'], ['name' => 'Belozersk', 'country_code' => 'RU'], ['name' => 'Saint-Marcellin', 'country_code' => 'FR'], ['name' => 'Araguacu', 'country_code' => 'BR'], ['name' => 'Iernut', 'country_code' => 'RO'], ['name' => 'Zapatoca', 'country_code' => 'CO'], ['name' => 'Airmont', 'country_code' => 'US'], ['name' => 'Quakertown', 'country_code' => 'US'], ['name' => 'Walmer', 'country_code' => 'GB'], ['name' => 'Hausham', 'country_code' => 'DE'], ['name' => 'Tleta Taghramt', 'country_code' => 'MA'], ['name' => 'Kleinostheim', 'country_code' => 'DE'], ['name' => 'Sodankyla', 'country_code' => 'FI'], ['name' => 'Jacou', 'country_code' => 'FR'], ['name' => 'Les Angles', 'country_code' => 'FR'], ['name' => 'Esopus', 'country_code' => 'US'], ['name' => 'Castiglione Olona', 'country_code' => 'IT'], ['name' => 'Smiths Falls', 'country_code' => 'CA'], ['name' => 'Monson', 'country_code' => 'US'], ['name' => 'Citrus Springs', 'country_code' => 'US'], ['name' => 'Villamediana de Iregua', 'country_code' => 'ES'], ['name' => 'San Esteban', 'country_code' => 'PH'], ['name' => 'Miyada', 'country_code' => 'JP'], ['name' => 'Seebad Heringsdorf', 'country_code' => 'DE'], ['name' => 'Bad Rothenfelde', 'country_code' => 'DE'], ['name' => 'Jarny', 'country_code' => 'FR'], ['name' => 'Monte San Savino', 'country_code' => 'IT'], ['name' => 'Azandarian', 'country_code' => 'IR'], ['name' => 'Lubuagan', 'country_code' => 'PH'], ['name' => 'Redovan', 'country_code' => 'ES'], ['name' => 'Mucheln', 'country_code' => 'DE'], ['name' => 'Villas', 'country_code' => 'US'], ['name' => 'Falaise', 'country_code' => 'FR'], ['name' => 'Jesus Nazareno', 'country_code' => 'AR'], ['name' => 'Berching', 'country_code' => 'DE'], ['name' => 'Tagapul-an', 'country_code' => 'PH'], ['name' => 'Frankfort Square', 'country_code' => 'US'], ['name' => 'Monsenhor Paulo', 'country_code' => 'BR'], ['name' => 'Santa Isabel do Ivai', 'country_code' => 'BR'], ['name' => 'Upholland', 'country_code' => 'GB'], ['name' => 'Pont-l Abbe', 'country_code' => 'FR'], ['name' => 'Wharton', 'country_code' => 'US'], ['name' => 'Redlands', 'country_code' => 'US'], ['name' => 'Dionisio', 'country_code' => 'BR'], ['name' => 'Stillwater', 'country_code' => 'US'], ['name' => 'Hajdudorog', 'country_code' => 'HU'], ['name' => 'South Kensington', 'country_code' => 'US'], ['name' => 'Calbe', 'country_code' => 'DE'], ['name' => 'Tashir', 'country_code' => 'AM'], ['name' => 'Llagostera', 'country_code' => 'ES'], ['name' => 'Fara Gera d Adda', 'country_code' => 'IT'], ['name' => 'Canonsburg', 'country_code' => 'US'], ['name' => 'Sandrigo', 'country_code' => 'IT'], ['name' => 'Edgewood', 'country_code' => 'US'], ['name' => 'Seyssins', 'country_code' => 'FR'], ['name' => 'Graham', 'country_code' => 'US'], ['name' => 'Tifra', 'country_code' => 'DZ'], ['name' => 'Solarino', 'country_code' => 'IT'], ['name' => 'Hainichen', 'country_code' => 'DE'], ['name' => 'Serra dos Aimores', 'country_code' => 'BR'], ['name' => 'New Albany', 'country_code' => 'US'], ['name' => 'Clarendon Hills', 'country_code' => 'US'], ['name' => 'Needles', 'country_code' => 'US'], ['name' => 'Hausjarvi', 'country_code' => 'FI'], ['name' => 'Uzes', 'country_code' => 'FR'], ['name' => 'Forst', 'country_code' => 'DE'], ['name' => 'Saint-Jean-d Illac', 'country_code' => 'FR'], ['name' => 'Porkhov', 'country_code' => 'RU'], ['name' => 'Amalou', 'country_code' => 'DZ'], ['name' => 'Vasarosnameny', 'country_code' => 'HU'], ['name' => 'Pino Troinese', 'country_code' => 'IT'], ['name' => 'Norton Canes', 'country_code' => 'GB'], ['name' => 'Nossa Senhora dos Remedios', 'country_code' => 'BR'], ['name' => 'Roverbella', 'country_code' => 'IT'], ['name' => 'Stainz', 'country_code' => 'AT'], ['name' => 'Hernani', 'country_code' => 'PH'], ['name' => 'Ibirapua', 'country_code' => 'BR'], ['name' => 'Junin', 'country_code' => 'CO'], ['name' => 'Obertraubling', 'country_code' => 'DE'], ['name' => 'Ripponden', 'country_code' => 'GB'], ['name' => 'Santa Lucia', 'country_code' => 'BR'], ['name' => 'Steti', 'country_code' => 'CZ'], ['name' => 'Volchansk', 'country_code' => 'RU'], ['name' => 'Belo Pole', 'country_code' => 'BG'], ['name' => 'Lincoln', 'country_code' => 'NZ'], ['name' => 'Gremyachinsk', 'country_code' => 'RU'], ['name' => 'Hemmingen', 'country_code' => 'DE'], ['name' => 'Pitman', 'country_code' => 'US'], ['name' => 'Rock Falls', 'country_code' => 'US'], ['name' => 'Baraolt', 'country_code' => 'RO'], ['name' => 'Sao Vicente do Sul', 'country_code' => 'BR'], ['name' => 'Motta Visconti', 'country_code' => 'IT'], ['name' => 'Heikendorf', 'country_code' => 'DE'], ['name' => 'Palazzolo Acreide', 'country_code' => 'IT'], ['name' => 'Perkasie', 'country_code' => 'US'], ['name' => 'Clayton', 'country_code' => 'US'], ['name' => 'Moranbah', 'country_code' => 'AU'], ['name' => 'Forbes', 'country_code' => 'AU'], ['name' => 'Guiricema', 'country_code' => 'BR'], ['name' => 'Cortez', 'country_code' => 'US'], ['name' => 'Sileby', 'country_code' => 'GB'], ['name' => 'Bembibre', 'country_code' => 'ES'], ['name' => 'Calvisano', 'country_code' => 'IT'], ['name' => 'Evron', 'country_code' => 'FR'], ['name' => 'Princeton', 'country_code' => 'US'], ['name' => 'Saint-Renan', 'country_code' => 'FR'], ['name' => 'Rava-Rus ka', 'country_code' => 'UA'], ['name' => 'Olney', 'country_code' => 'US'], ['name' => 'Sanger', 'country_code' => 'US'], ['name' => 'Barntrup', 'country_code' => 'DE'], ['name' => 'Hadleigh', 'country_code' => 'GB'], ['name' => 'Ban Buak Khang', 'country_code' => 'TH'], ['name' => 'Cape St. Claire', 'country_code' => 'US'], ['name' => 'Reichelsheim', 'country_code' => 'DE'], ['name' => 'Steinheim am Albuch', 'country_code' => 'DE'], ['name' => 'Modelu', 'country_code' => 'RO'], ['name' => 'Koscielisko', 'country_code' => 'PL'], ['name' => 'Solotvyno', 'country_code' => 'UA'], ['name' => 'Paray-Vieille-Poste', 'country_code' => 'FR'], ['name' => 'Seneca Falls', 'country_code' => 'US'], ['name' => 'Kirby', 'country_code' => 'US'], ['name' => 'Pont-Rouge', 'country_code' => 'CA'], ['name' => 'Staufenberg', 'country_code' => 'DE'], ['name' => 'El Corrillo', 'country_code' => 'ES'], ['name' => 'Chamonix-Mont-Blanc', 'country_code' => 'FR'], ['name' => 'Vado Ligure', 'country_code' => 'IT'], ['name' => 'Tasnad', 'country_code' => 'RO'], ['name' => 'Szeghalom', 'country_code' => 'HU'], ['name' => 'Furstenfeld', 'country_code' => 'AT'], ['name' => 'Tlanalapa', 'country_code' => 'MX'], ['name' => 'Smizany', 'country_code' => 'SK'], ['name' => 'Neuenkirchen', 'country_code' => 'DE'], ['name' => 'Glenwood', 'country_code' => 'US'], ['name' => 'Maryborough', 'country_code' => 'AU'], ['name' => 'Dumbarton', 'country_code' => 'US'], ['name' => 'Grunheide', 'country_code' => 'DE'], ['name' => 'Garden City', 'country_code' => 'US'], ['name' => 'Alvorada do Norte', 'country_code' => 'BR'], ['name' => 'Kirchen', 'country_code' => 'DE'], ['name' => 'Baillargues', 'country_code' => 'FR'], ['name' => 'Monte Urano', 'country_code' => 'IT'], ['name' => 'Crestline', 'country_code' => 'US'], ['name' => 'Gyumai', 'country_code' => 'CN'], ['name' => 'Jerseyville', 'country_code' => 'US'], ['name' => 'Corella', 'country_code' => 'PH'], ['name' => 'Piranguinho', 'country_code' => 'BR'], ['name' => 'Bessancourt', 'country_code' => 'FR'], ['name' => 'Champlain', 'country_code' => 'CA'], ['name' => 'Perg', 'country_code' => 'AT'], ['name' => 'Chiusi', 'country_code' => 'IT'], ['name' => 'Citrusdal', 'country_code' => 'ZA'], ['name' => 'New Scotland', 'country_code' => 'US'], ['name' => 'Spello', 'country_code' => 'IT'], ['name' => 'Weida', 'country_code' => 'DE'], ['name' => 'Ulstein', 'country_code' => 'NO'], ['name' => 'Thompsonville', 'country_code' => 'US'], ['name' => 'Bersenbruck', 'country_code' => 'DE'], ['name' => 'Castelnovo di Sotto', 'country_code' => 'IT'], ['name' => 'Pegomas', 'country_code' => 'FR'], ['name' => 'Feldkirchen', 'country_code' => 'DE'], ['name' => 'Mrakovo', 'country_code' => 'RU'], ['name' => 'Secovce', 'country_code' => 'SK'], ['name' => 'Ronciglione', 'country_code' => 'IT'], ['name' => 'Babeni', 'country_code' => 'RO'], ['name' => 'Nevada', 'country_code' => 'US'], ['name' => 'Bonnybridge', 'country_code' => 'GB'], ['name' => 'Tuneiras do Oeste', 'country_code' => 'BR'], ['name' => 'Coaticook', 'country_code' => 'CA'], ['name' => 'Des Peres', 'country_code' => 'US'], ['name' => 'Raunds', 'country_code' => 'GB'], ['name' => 'Tangara', 'country_code' => 'BR'], ['name' => 'Perryville', 'country_code' => 'US'], ['name' => 'Corrales', 'country_code' => 'US'], ['name' => 'London Grove', 'country_code' => 'US'], ['name' => 'Tibro', 'country_code' => 'SE'], ['name' => 'Sao Miguel', 'country_code' => 'BR'], ['name' => 'Kortessem', 'country_code' => 'BE'], ['name' => 'Fort Knox', 'country_code' => 'US'], ['name' => 'Greenville', 'country_code' => 'US'], ['name' => 'Georgetown', 'country_code' => 'US'], ['name' => 'Nakhon Chai Si', 'country_code' => 'TH'], ['name' => 'Park Ridge', 'country_code' => 'US'], ['name' => 'Fern Park', 'country_code' => 'US'], ['name' => 'Uglegorsk', 'country_code' => 'RU'], ['name' => 'San Gavino Monreale', 'country_code' => 'IT'], ['name' => 'Edgewater Park', 'country_code' => 'US'], ['name' => 'Santana do Manhuacu', 'country_code' => 'BR'], ['name' => 'Toro', 'country_code' => 'ES'], ['name' => 'Villanueva de Cordoba', 'country_code' => 'ES'], ['name' => 'Chikhli', 'country_code' => 'IN'], ['name' => 'Ueckermunde', 'country_code' => 'DE'], ['name' => 'Altavilla Milicia', 'country_code' => 'IT'], ['name' => 'La Colle-sur-Loup', 'country_code' => 'FR'], ['name' => 'Virginia', 'country_code' => 'BR'], ['name' => 'Pickering', 'country_code' => 'GB'], ['name' => 'Waltham Cross', 'country_code' => 'GB'], ['name' => 'Kirn', 'country_code' => 'DE'], ['name' => 'Monte Alegre de Goias', 'country_code' => 'BR'], ['name' => 'Nazareno', 'country_code' => 'BR'], ['name' => 'Rutland', 'country_code' => 'US'], ['name' => 'Montesano', 'country_code' => 'US'], ['name' => 'Zomergem', 'country_code' => 'BE'], ['name' => 'Bicaz', 'country_code' => 'RO'], ['name' => 'Gubden', 'country_code' => 'RU'], ['name' => 'Pleasant Hill', 'country_code' => 'US'], ['name' => 'Vallo della Lucania', 'country_code' => 'IT'], ['name' => 'Mels', 'country_code' => 'CH'], ['name' => 'Mata Verde', 'country_code' => 'BR'], ['name' => 'Aureilhan', 'country_code' => 'FR'], ['name' => 'Perl', 'country_code' => 'DE'], ['name' => 'Andalusia', 'country_code' => 'US'], ['name' => 'Zoutleeuw', 'country_code' => 'BE'], ['name' => 'Capitolio', 'country_code' => 'BR'], ['name' => 'Ballsh', 'country_code' => 'AL'], ['name' => 'El Espinal', 'country_code' => 'MX'], ['name' => 'Cerveny Kostelec', 'country_code' => 'CZ'], ['name' => 'Busk', 'country_code' => 'UA'], ['name' => 'Polegate', 'country_code' => 'GB'], ['name' => 'Grossraschen', 'country_code' => 'DE'], ['name' => 'Barvynkove', 'country_code' => 'UA'], ['name' => 'Fermignano', 'country_code' => 'IT'], ['name' => 'Nogara', 'country_code' => 'IT'], ['name' => 'Newstead', 'country_code' => 'US'], ['name' => 'Scott', 'country_code' => 'US'], ['name' => 'Nadudvar', 'country_code' => 'HU'], ['name' => 'Harlington', 'country_code' => 'GB'], ['name' => 'Westampton', 'country_code' => 'US'], ['name' => 'Minto', 'country_code' => 'CA'], ['name' => 'Dunafoldvar', 'country_code' => 'HU'], ['name' => 'Zoppola', 'country_code' => 'IT'], ['name' => 'Binfield', 'country_code' => 'GB'], ['name' => 'Incline Village', 'country_code' => 'US'], ['name' => 'Glenshaw', 'country_code' => 'US'], ['name' => 'Mount Pleasant', 'country_code' => 'US'], ['name' => 'Cresskill', 'country_code' => 'US'], ['name' => 'Earlimart', 'country_code' => 'US'], ['name' => 'Morden', 'country_code' => 'CA'], ['name' => 'Hakubacho', 'country_code' => 'JP'], ['name' => 'Hawthorn Woods', 'country_code' => 'US'], ['name' => 'Cologna Veneta', 'country_code' => 'IT'], ['name' => 'Unterwellenborn', 'country_code' => 'DE'], ['name' => 'Ferreira do Zezere', 'country_code' => 'PT'], ['name' => 'La Libertad', 'country_code' => 'GT'], ['name' => 'Lakhzazra', 'country_code' => 'MA'], ['name' => 'Caerano di San Marco', 'country_code' => 'IT'], ['name' => 'Reocin', 'country_code' => 'ES'], ['name' => 'Bientina', 'country_code' => 'IT'], ['name' => 'Reginopolis', 'country_code' => 'BR'], ['name' => 'Middlebury', 'country_code' => 'US'], ['name' => 'Nishiowa', 'country_code' => 'JP'], ['name' => 'Tihna al Jabal', 'country_code' => 'EG'], ['name' => 'Marlborough', 'country_code' => 'US'], ['name' => 'Vigliano Biellese', 'country_code' => 'IT'], ['name' => 'Marcoussis', 'country_code' => 'FR'], ['name' => 'Klingenthal', 'country_code' => 'DE'], ['name' => 'Comendador Levy Gasparian', 'country_code' => 'BR'], ['name' => 'Santhia', 'country_code' => 'IT'], ['name' => 'Bushtyno', 'country_code' => 'UA'], ['name' => 'Hoquiam', 'country_code' => 'US'], ['name' => 'Lambarkiyine', 'country_code' => 'MA'], ['name' => 'Sortino', 'country_code' => 'IT'], ['name' => 'Antonio Carlos', 'country_code' => 'BR'], ['name' => 'Penkridge', 'country_code' => 'GB'], ['name' => 'Brigantine', 'country_code' => 'US'], ['name' => 'Teterow', 'country_code' => 'DE'], ['name' => 'Elimaki', 'country_code' => 'FI'], ['name' => 'Dobrada', 'country_code' => 'BR'], ['name' => 'Le Poire-sur-Vie', 'country_code' => 'FR'], ['name' => 'Fishersville', 'country_code' => 'US'], ['name' => 'Kings Grant', 'country_code' => 'US'], ['name' => 'Concordia sulla Secchia', 'country_code' => 'IT'], ['name' => 'Kennedale', 'country_code' => 'US'], ['name' => 'Brightlingsea', 'country_code' => 'GB'], ['name' => 'Biederitz', 'country_code' => 'DE'], ['name' => 'Usiacuri', 'country_code' => 'CO'], ['name' => 'Gross Kreutz', 'country_code' => 'DE'], ['name' => 'Lienen', 'country_code' => 'DE'], ['name' => 'Andrushivka', 'country_code' => 'UA'], ['name' => 'San Sebastian', 'country_code' => 'PR'], ['name' => 'Matawan', 'country_code' => 'US'], ['name' => 'Premnitz', 'country_code' => 'DE'], ['name' => 'Monahans', 'country_code' => 'US'], ['name' => 'Elz', 'country_code' => 'DE'], ['name' => 'Skewen', 'country_code' => 'GB'], ['name' => 'Grossenluder', 'country_code' => 'DE'], ['name' => 'Bigastro', 'country_code' => 'ES'], ['name' => 'San Sperate', 'country_code' => 'IT'], ['name' => 'Iksane', 'country_code' => 'MA'], ['name' => 'Dorgali', 'country_code' => 'IT'], ['name' => 'Santa Eulalia', 'country_code' => 'MX'], ['name' => 'Plabennec', 'country_code' => 'FR'], ['name' => 'Springwood', 'country_code' => 'AU'], ['name' => 'Ferrandina', 'country_code' => 'IT'], ['name' => 'Nefasit', 'country_code' => 'ER'], ['name' => 'Langueux', 'country_code' => 'FR'], ['name' => 'Adelsdorf', 'country_code' => 'DE'], ['name' => 'North Madison', 'country_code' => 'US'], ['name' => 'Bang Len', 'country_code' => 'TH'], ['name' => 'Laishevo', 'country_code' => 'RU'], ['name' => 'Sarzeau', 'country_code' => 'FR'], ['name' => 'Oppenheim', 'country_code' => 'DE'], ['name' => 'Ustyuzhna', 'country_code' => 'RU'], ['name' => 'Prairie du Sac', 'country_code' => 'US'], ['name' => 'Yasinia', 'country_code' => 'UA'], ['name' => 'Nazaria', 'country_code' => 'BR'], ['name' => 'Lutzen', 'country_code' => 'DE'], ['name' => 'La Belleza', 'country_code' => 'CO'], ['name' => 'York', 'country_code' => 'US'], ['name' => 'Oulad Khallouf', 'country_code' => 'MA'], ['name' => 'Amapa', 'country_code' => 'BR'], ['name' => 'Hampstead', 'country_code' => 'US'], ['name' => 'Salem', 'country_code' => 'US'], ['name' => 'Highfields', 'country_code' => 'AU'], ['name' => 'Paddock Wood', 'country_code' => 'GB'], ['name' => 'Canford Cliffs', 'country_code' => 'GB'], ['name' => 'Byureghavan', 'country_code' => 'AM'], ['name' => 'Colmeia', 'country_code' => 'BR'], ['name' => 'Saint-Remy-les-Chevreuse', 'country_code' => 'FR'], ['name' => 'Gavorrano', 'country_code' => 'IT'], ['name' => 'Hyrum', 'country_code' => 'US'], ['name' => 'Lipki', 'country_code' => 'RU'], ['name' => 'Kahl am Main', 'country_code' => 'DE'], ['name' => 'Richlands', 'country_code' => 'US'], ['name' => 'Ittiri', 'country_code' => 'IT'], ['name' => 'Schieder-Schwalenberg', 'country_code' => 'DE'], ['name' => 'Vorden', 'country_code' => 'NL'], ['name' => 'Ladue', 'country_code' => 'US'], ['name' => 'Rockland', 'country_code' => 'US'], ['name' => 'Caerleon', 'country_code' => 'GB'], ['name' => 'Verkhoturye', 'country_code' => 'RU'], ['name' => 'Simmern', 'country_code' => 'DE'], ['name' => 'Kosiv', 'country_code' => 'UA'], ['name' => 'Takieta', 'country_code' => 'NE'], ['name' => 'Alamo Heights', 'country_code' => 'US'], ['name' => 'Leporano', 'country_code' => 'IT'], ['name' => 'Sawang Daen Din', 'country_code' => 'TH'], ['name' => 'Le Grau-du-Roi', 'country_code' => 'FR'], ['name' => 'Schuylkill', 'country_code' => 'US'], ['name' => 'Reserve', 'country_code' => 'US'], ['name' => 'Takaharu', 'country_code' => 'JP'], ['name' => 'Osternienburg', 'country_code' => 'DE'], ['name' => 'Lauta', 'country_code' => 'DE'], ['name' => 'Camutanga', 'country_code' => 'BR'], ['name' => 'Orting', 'country_code' => 'US'], ['name' => 'Ponte di Piave', 'country_code' => 'IT'], ['name' => 'Tuba City', 'country_code' => 'US'], ['name' => 'Mono', 'country_code' => 'CA'], ['name' => 'Quirino', 'country_code' => 'PH'], ['name' => 'Rulzheim', 'country_code' => 'DE'], ['name' => 'Untergruppenbach', 'country_code' => 'DE'], ['name' => 'Wattens', 'country_code' => 'AT'], ['name' => 'Francisco Santos', 'country_code' => 'BR'], ['name' => 'Cabezon de la Sal', 'country_code' => 'ES'], ['name' => 'Kiuruvesi', 'country_code' => 'FI'], ['name' => 'Martins Soares', 'country_code' => 'BR'], ['name' => 'Muzo', 'country_code' => 'CO'], ['name' => 'Signal Mountain', 'country_code' => 'US'], ['name' => 'Fairmount', 'country_code' => 'US'], ['name' => 'Goundam', 'country_code' => 'ML'], ['name' => 'Nonnweiler', 'country_code' => 'DE'], ['name' => 'Riverside', 'country_code' => 'US'], ['name' => 'Corning', 'country_code' => 'US'], ['name' => 'Mauleon', 'country_code' => 'FR'], ['name' => 'Geroskipou', 'country_code' => 'CY'], ['name' => 'Orrville', 'country_code' => 'US'], ['name' => 'Niederwerrn', 'country_code' => 'DE'], ['name' => 'Aigues-Mortes', 'country_code' => 'FR'], ['name' => 'East Brandywine', 'country_code' => 'US'], ['name' => 'Foyos', 'country_code' => 'ES'], ['name' => 'Itaucu', 'country_code' => 'BR'], ['name' => 'Riacho dos Cavalos', 'country_code' => 'BR'], ['name' => 'Elsmere', 'country_code' => 'US'], ['name' => 'Aksakovo', 'country_code' => 'BG'], ['name' => 'Farmville', 'country_code' => 'US'], ['name' => 'Schnaittach', 'country_code' => 'DE'], ['name' => 'Wissen', 'country_code' => 'DE'], ['name' => 'Bovezzo', 'country_code' => 'IT'], ['name' => 'Bompas', 'country_code' => 'FR'], ['name' => 'Tanquinho', 'country_code' => 'BR'], ['name' => 'Feurs', 'country_code' => 'FR'], ['name' => 'Saint-Maixent-l Ecole', 'country_code' => 'FR'], ['name' => 'Long Hill', 'country_code' => 'US'], ['name' => 'Sheridan', 'country_code' => 'US'], ['name' => 'Innisfail', 'country_code' => 'AU'], ['name' => 'Hengelo', 'country_code' => 'NL'], ['name' => 'Torre de Moncorvo', 'country_code' => 'PT'], ['name' => 'Sanatoga', 'country_code' => 'US'], ['name' => 'Bad Endorf', 'country_code' => 'DE'], ['name' => 'Tuparendi', 'country_code' => 'BR'], ['name' => 'Borgentreich', 'country_code' => 'DE'], ['name' => 'Richmond', 'country_code' => 'GB'], ['name' => 'Tasso Fragoso', 'country_code' => 'BR'], ['name' => 'Cagli', 'country_code' => 'IT'], ['name' => 'Birkenwerder', 'country_code' => 'DE'], ['name' => 'Simeonovgrad', 'country_code' => 'BG'], ['name' => 'Kalifornsky', 'country_code' => 'US'], ['name' => 'Strathaven', 'country_code' => 'GB'], ['name' => 'Willowbrook', 'country_code' => 'US'], ['name' => 'Isaias Coelho', 'country_code' => 'BR'], ['name' => 'Itamari', 'country_code' => 'BR'], ['name' => 'Olleria', 'country_code' => 'ES'], ['name' => 'Whitworth', 'country_code' => 'GB'], ['name' => 'Verkhniy Mamon', 'country_code' => 'RU'], ['name' => 'Springfield', 'country_code' => 'US'], ['name' => 'Green Cove Springs', 'country_code' => 'US'], ['name' => 'Solebury', 'country_code' => 'US'], ['name' => 'Caprino Veronese', 'country_code' => 'IT'], ['name' => 'White Horse', 'country_code' => 'US'], ['name' => 'Meltham', 'country_code' => 'GB'], ['name' => 'Perry Heights', 'country_code' => 'US'], ['name' => 'Kellinghusen', 'country_code' => 'DE'], ['name' => 'Poytya', 'country_code' => 'FI'], ['name' => 'Rhos-on-Sea', 'country_code' => 'GB'], ['name' => 'Urom', 'country_code' => 'HU'], ['name' => 'Lake Villa', 'country_code' => 'US'], ['name' => 'Joia', 'country_code' => 'BR'], ['name' => 'Colditz', 'country_code' => 'DE'], ['name' => 'Guntersville', 'country_code' => 'US'], ['name' => 'Krupki', 'country_code' => 'BY'], ['name' => 'Grosskrotzenburg', 'country_code' => 'DE'], ['name' => 'Oualidia', 'country_code' => 'MA'], ['name' => 'Karmaskaly', 'country_code' => 'RU'], ['name' => 'Montvale', 'country_code' => 'US'], ['name' => 'Rumlang', 'country_code' => 'CH'], ['name' => 'Aspen', 'country_code' => 'US'], ['name' => 'Tunga', 'country_code' => 'PH'], ['name' => 'Ione', 'country_code' => 'US'], ['name' => 'Hoeven', 'country_code' => 'NL'], ['name' => 'Joane', 'country_code' => 'PT'], ['name' => 'Litchfield', 'country_code' => 'US'], ['name' => 'Paverama', 'country_code' => 'BR'], ['name' => 'Sanluri', 'country_code' => 'IT'], ['name' => 'Brooksville', 'country_code' => 'US'], ['name' => 'Buhlertal', 'country_code' => 'DE'], ['name' => 'Riverside', 'country_code' => 'US'], ['name' => 'Wyoming', 'country_code' => 'US'], ['name' => 'Staufen im Breisgau', 'country_code' => 'DE'], ['name' => 'West Frankfort', 'country_code' => 'US'], ['name' => 'Yasnohirka', 'country_code' => 'UA'], ['name' => 'Novoselitskoye', 'country_code' => 'RU'], ['name' => 'Non Sang', 'country_code' => 'TH'], ['name' => 'Mamurras', 'country_code' => 'AL'], ['name' => 'Iwaizumi', 'country_code' => 'JP'], ['name' => 'Pochinok', 'country_code' => 'RU'], ['name' => 'Indian Harbour Beach', 'country_code' => 'US'], ['name' => 'Dzhebel', 'country_code' => 'BG'], ['name' => 'Helmbrechts', 'country_code' => 'DE'], ['name' => 'Lake Park', 'country_code' => 'US'], ['name' => 'Sala Bolognese', 'country_code' => 'IT'], ['name' => 'Murten', 'country_code' => 'CH'], ['name' => 'Marcolandia', 'country_code' => 'BR'], ['name' => 'Lanco', 'country_code' => 'CL'], ['name' => 'Kildare', 'country_code' => 'IE'], ['name' => 'Lucas', 'country_code' => 'US'], ['name' => 'Japaratinga', 'country_code' => 'BR'], ['name' => 'Araponga', 'country_code' => 'BR'], ['name' => 'Piedmont', 'country_code' => 'US'], ['name' => 'Dubovskoye', 'country_code' => 'RU'], ['name' => 'Minusio', 'country_code' => 'CH'], ['name' => 'Franklin', 'country_code' => 'US'], ['name' => 'Itaquara', 'country_code' => 'BR'], ['name' => 'Talnique', 'country_code' => 'SV'], ['name' => 'Talambote', 'country_code' => 'MA'], ['name' => 'Bad Grund', 'country_code' => 'DE'], ['name' => 'Chumsaeng', 'country_code' => 'TH'], ['name' => 'Canet de Berenguer', 'country_code' => 'ES'], ['name' => 'Habo', 'country_code' => 'SE'], ['name' => 'Moordrecht', 'country_code' => 'NL'], ['name' => 'Grossbeeren', 'country_code' => 'DE'], ['name' => 'Obluchye', 'country_code' => 'RU'], ['name' => 'Conover', 'country_code' => 'US'], ['name' => 'Mournies', 'country_code' => 'GR'], ['name' => 'Gingelom', 'country_code' => 'BE'], ['name' => 'Dulovo', 'country_code' => 'BG'], ['name' => 'Padron', 'country_code' => 'ES'], ['name' => 'Wetumpka', 'country_code' => 'US'], ['name' => 'Port-Saint-Louis-du-Rhone', 'country_code' => 'FR'], ['name' => 'Lossnitz', 'country_code' => 'DE'], ['name' => 'Vietri sul Mare', 'country_code' => 'IT'], ['name' => 'Ladysmith', 'country_code' => 'CA'], ['name' => 'Conkal', 'country_code' => 'MX'], ['name' => 'Laitila', 'country_code' => 'FI'], ['name' => 'Divjake', 'country_code' => 'AL'], ['name' => 'East Grand Forks', 'country_code' => 'US'], ['name' => 'Mansfield', 'country_code' => 'US'], ['name' => 'Bridgewater', 'country_code' => 'CA'], ['name' => 'Ottobeuren', 'country_code' => 'DE'], ['name' => 'Decimomannu', 'country_code' => 'IT'], ['name' => 'Janze', 'country_code' => 'FR'], ['name' => 'Agua Blanca Iturbide', 'country_code' => 'MX'], ['name' => 'Guaracai', 'country_code' => 'BR'], ['name' => 'Park Hills', 'country_code' => 'US'], ['name' => 'Yarmouth', 'country_code' => 'US'], ['name' => 'Nova Gloria', 'country_code' => 'BR'], ['name' => 'Messkirch', 'country_code' => 'DE'], ['name' => 'Libertad', 'country_code' => 'PH'], ['name' => 'Laurel', 'country_code' => 'US'], ['name' => 'Edgemere', 'country_code' => 'US'], ['name' => 'Cullompton', 'country_code' => 'GB'], ['name' => 'Ilha das Flores', 'country_code' => 'BR'], ['name' => 'Freistadt', 'country_code' => 'AT'], ['name' => 'Southampton', 'country_code' => 'US'], ['name' => 'Berg', 'country_code' => 'DE'], ['name' => 'Laanoussar', 'country_code' => 'MA'], ['name' => 'Ergue-Gaberic', 'country_code' => 'FR'], ['name' => 'Mooroopna', 'country_code' => 'AU'], ['name' => 'Dirksland', 'country_code' => 'NL'], ['name' => 'San Damiano d Asti', 'country_code' => 'IT'], ['name' => 'Morrisville', 'country_code' => 'US'], ['name' => 'Rawlins', 'country_code' => 'US'], ['name' => 'Tizoual', 'country_code' => 'MA'], ['name' => 'Legazpia', 'country_code' => 'ES'], ['name' => 'Negresti', 'country_code' => 'RO'], ['name' => 'Saint-Gilles-Croix-de-Vie', 'country_code' => 'FR'], ['name' => 'Narrabri', 'country_code' => 'AU'], ['name' => 'Succasunna', 'country_code' => 'US'], ['name' => 'Ait Ali Mimoune', 'country_code' => 'MA'], ['name' => 'Ouderkerk aan de Amstel', 'country_code' => 'NL'], ['name' => 'Plumsted', 'country_code' => 'US'], ['name' => 'Perryton', 'country_code' => 'US'], ['name' => 'Yatton', 'country_code' => 'GB'], ['name' => 'Bordesholm', 'country_code' => 'DE'], ['name' => 'Closter', 'country_code' => 'US'], ['name' => 'Le Loroux-Bottereau', 'country_code' => 'FR'], ['name' => 'Barra de Sao Miguel', 'country_code' => 'BR'], ['name' => 'St. Johns', 'country_code' => 'US'], ['name' => 'Trooz', 'country_code' => 'BE'], ['name' => 'Terrace Heights', 'country_code' => 'US'], ['name' => 'Siegsdorf', 'country_code' => 'DE'], ['name' => 'Worrstadt', 'country_code' => 'DE'], ['name' => 'Frostburg', 'country_code' => 'US'], ['name' => 'Kingscliff', 'country_code' => 'AU'], ['name' => 'Moritzburg', 'country_code' => 'DE'], ['name' => 'Moulay Bou azza', 'country_code' => 'MA'], ['name' => 'Lypovets', 'country_code' => 'UA'], ['name' => 'Dunavarsany', 'country_code' => 'HU'], ['name' => 'Boured', 'country_code' => 'MA'], ['name' => 'Le Soler', 'country_code' => 'FR'], ['name' => 'Rolesville', 'country_code' => 'US'], ['name' => 'Stra', 'country_code' => 'IT'], ['name' => 'Sorbiers', 'country_code' => 'FR'], ['name' => 'Biryusinsk', 'country_code' => 'RU'], ['name' => 'Bo ston', 'country_code' => 'UZ'], ['name' => 'Mina Clavero', 'country_code' => 'AR'], ['name' => 'Viechtach', 'country_code' => 'DE'], ['name' => 'Heuchelheim', 'country_code' => 'DE'], ['name' => 'Turkeve', 'country_code' => 'HU'], ['name' => 'Neuenburg', 'country_code' => 'DE'], ['name' => 'Booneville', 'country_code' => 'US'], ['name' => 'Sallisaw', 'country_code' => 'US'], ['name' => 'Fusignano', 'country_code' => 'IT'], ['name' => 'Vohburg an der Donau', 'country_code' => 'DE'], ['name' => 'East York', 'country_code' => 'US'], ['name' => 'Cabrils', 'country_code' => 'ES'], ['name' => 'Owani', 'country_code' => 'JP'], ['name' => 'Herencia', 'country_code' => 'ES'], ['name' => 'Fabrica di Roma', 'country_code' => 'IT'], ['name' => 'Sitka', 'country_code' => 'US'], ['name' => 'Verolanuova', 'country_code' => 'IT'], ['name' => 'Campo Maior', 'country_code' => 'PT'], ['name' => 'Stuttgart', 'country_code' => 'US'], ['name' => 'Bolgar', 'country_code' => 'RU'], ['name' => 'Visp', 'country_code' => 'CH'], ['name' => 'Namsos', 'country_code' => 'NO'], ['name' => 'Billingshurst', 'country_code' => 'GB'], ['name' => 'Pocklington', 'country_code' => 'GB'], ['name' => 'Bouaye', 'country_code' => 'FR'], ['name' => 'Coxsackie', 'country_code' => 'US'], ['name' => 'Guatape', 'country_code' => 'CO'], ['name' => 'Derecske', 'country_code' => 'HU'], ['name' => 'Concord', 'country_code' => 'US'], ['name' => 'Mystic Island', 'country_code' => 'US'], ['name' => 'Waterford', 'country_code' => 'US'], ['name' => 'Cohasset', 'country_code' => 'US'], ['name' => 'Titz', 'country_code' => 'DE'], ['name' => 'Geri', 'country_code' => 'CY'], ['name' => 'Shinfield', 'country_code' => 'GB'], ['name' => 'Trevi', 'country_code' => 'IT'], ['name' => 'Kecel', 'country_code' => 'HU'], ['name' => 'Steenwijkerwold', 'country_code' => 'NL'], ['name' => 'Willow Street', 'country_code' => 'US'], ['name' => 'Trignac', 'country_code' => 'FR'], ['name' => 'Lansdowne', 'country_code' => 'US'], ['name' => 'Allersberg', 'country_code' => 'DE'], ['name' => 'Elisio Medrado', 'country_code' => 'BR'], ['name' => 'Hillsboro', 'country_code' => 'US'], ['name' => 'Summit View', 'country_code' => 'US'], ['name' => 'Vedano Olona', 'country_code' => 'IT'], ['name' => 'San Ildefonso', 'country_code' => 'PH'], ['name' => 'Corona de Tucson', 'country_code' => 'US'], ['name' => 'Habay-la-Vieille', 'country_code' => 'BE'], ['name' => 'Novoli', 'country_code' => 'IT'], ['name' => 'Cacalchen', 'country_code' => 'MX'], ['name' => 'Carnoux-en-Provence', 'country_code' => 'FR'], ['name' => 'Bushkill', 'country_code' => 'US'], ['name' => 'Middleton', 'country_code' => 'US'], ['name' => 'Estrela d Oeste', 'country_code' => 'BR'], ['name' => 'Lure', 'country_code' => 'FR'], ['name' => 'General Camara', 'country_code' => 'BR'], ['name' => 'L Aigle', 'country_code' => 'FR'], ['name' => 'Douar Mezaoura', 'country_code' => 'MA'], ['name' => 'Oude Pekela', 'country_code' => 'NL'], ['name' => 'Lege-Cap-Ferret', 'country_code' => 'FR'], ['name' => 'Toritto', 'country_code' => 'IT'], ['name' => 'Orocue', 'country_code' => 'CO'], ['name' => 'San Pablo Huitzo', 'country_code' => 'MX'], ['name' => 'Bretowo', 'country_code' => 'PL'], ['name' => 'Moyeuvre-Grande', 'country_code' => 'FR'], ['name' => 'Tuscumbia', 'country_code' => 'US'], ['name' => 'Vetluga', 'country_code' => 'RU'], ['name' => 'Nzalat Bni Amar', 'country_code' => 'MA'], ['name' => 'Tobyhanna', 'country_code' => 'US'], ['name' => 'As Sallum', 'country_code' => 'EG'], ['name' => 'Mason', 'country_code' => 'US'], ['name' => 'Ghassat', 'country_code' => 'MA'], ['name' => 'Vern-sur-Seiche', 'country_code' => 'FR'], ['name' => 'Norten-Hardenberg', 'country_code' => 'DE'], ['name' => 'Dauphin', 'country_code' => 'CA'], ['name' => 'Houplines', 'country_code' => 'FR'], ['name' => 'Humboldt', 'country_code' => 'US'], ['name' => 'Baiersdorf', 'country_code' => 'DE'], ['name' => 'Barton', 'country_code' => 'US'], ['name' => 'Chantonnay', 'country_code' => 'FR'], ['name' => 'Stockstadt am Main', 'country_code' => 'DE'], ['name' => 'Navia', 'country_code' => 'ES'], ['name' => 'Lesmurdie', 'country_code' => 'AU'], ['name' => 'Fontaniva', 'country_code' => 'IT'], ['name' => 'Deliatyn', 'country_code' => 'UA'], ['name' => 'North Londonderry', 'country_code' => 'US'], ['name' => 'Monforte del Cid', 'country_code' => 'ES'], ['name' => 'Kirchberg', 'country_code' => 'DE'], ['name' => 'Otterburn Park', 'country_code' => 'CA'], ['name' => 'Barby', 'country_code' => 'DE'], ['name' => 'Bremgarten', 'country_code' => 'CH'], ['name' => 'Helena Valley Southeast', 'country_code' => 'US'], ['name' => 'Limena', 'country_code' => 'IT'], ['name' => 'Sunset Hills', 'country_code' => 'US'], ['name' => 'Ibiai', 'country_code' => 'BR'], ['name' => 'Lanivtsi', 'country_code' => 'UA'], ['name' => 'Sand Lake', 'country_code' => 'US'], ['name' => 'Tha Maka', 'country_code' => 'TH'], ['name' => 'Aughton', 'country_code' => 'GB'], ['name' => 'Imoulas', 'country_code' => 'MA'], ['name' => 'University of Virginia', 'country_code' => 'US'], ['name' => 'Muri', 'country_code' => 'CH'], ['name' => 'Zazeran', 'country_code' => 'IR'], ['name' => 'Gravellona Toce', 'country_code' => 'IT'], ['name' => 'Neulengbach', 'country_code' => 'AT'], ['name' => 'Cariati', 'country_code' => 'IT'], ['name' => 'Freeport', 'country_code' => 'US'], ['name' => 'Bad Feilnbach', 'country_code' => 'DE'], ['name' => 'Zwingenberg', 'country_code' => 'DE'], ['name' => 'Audenge', 'country_code' => 'FR'], ['name' => 'Vyetka', 'country_code' => 'BY'], ['name' => 'Bulaevo', 'country_code' => 'KZ'], ['name' => 'Prien', 'country_code' => 'US'], ['name' => 'Guabito', 'country_code' => 'PA'], ['name' => 'Onalaska', 'country_code' => 'US'], ['name' => 'Santa Rosa', 'country_code' => 'BR'], ['name' => 'Noyelles-sous-Lens', 'country_code' => 'FR'], ['name' => 'Macin', 'country_code' => 'RO'], ['name' => 'Bystrice pod Hostynem', 'country_code' => 'CZ'], ['name' => 'Campillos', 'country_code' => 'ES'], ['name' => 'Tumbiscatio de Ruiz', 'country_code' => 'MX'], ['name' => 'Lontra', 'country_code' => 'BR'], ['name' => 'Marcacao', 'country_code' => 'BR'], ['name' => 'Taber', 'country_code' => 'CA'], ['name' => 'U Thong', 'country_code' => 'TH'], ['name' => 'Pine Lake Park', 'country_code' => 'US'], ['name' => 'Kerrouchen', 'country_code' => 'MA'], ['name' => 'West Manheim', 'country_code' => 'US'], ['name' => 'Mrizig', 'country_code' => 'MA'], ['name' => 'Phayakkhaphum Phisai', 'country_code' => 'TH'], ['name' => 'Pezenas', 'country_code' => 'FR'], ['name' => 'Los Altos Hills', 'country_code' => 'US'], ['name' => 'Witley', 'country_code' => 'GB'], ['name' => 'Tomesti', 'country_code' => 'RO'], ['name' => 'Yadrin', 'country_code' => 'RU'], ['name' => 'Jaszapati', 'country_code' => 'HU'], ['name' => 'Meximieux', 'country_code' => 'FR'], ['name' => 'Magtymguly', 'country_code' => 'TM'], ['name' => 'Aspach', 'country_code' => 'DE'], ['name' => 'Santa Clara', 'country_code' => 'US'], ['name' => 'Upper Makefield', 'country_code' => 'US'], ['name' => 'Uedem', 'country_code' => 'DE'], ['name' => 'Oranienbaum', 'country_code' => 'DE'], ['name' => 'Monticello', 'country_code' => 'US'], ['name' => 'South Bruce Peninsula', 'country_code' => 'CA'], ['name' => 'Vyshkovo', 'country_code' => 'UA'], ['name' => 'Kitzbuhel', 'country_code' => 'AT'], ['name' => 'Liancourt', 'country_code' => 'FR'], ['name' => 'Gigmoto', 'country_code' => 'PH'], ['name' => 'Edson', 'country_code' => 'CA'], ['name' => 'Neunburg vorm Wald', 'country_code' => 'DE'], ['name' => 'Bonnigheim', 'country_code' => 'DE'], ['name' => 'Seaton', 'country_code' => 'GB'], ['name' => 'Gewane', 'country_code' => 'ET'], ['name' => 'Tuscania', 'country_code' => 'IT'], ['name' => 'Brejo Grande', 'country_code' => 'BR'], ['name' => 'Ogden', 'country_code' => 'US'], ['name' => 'Guilers', 'country_code' => 'FR'], ['name' => 'Rivolta d Adda', 'country_code' => 'IT'], ['name' => 'Oberstenfeld', 'country_code' => 'DE'], ['name' => 'Damnoen Saduak', 'country_code' => 'TH'], ['name' => 'Wollerau', 'country_code' => 'CH'], ['name' => 'Lake of the Woods', 'country_code' => 'US'], ['name' => 'Congers', 'country_code' => 'US'], ['name' => 'Cairate', 'country_code' => 'IT'], ['name' => 'La Verpilliere', 'country_code' => 'FR'], ['name' => 'Ashland', 'country_code' => 'US'], ['name' => 'Agdara', 'country_code' => 'AZ'], ['name' => 'Makaha', 'country_code' => 'US'], ['name' => 'Villard-Bonnot', 'country_code' => 'FR'], ['name' => 'Spring Valley Lake', 'country_code' => 'US'], ['name' => 'Alvorada', 'country_code' => 'BR'], ['name' => 'San Juan Talpa', 'country_code' => 'SV'], ['name' => 'Reichertshofen', 'country_code' => 'DE'], ['name' => 'Bayport', 'country_code' => 'US'], ['name' => 'Keminmaa', 'country_code' => 'FI'], ['name' => 'Wietze', 'country_code' => 'DE'], ['name' => 'Savoy', 'country_code' => 'US'], ['name' => 'Yuryevets', 'country_code' => 'RU'], ['name' => 'Pfronten', 'country_code' => 'DE'], ['name' => 'Janoshalma', 'country_code' => 'HU'], ['name' => 'Fair Lakes', 'country_code' => 'US'], ['name' => 'Kahriz Sang', 'country_code' => 'IR'], ['name' => 'Tecumseh', 'country_code' => 'US'], ['name' => 'Moser', 'country_code' => 'DE'], ['name' => 'Dover', 'country_code' => 'US'], ['name' => 'Soriano nel Cimino', 'country_code' => 'IT'], ['name' => 'North Haledon', 'country_code' => 'US'], ['name' => 'Leforest', 'country_code' => 'FR'], ['name' => 'Coxhoe', 'country_code' => 'GB'], ['name' => 'Dornstetten', 'country_code' => 'DE'], ['name' => 'Paris', 'country_code' => 'US'], ['name' => 'La Bassee', 'country_code' => 'FR'], ['name' => 'Sirnach', 'country_code' => 'CH'], ['name' => 'Serramazzoni', 'country_code' => 'IT'], ['name' => 'Ponte nell Alpi', 'country_code' => 'IT'], ['name' => 'Hochst', 'country_code' => 'AT'], ['name' => 'Salice Salentino', 'country_code' => 'IT'], ['name' => 'El Porvenir', 'country_code' => 'SV'], ['name' => 'Gaylord', 'country_code' => 'US'], ['name' => 'Aransas Pass', 'country_code' => 'US'], ['name' => 'East Cowes', 'country_code' => 'GB'], ['name' => 'Grafenau', 'country_code' => 'DE'], ['name' => 'Champagnole', 'country_code' => 'FR'], ['name' => 'Ostseebad Kuhlungsborn', 'country_code' => 'DE'], ['name' => 'Ellicott', 'country_code' => 'US'], ['name' => 'Carbondale', 'country_code' => 'US'], ['name' => 'Arab', 'country_code' => 'US'], ['name' => 'Monte San Giusto', 'country_code' => 'IT'], ['name' => 'Kandern', 'country_code' => 'DE'], ['name' => 'Long Branch', 'country_code' => 'US'], ['name' => 'Chateauneuf-sur-Loire', 'country_code' => 'FR'], ['name' => 'Quarto d Altino', 'country_code' => 'IT'], ['name' => 'Peebles', 'country_code' => 'GB'], ['name' => 'San Miguel del Puerto', 'country_code' => 'MX'], ['name' => 'Neusiedl am See', 'country_code' => 'AT'], ['name' => 'Fairless Hills', 'country_code' => 'US'], ['name' => 'Milevsko', 'country_code' => 'CZ'], ['name' => 'Althengstett', 'country_code' => 'DE'], ['name' => 'Sao Pedro dos Ferros', 'country_code' => 'BR'], ['name' => 'Ahrensbok', 'country_code' => 'DE'], ['name' => 'Venegono Superiore', 'country_code' => 'IT'], ['name' => 'Taglio di Po', 'country_code' => 'IT'], ['name' => 'Khanu Woralaksaburi', 'country_code' => 'TH'], ['name' => 'San Sebastian Tecomaxtlahuaca', 'country_code' => 'MX'], ['name' => 'Ventanas', 'country_code' => 'CL'], ['name' => 'Lugau', 'country_code' => 'DE'], ['name' => 'Bolano', 'country_code' => 'IT'], ['name' => 'Saint-Nicolas-de-Port', 'country_code' => 'FR'], ['name' => 'Highland Heights', 'country_code' => 'US'], ['name' => 'Recas', 'country_code' => 'RO'], ['name' => 'Hassocks', 'country_code' => 'GB'], ['name' => 'Narowlya', 'country_code' => 'BY'], ['name' => 'Kamyanyets', 'country_code' => 'BY'], ['name' => 'Somers', 'country_code' => 'US'], ['name' => 'Charlestown', 'country_code' => 'US'], ['name' => 'Santa Luzia D Oeste', 'country_code' => 'BR'], ['name' => 'Fletcher', 'country_code' => 'US'], ['name' => 'Blankenheim', 'country_code' => 'DE'], ['name' => 'Domat/Ems', 'country_code' => 'CH'], ['name' => 'Louveciennes', 'country_code' => 'FR'], ['name' => 'Macurure', 'country_code' => 'BR'], ['name' => 'Santiago Yosondua', 'country_code' => 'MX'], ['name' => 'Wettringen', 'country_code' => 'DE'], ['name' => 'Tubajon', 'country_code' => 'PH'], ['name' => 'Monserrat', 'country_code' => 'ES'], ['name' => 'Arealva', 'country_code' => 'BR'], ['name' => 'Warsash', 'country_code' => 'GB'], ['name' => 'Langnau am Albis', 'country_code' => 'CH'], ['name' => 'Kilmore', 'country_code' => 'AU'], ['name' => 'Druid Hills', 'country_code' => 'US'], ['name' => 'Baxter', 'country_code' => 'US'], ['name' => 'Puget-sur-Argens', 'country_code' => 'FR'], ['name' => 'Peasedown Saint John', 'country_code' => 'GB'], ['name' => 'Sauerlach', 'country_code' => 'DE'], ['name' => 'Leisnig', 'country_code' => 'DE'], ['name' => 'Vert-Saint-Denis', 'country_code' => 'FR'], ['name' => 'Seffner', 'country_code' => 'US'], ['name' => 'Petrosino', 'country_code' => 'IT'], ['name' => 'Vila Vicosa', 'country_code' => 'PT'], ['name' => 'Ouro Verde', 'country_code' => 'BR'], ['name' => 'Marcelino Vieira', 'country_code' => 'BR'], ['name' => 'Ballan-Mire', 'country_code' => 'FR'], ['name' => 'Vernon', 'country_code' => 'US'], ['name' => 'Millersville', 'country_code' => 'US'], ['name' => 'Rottenburg an der Laaber', 'country_code' => 'DE'], ['name' => 'Wimauma', 'country_code' => 'US'], ['name' => 'Figueira', 'country_code' => 'BR'], ['name' => 'Hirslen', 'country_code' => 'CH'], ['name' => 'Brasileira', 'country_code' => 'BR'], ['name' => 'Miramar Beach', 'country_code' => 'US'], ['name' => 'Appiano Gentile', 'country_code' => 'IT'], ['name' => 'Hempstead', 'country_code' => 'US'], ['name' => 'Gargenville', 'country_code' => 'FR'], ['name' => 'Garrni', 'country_code' => 'AM'], ['name' => 'Chinon', 'country_code' => 'FR'], ['name' => 'Wognum', 'country_code' => 'NL'], ['name' => 'Reignier', 'country_code' => 'FR'], ['name' => 'San Vicente', 'country_code' => 'PH'], ['name' => 'Knittlingen', 'country_code' => 'DE'], ['name' => 'Anahawan', 'country_code' => 'PH'], ['name' => 'Hohberg', 'country_code' => 'DE'], ['name' => 'Gulf Hills', 'country_code' => 'US'], ['name' => 'Buckhannon', 'country_code' => 'US'], ['name' => 'Saint-Jean-de-Maurienne', 'country_code' => 'FR'], ['name' => 'Texmelucan', 'country_code' => 'MX'], ['name' => 'Ransbach-Baumbach', 'country_code' => 'DE'], ['name' => 'Kulpsville', 'country_code' => 'US'], ['name' => 'Socorro', 'country_code' => 'US'], ['name' => 'Akhalkalaki', 'country_code' => 'GE'], ['name' => 'West Livingston', 'country_code' => 'US'], ['name' => 'Toton', 'country_code' => 'GB'], ['name' => 'Tallulah', 'country_code' => 'US'], ['name' => 'Talalora', 'country_code' => 'PH'], ['name' => 'Northam', 'country_code' => 'GB'], ['name' => 'Messancy', 'country_code' => 'BE'], ['name' => 'Ikata-cho', 'country_code' => 'JP'], ['name' => 'None', 'country_code' => 'IT'], ['name' => 'Heiden', 'country_code' => 'DE'], ['name' => 'Orono', 'country_code' => 'US'], ['name' => 'Thann', 'country_code' => 'FR'], ['name' => 'Bath', 'country_code' => 'US'], ['name' => 'Highworth', 'country_code' => 'GB'], ['name' => 'Oostvoorne', 'country_code' => 'NL'], ['name' => 'Suomussalmi', 'country_code' => 'FI'], ['name' => 'Rodeiro', 'country_code' => 'BR'], ['name' => 'Mala Danylivka', 'country_code' => 'UA'], ['name' => 'Bailly-Romainvilliers', 'country_code' => 'FR'], ['name' => 'Proenca-a-Nova', 'country_code' => 'PT'], ['name' => 'Kalampaka', 'country_code' => 'GR'], ['name' => 'Clover', 'country_code' => 'US'], ['name' => 'Zell am Harmersbach', 'country_code' => 'DE'], ['name' => 'Petoskey', 'country_code' => 'US'], ['name' => 'Boiano', 'country_code' => 'IT'], ['name' => 'Gettorf', 'country_code' => 'DE'], ['name' => 'Beaver Falls', 'country_code' => 'US'], ['name' => 'Ait Tagalla', 'country_code' => 'MA'], ['name' => 'Nova Itarana', 'country_code' => 'BR'], ['name' => 'Farnham', 'country_code' => 'CA'], ['name' => 'Cristalandia do Piaui', 'country_code' => 'BR'], ['name' => 'Chaboksar', 'country_code' => 'IR'], ['name' => 'Lauchringen', 'country_code' => 'DE'], ['name' => 'L Arbresle', 'country_code' => 'FR'], ['name' => 'Tillamook', 'country_code' => 'US'], ['name' => 'Saint-Apollinaire', 'country_code' => 'FR'], ['name' => 'Dietmannsried', 'country_code' => 'DE'], ['name' => 'Konnern', 'country_code' => 'DE'], ['name' => 'Oak Hills Place', 'country_code' => 'US'], ['name' => 'Westwego', 'country_code' => 'US'], ['name' => 'Ketovo', 'country_code' => 'RU'], ['name' => 'Bulqize', 'country_code' => 'AL'], ['name' => 'Aratoca', 'country_code' => 'CO'], ['name' => 'Flowery Branch', 'country_code' => 'US'], ['name' => 'Montezuma', 'country_code' => 'BR'], ['name' => 'Falkenstein', 'country_code' => 'DE'], ['name' => 'Dalton in Furness', 'country_code' => 'GB'], ['name' => 'Durrington', 'country_code' => 'GB'], ['name' => 'Houdain', 'country_code' => 'FR'], ['name' => 'St. Joseph', 'country_code' => 'US'], ['name' => 'Massa Marittima', 'country_code' => 'IT'], ['name' => 'Yarrawonga', 'country_code' => 'AU'], ['name' => 'Holly', 'country_code' => 'US'], ['name' => 'Quincy', 'country_code' => 'US'], ['name' => 'Bodenheim', 'country_code' => 'DE'], ['name' => 'Larkfield-Wikiup', 'country_code' => 'US'], ['name' => 'Frostproof', 'country_code' => 'US'], ['name' => 'Egremont', 'country_code' => 'GB'], ['name' => 'Bohorodchany', 'country_code' => 'UA'], ['name' => 'West Earl', 'country_code' => 'US'], ['name' => 'Giannouli', 'country_code' => 'GR'], ['name' => 'Comercinho', 'country_code' => 'BR'], ['name' => 'Myskhako', 'country_code' => 'RU'], ['name' => 'Dalhart', 'country_code' => 'US'], ['name' => 'East Donegal', 'country_code' => 'US'], ['name' => 'Rorschacherberg', 'country_code' => 'CH'], ['name' => 'Strullendorf', 'country_code' => 'DE'], ['name' => 'Garrison', 'country_code' => 'US'], ['name' => 'Niala Kondapalle', 'country_code' => 'IN'], ['name' => 'Dannenberg', 'country_code' => 'DE'], ['name' => 'Bormes-les-Mimosas', 'country_code' => 'FR'], ['name' => 'Gonzales', 'country_code' => 'US'], ['name' => 'Wroughton', 'country_code' => 'GB'], ['name' => 'Zirl', 'country_code' => 'AT'], ['name' => 'San Francisco', 'country_code' => 'CO'], ['name' => 'Agua Caliente', 'country_code' => 'SV'], ['name' => 'Chonnabot', 'country_code' => 'TH'], ['name' => 'Meinersen', 'country_code' => 'DE'], ['name' => 'Cleator Moor', 'country_code' => 'GB'], ['name' => 'Orosi', 'country_code' => 'US'], ['name' => 'Runnemede', 'country_code' => 'US'], ['name' => 'Bel Aire', 'country_code' => 'US'], ['name' => 'Aracena', 'country_code' => 'ES'], ['name' => 'Le Teich', 'country_code' => 'FR'], ['name' => 'Milton', 'country_code' => 'US'], ['name' => 'Cervaro', 'country_code' => 'IT'], ['name' => 'Tazeh Shahr', 'country_code' => 'IR'], ['name' => 'Aurora', 'country_code' => 'US'], ['name' => 'Dodji', 'country_code' => 'SN'], ['name' => 'Silsden', 'country_code' => 'GB'], ['name' => 'Firebaugh', 'country_code' => 'US'], ['name' => 'Kunszentmiklos', 'country_code' => 'HU'], ['name' => 'Whitefish', 'country_code' => 'US'], ['name' => 'Lopatcong', 'country_code' => 'US'], ['name' => 'Goffs Oak', 'country_code' => 'GB'], ['name' => 'Eckbolsheim', 'country_code' => 'FR'], ['name' => 'Mahtomedi', 'country_code' => 'US'], ['name' => 'Lowenberg', 'country_code' => 'DE'], ['name' => 'Altrip', 'country_code' => 'DE'], ['name' => 'Wavrin', 'country_code' => 'FR'], ['name' => 'West Vero Corridor', 'country_code' => 'US'], ['name' => 'Kapuskasing', 'country_code' => 'CA'], ['name' => 'Les Andelys', 'country_code' => 'FR'], ['name' => 'Floris', 'country_code' => 'US'], ['name' => 'Aparecida', 'country_code' => 'BR'], ['name' => 'Coleshill', 'country_code' => 'GB'], ['name' => 'Bargara', 'country_code' => 'AU'], ['name' => 'Tolstoy-Yurt', 'country_code' => 'RU'], ['name' => 'Prabuty', 'country_code' => 'PL'], ['name' => 'Le Coteau', 'country_code' => 'FR'], ['name' => 'Uramita', 'country_code' => 'CO'], ['name' => 'Savannah', 'country_code' => 'US'], ['name' => 'Grossrosseln', 'country_code' => 'DE'], ['name' => 'Najera', 'country_code' => 'ES'], ['name' => 'Deizisau', 'country_code' => 'DE'], ['name' => 'Brighton', 'country_code' => 'US'], ['name' => 'Wachtendonk', 'country_code' => 'DE'], ['name' => 'Hongwansi', 'country_code' => 'CN'], ['name' => 'Bismark', 'country_code' => 'DE'], ['name' => 'Seiersberg', 'country_code' => 'AT'], ['name' => 'Tonnay-Charente', 'country_code' => 'FR'], ['name' => 'Boxford', 'country_code' => 'US'], ['name' => 'Guapua', 'country_code' => 'BR'], ['name' => 'Ron Phibun', 'country_code' => 'TH'], ['name' => 'Liezen', 'country_code' => 'AT'], ['name' => 'Montague', 'country_code' => 'US'], ['name' => 'Grottaminarda', 'country_code' => 'IT'], ['name' => 'Paliano', 'country_code' => 'IT'], ['name' => 'Mount Joy', 'country_code' => 'US'], ['name' => 'McRae-Helena', 'country_code' => 'US'], ['name' => 'Trinidad', 'country_code' => 'US'], ['name' => 'Kenton', 'country_code' => 'US'], ['name' => 'Campo Florido', 'country_code' => 'BR'], ['name' => 'Bahnemir', 'country_code' => 'IR'], ['name' => 'Auby', 'country_code' => 'FR'], ['name' => 'Racalmuto', 'country_code' => 'IT'], ['name' => 'Carl Junction', 'country_code' => 'US'], ['name' => 'Bad Schmiedeberg', 'country_code' => 'DE'], ['name' => 'Rakkestad', 'country_code' => 'NO'], ['name' => 'Carnauba dos Dantas', 'country_code' => 'BR'], ['name' => 'Agira', 'country_code' => 'IT'], ['name' => 'Southeast Arcadia', 'country_code' => 'US'], ['name' => 'Sausset-les-Pins', 'country_code' => 'FR'], ['name' => 'Kinderhook', 'country_code' => 'US'], ['name' => 'La Malbaie', 'country_code' => 'CA'], ['name' => 'Thedinghausen', 'country_code' => 'DE'], ['name' => 'Boulemane', 'country_code' => 'MA'], ['name' => 'Paw Paw', 'country_code' => 'US'], ['name' => 'Cachoeira Dourada', 'country_code' => 'BR'], ['name' => 'Kiunga', 'country_code' => 'PG'], ['name' => 'Tidaholm', 'country_code' => 'SE'], ['name' => 'Lake City', 'country_code' => 'US'], ['name' => 'Buriti dos Montes', 'country_code' => 'BR'], ['name' => 'Ballancourt', 'country_code' => 'FR'], ['name' => 'Ribeirao do Largo', 'country_code' => 'BR'], ['name' => 'Mataraca', 'country_code' => 'BR'], ['name' => 'Radcliffe on Trent', 'country_code' => 'GB'], ['name' => 'Vobarno', 'country_code' => 'IT'], ['name' => 'San Sebastian', 'country_code' => 'PH'], ['name' => 'Lanark', 'country_code' => 'GB'], ['name' => 'Skowhegan', 'country_code' => 'US'], ['name' => 'Furstenzell', 'country_code' => 'DE'], ['name' => 'Moengo', 'country_code' => 'SR'], ['name' => 'Erwin', 'country_code' => 'US'], ['name' => 'Pudasjarvi', 'country_code' => 'FI'], ['name' => 'Courtry', 'country_code' => 'FR'], ['name' => 'Krailling', 'country_code' => 'DE'], ['name' => 'Colorado City', 'country_code' => 'US'], ['name' => 'Oak Grove', 'country_code' => 'US'], ['name' => 'Karumai', 'country_code' => 'JP'], ['name' => 'Biguglia', 'country_code' => 'FR'], ['name' => 'La Penne-sur-Huveaune', 'country_code' => 'FR'], ['name' => 'Pawling', 'country_code' => 'US'], ['name' => 'Romagnat', 'country_code' => 'FR'], ['name' => 'Seuzach', 'country_code' => 'CH'], ['name' => 'Kosterevo', 'country_code' => 'RU'], ['name' => 'Santa Barbara', 'country_code' => 'BR'], ['name' => 'Kiama', 'country_code' => 'AU'], ['name' => 'Shengjin', 'country_code' => 'AL'], ['name' => 'Durnten', 'country_code' => 'CH'], ['name' => 'Souk Khmis Bni Arouss', 'country_code' => 'MA'], ['name' => 'Cintruenigo', 'country_code' => 'ES'], ['name' => 'Moundsville', 'country_code' => 'US'], ['name' => 'Campoformido', 'country_code' => 'IT'], ['name' => 'Villa di Serio', 'country_code' => 'IT'], ['name' => 'Pereiras', 'country_code' => 'BR'], ['name' => 'Claix', 'country_code' => 'FR'], ['name' => 'Cumberland Hill', 'country_code' => 'US'], ['name' => 'Santana da Boa Vista', 'country_code' => 'BR'], ['name' => 'Hanawa', 'country_code' => 'JP'], ['name' => 'Sawang Wirawong', 'country_code' => 'TH'], ['name' => 'Schierling', 'country_code' => 'DE'], ['name' => 'Warlingham', 'country_code' => 'GB'], ['name' => 'San Giovanni Gemini', 'country_code' => 'IT'], ['name' => 'Montecito', 'country_code' => 'US'], ['name' => 'Denison', 'country_code' => 'US'], ['name' => 'Almirante', 'country_code' => 'PA'], ['name' => 'Pena Forte', 'country_code' => 'BR'], ['name' => 'Sirmione', 'country_code' => 'IT'], ['name' => 'Locust Grove', 'country_code' => 'US'], ['name' => 'Buxton', 'country_code' => 'US'], ['name' => 'Half Moon', 'country_code' => 'US'], ['name' => 'Lugoff', 'country_code' => 'US'], ['name' => 'Vicchio', 'country_code' => 'IT'], ['name' => 'Fuscaldo', 'country_code' => 'IT'], ['name' => 'Costabissara', 'country_code' => 'IT'], ['name' => 'Fort Mitchell', 'country_code' => 'US'], ['name' => 'Conewago', 'country_code' => 'US'], ['name' => 'Palmeirina', 'country_code' => 'BR'], ['name' => 'Mockmuhl', 'country_code' => 'DE'], ['name' => 'Manhattan', 'country_code' => 'US'], ['name' => 'Honey Brook', 'country_code' => 'US'], ['name' => 'Sibilia', 'country_code' => 'GT'], ['name' => 'Brooklyn', 'country_code' => 'US'], ['name' => 'North Weeki Wachee', 'country_code' => 'US'], ['name' => 'Crowthorne', 'country_code' => 'GB'], ['name' => 'Mammoth Lakes', 'country_code' => 'US'], ['name' => 'Akranes', 'country_code' => 'IS'], ['name' => 'Bongaree', 'country_code' => 'AU'], ['name' => 'Meggen', 'country_code' => 'CH'], ['name' => 'Bayabas', 'country_code' => 'PH'], ['name' => 'Millis', 'country_code' => 'US'], ['name' => 'Trebon', 'country_code' => 'CZ'], ['name' => 'Ruurlo', 'country_code' => 'NL'], ['name' => 'Oberkochen', 'country_code' => 'DE'], ['name' => 'Johnstown', 'country_code' => 'US'], ['name' => 'Slapanice', 'country_code' => 'CZ'], ['name' => 'Le Mesnil-le-Roi', 'country_code' => 'FR'], ['name' => 'Spotswood', 'country_code' => 'US'], ['name' => 'Sychevka', 'country_code' => 'RU'], ['name' => 'Oulad Chbana', 'country_code' => 'MA'], ['name' => 'Haddam', 'country_code' => 'US'], ['name' => 'Waynesburg', 'country_code' => 'US'], ['name' => 'Langenargen', 'country_code' => 'DE'], ['name' => 'Shankoucun', 'country_code' => 'CN'], ['name' => 'Kennett', 'country_code' => 'US'], ['name' => 'Irapuru', 'country_code' => 'BR'], ['name' => 'Thomson', 'country_code' => 'US'], ['name' => 'Gattinara', 'country_code' => 'IT'], ['name' => 'Irondale', 'country_code' => 'US'], ['name' => 'Meghraoua', 'country_code' => 'MA'], ['name' => 'Prim Decembrie', 'country_code' => 'RO'], ['name' => 'Renfrew', 'country_code' => 'CA'], ['name' => 'Neustadt', 'country_code' => 'DE'], ['name' => 'Hongmao', 'country_code' => 'CN'], ['name' => 'Guenange', 'country_code' => 'FR'], ['name' => 'Bruck an der Leitha', 'country_code' => 'AT'], ['name' => 'Dudingen', 'country_code' => 'CH'], ['name' => 'Stornoway', 'country_code' => 'GB'], ['name' => 'Novaya Ladoga', 'country_code' => 'RU'], ['name' => 'Westlake Village', 'country_code' => 'US'], ['name' => 'Hasselt', 'country_code' => 'NL'], ['name' => 'San Daniele del Friuli', 'country_code' => 'IT'], ['name' => 'Mirleft', 'country_code' => 'MA'], ['name' => 'Passa Tempo', 'country_code' => 'BR'], ['name' => 'Harmelen', 'country_code' => 'NL'], ['name' => 'Castle Shannon', 'country_code' => 'US'], ['name' => 'Catarina', 'country_code' => 'NI'], ['name' => 'North Elba', 'country_code' => 'US'], ['name' => 'Coaldale', 'country_code' => 'CA'], ['name' => 'Rymarov', 'country_code' => 'CZ'], ['name' => 'Zhanibek', 'country_code' => 'KZ'], ['name' => 'Zavodske', 'country_code' => 'UA'], ['name' => 'Chester', 'country_code' => 'US'], ['name' => 'Lipnik nad Becvou', 'country_code' => 'CZ'], ['name' => 'Archidona', 'country_code' => 'ES'], ['name' => 'Landeck', 'country_code' => 'AT'], ['name' => 'Endirey', 'country_code' => 'RU'], ['name' => 'Pagsanghan', 'country_code' => 'PH'], ['name' => 'Napoleon', 'country_code' => 'US'], ['name' => 'Vau i Dejes', 'country_code' => 'AL'], ['name' => 'Schomberg', 'country_code' => 'DE'], ['name' => 'Willebadessen', 'country_code' => 'DE'], ['name' => 'Komsomolsk', 'country_code' => 'RU'], ['name' => 'Novi Sanzhary', 'country_code' => 'UA'], ['name' => 'Upper Saddle River', 'country_code' => 'US'], ['name' => 'Chinique', 'country_code' => 'GT'], ['name' => 'Melqa el Ouidane', 'country_code' => 'MA'], ['name' => 'Donges', 'country_code' => 'FR'], ['name' => 'Chantada', 'country_code' => 'ES'], ['name' => 'Mahopac', 'country_code' => 'US'], ['name' => 'Tarfaya', 'country_code' => 'MA'], ['name' => 'Temperance', 'country_code' => 'US'], ['name' => 'Maxdorf', 'country_code' => 'DE'], ['name' => 'Corella', 'country_code' => 'ES'], ['name' => 'Oberlin', 'country_code' => 'US'], ['name' => 'Thaon-les-Vosges', 'country_code' => 'FR'], ['name' => 'Taourga', 'country_code' => 'DZ'], ['name' => 'High Ackworth', 'country_code' => 'GB'], ['name' => 'Arnstein', 'country_code' => 'DE'], ['name' => 'Motavita', 'country_code' => 'CO'], ['name' => 'Cernosice', 'country_code' => 'CZ'], ['name' => 'Reusel', 'country_code' => 'NL'], ['name' => 'Vineuil', 'country_code' => 'FR'], ['name' => 'Twin Lakes', 'country_code' => 'US'], ['name' => 'Lake Norman of Catawba', 'country_code' => 'US'], ['name' => 'Jefferson City', 'country_code' => 'US'], ['name' => 'Country Club Estates', 'country_code' => 'US'], ['name' => 'Lysianka', 'country_code' => 'UA'], ['name' => 'Kirawsk', 'country_code' => 'BY'], ['name' => 'Kvasyliv', 'country_code' => 'UA'], ['name' => 'Harefield', 'country_code' => 'GB'], ['name' => 'Rhoon', 'country_code' => 'NL'], ['name' => 'Kenilworth', 'country_code' => 'US'], ['name' => 'Eguilles', 'country_code' => 'FR'], ['name' => 'Carboneras', 'country_code' => 'ES'], ['name' => 'Chiaramonte Gulfi', 'country_code' => 'IT'], ['name' => 'Bad Herrenalb', 'country_code' => 'DE'], ['name' => 'Ercsi', 'country_code' => 'HU'], ['name' => 'Loppi', 'country_code' => 'FI'], ['name' => 'Albarradas', 'country_code' => 'MX'], ['name' => 'Krasnopillya', 'country_code' => 'UA'], ['name' => 'Beauzelle', 'country_code' => 'FR'], ['name' => 'Fifi', 'country_code' => 'MA'], ['name' => 'Jesteburg', 'country_code' => 'DE'], ['name' => 'Corumbaiba', 'country_code' => 'BR'], ['name' => 'Bedekovcina', 'country_code' => 'HR'], ['name' => 'Gleize', 'country_code' => 'FR'], ['name' => 'Schroeppel', 'country_code' => 'US'], ['name' => 'Thuir', 'country_code' => 'FR'], ['name' => 'Caccamo', 'country_code' => 'IT'], ['name' => 'Granichen', 'country_code' => 'CH'], ['name' => 'Porto de Pedras', 'country_code' => 'BR'], ['name' => 'Uribe', 'country_code' => 'CO'], ['name' => 'Burgos', 'country_code' => 'PH'], ['name' => 'Mikasa', 'country_code' => 'JP'], ['name' => 'Cortlandville', 'country_code' => 'US'], ['name' => 'Ellsworth', 'country_code' => 'US'], ['name' => 'Wedgefield', 'country_code' => 'US'], ['name' => 'Luisant', 'country_code' => 'FR'], ['name' => 'Campomarino', 'country_code' => 'IT'], ['name' => 'Itamarati', 'country_code' => 'BR'], ['name' => 'Ergoldsbach', 'country_code' => 'DE'], ['name' => 'Clanwilliam', 'country_code' => 'ZA'], ['name' => 'Vrutky', 'country_code' => 'SK'], ['name' => 'Nova Fatima', 'country_code' => 'BR'], ['name' => 'Vetschau/Spreewald', 'country_code' => 'DE'], ['name' => 'Teuchern', 'country_code' => 'DE'], ['name' => 'Monona', 'country_code' => 'US'], ['name' => 'Grumello del Monte', 'country_code' => 'IT'], ['name' => 'South Londonderry', 'country_code' => 'US'], ['name' => 'Verkhnyaya Khava', 'country_code' => 'RU'], ['name' => 'West Thurrock', 'country_code' => 'GB'], ['name' => 'Manali', 'country_code' => 'IN'], ['name' => 'Kef el Rhar', 'country_code' => 'MA'], ['name' => 'Fresnes-sur-Escaut', 'country_code' => 'FR'], ['name' => 'Major Vieira', 'country_code' => 'BR'], ['name' => 'Center Line', 'country_code' => 'US'], ['name' => 'Venice Gardens', 'country_code' => 'US'], ['name' => 'Domnesti', 'country_code' => 'RO'], ['name' => 'Pismo Beach', 'country_code' => 'US'], ['name' => 'Beebe', 'country_code' => 'US'], ['name' => 'Bramcote', 'country_code' => 'GB'], ['name' => 'Isle', 'country_code' => 'FR'], ['name' => 'Milliken', 'country_code' => 'US'], ['name' => 'Montorio al Vomano', 'country_code' => 'IT'], ['name' => 'Black Mountain', 'country_code' => 'US'], ['name' => 'Cenes de la Vega', 'country_code' => 'ES'], ['name' => 'Hettange-Grande', 'country_code' => 'FR'], ['name' => 'Charnay-les-Macon', 'country_code' => 'FR'], ['name' => 'Dzidzantun', 'country_code' => 'MX'], ['name' => 'Siret', 'country_code' => 'RO'], ['name' => 'San Miguel Quetzaltepec', 'country_code' => 'MX'], ['name' => 'Kerikeri', 'country_code' => 'NZ'], ['name' => 'Pasching', 'country_code' => 'AT'], ['name' => 'Arico el Nuevo', 'country_code' => 'ES'], ['name' => 'Belene', 'country_code' => 'BG'], ['name' => 'Crestwood Village', 'country_code' => 'US'], ['name' => 'Todos Santos', 'country_code' => 'MX'], ['name' => 'Cellole', 'country_code' => 'IT'], ['name' => 'Imi n-Tlit', 'country_code' => 'MA'], ['name' => 'El Divisadero', 'country_code' => 'SV'], ['name' => 'Neuves-Maisons', 'country_code' => 'FR'], ['name' => 'Venhuizen', 'country_code' => 'NL'], ['name' => 'Niagara', 'country_code' => 'US'], ['name' => 'Tavullia', 'country_code' => 'IT'], ['name' => 'Los Santos de Maimona', 'country_code' => 'ES'], ['name' => 'Watton', 'country_code' => 'GB'], ['name' => 'Meadow Lakes', 'country_code' => 'US'], ['name' => 'Selters', 'country_code' => 'DE'], ['name' => 'Sogel', 'country_code' => 'DE'], ['name' => 'Pedreguer', 'country_code' => 'ES'], ['name' => 'Center Moriches', 'country_code' => 'US'], ['name' => 'Litchfield', 'country_code' => 'US'], ['name' => 'Portugal Cove-St. Philip s', 'country_code' => 'CA'], ['name' => 'Vale do Paraiso', 'country_code' => 'BR'], ['name' => 'Beeskow', 'country_code' => 'DE'], ['name' => 'Tarutyne', 'country_code' => 'UA'], ['name' => 'Port Jefferson', 'country_code' => 'US'], ['name' => 'Middleport', 'country_code' => 'US'], ['name' => 'Eaton', 'country_code' => 'US'], ['name' => 'Heino', 'country_code' => 'NL'], ['name' => 'Pisogne', 'country_code' => 'IT'], ['name' => 'Beloslav', 'country_code' => 'BG'], ['name' => 'Guarani das Missoes', 'country_code' => 'BR'], ['name' => 'Tuskegee', 'country_code' => 'US'], ['name' => 'Quinchao', 'country_code' => 'CL'], ['name' => 'Breda di Piave', 'country_code' => 'IT'], ['name' => 'Bonsecours', 'country_code' => 'FR'], ['name' => 'Roquetas', 'country_code' => 'ES'], ['name' => 'Zorra', 'country_code' => 'CA'], ['name' => 'Daun', 'country_code' => 'DE'], ['name' => 'Soustons', 'country_code' => 'FR'], ['name' => 'Ephrata', 'country_code' => 'US'], ['name' => 'Rockwood', 'country_code' => 'US'], ['name' => 'Kindberg', 'country_code' => 'AT'], ['name' => 'Canton', 'country_code' => 'US'], ['name' => 'Nagykovacsi', 'country_code' => 'HU'], ['name' => 'Fehergyarmat', 'country_code' => 'HU'], ['name' => 'Neuendettelsau', 'country_code' => 'DE'], ['name' => 'Bystrice nad Pernstejnem', 'country_code' => 'CZ'], ['name' => 'Vorselaar', 'country_code' => 'BE'], ['name' => 'Leesville', 'country_code' => 'US'], ['name' => 'Cosala', 'country_code' => 'MX'], ['name' => 'Peronne', 'country_code' => 'FR'], ['name' => 'Oradell', 'country_code' => 'US'], ['name' => 'Kitimat', 'country_code' => 'CA'], ['name' => 'Minnetrista', 'country_code' => 'US'], ['name' => 'Templeton', 'country_code' => 'US'], ['name' => 'Merrow', 'country_code' => 'GB'], ['name' => 'Tarouca', 'country_code' => 'PT'], ['name' => 'Gering', 'country_code' => 'US'], ['name' => 'Manhush', 'country_code' => 'UA'], ['name' => 'Sanctuary Point', 'country_code' => 'AU'], ['name' => 'Levico Terme', 'country_code' => 'IT'], ['name' => 'Kyabram', 'country_code' => 'AU'], ['name' => 'Bad Endbach', 'country_code' => 'DE'], ['name' => 'Guimarania', 'country_code' => 'BR'], ['name' => 'Sidi Ali Bou Aqba', 'country_code' => 'MA'], ['name' => 'Shelburne', 'country_code' => 'CA'], ['name' => 'Adams', 'country_code' => 'US'], ['name' => 'Bagnes', 'country_code' => 'CH'], ['name' => 'Serra Ricco', 'country_code' => 'IT'], ['name' => 'Bassens', 'country_code' => 'FR'], ['name' => 'Villanueva del Arzobispo', 'country_code' => 'ES'], ['name' => 'Gongogi', 'country_code' => 'BR'], ['name' => 'Irai', 'country_code' => 'BR'], ['name' => 'Monts', 'country_code' => 'FR'], ['name' => 'Leao', 'country_code' => 'BR'], ['name' => 'Tricesimo', 'country_code' => 'IT'], ['name' => 'Alnwick', 'country_code' => 'GB'], ['name' => 'Harrison', 'country_code' => 'US'], ['name' => 'Healesville', 'country_code' => 'AU'], ['name' => 'Medyn', 'country_code' => 'RU'], ['name' => 'Gratkorn', 'country_code' => 'AT'], ['name' => 'Bad Lausick', 'country_code' => 'DE'], ['name' => 'Kennedy', 'country_code' => 'US'], ['name' => 'Medebach', 'country_code' => 'DE'], ['name' => 'Remiremont', 'country_code' => 'FR'], ['name' => 'Hazard', 'country_code' => 'US'], ['name' => 'Summit Park', 'country_code' => 'US'], ['name' => 'Ponte Alta do Tocantins', 'country_code' => 'BR'], ['name' => 'Gray', 'country_code' => 'US'], ['name' => 'Vidreras', 'country_code' => 'ES'], ['name' => 'Nor Kharberd', 'country_code' => 'AM'], ['name' => 'Cherry Valley', 'country_code' => 'US'], ['name' => 'Untersiggenthal', 'country_code' => 'CH'], ['name' => 'Omak', 'country_code' => 'US'], ['name' => 'Vandenberg Village', 'country_code' => 'US'], ['name' => 'Vityazevo', 'country_code' => 'RU'], ['name' => 'West Dundee', 'country_code' => 'US'], ['name' => 'Loreggia', 'country_code' => 'IT'], ['name' => 'Totnes', 'country_code' => 'GB'], ['name' => 'Blandon', 'country_code' => 'US'], ['name' => 'San Esteban Sasroviras', 'country_code' => 'ES'], ['name' => 'El Meghassine', 'country_code' => 'MA'], ['name' => 'Winterbach', 'country_code' => 'DE'], ['name' => 'Borgonovo Val Tidone', 'country_code' => 'IT'], ['name' => 'Duvall', 'country_code' => 'US'], ['name' => 'Serra Negra do Norte', 'country_code' => 'BR'], ['name' => 'Saint-Affrique', 'country_code' => 'FR'], ['name' => 'Yaremche', 'country_code' => 'UA'], ['name' => 'Laihia', 'country_code' => 'FI'], ['name' => 'Collier', 'country_code' => 'US'], ['name' => 'Ayer', 'country_code' => 'US'], ['name' => 'Oederan', 'country_code' => 'DE'], ['name' => 'Mezguitem', 'country_code' => 'MA'], ['name' => 'Solosuchiapa', 'country_code' => 'MX'], ['name' => 'Ananiv', 'country_code' => 'UA'], ['name' => 'Vinton', 'country_code' => 'US'], ['name' => 'Gurjaani', 'country_code' => 'GE'], ['name' => 'Olvera', 'country_code' => 'ES'], ['name' => 'Kawerau', 'country_code' => 'NZ'], ['name' => 'Notre-Dame-de-Bondeville', 'country_code' => 'FR'], ['name' => 'Wissous', 'country_code' => 'FR'], ['name' => 'Joshua', 'country_code' => 'US'], ['name' => 'Livadia', 'country_code' => 'CY'], ['name' => 'Melton', 'country_code' => 'AU'], ['name' => 'Peixe-Boi', 'country_code' => 'BR'], ['name' => 'Clausthal', 'country_code' => 'DE'], ['name' => 'Kirchheimbolanden', 'country_code' => 'DE'], ['name' => 'Oak Hill', 'country_code' => 'US'], ['name' => 'Santa Cruz do Monte Castelo', 'country_code' => 'BR'], ['name' => 'Burpengary', 'country_code' => 'AU'], ['name' => 'Herrieden', 'country_code' => 'DE'], ['name' => 'Hadfield', 'country_code' => 'GB'], ['name' => 'Monument', 'country_code' => 'US'], ['name' => 'Hopkinton', 'country_code' => 'US'], ['name' => 'Reilingen', 'country_code' => 'DE'], ['name' => 'Turbigo', 'country_code' => 'IT'], ['name' => 'Bosel', 'country_code' => 'DE'], ['name' => 'Monachil', 'country_code' => 'ES'], ['name' => 'Orizania', 'country_code' => 'BR'], ['name' => 'Algermissen', 'country_code' => 'DE'], ['name' => 'Croton-on-Hudson', 'country_code' => 'US'], ['name' => 'Zapadnaya Dvina', 'country_code' => 'RU'], ['name' => 'Saint-Julien-les-Villas', 'country_code' => 'FR'], ['name' => 'Bellevue', 'country_code' => 'US'], ['name' => 'Briarcliff Manor', 'country_code' => 'US'], ['name' => 'Sodus', 'country_code' => 'US'], ['name' => 'Olonets', 'country_code' => 'RU'], ['name' => 'Targu Carbunesti', 'country_code' => 'RO'], ['name' => 'Carmignano di Brenta', 'country_code' => 'IT'], ['name' => 'Alliance', 'country_code' => 'US'], ['name' => 'Wickenburg', 'country_code' => 'US'], ['name' => 'Heimberg', 'country_code' => 'CH'], ['name' => 'Sterling', 'country_code' => 'US'], ['name' => 'Allegheny', 'country_code' => 'US'], ['name' => 'Reppenstedt', 'country_code' => 'DE'], ['name' => 'Kunszentmarton', 'country_code' => 'HU'], ['name' => 'Moraujo', 'country_code' => 'BR'], ['name' => 'Teteringen', 'country_code' => 'NL'], ['name' => 'Pinoso', 'country_code' => 'ES'], ['name' => 'Trevoux', 'country_code' => 'FR'], ['name' => 'Valencina de la Concepcion', 'country_code' => 'ES'], ['name' => 'Selah', 'country_code' => 'US'], ['name' => 'Tafraoutane', 'country_code' => 'MA'], ['name' => 'Ecouen', 'country_code' => 'FR'], ['name' => 'Vista Alegre do Alto', 'country_code' => 'BR'], ['name' => 'Kushuhum', 'country_code' => 'UA'], ['name' => 'Hammerfest', 'country_code' => 'NO'], ['name' => 'Pedraza', 'country_code' => 'CO'], ['name' => 'Shorewood', 'country_code' => 'US'], ['name' => 'Languidic', 'country_code' => 'FR'], ['name' => 'Bruchmuhlbach-Miesau', 'country_code' => 'DE'], ['name' => 'Agerola', 'country_code' => 'IT'], ['name' => 'Saint-Hippolyte', 'country_code' => 'CA'], ['name' => 'California', 'country_code' => 'BR'], ['name' => 'Postbauer-Heng', 'country_code' => 'DE'], ['name' => 'Helena Valley West Central', 'country_code' => 'US'], ['name' => 'Aguas da Prata', 'country_code' => 'BR'], ['name' => 'Applewood', 'country_code' => 'US'], ['name' => 'Jackson', 'country_code' => 'US'], ['name' => 'Aguelhok', 'country_code' => 'ML'], ['name' => 'Cologne', 'country_code' => 'IT'], ['name' => 'Soisy-sur-Seine', 'country_code' => 'FR'], ['name' => 'Yungay', 'country_code' => 'PE'], ['name' => 'Kronenwetter', 'country_code' => 'US'], ['name' => 'Schweich', 'country_code' => 'DE'], ['name' => 'Publier', 'country_code' => 'FR'], ['name' => 'Dzyatlava', 'country_code' => 'BY'], ['name' => 'Maravilhas', 'country_code' => 'BR'], ['name' => 'Saint-Priest-en-Jarez', 'country_code' => 'FR'], ['name' => 'Gilberts', 'country_code' => 'US'], ['name' => 'Bargersville', 'country_code' => 'US'], ['name' => 'Avella', 'country_code' => 'IT'], ['name' => 'Colico', 'country_code' => 'IT'], ['name' => 'Treuen', 'country_code' => 'DE'], ['name' => 'Sacrofano', 'country_code' => 'IT'], ['name' => 'Hampton', 'country_code' => 'US'], ['name' => 'Sudden Valley', 'country_code' => 'US'], ['name' => 'Freisen', 'country_code' => 'DE'], ['name' => 'Campo do Tenente', 'country_code' => 'BR'], ['name' => 'Hollymead', 'country_code' => 'US'], ['name' => 'Rockmart', 'country_code' => 'US'], ['name' => 'Tyn nad Vltavou', 'country_code' => 'CZ'], ['name' => 'Sankt Andra vor dem Hagenthale', 'country_code' => 'AT'], ['name' => 'Valmaseda', 'country_code' => 'ES'], ['name' => 'Monte do Carmo', 'country_code' => 'BR'], ['name' => 'Schellerten', 'country_code' => 'DE'], ['name' => 'Lake Carmel', 'country_code' => 'US'], ['name' => 'Lockwood', 'country_code' => 'US'], ['name' => 'Wyoming', 'country_code' => 'US'], ['name' => 'Montreuil-Juigne', 'country_code' => 'FR'], ['name' => 'Semenivka', 'country_code' => 'UA'], ['name' => 'Jockgrim', 'country_code' => 'DE'], ['name' => 'Beynes', 'country_code' => 'FR'], ['name' => 'Lake Dallas', 'country_code' => 'US'], ['name' => 'Banayoyo', 'country_code' => 'PH'], ['name' => 'Sampedor', 'country_code' => 'ES'], ['name' => 'Pravia', 'country_code' => 'ES'], ['name' => 'Bloomingdale', 'country_code' => 'US'], ['name' => 'Schoonebeek', 'country_code' => 'NL'], ['name' => 'Rothenburg', 'country_code' => 'CH'], ['name' => 'Arevalo', 'country_code' => 'ES'], ['name' => 'Manziana', 'country_code' => 'IT'], ['name' => 'Ramstein-Miesenbach', 'country_code' => 'DE'], ['name' => 'Maracalagonis', 'country_code' => 'IT'], ['name' => 'Rolling Hills Estates', 'country_code' => 'US'], ['name' => 'Tapirai', 'country_code' => 'BR'], ['name' => 'El Metline', 'country_code' => 'TN'], ['name' => 'Moirans', 'country_code' => 'FR'], ['name' => 'Tamasi', 'country_code' => 'HU'], ['name' => 'Uckange', 'country_code' => 'FR'], ['name' => 'Lisses', 'country_code' => 'FR'], ['name' => 'Bestensee', 'country_code' => 'DE'], ['name' => 'South Cleveland', 'country_code' => 'US'], ['name' => 'Casteltermini', 'country_code' => 'IT'], ['name' => 'Willits', 'country_code' => 'US'], ['name' => 'Clinton', 'country_code' => 'US'], ['name' => 'Kottingbrunn', 'country_code' => 'AT'], ['name' => 'Chisineu Cris', 'country_code' => 'RO'], ['name' => 'Clisson', 'country_code' => 'FR'], ['name' => 'Willerby', 'country_code' => 'GB'], ['name' => 'Namestovo', 'country_code' => 'SK'], ['name' => 'Melnikovo', 'country_code' => 'RU'], ['name' => 'Skiatook', 'country_code' => 'US'], ['name' => 'Alpestre', 'country_code' => 'BR'], ['name' => 'Decorah', 'country_code' => 'US'], ['name' => 'Itanagra', 'country_code' => 'BR'], ['name' => 'Elsterwerda', 'country_code' => 'DE'], ['name' => 'Iepe', 'country_code' => 'BR'], ['name' => 'Ascurra', 'country_code' => 'BR'], ['name' => 'Clydach', 'country_code' => 'GB'], ['name' => 'Brookhaven', 'country_code' => 'US'], ['name' => 'Macaubal', 'country_code' => 'BR'], ['name' => 'Delligsen', 'country_code' => 'DE'], ['name' => 'Diamondhead', 'country_code' => 'US'], ['name' => 'Akrehamn', 'country_code' => 'NO'], ['name' => 'Candelo', 'country_code' => 'IT'], ['name' => 'Floresville', 'country_code' => 'US'], ['name' => 'Bedminster', 'country_code' => 'US'], ['name' => 'Ripley', 'country_code' => 'US'], ['name' => 'Wintzenheim', 'country_code' => 'FR'], ['name' => 'Chardon', 'country_code' => 'US'], ['name' => 'Lancaster', 'country_code' => 'US'], ['name' => 'Morehead', 'country_code' => 'US'], ['name' => 'Langres', 'country_code' => 'FR'], ['name' => 'Arazane', 'country_code' => 'MA'], ['name' => 'Kups', 'country_code' => 'DE'], ['name' => 'Boston', 'country_code' => 'US'], ['name' => 'Arcugnano', 'country_code' => 'IT'], ['name' => 'Iguatama', 'country_code' => 'BR'], ['name' => 'Angmering', 'country_code' => 'GB'], ['name' => 'Arta', 'country_code' => 'ES'], ['name' => 'Ripon', 'country_code' => 'US'], ['name' => 'Dubi', 'country_code' => 'CZ'], ['name' => 'Rheinsberg', 'country_code' => 'DE'], ['name' => 'Taseyevo', 'country_code' => 'RU'], ['name' => 'Castlegar', 'country_code' => 'CA'], ['name' => 'Mihailesti', 'country_code' => 'RO'], ['name' => 'Titchfield', 'country_code' => 'GB'], ['name' => 'Krasnokholmskiy', 'country_code' => 'RU'], ['name' => 'Anacapri', 'country_code' => 'IT'], ['name' => 'Bad Duben', 'country_code' => 'DE'], ['name' => 'Odessa', 'country_code' => 'US'], ['name' => 'Saint-Victoret', 'country_code' => 'FR'], ['name' => 'Jermuk', 'country_code' => 'AM'], ['name' => 'Saint-Vincent-de-Tyrosse', 'country_code' => 'FR'], ['name' => 'Treze Tilias', 'country_code' => 'BR'], ['name' => 'Villaverde del Rio', 'country_code' => 'ES'], ['name' => 'Mayo', 'country_code' => 'US'], ['name' => 'Hamilton', 'country_code' => 'US'], ['name' => 'Northfield', 'country_code' => 'US'], ['name' => 'Lodi Vecchio', 'country_code' => 'IT'], ['name' => 'Tropea', 'country_code' => 'IT'], ['name' => 'Altomunster', 'country_code' => 'DE'], ['name' => 'Menominee', 'country_code' => 'US'], ['name' => 'Brion', 'country_code' => 'ES'], ['name' => 'Lagoa Alegre', 'country_code' => 'BR'], ['name' => 'La Couronne', 'country_code' => 'FR'], ['name' => 'Berango', 'country_code' => 'ES'], ['name' => 'Heyin', 'country_code' => 'CN'], ['name' => 'Ceret', 'country_code' => 'FR'], ['name' => 'Svoge', 'country_code' => 'BG'], ['name' => 'Pidvolochysk', 'country_code' => 'UA'], ['name' => 'Sezimovo Usti', 'country_code' => 'CZ'], ['name' => 'Pleasant Hills', 'country_code' => 'US'], ['name' => 'Pahokee', 'country_code' => 'US'], ['name' => 'Moulay Abdelkader', 'country_code' => 'MA'], ['name' => 'Insar', 'country_code' => 'RU'], ['name' => 'Ahuimanu', 'country_code' => 'US'], ['name' => 'Crete', 'country_code' => 'US'], ['name' => 'Saint-Prix', 'country_code' => 'FR'], ['name' => 'Lagkadas', 'country_code' => 'GR'], ['name' => 'Topolobampo', 'country_code' => 'MX'], ['name' => 'Mamonovo', 'country_code' => 'RU'], ['name' => 'Loudoun Valley Estates', 'country_code' => 'US'], ['name' => 'Chestnut Ridge', 'country_code' => 'US'], ['name' => 'Laurel Hill', 'country_code' => 'US'], ['name' => 'Island Lake', 'country_code' => 'US'], ['name' => 'Icem', 'country_code' => 'BR'], ['name' => 'Estrela do Sul', 'country_code' => 'BR'], ['name' => 'Seasalter', 'country_code' => 'GB'], ['name' => 'Puentedeume', 'country_code' => 'ES'], ['name' => 'Church Point', 'country_code' => 'CA'], ['name' => 'Lesneven', 'country_code' => 'FR'], ['name' => 'Lochgelly', 'country_code' => 'GB'], ['name' => 'Rychvald', 'country_code' => 'CZ'], ['name' => 'Lagord', 'country_code' => 'FR'], ['name' => 'Puerto Parra', 'country_code' => 'CO'], ['name' => 'Ida Ou Azza', 'country_code' => 'MA'], ['name' => 'Oak Brook', 'country_code' => 'US'], ['name' => 'Santana de Pirapama', 'country_code' => 'BR'], ['name' => 'Penalva do Castelo', 'country_code' => 'PT'], ['name' => 'Kozhevnikovo', 'country_code' => 'RU'], ['name' => 'Zeltweg', 'country_code' => 'AT'], ['name' => 'Seaford', 'country_code' => 'US'], ['name' => 'Palagianello', 'country_code' => 'IT'], ['name' => 'Neresheim', 'country_code' => 'DE'], ['name' => 'Jequitai', 'country_code' => 'BR'], ['name' => 'Narre Warren North', 'country_code' => 'AU'], ['name' => 'Rommelshausen', 'country_code' => 'DE'], ['name' => 'Cruzeta', 'country_code' => 'BR'], ['name' => 'Tara', 'country_code' => 'JP'], ['name' => 'Caldas de Malavella', 'country_code' => 'ES'], ['name' => 'Antoing', 'country_code' => 'BE'], ['name' => 'Centellas', 'country_code' => 'ES'], ['name' => 'Millom', 'country_code' => 'GB'], ['name' => 'Loftus', 'country_code' => 'GB'], ['name' => 'Pedra Lavrada', 'country_code' => 'BR'], ['name' => 'Crediton', 'country_code' => 'GB'], ['name' => 'Cumiana', 'country_code' => 'IT'], ['name' => 'Evergreen', 'country_code' => 'US'], ['name' => 'Pershore', 'country_code' => 'GB'], ['name' => 'Nurmes', 'country_code' => 'FI'], ['name' => 'Digoin', 'country_code' => 'FR'], ['name' => 'Helvecia', 'country_code' => 'AR'], ['name' => 'Nikolsk', 'country_code' => 'RU'], ['name' => 'Berchtesgaden', 'country_code' => 'DE'], ['name' => 'Cumberland', 'country_code' => 'US'], ['name' => 'Vizille', 'country_code' => 'FR'], ['name' => 'Butzow', 'country_code' => 'DE'], ['name' => 'Cartoceto', 'country_code' => 'IT'], ['name' => 'Clementina', 'country_code' => 'BR'], ['name' => 'Mascoutah', 'country_code' => 'US'], ['name' => 'Almyros', 'country_code' => 'GR'], ['name' => 'Brazil', 'country_code' => 'US'], ['name' => 'Chiavenna', 'country_code' => 'IT'], ['name' => 'Vertentes do Lerio', 'country_code' => 'BR'], ['name' => 'Illingen', 'country_code' => 'DE'], ['name' => 'Goring by Sea', 'country_code' => 'GB'], ['name' => 'Iaras', 'country_code' => 'BR'], ['name' => 'Bosa', 'country_code' => 'IT'], ['name' => 'Lanchyn', 'country_code' => 'UA'], ['name' => 'North Coventry', 'country_code' => 'US'], ['name' => 'Aberdeen', 'country_code' => 'US'], ['name' => 'Jennings Lodge', 'country_code' => 'US'], ['name' => 'Tullins', 'country_code' => 'FR'], ['name' => 'Kozelets', 'country_code' => 'UA'], ['name' => 'Saint-Denis-en-Val', 'country_code' => 'FR'], ['name' => 'Jefferson', 'country_code' => 'US'], ['name' => 'Manhasset', 'country_code' => 'US'], ['name' => 'Green', 'country_code' => 'US'], ['name' => 'Santa Maria di Licodia', 'country_code' => 'IT'], ['name' => 'Torrile', 'country_code' => 'IT'], ['name' => 'Mineral del Chico', 'country_code' => 'MX'], ['name' => 'Lillesand', 'country_code' => 'NO'], ['name' => 'Lampasas', 'country_code' => 'US'], ['name' => 'Drumheller', 'country_code' => 'CA'], ['name' => 'La Montagne', 'country_code' => 'FR'], ['name' => 'Kirkland Lake', 'country_code' => 'CA'], ['name' => 'Firuraq', 'country_code' => 'IR'], ['name' => 'Krasnyy Yar', 'country_code' => 'RU'], ['name' => 'Village Green-Green Ridge', 'country_code' => 'US'], ['name' => 'Liebenburg', 'country_code' => 'DE'], ['name' => 'Krupina', 'country_code' => 'SK'], ['name' => 'Almodovar del Rio', 'country_code' => 'ES'], ['name' => 'Rizziconi', 'country_code' => 'IT'], ['name' => 'Marmirolo', 'country_code' => 'IT'], ['name' => 'Byram', 'country_code' => 'US'], ['name' => 'Hengersberg', 'country_code' => 'DE'], ['name' => 'Dabnou', 'country_code' => 'NE'], ['name' => 'Koufalia', 'country_code' => 'GR'], ['name' => 'Kensington', 'country_code' => 'US'], ['name' => 'Toscolano', 'country_code' => 'IT'], ['name' => 'Polgar', 'country_code' => 'HU'], ['name' => 'Wittem', 'country_code' => 'NL'], ['name' => 'Willisau', 'country_code' => 'CH'], ['name' => 'Artemivsk', 'country_code' => 'UA'], ['name' => 'Tuparetama', 'country_code' => 'BR'], ['name' => 'Domene', 'country_code' => 'FR'], ['name' => 'Fort Belvoir', 'country_code' => 'US'], ['name' => 'West Boylston', 'country_code' => 'US'], ['name' => 'Brentwood', 'country_code' => 'US'], ['name' => 'Cambira', 'country_code' => 'BR'], ['name' => 'Chalford', 'country_code' => 'GB'], ['name' => 'Laughlin', 'country_code' => 'US'], ['name' => 'San Felipe Tejalapan', 'country_code' => 'MX'], ['name' => 'Muniz Ferreira', 'country_code' => 'BR'], ['name' => 'Mozzecane', 'country_code' => 'IT'], ['name' => 'Abatskoye', 'country_code' => 'RU'], ['name' => 'Chartiers', 'country_code' => 'US'], ['name' => 'Aztec', 'country_code' => 'US'], ['name' => 'St. Martin', 'country_code' => 'US'], ['name' => 'La Junta', 'country_code' => 'US'], ['name' => 'Kinchil', 'country_code' => 'MX'], ['name' => 'Altenberg', 'country_code' => 'DE'], ['name' => 'Alfonso Castaneda', 'country_code' => 'PH'], ['name' => 'Murphy', 'country_code' => 'US'], ['name' => 'Brockworth', 'country_code' => 'GB'], ['name' => 'Gieres', 'country_code' => 'FR'], ['name' => 'Leck', 'country_code' => 'DE'], ['name' => 'Yahiko', 'country_code' => 'JP'], ['name' => 'Denny', 'country_code' => 'GB'], ['name' => 'Gelida', 'country_code' => 'ES'], ['name' => 'Bosanski Petrovac', 'country_code' => 'BA'], ['name' => 'Southwest Ranches', 'country_code' => 'US'], ['name' => 'Quincy', 'country_code' => 'US'], ['name' => 'Numansdorp', 'country_code' => 'NL'], ['name' => 'Tukan', 'country_code' => 'RU'], ['name' => 'Timbo Grande', 'country_code' => 'BR'], ['name' => 'Tonila', 'country_code' => 'MX'], ['name' => 'San Luis de Palenque', 'country_code' => 'CO'], ['name' => 'Richland Hills', 'country_code' => 'US'], ['name' => 'Dannstadt-Schauernheim', 'country_code' => 'DE'], ['name' => 'Hellenthal', 'country_code' => 'DE'], ['name' => 'Mogosoaia', 'country_code' => 'RO'], ['name' => 'Maryville', 'country_code' => 'US'], ['name' => 'Geispolsheim', 'country_code' => 'FR'], ['name' => 'Sohlde', 'country_code' => 'DE'], ['name' => 'Santa Eulalia de Ronsana', 'country_code' => 'ES'], ['name' => 'Dornach', 'country_code' => 'CH'], ['name' => 'Meta', 'country_code' => 'IT'], ['name' => 'Cavalaire-sur-Mer', 'country_code' => 'FR'], ['name' => 'Bad Liebenstein', 'country_code' => 'DE'], ['name' => 'Fouquieres-les-Lens', 'country_code' => 'FR'], ['name' => 'Gerardmer', 'country_code' => 'FR'], ['name' => 'Baltimore Highlands', 'country_code' => 'US'], ['name' => 'Dolores', 'country_code' => 'ES'], ['name' => 'Berg', 'country_code' => 'DE'], ['name' => 'Porterville', 'country_code' => 'ZA'], ['name' => 'Mrkonjic Grad', 'country_code' => 'BA'], ['name' => 'Sao Joao do Oriente', 'country_code' => 'BR'], ['name' => 'Tignieu', 'country_code' => 'FR'], ['name' => 'Herzogenburg', 'country_code' => 'AT'], ['name' => 'Nejdek', 'country_code' => 'CZ'], ['name' => 'Saint-Peray', 'country_code' => 'FR'], ['name' => 'Liptovsky Hradok', 'country_code' => 'SK'], ['name' => 'Slawharad', 'country_code' => 'BY'], ['name' => 'Villmergen', 'country_code' => 'CH'], ['name' => 'Vols', 'country_code' => 'AT'], ['name' => 'Newport-On-Tay', 'country_code' => 'GB'], ['name' => 'Leegebruch', 'country_code' => 'DE'], ['name' => 'Marseillan', 'country_code' => 'FR'], ['name' => 'Higham Ferrers', 'country_code' => 'GB'], ['name' => 'Hillside', 'country_code' => 'US'], ['name' => 'Bous', 'country_code' => 'DE'], ['name' => 'Hufingen', 'country_code' => 'DE'], ['name' => 'Anse', 'country_code' => 'FR'], ['name' => 'Columbiana', 'country_code' => 'US'], ['name' => 'Marchamalo', 'country_code' => 'ES'], ['name' => 'Galliera Veneta', 'country_code' => 'IT'], ['name' => 'Logan', 'country_code' => 'US'], ['name' => 'Batesville', 'country_code' => 'US'], ['name' => 'Herzogenbuchsee', 'country_code' => 'CH'], ['name' => 'Glastonbury Center', 'country_code' => 'US'], ['name' => 'Vorzel', 'country_code' => 'UA'], ['name' => 'Malemort-sur-Correze', 'country_code' => 'FR'], ['name' => 'Trigueros', 'country_code' => 'ES'], ['name' => 'Sao Joao do Jaguaribe', 'country_code' => 'BR'], ['name' => 'Arkhipo-Osipovka', 'country_code' => 'RU'], ['name' => 'Chaiya', 'country_code' => 'TH'], ['name' => 'Nasice', 'country_code' => 'HR'], ['name' => 'Baldim', 'country_code' => 'BR'], ['name' => 'Rethel', 'country_code' => 'FR'], ['name' => 'Sheboygan Falls', 'country_code' => 'US'], ['name' => 'Ruelle-sur-Touvre', 'country_code' => 'FR'], ['name' => 'Dumbravita', 'country_code' => 'RO'], ['name' => 'Cherykaw', 'country_code' => 'BY'], ['name' => 'Lyubimets', 'country_code' => 'BG'], ['name' => 'Cambiago', 'country_code' => 'IT'], ['name' => 'Salzbergen', 'country_code' => 'DE'], ['name' => 'Uetikon am See', 'country_code' => 'CH'], ['name' => 'Wytheville', 'country_code' => 'US'], ['name' => 'Viladecaballs', 'country_code' => 'ES'], ['name' => 'Teggiano', 'country_code' => 'IT'], ['name' => 'Hipadpad', 'country_code' => 'PH'], ['name' => 'Hollis', 'country_code' => 'US'], ['name' => 'St. Francis', 'country_code' => 'US'], ['name' => 'Peresecina', 'country_code' => 'MD'], ['name' => 'Degache', 'country_code' => 'TN'], ['name' => 'Sidi Ahmed Ben Aissa', 'country_code' => 'MA'], ['name' => 'Hitchcock', 'country_code' => 'US'], ['name' => 'La Puebla de Montalban', 'country_code' => 'ES'], ['name' => 'Colombelles', 'country_code' => 'FR'], ['name' => 'Had Kourt', 'country_code' => 'MA'], ['name' => 'Nieppe', 'country_code' => 'FR'], ['name' => 'Bollington', 'country_code' => 'GB'], ['name' => 'Langon', 'country_code' => 'FR'], ['name' => 'Toulouges', 'country_code' => 'FR'], ['name' => 'Mandurah', 'country_code' => 'AU'], ['name' => 'Catalina', 'country_code' => 'US'], ['name' => 'Gorodishche', 'country_code' => 'RU'], ['name' => 'Sontra', 'country_code' => 'DE'], ['name' => 'Villa Cortese', 'country_code' => 'IT'], ['name' => 'Villanueva del Ariscal', 'country_code' => 'ES'], ['name' => 'Talat-n-Ya qoub', 'country_code' => 'MA'], ['name' => 'Olsztyn', 'country_code' => 'PL'], ['name' => 'Dryanovo', 'country_code' => 'BG'], ['name' => 'Annfield Plain', 'country_code' => 'GB'], ['name' => 'Grasberg', 'country_code' => 'DE'], ['name' => 'Durande', 'country_code' => 'BR'], ['name' => 'Bonner Springs', 'country_code' => 'US'], ['name' => 'Pasiano', 'country_code' => 'IT'], ['name' => 'Wachtebeke', 'country_code' => 'BE'], ['name' => 'Senador Firmino', 'country_code' => 'BR'], ['name' => 'Long Grove', 'country_code' => 'US'], ['name' => 'Camp Hill', 'country_code' => 'US'], ['name' => 'Mansfield Center', 'country_code' => 'US'], ['name' => 'Sao Joao da Pesqueira', 'country_code' => 'PT'], ['name' => 'Hradek nad Nisou', 'country_code' => 'CZ'], ['name' => 'Itaicaba', 'country_code' => 'BR'], ['name' => 'Vere', 'country_code' => 'BR'], ['name' => 'Wilmington Manor', 'country_code' => 'US'], ['name' => 'Malagon', 'country_code' => 'ES'], ['name' => 'Olginate', 'country_code' => 'IT'], ['name' => 'Borrazopolis', 'country_code' => 'BR'], ['name' => 'Nazario', 'country_code' => 'BR'], ['name' => 'Xiaoshengcun', 'country_code' => 'CN'], ['name' => 'Doue-la-Fontaine', 'country_code' => 'FR'], ['name' => 'Topanga', 'country_code' => 'US'], ['name' => 'Tura', 'country_code' => 'HU'], ['name' => 'Erval Seco', 'country_code' => 'BR'], ['name' => 'Bergkirchen', 'country_code' => 'DE'], ['name' => 'Argyle', 'country_code' => 'CA'], ['name' => 'Torbay', 'country_code' => 'CA'], ['name' => 'Leopoldo de Bulhoes', 'country_code' => 'BR'], ['name' => 'Downingtown', 'country_code' => 'US'], ['name' => 'Grand Ledge', 'country_code' => 'US'], ['name' => 'Aldingen', 'country_code' => 'DE'], ['name' => 'Nong Phai', 'country_code' => 'TH'], ['name' => 'Stony Stratford', 'country_code' => 'GB'], ['name' => 'Saltinho', 'country_code' => 'BR'], ['name' => 'Sandorfalva', 'country_code' => 'HU'], ['name' => 'San Julian', 'country_code' => 'AR'], ['name' => 'Jalasjarvi', 'country_code' => 'FI'], ['name' => 'Meland', 'country_code' => 'NO'], ['name' => 'Old Forge', 'country_code' => 'US'], ['name' => 'Upton', 'country_code' => 'US'], ['name' => 'Tenampa', 'country_code' => 'MX'], ['name' => 'Pelago', 'country_code' => 'IT'], ['name' => 'Lincolnshire', 'country_code' => 'US'], ['name' => 'Kinmel', 'country_code' => 'GB'], ['name' => 'Cormontreuil', 'country_code' => 'FR'], ['name' => 'Blair', 'country_code' => 'US'], ['name' => 'Naila', 'country_code' => 'DE'], ['name' => 'Jersey Village', 'country_code' => 'US'], ['name' => 'Lexington', 'country_code' => 'US'], ['name' => 'Tavernelle in Val di Pesa', 'country_code' => 'IT'], ['name' => 'Richfield', 'country_code' => 'US'], ['name' => 'Itobi', 'country_code' => 'BR'], ['name' => 'Ancenis', 'country_code' => 'FR'], ['name' => 'Liffre', 'country_code' => 'FR'], ['name' => 'Centerville', 'country_code' => 'US'], ['name' => 'Bouffemont', 'country_code' => 'FR'], ['name' => 'Kyneton', 'country_code' => 'AU'], ['name' => 'West Long Branch', 'country_code' => 'US'], ['name' => 'Dilolo', 'country_code' => 'CD'], ['name' => 'Flushing', 'country_code' => 'US'], ['name' => 'Trzemeszno', 'country_code' => 'PL'], ['name' => 'Middletown', 'country_code' => 'US'], ['name' => 'Vratimov', 'country_code' => 'CZ'], ['name' => 'Sao Miguel dos Milagres', 'country_code' => 'BR'], ['name' => 'Dorentrup', 'country_code' => 'DE'], ['name' => 'Ashland', 'country_code' => 'US'], ['name' => 'Guaraquecaba', 'country_code' => 'BR'], ['name' => 'Juarez Tavora', 'country_code' => 'BR'], ['name' => 'Mably', 'country_code' => 'FR'], ['name' => 'Fruitvale', 'country_code' => 'US'], ['name' => 'Mynamaki', 'country_code' => 'FI'], ['name' => 'Petrvald', 'country_code' => 'CZ'], ['name' => 'Burley in Wharfedale', 'country_code' => 'GB'], ['name' => 'Temax', 'country_code' => 'MX'], ['name' => 'Flein', 'country_code' => 'DE'], ['name' => 'Seminole', 'country_code' => 'US'], ['name' => 'Altoona', 'country_code' => 'US'], ['name' => 'Grand Blanc', 'country_code' => 'US'], ['name' => 'Abadiano Celayeta', 'country_code' => 'ES'], ['name' => 'Schonungen', 'country_code' => 'DE'], ['name' => 'Zingem', 'country_code' => 'BE'], ['name' => 'Abingdon', 'country_code' => 'US'], ['name' => 'Ide', 'country_code' => 'JP'], ['name' => 'Wilmington', 'country_code' => 'GB'], ['name' => 'Kelty', 'country_code' => 'GB'], ['name' => 'Willesborough', 'country_code' => 'GB'], ['name' => 'Lesigny', 'country_code' => 'FR'], ['name' => 'La Peche', 'country_code' => 'CA'], ['name' => 'Edenbridge', 'country_code' => 'GB'], ['name' => 'Gendt', 'country_code' => 'NL'], ['name' => 'Bridge City', 'country_code' => 'US'], ['name' => 'Bow', 'country_code' => 'US'], ['name' => 'Crescentino', 'country_code' => 'IT'], ['name' => 'Madeira', 'country_code' => 'BR'], ['name' => 'Altach', 'country_code' => 'AT'], ['name' => 'Weissach', 'country_code' => 'DE'], ['name' => 'Thung Saliam', 'country_code' => 'TH'], ['name' => 'Myory', 'country_code' => 'BY'], ['name' => 'Carpaneto Piacentino', 'country_code' => 'IT'], ['name' => 'Bol sheust ikinskoye', 'country_code' => 'RU'], ['name' => 'Rimpar', 'country_code' => 'DE'], ['name' => 'Khondab', 'country_code' => 'IR'], ['name' => 'Woodlake', 'country_code' => 'US'], ['name' => 'Timezgadiouine', 'country_code' => 'MA'], ['name' => 'Hastings-on-Hudson', 'country_code' => 'US'], ['name' => 'Fieni', 'country_code' => 'RO'], ['name' => 'Fremantle', 'country_code' => 'AU'], ['name' => 'Bex', 'country_code' => 'CH'], ['name' => 'Pantelleria', 'country_code' => 'IT'], ['name' => 'Pivdenne', 'country_code' => 'UA'], ['name' => 'Pontcharra', 'country_code' => 'FR'], ['name' => 'Boostedt', 'country_code' => 'DE'], ['name' => 'Hardyston', 'country_code' => 'US'], ['name' => 'Rohatyn', 'country_code' => 'UA'], ['name' => 'Stribro', 'country_code' => 'CZ'], ['name' => 'Bryans Road', 'country_code' => 'US'], ['name' => 'Banff', 'country_code' => 'CA'], ['name' => 'Innisfail', 'country_code' => 'CA'], ['name' => 'York', 'country_code' => 'US'], ['name' => 'Waterboro', 'country_code' => 'US'], ['name' => 'Cobena', 'country_code' => 'ES'], ['name' => 'Paratebueno', 'country_code' => 'CO'], ['name' => 'Courdimanche', 'country_code' => 'FR'], ['name' => 'Lalla Takerkoust', 'country_code' => 'MA'], ['name' => 'Ashland', 'country_code' => 'US'], ['name' => 'Halifax', 'country_code' => 'US'], ['name' => 'San Colombano al Lambro', 'country_code' => 'IT'], ['name' => 'Princeton', 'country_code' => 'US'], ['name' => 'Sangaree', 'country_code' => 'US'], ['name' => 'La Talaudiere', 'country_code' => 'FR'], ['name' => 'Questembert', 'country_code' => 'FR'], ['name' => 'Bosteri', 'country_code' => 'KG'], ['name' => 'Itapirapua', 'country_code' => 'BR'], ['name' => 'Templeton', 'country_code' => 'US'], ['name' => 'North Cornwall', 'country_code' => 'US'], ['name' => 'Spring', 'country_code' => 'US'], ['name' => 'Fakenham', 'country_code' => 'GB'], ['name' => 'Frenkendorf', 'country_code' => 'CH'], ['name' => 'Los Fresnos', 'country_code' => 'US'], ['name' => 'South Weber', 'country_code' => 'US'], ['name' => 'Woodstock', 'country_code' => 'US'], ['name' => 'Barra do Turvo', 'country_code' => 'BR'], ['name' => 'Mazapa', 'country_code' => 'MX'], ['name' => 'Watford City', 'country_code' => 'US'], ['name' => 'Crookston', 'country_code' => 'US'], ['name' => 'Sao Vicente de Minas', 'country_code' => 'BR'], ['name' => 'Chastre-Villeroux-Blanmont', 'country_code' => 'BE'], ['name' => 'Talmont-Saint-Hilaire', 'country_code' => 'FR'], ['name' => 'Madison Park', 'country_code' => 'US'], ['name' => 'Fohnsdorf', 'country_code' => 'AT'], ['name' => 'Farington', 'country_code' => 'GB'], ['name' => 'Covington', 'country_code' => 'US'], ['name' => 'Oberstaufen', 'country_code' => 'DE'], ['name' => 'Cox', 'country_code' => 'ES'], ['name' => 'Khon Buri', 'country_code' => 'TH'], ['name' => 'Nemishayeve', 'country_code' => 'UA'], ['name' => 'San Gimignano', 'country_code' => 'IT'], ['name' => 'Latrobe', 'country_code' => 'US'], ['name' => 'Lamporecchio', 'country_code' => 'IT'], ['name' => 'Nicolet', 'country_code' => 'CA'], ['name' => 'Saint-Yrieix-sur-Charente', 'country_code' => 'FR'], ['name' => 'Soeng Sang', 'country_code' => 'TH'], ['name' => 'Nuevo Cuscatlan', 'country_code' => 'SV'], ['name' => 'Rrogozhine', 'country_code' => 'AL'], ['name' => 'DeFuniak Springs', 'country_code' => 'US'], ['name' => 'Williamsburg', 'country_code' => 'US'], ['name' => 'Rockwood', 'country_code' => 'CA'], ['name' => 'Olivette', 'country_code' => 'US'], ['name' => 'Baldwinsville', 'country_code' => 'US'], ['name' => 'Sound Beach', 'country_code' => 'US'], ['name' => 'Saviese', 'country_code' => 'CH'], ['name' => 'Kral ovsky Chlmec', 'country_code' => 'SK'], ['name' => 'Aibonito', 'country_code' => 'PR'], ['name' => 'Winters', 'country_code' => 'US'], ['name' => 'Ruschlikon', 'country_code' => 'CH'], ['name' => 'Breckenridge', 'country_code' => 'US'], ['name' => 'Interlaken', 'country_code' => 'US'], ['name' => 'Southgate', 'country_code' => 'US'], ['name' => 'Soncino', 'country_code' => 'IT'], ['name' => 'Sarandi del Yi', 'country_code' => 'UY'], ['name' => 'Calau', 'country_code' => 'DE'], ['name' => 'Makushino', 'country_code' => 'RU'], ['name' => 'Medina', 'country_code' => 'US'], ['name' => 'Strathmore', 'country_code' => 'US'], ['name' => 'Bubikon', 'country_code' => 'CH'], ['name' => 'Greenville', 'country_code' => 'US'], ['name' => 'Curtarolo', 'country_code' => 'IT'], ['name' => 'Apuarema', 'country_code' => 'BR'], ['name' => 'Ban Phue', 'country_code' => 'TH'], ['name' => 'Curral de Dentro', 'country_code' => 'BR'], ['name' => 'Seville', 'country_code' => 'US'], ['name' => 'Reisbach', 'country_code' => 'DE'], ['name' => 'Rainford', 'country_code' => 'GB'], ['name' => 'Contes', 'country_code' => 'FR'], ['name' => 'Zavareh', 'country_code' => 'IR'], ['name' => 'Umm Walad', 'country_code' => 'SY'], ['name' => 'Ibirajuba', 'country_code' => 'BR'], ['name' => 'Budesti', 'country_code' => 'RO'], ['name' => 'Collie', 'country_code' => 'AU'], ['name' => 'Villa General Belgrano', 'country_code' => 'AR'], ['name' => 'San Zenone', 'country_code' => 'IT'], ['name' => 'Benningen am Neckar', 'country_code' => 'DE'], ['name' => 'Kenai', 'country_code' => 'US'], ['name' => 'Santana', 'country_code' => 'CO'], ['name' => 'Carnegie', 'country_code' => 'US'], ['name' => 'Aubrey', 'country_code' => 'US'], ['name' => 'Monte Alegre do Sul', 'country_code' => 'BR'], ['name' => 'Carnago', 'country_code' => 'IT'], ['name' => 'Irapua', 'country_code' => 'BR'], ['name' => 'Oberglatt', 'country_code' => 'CH'], ['name' => 'Sarandi Grande', 'country_code' => 'UY'], ['name' => 'Hook', 'country_code' => 'GB'], ['name' => 'Castro del Rio', 'country_code' => 'ES'], ['name' => 'Pittston', 'country_code' => 'US'], ['name' => 'Marcellina', 'country_code' => 'IT'], ['name' => 'Coulounieix', 'country_code' => 'FR'], ['name' => 'Benahavis', 'country_code' => 'ES'], ['name' => 'Saint-Benoit', 'country_code' => 'FR'], ['name' => 'Kinvere', 'country_code' => 'GB'], ['name' => 'Santana', 'country_code' => 'PT'], ['name' => 'Santa Ana', 'country_code' => 'GT'], ['name' => 'Castellalto', 'country_code' => 'IT'], ['name' => 'Charlestown', 'country_code' => 'US'], ['name' => 'Santa Maria del Oro', 'country_code' => 'MX'], ['name' => 'Holly Springs', 'country_code' => 'US'], ['name' => 'Abatia', 'country_code' => 'BR'], ['name' => 'Deols', 'country_code' => 'FR'], ['name' => 'Pyhaselka', 'country_code' => 'FI'], ['name' => 'Allstedt', 'country_code' => 'DE'], ['name' => 'Rochefort-du-Gard', 'country_code' => 'FR'], ['name' => 'Waltham', 'country_code' => 'GB'], ['name' => 'Auxonne', 'country_code' => 'FR'], ['name' => 'Behren-les-Forbach', 'country_code' => 'FR'], ['name' => 'Mirabella Eclano', 'country_code' => 'IT'], ['name' => 'Gerolstein', 'country_code' => 'DE'], ['name' => 'Bornos', 'country_code' => 'ES'], ['name' => 'Malaya Purga', 'country_code' => 'RU'], ['name' => 'Vergato', 'country_code' => 'IT'], ['name' => 'Barge', 'country_code' => 'IT'], ['name' => 'Reinsdorf', 'country_code' => 'DE'], ['name' => 'Harzgerode', 'country_code' => 'DE'], ['name' => 'Parai', 'country_code' => 'BR'], ['name' => 'Eisfeld', 'country_code' => 'DE'], ['name' => 'Jaszarokszallas', 'country_code' => 'HU'], ['name' => 'Pratola Peligna', 'country_code' => 'IT'], ['name' => 'San Jose de Buan', 'country_code' => 'PH'], ['name' => 'Withamsville', 'country_code' => 'US'], ['name' => 'Benatky nad Jizerou', 'country_code' => 'CZ'], ['name' => 'Mattighofen', 'country_code' => 'AT'], ['name' => 'Kaufman', 'country_code' => 'US'], ['name' => 'Panciu', 'country_code' => 'RO'], ['name' => 'Saarburg', 'country_code' => 'DE'], ['name' => 'Araguapaz', 'country_code' => 'BR'], ['name' => 'Claro dos Pocoes', 'country_code' => 'BR'], ['name' => 'Campbell', 'country_code' => 'US'], ['name' => 'Neuhofen', 'country_code' => 'DE'], ['name' => 'Saint-Didier-au-Mont-d Or', 'country_code' => 'FR'], ['name' => 'Mhlume', 'country_code' => 'SZ'], ['name' => 'Chester', 'country_code' => 'US'], ['name' => 'Ouirgane', 'country_code' => 'MA'], ['name' => 'Alpiarca', 'country_code' => 'PT'], ['name' => 'Martignas-sur-Jalle', 'country_code' => 'FR'], ['name' => 'Dongping', 'country_code' => 'CN'], ['name' => 'Jouamaa', 'country_code' => 'MA'], ['name' => 'Escalquens', 'country_code' => 'FR'], ['name' => 'Lodeve', 'country_code' => 'FR'], ['name' => 'Peniscola', 'country_code' => 'ES'], ['name' => 'Providence', 'country_code' => 'US'], ['name' => 'Oberwart', 'country_code' => 'AT'], ['name' => 'Rubelita', 'country_code' => 'BR'], ['name' => 'Chobham', 'country_code' => 'GB'], ['name' => 'Arneiroz', 'country_code' => 'BR'], ['name' => 'Milan', 'country_code' => 'US'], ['name' => 'Crewkerne', 'country_code' => 'GB'], ['name' => 'Q vareli', 'country_code' => 'GE'], ['name' => 'Turzovka', 'country_code' => 'SK'], ['name' => 'Ertis', 'country_code' => 'KZ'], ['name' => 'Drummond/North Elmsley', 'country_code' => 'CA'], ['name' => 'Vigarano Mainarda', 'country_code' => 'IT'], ['name' => 'Fivizzano', 'country_code' => 'IT'], ['name' => 'Rhinebeck', 'country_code' => 'US'], ['name' => 'Oroville East', 'country_code' => 'US'], ['name' => 'Estes Park', 'country_code' => 'US'], ['name' => 'Gerbrunn', 'country_code' => 'DE'], ['name' => 'Santa Rosa de Rio Primero', 'country_code' => 'AR'], ['name' => 'Vega de San Mateo', 'country_code' => 'ES'], ['name' => 'Kemijarvi', 'country_code' => 'FI'], ['name' => 'Waite Park', 'country_code' => 'US'], ['name' => 'Reszel', 'country_code' => 'PL'], ['name' => 'Beaugency', 'country_code' => 'FR'], ['name' => 'Antigo', 'country_code' => 'US'], ['name' => 'Jamsankoski', 'country_code' => 'FI'], ['name' => 'Rosporden', 'country_code' => 'FR'], ['name' => 'Westminster', 'country_code' => 'US'], ['name' => 'Park City', 'country_code' => 'US'], ['name' => 'Coronel Bicaco', 'country_code' => 'BR'], ['name' => 'Zelo Buon Persico', 'country_code' => 'IT'], ['name' => 'Loffingen', 'country_code' => 'DE'], ['name' => 'Greenfield', 'country_code' => 'US'], ['name' => 'Azuaga', 'country_code' => 'ES'], ['name' => 'Binuangan', 'country_code' => 'PH'], ['name' => 'Longridge', 'country_code' => 'GB'], ['name' => 'Saint-Thibault-des-Vignes', 'country_code' => 'FR'], ['name' => 'Forsyth', 'country_code' => 'US'], ['name' => 'San Diego', 'country_code' => 'GT'], ['name' => 'Jerico', 'country_code' => 'BR'], ['name' => 'McGregor', 'country_code' => 'US'], ['name' => 'Tenterden', 'country_code' => 'GB'], ['name' => 'San Giorgio di Nogaro', 'country_code' => 'IT'], ['name' => 'Vitulazio', 'country_code' => 'IT'], ['name' => 'Al Orjane', 'country_code' => 'MA'], ['name' => 'Cheraw', 'country_code' => 'US'], ['name' => 'Swainsboro', 'country_code' => 'US'], ['name' => 'Onil', 'country_code' => 'ES'], ['name' => 'Ebensee', 'country_code' => 'AT'], ['name' => 'Nyiradony', 'country_code' => 'HU'], ['name' => 'Ondara', 'country_code' => 'ES'], ['name' => 'Citta della Pieve', 'country_code' => 'IT'], ['name' => 'Moutier', 'country_code' => 'CH'], ['name' => 'Paulo Jacinto', 'country_code' => 'BR'], ['name' => 'Ruisbroek', 'country_code' => 'BE'], ['name' => 'Jasper', 'country_code' => 'US'], ['name' => 'Wynne', 'country_code' => 'US'], ['name' => 'Dryden', 'country_code' => 'CA'], ['name' => 'Altbach', 'country_code' => 'DE'], ['name' => 'Kryve Ozero', 'country_code' => 'UA'], ['name' => 'Round Lake Park', 'country_code' => 'US'], ['name' => 'Neufchateau', 'country_code' => 'BE'], ['name' => 'Villers-Saint-Paul', 'country_code' => 'FR'], ['name' => 'Pulsnitz', 'country_code' => 'DE'], ['name' => 'Gallneukirchen', 'country_code' => 'AT'], ['name' => 'Lekkerkerk', 'country_code' => 'NL'], ['name' => 'Korkmaskala', 'country_code' => 'RU'], ['name' => 'Pium', 'country_code' => 'BR'], ['name' => 'Vico del Gargano', 'country_code' => 'IT'], ['name' => 'Quarryville', 'country_code' => 'US'], ['name' => 'Zlatograd', 'country_code' => 'BG'], ['name' => 'Belo Vale', 'country_code' => 'BR'], ['name' => 'Pedro Gomes', 'country_code' => 'BR'], ['name' => 'Salida', 'country_code' => 'US'], ['name' => 'South Boston', 'country_code' => 'US'], ['name' => 'Callosa de Ensarria', 'country_code' => 'ES'], ['name' => 'Citrus Hills', 'country_code' => 'US'], ['name' => 'Middlebury', 'country_code' => 'US'], ['name' => 'Fort Frances', 'country_code' => 'CA'], ['name' => 'Bad Wimpfen', 'country_code' => 'DE'], ['name' => 'Zinat', 'country_code' => 'MA'], ['name' => 'Albion', 'country_code' => 'US'], ['name' => 'Bang Pa-in', 'country_code' => 'TH'], ['name' => 'Rosswein', 'country_code' => 'DE'], ['name' => 'Khoroshiv', 'country_code' => 'UA'], ['name' => 'Al Kafr', 'country_code' => 'SY'], ['name' => 'Carneys Point', 'country_code' => 'US'], ['name' => 'Gerena', 'country_code' => 'ES'], ['name' => 'East Huntingdon', 'country_code' => 'US'], ['name' => 'Wading River', 'country_code' => 'US'], ['name' => 'Tobarra', 'country_code' => 'ES'], ['name' => 'Fosso', 'country_code' => 'IT'], ['name' => 'Boqueirao do Leao', 'country_code' => 'BR'], ['name' => 'San Marco Evangelista', 'country_code' => 'IT'], ['name' => 'Bilac', 'country_code' => 'BR'], ['name' => 'Barvikha', 'country_code' => 'RU'], ['name' => 'Salem', 'country_code' => 'US'], ['name' => 'Dighton', 'country_code' => 'US'], ['name' => 'Sisteron', 'country_code' => 'FR'], ['name' => 'Branesti', 'country_code' => 'RO'], ['name' => 'Dolgoderevenskoye', 'country_code' => 'RU'], ['name' => 'Lorqui', 'country_code' => 'ES'], ['name' => 'Ensisheim', 'country_code' => 'FR'], ['name' => 'Pluvigner', 'country_code' => 'FR'], ['name' => 'Payette', 'country_code' => 'US'], ['name' => 'Vlahita', 'country_code' => 'RO'], ['name' => 'North Tamborine', 'country_code' => 'AU'], ['name' => 'Grove', 'country_code' => 'US'], ['name' => 'Bunde', 'country_code' => 'DE'], ['name' => 'Celorico da Beira', 'country_code' => 'PT'], ['name' => 'Gettysburg', 'country_code' => 'US'], ['name' => 'Sotomayor', 'country_code' => 'ES'], ['name' => 'Montecristo', 'country_code' => 'MX'], ['name' => 'Langenlois', 'country_code' => 'AT'], ['name' => 'Trostianets', 'country_code' => 'UA'], ['name' => 'Linas', 'country_code' => 'FR'], ['name' => 'Highlands', 'country_code' => 'US'], ['name' => 'Chirnogi', 'country_code' => 'RO'], ['name' => 'Welcome', 'country_code' => 'US'], ['name' => 'La Sarre', 'country_code' => 'CA'], ['name' => 'Wick', 'country_code' => 'GB'], ['name' => 'Vezzano Ligure', 'country_code' => 'IT'], ['name' => 'Valley', 'country_code' => 'US'], ['name' => 'Upper Milford', 'country_code' => 'US'], ['name' => 'Solesino', 'country_code' => 'IT'], ['name' => 'Campeni', 'country_code' => 'RO'], ['name' => 'Shelburne', 'country_code' => 'US'], ['name' => 'Corte Franca', 'country_code' => 'IT'], ['name' => 'Kasson', 'country_code' => 'US'], ['name' => 'Frydlant', 'country_code' => 'CZ'], ['name' => 'Granite Falls', 'country_code' => 'US'], ['name' => 'Creston', 'country_code' => 'US'], ['name' => 'Kingsbridge', 'country_code' => 'GB'], ['name' => 'Clear Lake', 'country_code' => 'US'], ['name' => 'Jacui', 'country_code' => 'BR'], ['name' => 'Bad Fussing', 'country_code' => 'DE'], ['name' => 'Aussonne', 'country_code' => 'FR'], ['name' => 'Murwillumbah', 'country_code' => 'AU'], ['name' => 'Trail', 'country_code' => 'CA'], ['name' => 'Senador Sa', 'country_code' => 'BR'], ['name' => 'Belinskiy', 'country_code' => 'RU'], ['name' => 'Nicolosi', 'country_code' => 'IT'], ['name' => 'Quievrechain', 'country_code' => 'FR'], ['name' => 'Serrania', 'country_code' => 'BR'], ['name' => 'Dittelbrunn', 'country_code' => 'DE'], ['name' => 'Steele Creek', 'country_code' => 'US'], ['name' => 'Omer', 'country_code' => 'IL'], ['name' => 'San Filippo della Mela', 'country_code' => 'IT'], ['name' => 'Oundle', 'country_code' => 'GB'], ['name' => 'Chandler', 'country_code' => 'CA'], ['name' => 'Pignan', 'country_code' => 'FR'], ['name' => 'Stone Mills', 'country_code' => 'CA'], ['name' => 'Villa d Alme', 'country_code' => 'IT'], ['name' => 'Thornbury', 'country_code' => 'US'], ['name' => 'Sao Jose da Lagoa Tapada', 'country_code' => 'BR'], ['name' => 'Spinetoli', 'country_code' => 'IT'], ['name' => 'Novoselytsia', 'country_code' => 'UA'], ['name' => 'Melissano', 'country_code' => 'IT'], ['name' => 'Fort Scott', 'country_code' => 'US'], ['name' => 'Baienfurt', 'country_code' => 'DE'], ['name' => 'Pukalani', 'country_code' => 'US'], ['name' => 'Calimanesti', 'country_code' => 'RO'], ['name' => 'Cee', 'country_code' => 'ES'], ['name' => 'Hornsby Bend', 'country_code' => 'US'], ['name' => 'Dermbach', 'country_code' => 'DE'], ['name' => 'Loten', 'country_code' => 'NO'], ['name' => 'Kremmen', 'country_code' => 'DE'], ['name' => 'Markneukirchen', 'country_code' => 'DE'], ['name' => 'Kingsbury', 'country_code' => 'GB'], ['name' => 'Sarnico', 'country_code' => 'IT'], ['name' => 'Cotignola', 'country_code' => 'IT'], ['name' => 'Cootamundra', 'country_code' => 'AU'], ['name' => 'Chapultenango', 'country_code' => 'MX'], ['name' => 'Alto Paraiso de Goias', 'country_code' => 'BR'], ['name' => 'Conego Marinho', 'country_code' => 'BR'], ['name' => 'Oulad Hassoune', 'country_code' => 'MA'], ['name' => 'Dykanka', 'country_code' => 'UA'], ['name' => 'Plaistow', 'country_code' => 'US'], ['name' => 'Hanover', 'country_code' => 'CA'], ['name' => 'Lamarque', 'country_code' => 'AR'], ['name' => 'Munnerstadt', 'country_code' => 'DE'], ['name' => 'Calden', 'country_code' => 'DE'], ['name' => 'Pressbaum', 'country_code' => 'AT'], ['name' => 'Kahla', 'country_code' => 'DE'], ['name' => 'Treherbert', 'country_code' => 'GB'], ['name' => 'Polk', 'country_code' => 'US'], ['name' => 'Caluso', 'country_code' => 'IT'], ['name' => 'Las Lomitas', 'country_code' => 'AR'], ['name' => 'Charikot', 'country_code' => 'NP'], ['name' => 'Robbiate', 'country_code' => 'IT'], ['name' => 'Sao Miguel das Missoes', 'country_code' => 'BR'], ['name' => 'Jati', 'country_code' => 'BR'], ['name' => 'Boultham', 'country_code' => 'GB'], ['name' => 'Migennes', 'country_code' => 'FR'], ['name' => 'Carbondale', 'country_code' => 'US'], ['name' => 'Robinwood', 'country_code' => 'US'], ['name' => 'Staritsa', 'country_code' => 'RU'], ['name' => 'Xavantina', 'country_code' => 'BR'], ['name' => 'Sant Angelo di Piove di Sacco', 'country_code' => 'IT'], ['name' => 'Berwick', 'country_code' => 'US'], ['name' => 'Teresva', 'country_code' => 'UA'], ['name' => 'Lavras do Sul', 'country_code' => 'BR'], ['name' => 'Palmeiropolis', 'country_code' => 'BR'], ['name' => 'El Paso', 'country_code' => 'ES'], ['name' => 'Sonnino', 'country_code' => 'IT'], ['name' => 'Manazuru', 'country_code' => 'JP'], ['name' => 'Hardegsen', 'country_code' => 'DE'], ['name' => 'Jassans-Riottier', 'country_code' => 'FR'], ['name' => 'Ankum', 'country_code' => 'DE'], ['name' => 'Perry', 'country_code' => 'US'], ['name' => 'San Miguel Siguila', 'country_code' => 'GT'], ['name' => 'Hopsten', 'country_code' => 'DE'], ['name' => 'Wissembourg', 'country_code' => 'FR'], ['name' => 'Hongliuyuan', 'country_code' => 'CN'], ['name' => 'Sebastopol', 'country_code' => 'US'], ['name' => 'Center', 'country_code' => 'US'], ['name' => 'Santa Giustina in Colle', 'country_code' => 'IT'], ['name' => 'Coromoro', 'country_code' => 'CO'], ['name' => 'Upper Hanover', 'country_code' => 'US'], ['name' => 'Ilminster', 'country_code' => 'GB'], ['name' => 'Mezzolombardo', 'country_code' => 'IT'], ['name' => 'Carosino', 'country_code' => 'IT'], ['name' => 'Webster City', 'country_code' => 'US'], ['name' => 'Treharris', 'country_code' => 'GB'], ['name' => 'Wivenhoe', 'country_code' => 'GB'], ['name' => 'Hastings', 'country_code' => 'US'], ['name' => 'Adro', 'country_code' => 'IT'], ['name' => 'Plain City', 'country_code' => 'US'], ['name' => 'Indiantown', 'country_code' => 'US'], ['name' => 'Staranzano', 'country_code' => 'IT'], ['name' => 'Fort Dix', 'country_code' => 'US'], ['name' => 'Gali', 'country_code' => 'GE'], ['name' => 'Paty', 'country_code' => 'HU'], ['name' => 'Horovice', 'country_code' => 'CZ'], ['name' => 'Southwell', 'country_code' => 'GB'], ['name' => 'Coimbra', 'country_code' => 'BR'], ['name' => 'Collinsville', 'country_code' => 'US'], ['name' => 'South-West Oxford', 'country_code' => 'CA'], ['name' => 'Acton Vale', 'country_code' => 'CA'], ['name' => 'Uvaly', 'country_code' => 'CZ'], ['name' => 'Saltara', 'country_code' => 'IT'], ['name' => 'Inakadate', 'country_code' => 'JP'], ['name' => 'Juranda', 'country_code' => 'BR'], ['name' => 'Villamayor', 'country_code' => 'ES'], ['name' => 'Tervel', 'country_code' => 'BG'], ['name' => 'Cognin', 'country_code' => 'FR'], ['name' => 'Wellington', 'country_code' => 'US'], ['name' => 'Boulazac', 'country_code' => 'FR'], ['name' => 'Pinon Hills', 'country_code' => 'US'], ['name' => 'Jrvezh', 'country_code' => 'AM'], ['name' => 'Honfleur', 'country_code' => 'FR'], ['name' => 'Balaruc-les-Bains', 'country_code' => 'FR'], ['name' => 'Auburn', 'country_code' => 'US'], ['name' => 'Lagoa Salgada', 'country_code' => 'BR'], ['name' => 'Thurmont', 'country_code' => 'US'], ['name' => 'Old Jefferson', 'country_code' => 'US'], ['name' => 'Donje Zabare', 'country_code' => 'XK'], ['name' => 'Groitzsch', 'country_code' => 'DE'], ['name' => 'Borgetto', 'country_code' => 'IT'], ['name' => 'Beaupreau', 'country_code' => 'FR'], ['name' => 'North Patchogue', 'country_code' => 'US'], ['name' => 'Vosendorf', 'country_code' => 'AT'], ['name' => 'Brighton', 'country_code' => 'US'], ['name' => 'Oakdale', 'country_code' => 'US'], ['name' => 'Homecourt', 'country_code' => 'FR'], ['name' => 'San Antonio', 'country_code' => 'PR'], ['name' => 'Lamar', 'country_code' => 'US'], ['name' => 'Catigua', 'country_code' => 'BR'], ['name' => 'Butler', 'country_code' => 'US'], ['name' => 'Chehalis', 'country_code' => 'US'], ['name' => 'Roccasecca', 'country_code' => 'IT'], ['name' => 'Al Mazra ah', 'country_code' => 'SY'], ['name' => 'Vapniarka', 'country_code' => 'UA'], ['name' => 'Richmond', 'country_code' => 'US'], ['name' => 'Etowah', 'country_code' => 'US'], ['name' => 'Villa Diaz Ordaz', 'country_code' => 'MX'], ['name' => 'Intorsura Buzaului', 'country_code' => 'RO'], ['name' => 'Solone', 'country_code' => 'UA'], ['name' => 'Ipumirim', 'country_code' => 'BR'], ['name' => 'Sieghartskirchen', 'country_code' => 'AT'], ['name' => 'Bromont', 'country_code' => 'CA'], ['name' => 'Guisona', 'country_code' => 'ES'], ['name' => 'Sykkylven', 'country_code' => 'NO'], ['name' => 'Seefeld', 'country_code' => 'DE'], ['name' => 'Waller', 'country_code' => 'US'], ['name' => 'Sao Jose dos Brasilios', 'country_code' => 'BR'], ['name' => 'Askarovo', 'country_code' => 'RU'], ['name' => 'Mikulov', 'country_code' => 'CZ'], ['name' => 'Chippewa', 'country_code' => 'US'], ['name' => 'Windsor', 'country_code' => 'US'], ['name' => 'Orange', 'country_code' => 'US'], ['name' => 'Beckwith', 'country_code' => 'CA'], ['name' => 'Ban Duea', 'country_code' => 'TH'], ['name' => 'Flintbek', 'country_code' => 'DE'], ['name' => 'Inocencia', 'country_code' => 'BR'], ['name' => 'Scotia', 'country_code' => 'US'], ['name' => 'Big Flats', 'country_code' => 'US'], ['name' => 'Ferno', 'country_code' => 'IT'], ['name' => 'East Manchester', 'country_code' => 'US'], ['name' => 'Tecuanipan', 'country_code' => 'MX'], ['name' => 'Porec', 'country_code' => 'HR'], ['name' => 'Orbottyan', 'country_code' => 'HU'], ['name' => 'Lindoia', 'country_code' => 'BR'], ['name' => 'Marshfield', 'country_code' => 'US'], ['name' => 'Oroso', 'country_code' => 'ES'], ['name' => 'Egly', 'country_code' => 'FR'], ['name' => 'Derendingen', 'country_code' => 'CH'], ['name' => 'Calimera', 'country_code' => 'IT'], ['name' => 'Saint-Alban', 'country_code' => 'FR'], ['name' => 'Sahuaripa', 'country_code' => 'MX'], ['name' => 'Shirley', 'country_code' => 'US'], ['name' => 'Vorchdorf', 'country_code' => 'AT'], ['name' => 'Eden', 'country_code' => 'US'], ['name' => 'Devils Lake', 'country_code' => 'US'], ['name' => 'River Oaks', 'country_code' => 'US'], ['name' => 'Mapello', 'country_code' => 'IT'], ['name' => 'Mitsamiouli', 'country_code' => 'KM'], ['name' => 'Bairnsdale', 'country_code' => 'AU'], ['name' => 'Beni Aissi', 'country_code' => 'DZ'], ['name' => 'Saint-Aubin-de-Medoc', 'country_code' => 'FR'], ['name' => 'Goderich', 'country_code' => 'CA'], ['name' => 'Inden', 'country_code' => 'DE'], ['name' => 'Waupaca', 'country_code' => 'US'], ['name' => 'Wapato', 'country_code' => 'US'], ['name' => 'Sappemeer', 'country_code' => 'NL'], ['name' => 'Chernyy Yar', 'country_code' => 'RU'], ['name' => 'Saint Agnes', 'country_code' => 'GB'], ['name' => 'Dzilam Gonzalez', 'country_code' => 'MX'], ['name' => 'South Beloit', 'country_code' => 'US'], ['name' => 'Povegliano Veronese', 'country_code' => 'IT'], ['name' => 'Ollon', 'country_code' => 'CH'], ['name' => 'Oulainen', 'country_code' => 'FI'], ['name' => 'Pederobba', 'country_code' => 'IT'], ['name' => 'Kula', 'country_code' => 'US'], ['name' => 'Yenotayevka', 'country_code' => 'RU'], ['name' => 'Tocantinia', 'country_code' => 'BR'], ['name' => 'Broadview', 'country_code' => 'US'], ['name' => 'Brisighella', 'country_code' => 'IT'], ['name' => 'Naro', 'country_code' => 'IT'], ['name' => 'Cushing', 'country_code' => 'US'], ['name' => 'Astigarraga', 'country_code' => 'ES'], ['name' => 'La Tronche', 'country_code' => 'FR'], ['name' => 'Divion', 'country_code' => 'FR'], ['name' => 'Pike Creek', 'country_code' => 'US'], ['name' => 'Milan', 'country_code' => 'US'], ['name' => 'Allegany', 'country_code' => 'US'], ['name' => 'Pedrao', 'country_code' => 'BR'], ['name' => 'Teublitz', 'country_code' => 'DE'], ['name' => 'Gaoual', 'country_code' => 'GN'], ['name' => 'Senatobia', 'country_code' => 'US'], ['name' => 'Mattersburg', 'country_code' => 'AT'], ['name' => 'Lajeado Novo', 'country_code' => 'BR'], ['name' => 'Pleinfeld', 'country_code' => 'DE'], ['name' => 'Kokemaki', 'country_code' => 'FI'], ['name' => 'Tarso', 'country_code' => 'CO'], ['name' => 'Sioux Center', 'country_code' => 'US'], ['name' => 'Mordelles', 'country_code' => 'FR'], ['name' => 'Winslow', 'country_code' => 'US'], ['name' => 'Lagoa de Pedra', 'country_code' => 'BR'], ['name' => 'Escalon', 'country_code' => 'US'], ['name' => 'Abira', 'country_code' => 'JP'], ['name' => 'Hnust a', 'country_code' => 'SK'], ['name' => 'Stromstad', 'country_code' => 'SE'], ['name' => 'Turkheim', 'country_code' => 'DE'], ['name' => 'Lake Shore', 'country_code' => 'US'], ['name' => 'Thomaston', 'country_code' => 'US'], ['name' => 'Broumov', 'country_code' => 'CZ'], ['name' => 'Omitlan de Juarez', 'country_code' => 'MX'], ['name' => 'Farmington', 'country_code' => 'US'], ['name' => 'Pulaski', 'country_code' => 'US'], ['name' => 'Emerson', 'country_code' => 'US'], ['name' => 'Dolni Chiflik', 'country_code' => 'BG'], ['name' => 'Mglin', 'country_code' => 'RU'], ['name' => 'Hrinova', 'country_code' => 'SK'], ['name' => 'Ambalema', 'country_code' => 'CO'], ['name' => 'Bernardsville', 'country_code' => 'US'], ['name' => 'Hurbanovo', 'country_code' => 'SK'], ['name' => 'Beni Oual Sehira', 'country_code' => 'MA'], ['name' => 'Caribou', 'country_code' => 'US'], ['name' => 'Tuttle', 'country_code' => 'US'], ['name' => 'Sulzbach am Main', 'country_code' => 'DE'], ['name' => 'Uthumphon Phisai', 'country_code' => 'TH'], ['name' => 'Velykyy Bereznyy', 'country_code' => 'UA'], ['name' => 'Mhamid el Rhozlane', 'country_code' => 'MA'], ['name' => 'Cavaria', 'country_code' => 'IT'], ['name' => 'Grosskarolinenfeld', 'country_code' => 'DE'], ['name' => 'Renchen', 'country_code' => 'DE'], ['name' => 'Stolzenau', 'country_code' => 'DE'], ['name' => 'Hang Dong', 'country_code' => 'TH'], ['name' => 'Bilovec', 'country_code' => 'CZ'], ['name' => 'Palmyra', 'country_code' => 'US'], ['name' => 'LaFayette', 'country_code' => 'US'], ['name' => 'Romaniv', 'country_code' => 'UA'], ['name' => 'Amerongen', 'country_code' => 'NL'], ['name' => 'Almas', 'country_code' => 'BR'], ['name' => 'Jenbach', 'country_code' => 'AT'], ['name' => 'Palmyra', 'country_code' => 'US'], ['name' => 'Strasswalchen', 'country_code' => 'AT'], ['name' => 'Castello di Godego', 'country_code' => 'IT'], ['name' => 'Paulo Lopes', 'country_code' => 'BR'], ['name' => 'Denham', 'country_code' => 'GB'], ['name' => 'Livonia', 'country_code' => 'US'], ['name' => 'La Rambla', 'country_code' => 'ES'], ['name' => 'Castel Madama', 'country_code' => 'IT'], ['name' => 'Ait Hammou', 'country_code' => 'MA'], ['name' => 'Ipuacu', 'country_code' => 'BR'], ['name' => 'Joshua Tree', 'country_code' => 'US'], ['name' => 'Pakefield', 'country_code' => 'GB'], ['name' => 'Passirano', 'country_code' => 'IT'], ['name' => 'Ras Kebdana', 'country_code' => 'MA'], ['name' => 'Burton Latimer', 'country_code' => 'GB'], ['name' => 'Camerano', 'country_code' => 'IT'], ['name' => 'Grodig', 'country_code' => 'AT'], ['name' => 'Sao Pedro do Turvo', 'country_code' => 'BR'], ['name' => 'Kotake', 'country_code' => 'JP'], ['name' => 'Saint-Berthevin', 'country_code' => 'FR'], ['name' => 'Ait Hadi', 'country_code' => 'MA'], ['name' => 'Leola', 'country_code' => 'US'], ['name' => 'Dayton', 'country_code' => 'US'], ['name' => 'Plympton-Wyoming', 'country_code' => 'CA'], ['name' => 'Central Huron', 'country_code' => 'CA'], ['name' => 'Le Mesnil-Saint-Denis', 'country_code' => 'FR'], ['name' => 'Inwood', 'country_code' => 'US'], ['name' => 'Nykarleby', 'country_code' => 'FI'], ['name' => 'Inimutaba', 'country_code' => 'BR'], ['name' => 'Petite-Rosselle', 'country_code' => 'FR'], ['name' => 'Umari', 'country_code' => 'BR'], ['name' => 'Plumas Lake', 'country_code' => 'US'], ['name' => 'Elorrio', 'country_code' => 'ES'], ['name' => 'Banchory', 'country_code' => 'GB'], ['name' => 'Fuzesabony', 'country_code' => 'HU'], ['name' => 'Florestal', 'country_code' => 'BR'], ['name' => 'Kunhegyes', 'country_code' => 'HU'], ['name' => 'Rade', 'country_code' => 'NO'], ['name' => 'Barr', 'country_code' => 'FR'], ['name' => 'San Nicolas', 'country_code' => 'ES'], ['name' => 'Nakata', 'country_code' => 'JP'], ['name' => 'Gaillon', 'country_code' => 'FR'], ['name' => 'Bad Sachsa', 'country_code' => 'DE'], ['name' => 'Hales Corners', 'country_code' => 'US'], ['name' => 'Orbe', 'country_code' => 'CH'], ['name' => 'Schaghticoke', 'country_code' => 'US'], ['name' => 'Rigaud', 'country_code' => 'CA'], ['name' => 'Hughson', 'country_code' => 'US'], ['name' => 'Kleinmond', 'country_code' => 'ZA'], ['name' => 'Scappoose', 'country_code' => 'US'], ['name' => 'Perros-Guirec', 'country_code' => 'FR'], ['name' => 'Inami', 'country_code' => 'JP'], ['name' => 'Lawrence', 'country_code' => 'US'], ['name' => 'Urraween', 'country_code' => 'AU'], ['name' => 'McCook', 'country_code' => 'US'], ['name' => 'East Fallowfield', 'country_code' => 'US'], ['name' => 'La Alianza', 'country_code' => 'HN'], ['name' => 'Campofelice di Roccella', 'country_code' => 'IT'], ['name' => 'Brejinho', 'country_code' => 'BR'], ['name' => 'Dairago', 'country_code' => 'IT'], ['name' => 'Schutterwald', 'country_code' => 'DE'], ['name' => 'Sinzing', 'country_code' => 'DE'], ['name' => 'Moema', 'country_code' => 'BR'], ['name' => 'Cormons', 'country_code' => 'IT'], ['name' => 'Lago Vista', 'country_code' => 'US'], ['name' => 'Columbia Falls', 'country_code' => 'US'], ['name' => 'Khoshk Bijar', 'country_code' => 'IR'], ['name' => 'Curtici', 'country_code' => 'RO'], ['name' => 'Sant Agata Bolognese', 'country_code' => 'IT'], ['name' => 'Dry Run', 'country_code' => 'US'], ['name' => 'Granito', 'country_code' => 'BR'], ['name' => 'Rio d Oeste', 'country_code' => 'BR'], ['name' => 'Jackson', 'country_code' => 'US'], ['name' => 'Durach', 'country_code' => 'DE'], ['name' => 'Shiranuka', 'country_code' => 'JP'], ['name' => 'New Hanover', 'country_code' => 'US'], ['name' => 'Marshall', 'country_code' => 'US'], ['name' => 'Rizal', 'country_code' => 'PH'], ['name' => 'Sa Bot', 'country_code' => 'TH'], ['name' => 'Kruhlaye', 'country_code' => 'BY'], ['name' => 'Nettersheim', 'country_code' => 'DE'], ['name' => 'Lower Windsor', 'country_code' => 'US'], ['name' => 'Quatigua', 'country_code' => 'BR'], ['name' => 'Meldorf', 'country_code' => 'DE'], ['name' => 'Easton', 'country_code' => 'US'], ['name' => 'Market Deeping', 'country_code' => 'GB'], ['name' => 'Saujon', 'country_code' => 'FR'], ['name' => 'Montrose', 'country_code' => 'US'], ['name' => 'Llandudno Junction', 'country_code' => 'GB'], ['name' => 'Albertville', 'country_code' => 'US'], ['name' => 'Porters Neck', 'country_code' => 'US'], ['name' => 'Gold River', 'country_code' => 'US'], ['name' => 'Assis Brasil', 'country_code' => 'BR'], ['name' => 'Sidi al Ghandour', 'country_code' => 'MA'], ['name' => 'Magnanville', 'country_code' => 'FR'], ['name' => 'Mondim de Basto', 'country_code' => 'PT'], ['name' => 'Anina', 'country_code' => 'RO'], ['name' => 'Barao do Triunfo', 'country_code' => 'BR'], ['name' => 'Berlin', 'country_code' => 'US'], ['name' => 'Delafield', 'country_code' => 'US'], ['name' => 'Lossburg', 'country_code' => 'DE'], ['name' => 'Nea Kallikrateia', 'country_code' => 'GR'], ['name' => 'Burkardroth', 'country_code' => 'DE'], ['name' => 'Dno', 'country_code' => 'RU'], ['name' => 'Montecosaro', 'country_code' => 'IT'], ['name' => 'Mount Horeb', 'country_code' => 'US'], ['name' => 'Big Stone Gap', 'country_code' => 'US'], ['name' => 'Gonzales', 'country_code' => 'US'], ['name' => 'Royalton', 'country_code' => 'US'], ['name' => 'Zane', 'country_code' => 'IT'], ['name' => 'Brecknock', 'country_code' => 'US'], ['name' => 'Pikeville', 'country_code' => 'US'], ['name' => 'Teteles de Avila Castillo', 'country_code' => 'MX'], ['name' => 'Fehring', 'country_code' => 'AT'], ['name' => 'Himberg', 'country_code' => 'AT'], ['name' => 'Chauray', 'country_code' => 'FR'], ['name' => 'Baurci', 'country_code' => 'MD'], ['name' => 'Haddon Heights', 'country_code' => 'US'], ['name' => 'Page', 'country_code' => 'US'], ['name' => 'Maripi', 'country_code' => 'CO'], ['name' => 'Bindlach', 'country_code' => 'DE'], ['name' => 'Saint-Andre-de-la-Roche', 'country_code' => 'FR'], ['name' => 'Ortenburg', 'country_code' => 'DE'], ['name' => 'North Hanover', 'country_code' => 'US'], ['name' => 'Phu Kradueng', 'country_code' => 'TH'], ['name' => 'La Ferte-Saint-Aubin', 'country_code' => 'FR'], ['name' => 'Fairfax', 'country_code' => 'US'], ['name' => 'Dummerstorf', 'country_code' => 'DE'], ['name' => 'Abtsgmund', 'country_code' => 'DE'], ['name' => 'Dumbraveni', 'country_code' => 'RO'], ['name' => 'Konigsee', 'country_code' => 'DE'], ['name' => 'Longpont-sur-Orge', 'country_code' => 'FR'], ['name' => 'Albbruck', 'country_code' => 'DE'], ['name' => 'Zlatna', 'country_code' => 'RO'], ['name' => 'Drvar', 'country_code' => 'BA'], ['name' => 'Corte', 'country_code' => 'FR'], ['name' => 'Yreka', 'country_code' => 'US'], ['name' => 'Benton', 'country_code' => 'US'], ['name' => 'Norwich', 'country_code' => 'US'], ['name' => 'Peseux', 'country_code' => 'CH'], ['name' => 'Marengo', 'country_code' => 'US'], ['name' => 'Louiseville', 'country_code' => 'CA'], ['name' => 'Laje de Muriae', 'country_code' => 'BR'], ['name' => 'Douar Brarba', 'country_code' => 'MA'], ['name' => 'Felizburgo', 'country_code' => 'BR'], ['name' => 'Slavkov u Brna', 'country_code' => 'CZ'], ['name' => 'Bad Goisern', 'country_code' => 'AT'], ['name' => 'Stonehouse', 'country_code' => 'GB'], ['name' => 'Fairlawn', 'country_code' => 'US'], ['name' => 'Williamstown', 'country_code' => 'US'], ['name' => 'Goioxim', 'country_code' => 'BR'], ['name' => 'Bischofswiesen', 'country_code' => 'DE'], ['name' => 'Robinson', 'country_code' => 'US'], ['name' => 'Sao Joao Batista do Gloria', 'country_code' => 'BR'], ['name' => 'Pieve di Cento', 'country_code' => 'IT'], ['name' => 'El Centenario', 'country_code' => 'MX'], ['name' => 'Bernolakovo', 'country_code' => 'SK'], ['name' => 'Adassil', 'country_code' => 'MA'], ['name' => 'Saintry-sur-Seine', 'country_code' => 'FR'], ['name' => 'Crozon', 'country_code' => 'FR'], ['name' => 'Trombudo Central', 'country_code' => 'BR'], ['name' => 'Tyrone', 'country_code' => 'US'], ['name' => 'Chesterfield', 'country_code' => 'US'], ['name' => 'Castlemaine', 'country_code' => 'AU'], ['name' => 'Chibougamau', 'country_code' => 'CA'], ['name' => 'Alpercata', 'country_code' => 'BR'], ['name' => 'Swaffham', 'country_code' => 'GB'], ['name' => 'North Star', 'country_code' => 'US'], ['name' => 'Nole', 'country_code' => 'IT'], ['name' => 'Purcell', 'country_code' => 'US'], ['name' => 'Lowell', 'country_code' => 'US'], ['name' => 'Lambsheim', 'country_code' => 'DE'], ['name' => 'Landen', 'country_code' => 'US'], ['name' => 'San Isidro', 'country_code' => 'PH'], ['name' => 'Canicattini Bagni', 'country_code' => 'IT'], ['name' => 'Sparanise', 'country_code' => 'IT'], ['name' => 'Vohenstrauss', 'country_code' => 'DE'], ['name' => 'Tazoult', 'country_code' => 'MA'], ['name' => 'Saint-Ismier', 'country_code' => 'FR'], ['name' => 'Miranda do Douro', 'country_code' => 'PT'], ['name' => 'Birkenfeld', 'country_code' => 'DE'], ['name' => 'Villarejo de Salvanes', 'country_code' => 'ES'], ['name' => 'Curarrehue', 'country_code' => 'CL'], ['name' => 'Longiano', 'country_code' => 'IT'], ['name' => 'Maracaja', 'country_code' => 'BR'], ['name' => 'Haslach im Kinzigtal', 'country_code' => 'DE'], ['name' => 'Dos Palos', 'country_code' => 'US'], ['name' => 'Saint-Juery', 'country_code' => 'FR'], ['name' => 'Chateaubourg', 'country_code' => 'FR'], ['name' => 'Loreto Aprutino', 'country_code' => 'IT'], ['name' => 'Vimperk', 'country_code' => 'CZ'], ['name' => 'Sahy', 'country_code' => 'SK'], ['name' => 'Valverde de la Virgen', 'country_code' => 'ES'], ['name' => 'Aylmer', 'country_code' => 'CA'], ['name' => 'Irajuba', 'country_code' => 'BR'], ['name' => 'Louvroil', 'country_code' => 'FR'], ['name' => 'Campo Belo do Sul', 'country_code' => 'BR'], ['name' => 'Peqin', 'country_code' => 'AL'], ['name' => 'Tafetachte', 'country_code' => 'MA'], ['name' => 'Park Street', 'country_code' => 'GB'], ['name' => 'Oceano', 'country_code' => 'US'], ['name' => 'Kirgiz-Miyaki', 'country_code' => 'RU'], ['name' => 'Napajedla', 'country_code' => 'CZ'], ['name' => 'Fairfield', 'country_code' => 'US'], ['name' => 'Grossmehring', 'country_code' => 'DE'], ['name' => 'Krasnokutsk', 'country_code' => 'UA'], ['name' => 'Volta Mantovana', 'country_code' => 'IT'], ['name' => 'Nova Bana', 'country_code' => 'SK'], ['name' => 'Piikkio', 'country_code' => 'FI'], ['name' => 'Asbach', 'country_code' => 'DE'], ['name' => 'Homberg', 'country_code' => 'DE'], ['name' => 'Sappington', 'country_code' => 'US'], ['name' => 'Maurice River', 'country_code' => 'US'], ['name' => 'Torregrotta', 'country_code' => 'IT'], ['name' => 'Serranopolis', 'country_code' => 'BR'], ['name' => 'Brena Alta', 'country_code' => 'ES'], ['name' => 'Paimpol', 'country_code' => 'FR'], ['name' => 'Malchin', 'country_code' => 'DE'], ['name' => 'Blaxland', 'country_code' => 'AU'], ['name' => 'Killi', 'country_code' => 'SY'], ['name' => 'Askawn', 'country_code' => 'MA'], ['name' => 'Chonan', 'country_code' => 'JP'], ['name' => 'Bilisht', 'country_code' => 'AL'], ['name' => 'Sao Jose da Barra', 'country_code' => 'BR'], ['name' => 'Brugine', 'country_code' => 'IT'], ['name' => 'Taznakht', 'country_code' => 'MA'], ['name' => 'McCordsville', 'country_code' => 'US'], ['name' => 'Librazhd', 'country_code' => 'AL'], ['name' => 'Sovetsk', 'country_code' => 'RU'], ['name' => 'Le Peage-de-Roussillon', 'country_code' => 'FR'], ['name' => 'Jurancon', 'country_code' => 'FR'], ['name' => 'Silvis', 'country_code' => 'US'], ['name' => 'Kampong Mata Mata', 'country_code' => 'BN'], ['name' => 'Bilton', 'country_code' => 'GB'], ['name' => 'Newport', 'country_code' => 'US'], ['name' => 'Anna Paulowna', 'country_code' => 'NL'], ['name' => 'Southwood Acres', 'country_code' => 'US'], ['name' => 'Friedrichroda', 'country_code' => 'DE'], ['name' => 'Mount Shasta', 'country_code' => 'US'], ['name' => 'San Marco Argentano', 'country_code' => 'IT'], ['name' => 'Salair', 'country_code' => 'RU'], ['name' => 'Kirillov', 'country_code' => 'RU'], ['name' => 'Buttapietra', 'country_code' => 'IT'], ['name' => 'West Brandywine', 'country_code' => 'US'], ['name' => 'Ojai', 'country_code' => 'US'], ['name' => 'South Berwick', 'country_code' => 'US'], ['name' => 'Albunol', 'country_code' => 'ES'], ['name' => 'Kriz', 'country_code' => 'HR'], ['name' => 'Monticello', 'country_code' => 'US'], ['name' => 'Lennox Head', 'country_code' => 'AU'], ['name' => 'Alstahaug', 'country_code' => 'NO'], ['name' => 'Douar Oulad Boussaken', 'country_code' => 'MA'], ['name' => 'Francisco Leon', 'country_code' => 'MX'], ['name' => 'Guatapara', 'country_code' => 'BR'], ['name' => 'Cha Preta', 'country_code' => 'BR'], ['name' => 'Nisa', 'country_code' => 'PT'], ['name' => 'Ra-ngae', 'country_code' => 'TH'], ['name' => 'Lahouarta', 'country_code' => 'MA'], ['name' => 'Smithfield', 'country_code' => 'US'], ['name' => 'Delson', 'country_code' => 'CA'], ['name' => 'Villa Hills', 'country_code' => 'US'], ['name' => 'South Heidelberg', 'country_code' => 'US'], ['name' => 'Radeburg', 'country_code' => 'DE'], ['name' => 'Montblanch', 'country_code' => 'ES'], ['name' => 'St. Gabriel', 'country_code' => 'US'], ['name' => 'Pillaro', 'country_code' => 'EC'], ['name' => 'San Emilio', 'country_code' => 'PH'], ['name' => 'Bidart', 'country_code' => 'FR'], ['name' => 'Almodovar', 'country_code' => 'PT'], ['name' => 'Tito', 'country_code' => 'IT'], ['name' => 'Lander', 'country_code' => 'US'], ['name' => 'Trstena', 'country_code' => 'SK'], ['name' => 'Palmer', 'country_code' => 'US'], ['name' => 'Wabern', 'country_code' => 'DE'], ['name' => 'Sheringham', 'country_code' => 'GB'], ['name' => 'Itacaja', 'country_code' => 'BR'], ['name' => 'Dock Junction', 'country_code' => 'US'], ['name' => 'Otterndorf', 'country_code' => 'DE'], ['name' => 'Nadlac', 'country_code' => 'RO'], ['name' => 'Pelinia', 'country_code' => 'MD'], ['name' => 'Bomaderry', 'country_code' => 'AU'], ['name' => 'Poviglio', 'country_code' => 'IT'], ['name' => 'Thung Fon', 'country_code' => 'TH'], ['name' => 'Ten Boer', 'country_code' => 'NL'], ['name' => 'Moravske Budejovice', 'country_code' => 'CZ'], ['name' => 'Sevenum', 'country_code' => 'NL'], ['name' => 'Techirghiol', 'country_code' => 'RO'], ['name' => 'Amara', 'country_code' => 'RO'], ['name' => 'Kottmarsdorf', 'country_code' => 'DE'], ['name' => 'Keystone Heights', 'country_code' => 'US'], ['name' => 'Balestrate', 'country_code' => 'IT'], ['name' => 'West Cocalico', 'country_code' => 'US'], ['name' => 'Haapajarvi', 'country_code' => 'FI'], ['name' => 'Ceriano Laghetto', 'country_code' => 'IT'], ['name' => 'Benacazon', 'country_code' => 'ES'], ['name' => 'Lenti', 'country_code' => 'HU'], ['name' => 'Begas', 'country_code' => 'ES'], ['name' => 'Braunton', 'country_code' => 'GB'], ['name' => 'Tsarychanka', 'country_code' => 'UA'], ['name' => 'Altaneira', 'country_code' => 'BR'], ['name' => 'Bain-de-Bretagne', 'country_code' => 'FR'], ['name' => 'Legden', 'country_code' => 'DE'], ['name' => 'Sidi Allal al Mcader', 'country_code' => 'MA'], ['name' => 'Pordic', 'country_code' => 'FR'], ['name' => 'Douar Tassift', 'country_code' => 'MA'], ['name' => 'Gundelsheim', 'country_code' => 'DE'], ['name' => 'Carhaix-Plouguer', 'country_code' => 'FR'], ['name' => 'Erlenbach', 'country_code' => 'CH'], ['name' => 'White Oak', 'country_code' => 'US'], ['name' => 'Rockton', 'country_code' => 'US'], ['name' => 'Tha Ruea', 'country_code' => 'TH'], ['name' => 'Cheadle', 'country_code' => 'GB'], ['name' => 'Treuenbrietzen', 'country_code' => 'DE'], ['name' => 'Yubari', 'country_code' => 'JP'], ['name' => 'Gedern', 'country_code' => 'DE'], ['name' => 'Markelo', 'country_code' => 'NL'], ['name' => 'Nyergesujfalu', 'country_code' => 'HU'], ['name' => 'Lagnieu', 'country_code' => 'FR'], ['name' => 'Geisenhausen', 'country_code' => 'DE'], ['name' => 'Holdorf', 'country_code' => 'DE'], ['name' => 'Rhoose', 'country_code' => 'GB'], ['name' => 'Ashland', 'country_code' => 'US'], ['name' => 'Muribeca', 'country_code' => 'BR'], ['name' => 'Eibenstock', 'country_code' => 'DE'], ['name' => 'Bernkastel-Kues', 'country_code' => 'DE'], ['name' => 'Bellegarde', 'country_code' => 'FR'], ['name' => 'Arconate', 'country_code' => 'IT'], ['name' => 'Malmyzh', 'country_code' => 'RU'], ['name' => 'Leipheim', 'country_code' => 'DE'], ['name' => 'Wingerworth', 'country_code' => 'GB'], ['name' => 'Florence', 'country_code' => 'US'], ['name' => 'Coracora', 'country_code' => 'PE'], ['name' => 'Sissach', 'country_code' => 'CH'], ['name' => 'Old Town', 'country_code' => 'US'], ['name' => 'Edgerton', 'country_code' => 'US'], ['name' => 'Lautern', 'country_code' => 'DE'], ['name' => 'New London', 'country_code' => 'US'], ['name' => 'Kuchl', 'country_code' => 'AT'], ['name' => 'Shibecha', 'country_code' => 'JP'], ['name' => 'Audun-le-Tiche', 'country_code' => 'FR'], ['name' => 'Altendorf', 'country_code' => 'CH'], ['name' => 'Talayuela', 'country_code' => 'ES'], ['name' => 'Stratham', 'country_code' => 'US'], ['name' => 'Kingswood', 'country_code' => 'GB'], ['name' => 'Saint-Etienne-de-Montluc', 'country_code' => 'FR'], ['name' => 'Oulad Cherki', 'country_code' => 'MA'], ['name' => 'Isyangulovo', 'country_code' => 'RU'], ['name' => 'Emlichheim', 'country_code' => 'DE'], ['name' => 'Pfaffenhofen an der Roth', 'country_code' => 'DE'], ['name' => 'Waldstetten', 'country_code' => 'DE'], ['name' => 'Oued El Makhazine', 'country_code' => 'MA'], ['name' => 'Shenfield', 'country_code' => 'GB'], ['name' => 'Kimberley', 'country_code' => 'CA'], ['name' => 'Cesky Brod', 'country_code' => 'CZ'], ['name' => 'Rufina', 'country_code' => 'IT'], ['name' => 'Kargasok', 'country_code' => 'RU'], ['name' => 'Weikersheim', 'country_code' => 'DE'], ['name' => 'Laguna Carapa', 'country_code' => 'BR'], ['name' => 'Mutlangen', 'country_code' => 'DE'], ['name' => 'North Bend', 'country_code' => 'US'], ['name' => 'Norg', 'country_code' => 'NL'], ['name' => 'Shenstone', 'country_code' => 'GB'], ['name' => 'Soave', 'country_code' => 'IT'], ['name' => 'Hiawatha', 'country_code' => 'US'], ['name' => 'Mansoa', 'country_code' => 'GW'], ['name' => 'Sennori', 'country_code' => 'IT'], ['name' => 'Collado Mediano', 'country_code' => 'ES'], ['name' => 'Hubbard', 'country_code' => 'US'], ['name' => 'River Rouge', 'country_code' => 'US'], ['name' => 'Joviania', 'country_code' => 'BR'], ['name' => 'Kaplice', 'country_code' => 'CZ'], ['name' => 'Sandwich', 'country_code' => 'US'], ['name' => 'Oebisfelde', 'country_code' => 'DE'], ['name' => 'Maripipi', 'country_code' => 'PH'], ['name' => 'Belen', 'country_code' => 'US'], ['name' => 'Kalsdorf bei Graz', 'country_code' => 'AT'], ['name' => 'Marion', 'country_code' => 'US'], ['name' => 'Inverness', 'country_code' => 'US'], ['name' => 'Waitara', 'country_code' => 'NZ'], ['name' => 'Elassona', 'country_code' => 'GR'], ['name' => 'Great Bookham', 'country_code' => 'GB'], ['name' => 'Cotati', 'country_code' => 'US'], ['name' => 'Wauseon', 'country_code' => 'US'], ['name' => 'Soltvadkert', 'country_code' => 'HU'], ['name' => 'Beauvechain', 'country_code' => 'BE'], ['name' => 'Cranves-Sales', 'country_code' => 'FR'], ['name' => 'Atherton', 'country_code' => 'AU'], ['name' => 'Ouro', 'country_code' => 'BR'], ['name' => 'Inconfidentes', 'country_code' => 'BR'], ['name' => 'Paulo Frontin', 'country_code' => 'BR'], ['name' => 'Victoria', 'country_code' => 'RO'], ['name' => 'Cercedilla', 'country_code' => 'ES'], ['name' => 'Mills River', 'country_code' => 'US'], ['name' => 'Salete', 'country_code' => 'BR'], ['name' => 'Untermeitingen', 'country_code' => 'DE'], ['name' => 'Calverton', 'country_code' => 'GB'], ['name' => 'Saranac Lake', 'country_code' => 'US'], ['name' => 'Rzhyshchiv', 'country_code' => 'UA'], ['name' => 'Sanibel', 'country_code' => 'US'], ['name' => 'Bou Iferda', 'country_code' => 'MA'], ['name' => 'Torrita di Siena', 'country_code' => 'IT'], ['name' => 'Teya', 'country_code' => 'ES'], ['name' => 'Auvers-sur-Oise', 'country_code' => 'FR'], ['name' => 'Mezhova', 'country_code' => 'UA'], ['name' => 'Farmington', 'country_code' => 'US'], ['name' => 'Suonenjoki', 'country_code' => 'FI'], ['name' => 'Blandford-Blenheim', 'country_code' => 'CA'], ['name' => 'Simacota', 'country_code' => 'CO'], ['name' => 'Santa Terezinha', 'country_code' => 'BR'], ['name' => 'Soldotna', 'country_code' => 'US'], ['name' => 'Simitli', 'country_code' => 'BG'], ['name' => 'Pirdop', 'country_code' => 'BG'], ['name' => 'Trimbach', 'country_code' => 'CH'], ['name' => 'Devavanya', 'country_code' => 'HU'], ['name' => 'Andorra', 'country_code' => 'ES'], ['name' => 'Port Jefferson Station', 'country_code' => 'US'], ['name' => 'Monsenhor Hipolito', 'country_code' => 'BR'], ['name' => 'Old Lyme', 'country_code' => 'US'], ['name' => 'Bayham', 'country_code' => 'CA'], ['name' => 'Ivolginsk', 'country_code' => 'RU'], ['name' => 'Tain-l Hermitage', 'country_code' => 'FR'], ['name' => 'Reiden', 'country_code' => 'CH'], ['name' => 'Greenville', 'country_code' => 'US'], ['name' => 'Patarlagele', 'country_code' => 'RO'], ['name' => 'Loos-en-Gohelle', 'country_code' => 'FR'], ['name' => 'Murr', 'country_code' => 'DE'], ['name' => 'West Concord', 'country_code' => 'US'], ['name' => 'New Bremen', 'country_code' => 'US'], ['name' => 'Betheny', 'country_code' => 'FR'], ['name' => 'Neugersdorf', 'country_code' => 'DE'], ['name' => 'Mittenwald', 'country_code' => 'DE'], ['name' => 'Lignano Sabbiadoro', 'country_code' => 'IT'], ['name' => 'Buchrain', 'country_code' => 'CH'], ['name' => 'Mentor-on-the-Lake', 'country_code' => 'US'], ['name' => 'Saint-Christol-lez-Ales', 'country_code' => 'FR'], ['name' => 'Aiquile', 'country_code' => 'BO'], ['name' => 'Villa del Rio', 'country_code' => 'ES'], ['name' => 'Waterloo', 'country_code' => 'US'], ['name' => 'East Marlborough', 'country_code' => 'US'], ['name' => 'Arbaa Ayacha', 'country_code' => 'MA'], ['name' => 'Ancient Oaks', 'country_code' => 'US'], ['name' => 'Tuncurry', 'country_code' => 'AU'], ['name' => 'Farr West', 'country_code' => 'US'], ['name' => 'Odry', 'country_code' => 'CZ'], ['name' => 'Morteau', 'country_code' => 'FR'], ['name' => 'Syanno', 'country_code' => 'BY'], ['name' => 'Homun', 'country_code' => 'MX'], ['name' => 'Livramento', 'country_code' => 'BR'], ['name' => 'South Apopka', 'country_code' => 'US'], ['name' => 'Pembroke', 'country_code' => 'US'], ['name' => 'Komijan', 'country_code' => 'IR'], ['name' => 'Nobitz', 'country_code' => 'DE'], ['name' => 'Robeson', 'country_code' => 'US'], ['name' => 'Upper Deerfield', 'country_code' => 'US'], ['name' => 'Bujalance', 'country_code' => 'ES'], ['name' => 'Militello in Val di Catania', 'country_code' => 'IT'], ['name' => 'Ibirarema', 'country_code' => 'BR'], ['name' => 'Gromitz', 'country_code' => 'DE'], ['name' => 'Tornal a', 'country_code' => 'SK'], ['name' => 'Reyes', 'country_code' => 'BO'], ['name' => 'Sericita', 'country_code' => 'BR'], ['name' => 'Canovanas', 'country_code' => 'PR'], ['name' => 'Providence Village', 'country_code' => 'US'], ['name' => 'Buchs', 'country_code' => 'CH'], ['name' => 'Esashi', 'country_code' => 'JP'], ['name' => 'Murg', 'country_code' => 'DE'], ['name' => 'Cazorla', 'country_code' => 'ES'], ['name' => 'Inverness', 'country_code' => 'US'], ['name' => 'Le Roy', 'country_code' => 'US'], ['name' => 'Gypsum', 'country_code' => 'US'], ['name' => 'Clarkston', 'country_code' => 'US'], ['name' => 'Segre', 'country_code' => 'FR'], ['name' => 'Arraiolos', 'country_code' => 'PT'], ['name' => 'Bruzual', 'country_code' => 'VE'], ['name' => 'Canova', 'country_code' => 'IT'], ['name' => 'Tolleson', 'country_code' => 'US'], ['name' => 'Groditz', 'country_code' => 'DE'], ['name' => 'Luserna San Giovanni', 'country_code' => 'IT'], ['name' => 'Carinola', 'country_code' => 'IT'], ['name' => 'New Roads', 'country_code' => 'US'], ['name' => 'San Diego de Alejandria', 'country_code' => 'MX'], ['name' => 'Fabregues', 'country_code' => 'FR'], ['name' => 'Ponchatoula', 'country_code' => 'US'], ['name' => 'La Concordia', 'country_code' => 'NI'], ['name' => 'Strathalbyn', 'country_code' => 'AU'], ['name' => 'Mapimi', 'country_code' => 'MX'], ['name' => 'Slivnitsa', 'country_code' => 'BG'], ['name' => 'Poiares', 'country_code' => 'PT'], ['name' => 'Camp Pendleton North', 'country_code' => 'US'], ['name' => 'Santa Marta de Penaguiao', 'country_code' => 'PT'], ['name' => 'Antonio Olinto', 'country_code' => 'BR'], ['name' => 'Humberston', 'country_code' => 'GB'], ['name' => 'Roggiano Gravina', 'country_code' => 'IT'], ['name' => 'Smithville', 'country_code' => 'US'], ['name' => 'East Pikeland', 'country_code' => 'US'], ['name' => 'Eden Isle', 'country_code' => 'US'], ['name' => 'Ban Chan', 'country_code' => 'TH'], ['name' => 'Bannockburn', 'country_code' => 'GB'], ['name' => 'Wolkersdorf im Weinviertel', 'country_code' => 'AT'], ['name' => 'Pomona', 'country_code' => 'US'], ['name' => 'Uyskoye', 'country_code' => 'RU'], ['name' => 'Pontevico', 'country_code' => 'IT'], ['name' => 'Houston', 'country_code' => 'GB'], ['name' => 'Cabeceiras', 'country_code' => 'BR'], ['name' => 'Nazarezinho', 'country_code' => 'BR'], ['name' => 'Itagimirim', 'country_code' => 'BR'], ['name' => 'Stegaurach', 'country_code' => 'DE'], ['name' => 'Itaju do Colonia', 'country_code' => 'BR'], ['name' => 'Derio', 'country_code' => 'ES'], ['name' => 'Charles City', 'country_code' => 'US'], ['name' => 'Dettelbach', 'country_code' => 'DE'], ['name' => 'Herne', 'country_code' => 'GB'], ['name' => 'Ulmeni', 'country_code' => 'RO'], ['name' => 'Longueau', 'country_code' => 'FR'], ['name' => 'Villemandeur', 'country_code' => 'FR'], ['name' => 'Paraiso do Sul', 'country_code' => 'BR'], ['name' => 'Bourbourg', 'country_code' => 'FR'], ['name' => 'Turceni', 'country_code' => 'RO'], ['name' => 'Nakhon Luang', 'country_code' => 'TH'], ['name' => 'Pedro Munoz', 'country_code' => 'ES'], ['name' => 'Rednitzhembach', 'country_code' => 'DE'], ['name' => 'Passo do Sertao', 'country_code' => 'BR'], ['name' => 'Harjavalta', 'country_code' => 'FI'], ['name' => 'Allensbach', 'country_code' => 'DE'], ['name' => 'Stanwood', 'country_code' => 'US'], ['name' => 'Si Chiang Mai', 'country_code' => 'TH'], ['name' => 'Noventa di Piave', 'country_code' => 'IT'], ['name' => 'Augusta', 'country_code' => 'CA'], ['name' => 'Hampden', 'country_code' => 'US'], ['name' => 'St. Rose', 'country_code' => 'US'], ['name' => 'Saint-Pierre', 'country_code' => 'FR'], ['name' => 'St. Joseph', 'country_code' => 'US'], ['name' => 'Borova', 'country_code' => 'UA'], ['name' => 'Caicara', 'country_code' => 'BR'], ['name' => 'Abersychan', 'country_code' => 'GB'], ['name' => 'San Fior di Sopra', 'country_code' => 'IT'], ['name' => 'Lallaing', 'country_code' => 'FR'], ['name' => 'Arechavaleta', 'country_code' => 'ES'], ['name' => 'Sergeevka', 'country_code' => 'KZ'], ['name' => 'Crumlin', 'country_code' => 'GB'], ['name' => 'Hudsonville', 'country_code' => 'US'], ['name' => 'Saint-Julien-de-Concelles', 'country_code' => 'FR'], ['name' => 'Chemille', 'country_code' => 'FR'], ['name' => 'Ebern', 'country_code' => 'DE'], ['name' => 'Indaiabira', 'country_code' => 'BR'], ['name' => 'San Antonino Monteverde', 'country_code' => 'MX'], ['name' => 'Claygate', 'country_code' => 'GB'], ['name' => 'Tall Tamr', 'country_code' => 'SY'], ['name' => 'Spring Hill', 'country_code' => 'US'], ['name' => 'Philadelphia', 'country_code' => 'US'], ['name' => 'Chalastra', 'country_code' => 'GR'], ['name' => 'Monteiropolis', 'country_code' => 'BR'], ['name' => 'Bellbrook', 'country_code' => 'US'], ['name' => 'Mexia', 'country_code' => 'US'], ['name' => 'Frankfort', 'country_code' => 'US'], ['name' => 'Kenwood', 'country_code' => 'US'], ['name' => 'Middleborough Center', 'country_code' => 'US'], ['name' => 'Montoir-de-Bretagne', 'country_code' => 'FR'], ['name' => 'Iwye', 'country_code' => 'BY'], ['name' => 'Mantua', 'country_code' => 'US'], ['name' => 'Zbaszyn', 'country_code' => 'PL'], ['name' => 'Portalegre', 'country_code' => 'BR'], ['name' => 'Mourenx', 'country_code' => 'FR'], ['name' => 'Makawao', 'country_code' => 'US'], ['name' => 'Frankstown', 'country_code' => 'US'], ['name' => 'Seymour', 'country_code' => 'AU'], ['name' => 'Gibsonville', 'country_code' => 'US'], ['name' => 'Parsberg', 'country_code' => 'DE'], ['name' => 'Elzach', 'country_code' => 'DE'], ['name' => 'Dade City', 'country_code' => 'US'], ['name' => 'Fresia', 'country_code' => 'CL'], ['name' => 'Duba-Yurt', 'country_code' => 'RU'], ['name' => 'Cuincy', 'country_code' => 'FR'], ['name' => 'Caraa', 'country_code' => 'BR'], ['name' => 'Nortorf', 'country_code' => 'DE'], ['name' => 'La Gaude', 'country_code' => 'FR'], ['name' => 'Puslinch', 'country_code' => 'CA'], ['name' => 'Schesslitz', 'country_code' => 'DE'], ['name' => 'Forte dei Marmi', 'country_code' => 'IT'], ['name' => 'Middlesex', 'country_code' => 'US'], ['name' => 'Red Chute', 'country_code' => 'US'], ['name' => 'Yssingeaux', 'country_code' => 'FR'], ['name' => 'Pogoanele', 'country_code' => 'RO'], ['name' => 'Lavrio', 'country_code' => 'GR'], ['name' => 'Village St. George', 'country_code' => 'US'], ['name' => 'Winooski', 'country_code' => 'US'], ['name' => 'Alvaiazere', 'country_code' => 'PT'], ['name' => 'Morciano di Romagna', 'country_code' => 'IT'], ['name' => 'Rudno', 'country_code' => 'UA'], ['name' => 'Belem do Brejo do Cruz', 'country_code' => 'BR'], ['name' => 'Whaley Bridge', 'country_code' => 'GB'], ['name' => 'Kuklen', 'country_code' => 'BG'], ['name' => 'Bourg-Saint-Andeol', 'country_code' => 'FR'], ['name' => 'Wriezen', 'country_code' => 'DE'], ['name' => 'Matuguinao', 'country_code' => 'PH'], ['name' => 'Maxatawny', 'country_code' => 'US'], ['name' => 'Zapotitlan', 'country_code' => 'MX'], ['name' => 'Coeymans', 'country_code' => 'US'], ['name' => 'Manciano', 'country_code' => 'IT'], ['name' => 'Sturry', 'country_code' => 'GB'], ['name' => 'Rabaul', 'country_code' => 'PG'], ['name' => 'Nazare do Piaui', 'country_code' => 'BR'], ['name' => 'Prestice', 'country_code' => 'CZ'], ['name' => 'Campo Largo', 'country_code' => 'BR'], ['name' => 'Emmering', 'country_code' => 'DE'], ['name' => 'Santa Luzia do Norte', 'country_code' => 'BR'], ['name' => 'Valley Center', 'country_code' => 'US'], ['name' => 'Tyrvaa', 'country_code' => 'FI'], ['name' => 'Castiglione della Pescaia', 'country_code' => 'IT'], ['name' => 'Luisiana', 'country_code' => 'BR'], ['name' => 'Vila Nova da Barquinha', 'country_code' => 'PT'], ['name' => 'Menziken', 'country_code' => 'CH'], ['name' => 'Cannington', 'country_code' => 'AU'], ['name' => 'Enkenbach-Alsenborn', 'country_code' => 'DE'], ['name' => 'Santo Domingo de Guzman', 'country_code' => 'SV'], ['name' => 'Umatilla', 'country_code' => 'US'], ['name' => 'Cehu Silvaniei', 'country_code' => 'RO'], ['name' => 'Oak Grove', 'country_code' => 'US'], ['name' => 'Strasburg', 'country_code' => 'US'], ['name' => 'Wauchope', 'country_code' => 'AU'], ['name' => 'Vanrhynsdorp', 'country_code' => 'ZA'], ['name' => 'Geneva', 'country_code' => 'US'], ['name' => 'Klichaw', 'country_code' => 'BY'], ['name' => 'Menucourt', 'country_code' => 'FR'], ['name' => 'Namborn', 'country_code' => 'DE'], ['name' => 'Bardowick', 'country_code' => 'DE'], ['name' => 'Immenhausen', 'country_code' => 'DE'], ['name' => 'Gau-Algesheim', 'country_code' => 'DE'], ['name' => 'Whiteville', 'country_code' => 'US'], ['name' => 'Novolakskoye', 'country_code' => 'RU'], ['name' => 'Derry', 'country_code' => 'US'], ['name' => 'Whitchurch', 'country_code' => 'GB'], ['name' => 'Freyung', 'country_code' => 'DE'], ['name' => 'Manuel Viana', 'country_code' => 'BR'], ['name' => 'Vila Nova de Foz Coa', 'country_code' => 'PT'], ['name' => 'University of California-Davis', 'country_code' => 'US'], ['name' => 'Belmont', 'country_code' => 'US'], ['name' => 'Serignan', 'country_code' => 'FR'], ['name' => 'Nailsworth', 'country_code' => 'GB'], ['name' => 'Soata', 'country_code' => 'CO'], ['name' => 'Farnham Royal', 'country_code' => 'GB'], ['name' => 'Ephraim', 'country_code' => 'US'], ['name' => 'Buffalo', 'country_code' => 'US'], ['name' => 'Campagna Lupia', 'country_code' => 'IT'], ['name' => 'Karpenisi', 'country_code' => 'GR'], ['name' => 'Santo Antonio do Retiro', 'country_code' => 'BR'], ['name' => 'Cavle', 'country_code' => 'HR'], ['name' => 'Ruddington', 'country_code' => 'GB'], ['name' => 'Heringen', 'country_code' => 'DE'], ['name' => 'Lochbuie', 'country_code' => 'US'], ['name' => 'North Springfield', 'country_code' => 'US'], ['name' => 'Faringdon', 'country_code' => 'GB'], ['name' => 'Torreperogil', 'country_code' => 'ES'], ['name' => 'Teteghem', 'country_code' => 'FR'], ['name' => 'Pfalzgrafenweiler', 'country_code' => 'DE'], ['name' => 'Dacice', 'country_code' => 'CZ'], ['name' => 'Rosales', 'country_code' => 'MX'], ['name' => 'Briton Ferry', 'country_code' => 'GB'], ['name' => 'Lakhdenpokhya', 'country_code' => 'RU'], ['name' => 'Soultz-Haut-Rhin', 'country_code' => 'FR'], ['name' => 'Uddingston', 'country_code' => 'GB'], ['name' => 'Longboat Key', 'country_code' => 'US'], ['name' => 'Saint-Bonnet-de-Mure', 'country_code' => 'FR'], ['name' => 'Taga', 'country_code' => 'JP'], ['name' => 'Tseri', 'country_code' => 'CY'], ['name' => 'Buena Vista', 'country_code' => 'US'], ['name' => 'Dahlonega', 'country_code' => 'US'], ['name' => 'Cavezzo', 'country_code' => 'IT'], ['name' => 'Bourg-Saint-Maurice', 'country_code' => 'FR'], ['name' => 'Montecassiano', 'country_code' => 'IT'], ['name' => 'Nebraska City', 'country_code' => 'US'], ['name' => 'Cordignano', 'country_code' => 'IT'], ['name' => 'Hiraizumi', 'country_code' => 'JP'], ['name' => 'Lymanske', 'country_code' => 'UA'], ['name' => 'Konigsbronn', 'country_code' => 'DE'], ['name' => 'Hardeeville', 'country_code' => 'US'], ['name' => 'Connellsville', 'country_code' => 'US'], ['name' => 'Novafeltria', 'country_code' => 'IT'], ['name' => 'Torrington', 'country_code' => 'US'], ['name' => 'Castro Verde', 'country_code' => 'PT'], ['name' => 'Cassis', 'country_code' => 'FR'], ['name' => 'Quesnoy-sur-Deule', 'country_code' => 'FR'], ['name' => 'Helensburgh', 'country_code' => 'AU'], ['name' => 'New Cumberland', 'country_code' => 'US'], ['name' => 'Putzbrunn', 'country_code' => 'DE'], ['name' => 'Nyrany', 'country_code' => 'CZ'], ['name' => 'Saint-Macaire-en-Mauges', 'country_code' => 'FR'], ['name' => 'Pompey', 'country_code' => 'US'], ['name' => 'Pinehurst', 'country_code' => 'US'], ['name' => 'Altofts', 'country_code' => 'GB'], ['name' => 'Cristalandia', 'country_code' => 'BR'], ['name' => 'Huron', 'country_code' => 'US'], ['name' => 'Beauport', 'country_code' => 'CA'], ['name' => 'Petropavlovka', 'country_code' => 'RU'], ['name' => 'Yass', 'country_code' => 'AU'], ['name' => 'Quiliano', 'country_code' => 'IT'], ['name' => 'Alta Sierra', 'country_code' => 'US'], ['name' => 'Hitzendorf', 'country_code' => 'AT'], ['name' => 'Mertola', 'country_code' => 'PT'], ['name' => 'Wagenfeld', 'country_code' => 'DE'], ['name' => 'Terras de Bouro', 'country_code' => 'PT'], ['name' => 'Northridge', 'country_code' => 'US'], ['name' => 'Moab', 'country_code' => 'US'], ['name' => 'Gluszyca', 'country_code' => 'PL'], ['name' => 'Ajuricaba', 'country_code' => 'BR'], ['name' => 'Arpino', 'country_code' => 'IT'], ['name' => 'Wildwood', 'country_code' => 'US'], ['name' => 'New Sewickley', 'country_code' => 'US'], ['name' => 'Nuporanga', 'country_code' => 'BR'], ['name' => 'Baywood', 'country_code' => 'US'], ['name' => 'Cupcini', 'country_code' => 'MD'], ['name' => 'Desterro de Entre Rios', 'country_code' => 'BR'], ['name' => 'Sobeslav', 'country_code' => 'CZ'], ['name' => 'Cotgrave', 'country_code' => 'GB'], ['name' => 'Northport', 'country_code' => 'US'], ['name' => 'Ralston', 'country_code' => 'US'], ['name' => 'Santana da Vargem', 'country_code' => 'BR'], ['name' => 'Sedziszow Malopolski', 'country_code' => 'PL'], ['name' => 'Bardolino', 'country_code' => 'IT'], ['name' => 'Finestrat', 'country_code' => 'ES'], ['name' => 'Tautii Magherus', 'country_code' => 'RO'], ['name' => 'Madison', 'country_code' => 'US'], ['name' => 'Tanglewilde', 'country_code' => 'US'], ['name' => 'Lengenfeld', 'country_code' => 'DE'], ['name' => 'Salles', 'country_code' => 'FR'], ['name' => 'Montelabbate', 'country_code' => 'IT'], ['name' => 'Ormond-by-the-Sea', 'country_code' => 'US'], ['name' => 'Wawayanda', 'country_code' => 'US'], ['name' => 'Jaraguari', 'country_code' => 'BR'], ['name' => 'Delphos', 'country_code' => 'US'], ['name' => 'Stevensville', 'country_code' => 'US'], ['name' => 'Lihue', 'country_code' => 'US'], ['name' => 'Gatton', 'country_code' => 'AU'], ['name' => 'North Berwick', 'country_code' => 'GB'], ['name' => 'Hasparren', 'country_code' => 'FR'], ['name' => 'Murillo', 'country_code' => 'US'], ['name' => 'Uznach', 'country_code' => 'CH'], ['name' => 'Frielendorf', 'country_code' => 'DE'], ['name' => 'Wissmar', 'country_code' => 'DE'], ['name' => 'Hinte', 'country_code' => 'DE'], ['name' => 'Cernobbio', 'country_code' => 'IT'], ['name' => 'St. Louis', 'country_code' => 'US'], ['name' => 'Saint-Remi', 'country_code' => 'CA'], ['name' => 'St. Marys', 'country_code' => 'CA'], ['name' => 'Valognes', 'country_code' => 'FR'], ['name' => 'Gerolzhofen', 'country_code' => 'DE'], ['name' => 'Naka', 'country_code' => 'JP'], ['name' => 'Muxton', 'country_code' => 'GB'], ['name' => 'Hobart', 'country_code' => 'US'], ['name' => 'Douar Drissiine', 'country_code' => 'MA'], ['name' => 'Montalbano Ionico', 'country_code' => 'IT'], ['name' => 'Tona', 'country_code' => 'CO'], ['name' => 'Starokucherganovka', 'country_code' => 'RU'], ['name' => 'Pleasantville', 'country_code' => 'US'], ['name' => 'Saerbeck', 'country_code' => 'DE'], ['name' => 'Neptune Beach', 'country_code' => 'US'], ['name' => 'Annweiler am Trifels', 'country_code' => 'DE'], ['name' => 'Suce-sur-Erdre', 'country_code' => 'FR'], ['name' => 'Ash Vale', 'country_code' => 'GB'], ['name' => 'Shyriaieve', 'country_code' => 'UA'], ['name' => 'Almeida', 'country_code' => 'PT'], ['name' => 'Othis', 'country_code' => 'FR'], ['name' => 'Crystal City', 'country_code' => 'US'], ['name' => 'Antonina do Norte', 'country_code' => 'BR'], ['name' => 'Gioiosa Ionica', 'country_code' => 'IT'], ['name' => 'Saint-Remy', 'country_code' => 'FR'], ['name' => 'Tuntenhausen', 'country_code' => 'DE'], ['name' => 'Koshekhabl', 'country_code' => 'RU'], ['name' => 'Saint-Jean-d Angely', 'country_code' => 'FR'], ['name' => 'Engenheiro Navarro', 'country_code' => 'BR'], ['name' => 'Colipa', 'country_code' => 'MX'], ['name' => 'Guidoval', 'country_code' => 'BR'], ['name' => 'Union Grove', 'country_code' => 'US'], ['name' => 'Thal', 'country_code' => 'CH'], ['name' => 'Lichtenwalde', 'country_code' => 'DE'], ['name' => 'Absam', 'country_code' => 'AT'], ['name' => 'San Vicente de Mont-Alt', 'country_code' => 'ES'], ['name' => 'Reduto', 'country_code' => 'BR'], ['name' => 'Busti', 'country_code' => 'US'], ['name' => 'Cubati', 'country_code' => 'BR'], ['name' => 'Kapoeta', 'country_code' => 'SS'], ['name' => 'Grove', 'country_code' => 'GB'], ['name' => 'Jussiape', 'country_code' => 'BR'], ['name' => 'Chianciano Terme', 'country_code' => 'IT'], ['name' => 'Elin Pelin', 'country_code' => 'BG'], ['name' => 'Ouardana', 'country_code' => 'MA'], ['name' => 'Bernau am Chiemsee', 'country_code' => 'DE'], ['name' => 'Fordingbridge', 'country_code' => 'GB'], ['name' => 'Richland', 'country_code' => 'US'], ['name' => 'Bamnet Narong', 'country_code' => 'TH'], ['name' => 'Bedford', 'country_code' => 'US'], ['name' => 'Belle Isle', 'country_code' => 'US'], ['name' => 'Poninka', 'country_code' => 'UA'], ['name' => 'Immenstaad am Bodensee', 'country_code' => 'DE'], ['name' => 'Woodstock', 'country_code' => 'US'], ['name' => 'Vazzola', 'country_code' => 'IT'], ['name' => 'Franklin', 'country_code' => 'US'], ['name' => 'Cagnano Varano', 'country_code' => 'IT'], ['name' => 'Collinsville', 'country_code' => 'US'], ['name' => 'Willow Oak', 'country_code' => 'US'], ['name' => 'Lith', 'country_code' => 'NL'], ['name' => 'Chipping Ongar', 'country_code' => 'GB'], ['name' => 'Emmitsburg', 'country_code' => 'US'], ['name' => 'Drayton Valley', 'country_code' => 'CA'], ['name' => 'Sao Jose de Uba', 'country_code' => 'BR'], ['name' => 'Willows', 'country_code' => 'US'], ['name' => 'Parkville', 'country_code' => 'US'], ['name' => 'Roosevelt', 'country_code' => 'US'], ['name' => 'East Hills', 'country_code' => 'US'], ['name' => 'Pontremoli', 'country_code' => 'IT'], ['name' => 'Tomatlan', 'country_code' => 'MX'], ['name' => 'Regalbuto', 'country_code' => 'IT'], ['name' => 'Acton', 'country_code' => 'US'], ['name' => 'Rockport', 'country_code' => 'US'], ['name' => 'Saint-Pathus', 'country_code' => 'FR'], ['name' => 'Dingelstadt', 'country_code' => 'DE'], ['name' => 'La Feria', 'country_code' => 'US'], ['name' => 'Washington', 'country_code' => 'US'], ['name' => 'Darganata', 'country_code' => 'TM'], ['name' => 'Wolfschlugen', 'country_code' => 'DE'], ['name' => 'Kurri Kurri', 'country_code' => 'AU'], ['name' => 'Rovello Porro', 'country_code' => 'IT'], ['name' => 'Stavelot', 'country_code' => 'BE'], ['name' => 'Cornebarrieu', 'country_code' => 'FR'], ['name' => 'Ponoka', 'country_code' => 'CA'], ['name' => 'West Byfleet', 'country_code' => 'GB'], ['name' => 'Steinenbronn', 'country_code' => 'DE'], ['name' => 'Krasnogvardeyskoye', 'country_code' => 'RU'], ['name' => 'Rivergaro', 'country_code' => 'IT'], ['name' => 'Varallo', 'country_code' => 'IT'], ['name' => 'Tappan', 'country_code' => 'US'], ['name' => 'Roccadaspide', 'country_code' => 'IT'], ['name' => 'Pottendorf', 'country_code' => 'AT'], ['name' => 'Cochituate', 'country_code' => 'US'], ['name' => 'Ferrol', 'country_code' => 'PH'], ['name' => 'Amarkantak', 'country_code' => 'IN'], ['name' => 'St. Johnsbury', 'country_code' => 'US'], ['name' => 'Saint-Just-sur-Loire', 'country_code' => 'FR'], ['name' => 'Tlalnepantla', 'country_code' => 'MX'], ['name' => 'Yakshur-Bod ya', 'country_code' => 'RU'], ['name' => 'Pelluhue', 'country_code' => 'CL'], ['name' => 'Zacualpan', 'country_code' => 'MX'], ['name' => 'Massanet de la Selva', 'country_code' => 'ES'], ['name' => 'Durham', 'country_code' => 'US'], ['name' => 'Whitinsville', 'country_code' => 'US'], ['name' => 'Labrador City', 'country_code' => 'CA'], ['name' => 'Feignies', 'country_code' => 'FR'], ['name' => 'Batesville', 'country_code' => 'US'], ['name' => 'Altavilla Silentina', 'country_code' => 'IT'], ['name' => 'Neckartenzlingen', 'country_code' => 'DE'], ['name' => 'Lake Lorraine', 'country_code' => 'US'], ['name' => 'Chichimila', 'country_code' => 'MX'], ['name' => 'Coundon', 'country_code' => 'GB'], ['name' => 'Ikaalinen', 'country_code' => 'FI'], ['name' => 'Spino d Adda', 'country_code' => 'IT'], ['name' => 'Seward', 'country_code' => 'US'], ['name' => 'Midland Park', 'country_code' => 'US'], ['name' => 'Lebanon', 'country_code' => 'US'], ['name' => 'Beaumont', 'country_code' => 'BE'], ['name' => 'Moapa Valley', 'country_code' => 'US'], ['name' => 'Middletown', 'country_code' => 'US'], ['name' => 'Algarrobo', 'country_code' => 'ES'], ['name' => 'Faverges', 'country_code' => 'FR'], ['name' => 'Ensdorf', 'country_code' => 'DE'], ['name' => 'Huescar', 'country_code' => 'ES'], ['name' => 'Rives', 'country_code' => 'FR'], ['name' => 'Asnes', 'country_code' => 'NO'], ['name' => 'West Mersea', 'country_code' => 'GB'], ['name' => 'Camerota', 'country_code' => 'IT'], ['name' => 'Campli', 'country_code' => 'IT'], ['name' => 'Lemwerder', 'country_code' => 'DE'], ['name' => 'Klawer', 'country_code' => 'ZA'], ['name' => 'Fukaura', 'country_code' => 'JP'], ['name' => 'Gioiosa Marea', 'country_code' => 'IT'], ['name' => 'Durcal', 'country_code' => 'ES'], ['name' => 'Tarabai', 'country_code' => 'BR'], ['name' => 'Corbin', 'country_code' => 'US'], ['name' => 'Ferlach', 'country_code' => 'AT'], ['name' => 'Marathonas', 'country_code' => 'GR'], ['name' => 'Arnoldstein', 'country_code' => 'AT'], ['name' => 'Skaneateles', 'country_code' => 'US'], ['name' => 'Cooma', 'country_code' => 'AU'], ['name' => 'Jackson', 'country_code' => 'US'], ['name' => 'Riverdale Park', 'country_code' => 'US'], ['name' => 'Shenango', 'country_code' => 'US'], ['name' => 'Donnacona', 'country_code' => 'CA'], ['name' => 'Wurenlos', 'country_code' => 'CH'], ['name' => 'Fuentes de Andalucia', 'country_code' => 'ES'], ['name' => 'Ugine', 'country_code' => 'FR'], ['name' => 'Mimizan', 'country_code' => 'FR'], ['name' => 'Knoxville', 'country_code' => 'US'], ['name' => 'Swanzey', 'country_code' => 'US'], ['name' => 'Saint-Jean-Bonnefonds', 'country_code' => 'FR'], ['name' => 'Hedon', 'country_code' => 'GB'], ['name' => 'Polykastro', 'country_code' => 'GR'], ['name' => 'West Bridgewater', 'country_code' => 'US'], ['name' => 'Grabs', 'country_code' => 'CH'], ['name' => 'Pegognaga', 'country_code' => 'IT'], ['name' => 'Hanga Roa', 'country_code' => 'CL'], ['name' => 'Cappeln', 'country_code' => 'DE'], ['name' => 'Roda de Bara', 'country_code' => 'ES'], ['name' => 'Feldkirchen bei Graz', 'country_code' => 'AT'], ['name' => 'Cassolnovo', 'country_code' => 'IT'], ['name' => 'Unionville', 'country_code' => 'US'], ['name' => 'Gunnison', 'country_code' => 'US'], ['name' => 'Ibiraiaras', 'country_code' => 'BR'], ['name' => 'Wiesendangen', 'country_code' => 'CH'], ['name' => 'Church Gresley', 'country_code' => 'GB'], ['name' => 'K ajaran', 'country_code' => 'AM'], ['name' => 'Spezzano Albanese', 'country_code' => 'IT'], ['name' => 'Carhue', 'country_code' => 'AR'], ['name' => 'Merzhausen', 'country_code' => 'DE'], ['name' => 'Conewago', 'country_code' => 'US'], ['name' => 'Santi Cosma e Damiano', 'country_code' => 'IT'], ['name' => 'Cisano Bergamasco', 'country_code' => 'IT'], ['name' => 'San Vicente Pacaya', 'country_code' => 'GT'], ['name' => 'La Grandeza', 'country_code' => 'MX'], ['name' => 'Souk el Had', 'country_code' => 'DZ'], ['name' => 'Morrow', 'country_code' => 'US'], ['name' => 'Gueugnon', 'country_code' => 'FR'], ['name' => 'Maasland', 'country_code' => 'NL'], ['name' => 'Atlantida', 'country_code' => 'UY'], ['name' => 'Abel Figueiredo', 'country_code' => 'BR'], ['name' => 'Semenovka', 'country_code' => 'RU'], ['name' => 'Grazzanise', 'country_code' => 'IT'], ['name' => 'Southgate', 'country_code' => 'CA'], ['name' => 'Belzyce', 'country_code' => 'PL'], ['name' => 'Downside', 'country_code' => 'GB'], ['name' => 'Sapri', 'country_code' => 'IT'], ['name' => 'Alfdorf', 'country_code' => 'DE'], ['name' => 'Sandston', 'country_code' => 'US'], ['name' => 'Cles', 'country_code' => 'IT'], ['name' => 'Vodnany', 'country_code' => 'CZ'], ['name' => 'Socha', 'country_code' => 'CO'], ['name' => 'Pembroke', 'country_code' => 'US'], ['name' => 'Kato Achaia', 'country_code' => 'GR'], ['name' => 'Earl', 'country_code' => 'US'], ['name' => 'Trino', 'country_code' => 'IT'], ['name' => 'Roccarainola', 'country_code' => 'IT'], ['name' => 'Belle Plaine', 'country_code' => 'US'], ['name' => 'Baricella', 'country_code' => 'IT'], ['name' => 'Santiago', 'country_code' => 'MX'], ['name' => 'Antonio Martins', 'country_code' => 'BR'], ['name' => 'Sobotka', 'country_code' => 'PL'], ['name' => 'Nuevo', 'country_code' => 'US'], ['name' => 'Wimereux', 'country_code' => 'FR'], ['name' => 'Enoch', 'country_code' => 'US'], ['name' => 'Caulonia', 'country_code' => 'IT'], ['name' => 'Gerbstedt', 'country_code' => 'DE'], ['name' => 'Nuriootpa', 'country_code' => 'AU'], ['name' => 'Rodalben', 'country_code' => 'DE'], ['name' => 'Cajvana', 'country_code' => 'RO'], ['name' => 'Pedro Avelino', 'country_code' => 'BR'], ['name' => 'Tregunc', 'country_code' => 'FR'], ['name' => 'Pacific', 'country_code' => 'US'], ['name' => 'McNab/Braeside', 'country_code' => 'CA'], ['name' => 'Dronero', 'country_code' => 'IT'], ['name' => 'Puilboreau', 'country_code' => 'FR'], ['name' => 'Vernole', 'country_code' => 'IT'], ['name' => 'Grubbenvorst', 'country_code' => 'NL'], ['name' => 'Utuado', 'country_code' => 'PR'], ['name' => 'Canfield', 'country_code' => 'US'], ['name' => 'Eugendorf', 'country_code' => 'AT'], ['name' => 'Brioude', 'country_code' => 'FR'], ['name' => 'Independence', 'country_code' => 'US'], ['name' => 'Rouadi', 'country_code' => 'MA'], ['name' => 'Elsa', 'country_code' => 'US'], ['name' => 'Haapavesi', 'country_code' => 'FI'], ['name' => 'Assoul', 'country_code' => 'MA'], ['name' => 'Centerville', 'country_code' => 'US'], ['name' => 'Commerce', 'country_code' => 'US'], ['name' => 'Murgeni', 'country_code' => 'RO'], ['name' => 'Scorrano', 'country_code' => 'IT'], ['name' => 'General Toshevo', 'country_code' => 'BG'], ['name' => 'Austell', 'country_code' => 'US'], ['name' => 'Faro', 'country_code' => 'BR'], ['name' => 'Moncofar', 'country_code' => 'ES'], ['name' => 'Montfort-sur-Meu', 'country_code' => 'FR'], ['name' => 'Jettingen-Scheppach', 'country_code' => 'DE'], ['name' => 'Jacuipe', 'country_code' => 'BR'], ['name' => 'Urbania', 'country_code' => 'IT'], ['name' => 'Vipiteno', 'country_code' => 'IT'], ['name' => 'Centallo', 'country_code' => 'IT'], ['name' => 'Esher', 'country_code' => 'GB'], ['name' => 'Grasbrunn', 'country_code' => 'DE'], ['name' => 'Venegono Inferiore', 'country_code' => 'IT'], ['name' => 'Huautepec', 'country_code' => 'MX'], ['name' => 'Fontanellato', 'country_code' => 'IT'], ['name' => 'Hartha', 'country_code' => 'DE'], ['name' => 'Cerrik', 'country_code' => 'AL'], ['name' => 'Dois Irmaos do Tocantins', 'country_code' => 'BR'], ['name' => 'Les Arcs', 'country_code' => 'FR'], ['name' => 'Parkville', 'country_code' => 'US'], ['name' => 'East Vincent', 'country_code' => 'US'], ['name' => 'Macdonald', 'country_code' => 'CA'], ['name' => 'Durgeli', 'country_code' => 'RU'], ['name' => 'Schwarzenbach an der Saale', 'country_code' => 'DE'], ['name' => 'Hillsborough', 'country_code' => 'US'], ['name' => 'Myadzyel', 'country_code' => 'BY'], ['name' => 'Bagneres-de-Bigorre', 'country_code' => 'FR'], ['name' => 'Capellades', 'country_code' => 'ES'], ['name' => 'Crozet', 'country_code' => 'US'], ['name' => 'Chuarrancho', 'country_code' => 'GT'], ['name' => 'Navarcles', 'country_code' => 'ES'], ['name' => 'Cava Manara', 'country_code' => 'IT'], ['name' => 'Araguacema', 'country_code' => 'BR'], ['name' => 'Senas', 'country_code' => 'FR'], ['name' => 'Champagne-sur-Seine', 'country_code' => 'FR'], ['name' => 'Pollock Pines', 'country_code' => 'US'], ['name' => 'Sassoferrato', 'country_code' => 'IT'], ['name' => 'Sao Miguel de Taipu', 'country_code' => 'BR'], ['name' => 'Outokumpu', 'country_code' => 'FI'], ['name' => 'Gilford', 'country_code' => 'US'], ['name' => 'Magaramkent', 'country_code' => 'RU'], ['name' => 'Laurentino', 'country_code' => 'BR'], ['name' => 'Zibido San Giacomo', 'country_code' => 'IT'], ['name' => 'Tyrone', 'country_code' => 'US'], ['name' => 'Larose', 'country_code' => 'US'], ['name' => 'Lanton', 'country_code' => 'FR'], ['name' => 'Le Perray-en-Yvelines', 'country_code' => 'FR'], ['name' => 'Lawrenceville', 'country_code' => 'US'], ['name' => 'Fundulea', 'country_code' => 'RO'], ['name' => 'Murston', 'country_code' => 'GB'], ['name' => 'Eu', 'country_code' => 'FR'], ['name' => 'Waging am See', 'country_code' => 'DE'], ['name' => 'Brook Highland', 'country_code' => 'US'], ['name' => 'Saint-Mandrier-sur-Mer', 'country_code' => 'FR'], ['name' => 'Baie-Saint-Paul', 'country_code' => 'CA'], ['name' => 'Onishi', 'country_code' => 'JP'], ['name' => 'Ayotzintepec', 'country_code' => 'MX'], ['name' => 'Bo Phloi', 'country_code' => 'TH'], ['name' => 'Cottage Grove', 'country_code' => 'US'], ['name' => 'Pleurtuit', 'country_code' => 'FR'], ['name' => 'Sains-en-Gohelle', 'country_code' => 'FR'], ['name' => 'De Soto', 'country_code' => 'US'], ['name' => 'San Benedetto Po', 'country_code' => 'IT'], ['name' => 'Palmyra', 'country_code' => 'US'], ['name' => 'Sao Tome das Letras', 'country_code' => 'BR'], ['name' => 'Bouchemaine', 'country_code' => 'FR'], ['name' => 'Nappanee', 'country_code' => 'US'], ['name' => 'Merritt', 'country_code' => 'CA'], ['name' => 'Treze de Maio', 'country_code' => 'BR'], ['name' => 'Atherton', 'country_code' => 'US'], ['name' => 'Bellante', 'country_code' => 'IT'], ['name' => 'Stryn', 'country_code' => 'NO'], ['name' => 'Nienhagen', 'country_code' => 'DE'], ['name' => 'Delfinopolis', 'country_code' => 'BR'], ['name' => 'Saint-Rambert-d Albon', 'country_code' => 'FR'], ['name' => 'Bluewater', 'country_code' => 'CA'], ['name' => 'Krasnyy Klyuch', 'country_code' => 'RU'], ['name' => 'Nibley', 'country_code' => 'US'], ['name' => 'Dalcahue', 'country_code' => 'CL'], ['name' => 'Kingsland', 'country_code' => 'US'], ['name' => 'Walled Lake', 'country_code' => 'US'], ['name' => 'Santana dos Garrotes', 'country_code' => 'BR'], ['name' => 'Stow', 'country_code' => 'US'], ['name' => 'Machacalis', 'country_code' => 'BR'], ['name' => 'Manduel', 'country_code' => 'FR'], ['name' => 'Buttigliera Alta', 'country_code' => 'IT'], ['name' => 'East Zorra-Tavistock', 'country_code' => 'CA'], ['name' => 'Pozzuolo del Friuli', 'country_code' => 'IT'], ['name' => 'Bedminster', 'country_code' => 'US'], ['name' => 'Museros', 'country_code' => 'ES'], ['name' => 'Orosei', 'country_code' => 'IT'], ['name' => 'San Jose de Cusmapa', 'country_code' => 'NI'], ['name' => 'Porrentruy', 'country_code' => 'CH'], ['name' => 'Pinhoe', 'country_code' => 'GB'], ['name' => 'Holle', 'country_code' => 'DE'], ['name' => 'Bednodem yanovsk', 'country_code' => 'RU'], ['name' => 'Akhmeta', 'country_code' => 'GE'], ['name' => 'Boavita', 'country_code' => 'CO'], ['name' => 'Pantigliate', 'country_code' => 'IT'], ['name' => 'Eno', 'country_code' => 'FI'], ['name' => 'Salento', 'country_code' => 'CO'], ['name' => 'Letavertes', 'country_code' => 'HU'], ['name' => 'Winsted', 'country_code' => 'US'], ['name' => 'Ko Pha-Ngan', 'country_code' => 'TH'], ['name' => 'Isliam-Terek', 'country_code' => 'UA'], ['name' => 'Novy Bydzov', 'country_code' => 'CZ'], ['name' => 'Trelissac', 'country_code' => 'FR'], ['name' => 'Sao Tomas de Aquino', 'country_code' => 'BR'], ['name' => 'Chauvigny', 'country_code' => 'FR'], ['name' => 'Bonne Terre', 'country_code' => 'US'], ['name' => 'Live Oak', 'country_code' => 'US'], ['name' => 'Attica', 'country_code' => 'US'], ['name' => 'Saveni', 'country_code' => 'RO'], ['name' => 'Rockville', 'country_code' => 'US'], ['name' => 'Chatel-Saint-Denis', 'country_code' => 'CH'], ['name' => 'Etrechy', 'country_code' => 'FR'], ['name' => 'Calipatria', 'country_code' => 'US'], ['name' => 'Mead', 'country_code' => 'US'], ['name' => 'Green Brook', 'country_code' => 'US'], ['name' => 'Novosokolniki', 'country_code' => 'RU'], ['name' => 'Montellano', 'country_code' => 'ES'], ['name' => 'Campomorone', 'country_code' => 'IT'], ['name' => 'Salzweg', 'country_code' => 'DE'], ['name' => 'Parkwood', 'country_code' => 'US'], ['name' => 'Capetinga', 'country_code' => 'BR'], ['name' => 'Deeping Saint James', 'country_code' => 'GB'], ['name' => 'Colonia Venustiano Carranza', 'country_code' => 'MX'], ['name' => 'Sedlcany', 'country_code' => 'CZ'], ['name' => 'Ebermannstadt', 'country_code' => 'DE'], ['name' => 'Oued Naanaa', 'country_code' => 'MA'], ['name' => 'Timlilt', 'country_code' => 'MA'], ['name' => 'Wallersdorf', 'country_code' => 'DE'], ['name' => 'Washington', 'country_code' => 'US'], ['name' => 'Russellville', 'country_code' => 'US'], ['name' => 'Asciano', 'country_code' => 'IT'], ['name' => 'Saint-Georges', 'country_code' => 'BE'], ['name' => 'New Romney', 'country_code' => 'GB'], ['name' => 'Krasnyy Chikoy', 'country_code' => 'RU'], ['name' => 'Southam', 'country_code' => 'GB'], ['name' => 'Eiterfeld', 'country_code' => 'DE'], ['name' => 'Assebbab', 'country_code' => 'MA'], ['name' => 'Naque', 'country_code' => 'BR'], ['name' => 'Pinson', 'country_code' => 'US'], ['name' => 'Stoneham-et-Tewkesbury', 'country_code' => 'CA'], ['name' => 'Rishton', 'country_code' => 'GB'], ['name' => 'Ruhpolding', 'country_code' => 'DE'], ['name' => 'Gryfow Slaski', 'country_code' => 'PL'], ['name' => 'Palmitinho', 'country_code' => 'BR'], ['name' => 'Douar Oulad Amer', 'country_code' => 'MA'], ['name' => 'Novo Areal', 'country_code' => 'BR'], ['name' => 'Katlenburg-Lindau', 'country_code' => 'DE'], ['name' => 'Benalup de Sidonia', 'country_code' => 'ES'], ['name' => 'Selma', 'country_code' => 'US'], ['name' => 'Serino', 'country_code' => 'IT'], ['name' => 'Bammental', 'country_code' => 'DE'], ['name' => 'Sidi Yahia Sawad', 'country_code' => 'MA'], ['name' => 'Tlilapan', 'country_code' => 'MX'], ['name' => 'Kupiansk', 'country_code' => 'UA'], ['name' => 'Schonkirchen', 'country_code' => 'DE'], ['name' => 'Amaral Ferrador', 'country_code' => 'BR'], ['name' => 'Marble Falls', 'country_code' => 'US'], ['name' => 'Llissa de Vall', 'country_code' => 'ES'], ['name' => 'El Triunfo', 'country_code' => 'SV'], ['name' => 'Monte San Vito', 'country_code' => 'IT'], ['name' => 'Okhansk', 'country_code' => 'RU'], ['name' => 'Bridge of Allan', 'country_code' => 'GB'], ['name' => 'Montluel', 'country_code' => 'FR'], ['name' => 'Erndtebruck', 'country_code' => 'DE'], ['name' => 'Manoppello', 'country_code' => 'IT'], ['name' => 'Ellerau', 'country_code' => 'DE'], ['name' => 'Mantta', 'country_code' => 'FI'], ['name' => 'Asbestos', 'country_code' => 'CA'], ['name' => 'Junco do Serido', 'country_code' => 'BR'], ['name' => 'Herscheid', 'country_code' => 'DE'], ['name' => 'Lavrinhas', 'country_code' => 'BR'], ['name' => 'Decatur', 'country_code' => 'US'], ['name' => 'Fort Myers Beach', 'country_code' => 'US'], ['name' => 'Theix', 'country_code' => 'FR'], ['name' => 'Oberndorf bei Salzburg', 'country_code' => 'AT'], ['name' => 'Dunbar', 'country_code' => 'US'], ['name' => 'Mogyorod', 'country_code' => 'HU'], ['name' => 'Nambu', 'country_code' => 'JP'], ['name' => 'Roncoferraro', 'country_code' => 'IT'], ['name' => 'Casteggio', 'country_code' => 'IT'], ['name' => 'Cologny', 'country_code' => 'CH'], ['name' => 'Serra Redonda', 'country_code' => 'BR'], ['name' => 'Neukirchen', 'country_code' => 'DE'], ['name' => 'Borgo a Mozzano', 'country_code' => 'IT'], ['name' => 'Hensies', 'country_code' => 'BE'], ['name' => 'Stadtroda', 'country_code' => 'DE'], ['name' => 'Bom Sucesso', 'country_code' => 'BR'], ['name' => 'Trith-Saint-Leger', 'country_code' => 'FR'], ['name' => 'Buzias', 'country_code' => 'RO'], ['name' => 'Genadendal', 'country_code' => 'ZA'], ['name' => 'Byron Center', 'country_code' => 'US'], ['name' => 'Homestead Meadows South', 'country_code' => 'US'], ['name' => 'Portage Lakes', 'country_code' => 'US'], ['name' => 'Meridianville', 'country_code' => 'US'], ['name' => 'Wiernsheim', 'country_code' => 'DE'], ['name' => 'Homeland', 'country_code' => 'US'], ['name' => 'Osceola', 'country_code' => 'US'], ['name' => 'Syracuse', 'country_code' => 'US'], ['name' => 'Eberdingen', 'country_code' => 'DE'], ['name' => 'Clarkson', 'country_code' => 'US'], ['name' => 'Neustadt-Glewe', 'country_code' => 'DE'], ['name' => 'Andreapol', 'country_code' => 'RU'], ['name' => 'Borgo', 'country_code' => 'IT'], ['name' => 'Chiang Kham', 'country_code' => 'TH'], ['name' => 'Central de Minas', 'country_code' => 'BR'], ['name' => 'Besao', 'country_code' => 'PH'], ['name' => 'Guia Lopes', 'country_code' => 'BR'], ['name' => 'Marshfield', 'country_code' => 'GB'], ['name' => 'Flatwoods', 'country_code' => 'US'], ['name' => 'Sharhorod', 'country_code' => 'UA'], ['name' => 'Santa Filomena do Maranhao', 'country_code' => 'BR'], ['name' => 'Ruinen', 'country_code' => 'NL'], ['name' => 'Petropavlivka', 'country_code' => 'UA'], ['name' => 'Segarcea', 'country_code' => 'RO'], ['name' => 'Quievrain', 'country_code' => 'BE'], ['name' => 'Quarrington', 'country_code' => 'GB'], ['name' => 'Fair Plain', 'country_code' => 'US'], ['name' => 'Gateway', 'country_code' => 'US'], ['name' => 'Shibayama', 'country_code' => 'JP'], ['name' => 'Naquera', 'country_code' => 'ES'], ['name' => 'Mount Ivy', 'country_code' => 'US'], ['name' => 'Nova Ibia', 'country_code' => 'BR'], ['name' => 'Sommatino', 'country_code' => 'IT'], ['name' => 'Milton-Freewater', 'country_code' => 'US'], ['name' => 'Ceyrat', 'country_code' => 'FR'], ['name' => 'Buttstadt', 'country_code' => 'DE'], ['name' => 'Dietenheim', 'country_code' => 'DE'], ['name' => 'Itteville', 'country_code' => 'FR'], ['name' => 'Frouard', 'country_code' => 'FR'], ['name' => 'Ichemrarn', 'country_code' => 'MA'], ['name' => 'Horbranz', 'country_code' => 'AT'], ['name' => 'Coppenbrugge', 'country_code' => 'DE'], ['name' => 'Nyons', 'country_code' => 'FR'], ['name' => 'River Park', 'country_code' => 'US'], ['name' => 'Marne', 'country_code' => 'DE'], ['name' => 'Sakyla', 'country_code' => 'FI'], ['name' => 'Novska', 'country_code' => 'HR'], ['name' => 'Huron-Kinloss', 'country_code' => 'CA'], ['name' => 'Lazise', 'country_code' => 'IT'], ['name' => 'Brunstatt', 'country_code' => 'FR'], ['name' => 'Sausalito', 'country_code' => 'US'], ['name' => 'Alecrim', 'country_code' => 'BR'], ['name' => 'Martignacco', 'country_code' => 'IT'], ['name' => 'Senise', 'country_code' => 'IT'], ['name' => 'Periquito', 'country_code' => 'BR'], ['name' => 'South Lockport', 'country_code' => 'US'], ['name' => 'Chadegan', 'country_code' => 'IR'], ['name' => 'Highland Heights', 'country_code' => 'US'], ['name' => 'Woodlake', 'country_code' => 'US'], ['name' => 'Barnesville', 'country_code' => 'US'], ['name' => 'Edenkoben', 'country_code' => 'DE'], ['name' => 'Bomlitz', 'country_code' => 'DE'], ['name' => 'Rungis', 'country_code' => 'FR'], ['name' => 'Tlapanaloya', 'country_code' => 'MX'], ['name' => 'Delaware', 'country_code' => 'US'], ['name' => 'Robecco sul Naviglio', 'country_code' => 'IT'], ['name' => 'Altmannstein', 'country_code' => 'DE'], ['name' => 'Laneuveville-devant-Nancy', 'country_code' => 'FR'], ['name' => 'Ittre', 'country_code' => 'BE'], ['name' => 'Kirkleatham', 'country_code' => 'GB'], ['name' => 'Oliena', 'country_code' => 'IT'], ['name' => 'Newbury', 'country_code' => 'US'], ['name' => 'Berrien Springs', 'country_code' => 'US'], ['name' => 'Mzefroune', 'country_code' => 'MA'], ['name' => 'St. Helena', 'country_code' => 'US'], ['name' => 'Polch', 'country_code' => 'DE'], ['name' => 'Tismana', 'country_code' => 'RO'], ['name' => 'Molochansk', 'country_code' => 'UA'], ['name' => 'Hudson Falls', 'country_code' => 'US'], ['name' => 'Ciboure', 'country_code' => 'FR'], ['name' => 'Saulx-les-Chartreux', 'country_code' => 'FR'], ['name' => 'Veitsbronn', 'country_code' => 'DE'], ['name' => 'Sainte-Pazanne', 'country_code' => 'FR'], ['name' => 'Ungheni', 'country_code' => 'RO'], ['name' => 'Noble', 'country_code' => 'US'], ['name' => 'Gulf Park Estates', 'country_code' => 'US'], ['name' => 'Caudan', 'country_code' => 'FR'], ['name' => 'Lastrup', 'country_code' => 'DE'], ['name' => 'Fehraltorf', 'country_code' => 'CH'], ['name' => 'Sotuta', 'country_code' => 'MX'], ['name' => 'Settimo San Pietro', 'country_code' => 'IT'], ['name' => 'Redondo', 'country_code' => 'PT'], ['name' => 'Pancota', 'country_code' => 'RO'], ['name' => 'Oak Ridge', 'country_code' => 'US'], ['name' => 'Sao Bras', 'country_code' => 'BR'], ['name' => 'Irai de Minas', 'country_code' => 'BR'], ['name' => 'Honley', 'country_code' => 'GB'], ['name' => 'Rochester', 'country_code' => 'US'], ['name' => 'Mallersdorf-Pfaffenberg', 'country_code' => 'DE'], ['name' => 'In Guezzam', 'country_code' => 'DZ'], ['name' => 'Acigne', 'country_code' => 'FR'], ['name' => 'Bothwell', 'country_code' => 'GB'], ['name' => 'Albisola Marina', 'country_code' => 'IT'], ['name' => 'Tumut', 'country_code' => 'AU'], ['name' => 'Diepoldsau', 'country_code' => 'CH'], ['name' => 'Orange City', 'country_code' => 'US'], ['name' => 'Coteau-du-Lac', 'country_code' => 'CA'], ['name' => 'Jussara', 'country_code' => 'BR'], ['name' => 'Aigina', 'country_code' => 'GR'], ['name' => 'Carnarvon', 'country_code' => 'ZA'], ['name' => 'Hecklingen', 'country_code' => 'DE'], ['name' => 'Kaitaia', 'country_code' => 'NZ'], ['name' => 'Grassau', 'country_code' => 'DE'], ['name' => 'Shinmachi', 'country_code' => 'JP'], ['name' => 'Seminole', 'country_code' => 'US'], ['name' => 'Moringen', 'country_code' => 'DE'], ['name' => 'San Clemente', 'country_code' => 'ES'], ['name' => 'Sunndalsora', 'country_code' => 'NO'], ['name' => 'Piskivka', 'country_code' => 'UA'], ['name' => 'Sant Agostino', 'country_code' => 'IT'], ['name' => 'Meleiro', 'country_code' => 'BR'], ['name' => 'Groesbeck', 'country_code' => 'US'], ['name' => 'Campestre', 'country_code' => 'BR'], ['name' => 'Litochoro', 'country_code' => 'GR'], ['name' => 'Chabeuil', 'country_code' => 'FR'], ['name' => 'Springs', 'country_code' => 'US'], ['name' => 'Marksville', 'country_code' => 'US'], ['name' => 'Truth or Consequences', 'country_code' => 'US'], ['name' => 'Mondelange', 'country_code' => 'FR'], ['name' => 'Les Essarts-le-Roi', 'country_code' => 'FR'], ['name' => 'Nanteuil-les-Meaux', 'country_code' => 'FR'], ['name' => 'Polessk', 'country_code' => 'RU'], ['name' => 'Surgeres', 'country_code' => 'FR'], ['name' => 'Summit', 'country_code' => 'US'], ['name' => 'Laurium', 'country_code' => 'US'], ['name' => 'Sarmasu', 'country_code' => 'RO'], ['name' => 'Pignola', 'country_code' => 'IT'], ['name' => 'Blythebridge', 'country_code' => 'GB'], ['name' => 'Archbald', 'country_code' => 'US'], ['name' => 'Busseto', 'country_code' => 'IT'], ['name' => 'Neukieritzsch', 'country_code' => 'DE'], ['name' => 'Providence', 'country_code' => 'US'], ['name' => 'Puerto Serrano', 'country_code' => 'ES'], ['name' => 'Schliersee', 'country_code' => 'DE'], ['name' => 'Pinotepa de Don Luis', 'country_code' => 'MX'], ['name' => 'Willis', 'country_code' => 'US'], ['name' => 'Algrange', 'country_code' => 'FR'], ['name' => 'Neo Karlovasi', 'country_code' => 'GR'], ['name' => 'Cannonvale', 'country_code' => 'AU'], ['name' => 'Zaouiat Sidi Hammou Ben Hmida', 'country_code' => 'MA'], ['name' => 'Krasno nad Kysucou', 'country_code' => 'SK'], ['name' => 'Gradisca d Isonzo', 'country_code' => 'IT'], ['name' => 'Herbignac', 'country_code' => 'FR'], ['name' => 'Eyguieres', 'country_code' => 'FR'], ['name' => 'Ustaritz', 'country_code' => 'FR'], ['name' => 'Formigueiro', 'country_code' => 'BR'], ['name' => 'Rancho Calaveras', 'country_code' => 'US'], ['name' => 'Tenamaxtlan', 'country_code' => 'MX'], ['name' => 'The Blue Mountains', 'country_code' => 'CA'], ['name' => 'Meopham', 'country_code' => 'GB'], ['name' => 'Aridaia', 'country_code' => 'GR'], ['name' => 'Tuzamapan', 'country_code' => 'MX'], ['name' => 'Cerano', 'country_code' => 'IT'], ['name' => 'Eston', 'country_code' => 'GB'], ['name' => 'Abercynon', 'country_code' => 'GB'], ['name' => 'Yarkovo', 'country_code' => 'RU'], ['name' => 'Kentfield', 'country_code' => 'US'], ['name' => 'Labico', 'country_code' => 'IT'], ['name' => 'Salto da Divisa', 'country_code' => 'BR'], ['name' => 'Limours', 'country_code' => 'FR'], ['name' => 'Kiel', 'country_code' => 'US'], ['name' => 'Gouverneur', 'country_code' => 'US'], ['name' => 'Racari', 'country_code' => 'RO'], ['name' => 'Tubinskiy', 'country_code' => 'RU'], ['name' => 'Kistelek', 'country_code' => 'HU'], ['name' => 'Villasor', 'country_code' => 'IT'], ['name' => 'Frutigen', 'country_code' => 'CH'], ['name' => 'Wigton', 'country_code' => 'GB'], ['name' => 'Carlton', 'country_code' => 'GB'], ['name' => 'Wellsville', 'country_code' => 'US'], ['name' => 'Mount Carmel', 'country_code' => 'US'], ['name' => 'Grand-Charmont', 'country_code' => 'FR'], ['name' => 'Chaek', 'country_code' => 'KG'], ['name' => 'Newbridge', 'country_code' => 'GB'], ['name' => 'Schwerzenbach', 'country_code' => 'CH'], ['name' => 'Reichelsheim', 'country_code' => 'DE'], ['name' => 'Carnforth', 'country_code' => 'GB'], ['name' => 'Geithain', 'country_code' => 'DE'], ['name' => 'Sapucai-Mirim', 'country_code' => 'BR'], ['name' => 'Bonndorf im Schwarzwald', 'country_code' => 'DE'], ['name' => 'Melesse', 'country_code' => 'FR'], ['name' => 'Polgardi', 'country_code' => 'HU'], ['name' => 'Lutterbach', 'country_code' => 'FR'], ['name' => 'Fuente el Saz', 'country_code' => 'ES'], ['name' => 'Marina di Gioiosa Ionica', 'country_code' => 'IT'], ['name' => 'Marcallo con Casone', 'country_code' => 'IT'], ['name' => 'Camerino', 'country_code' => 'IT'], ['name' => 'Epone', 'country_code' => 'FR'], ['name' => 'Whitewater Region', 'country_code' => 'CA'], ['name' => 'Chessy', 'country_code' => 'FR'], ['name' => 'Virrat', 'country_code' => 'FI'], ['name' => 'Ruswil', 'country_code' => 'CH'], ['name' => 'Preesall', 'country_code' => 'GB'], ['name' => 'Crete', 'country_code' => 'US'], ['name' => 'Meraux', 'country_code' => 'US'], ['name' => 'Point Vernon', 'country_code' => 'AU'], ['name' => 'Kiefersfelden', 'country_code' => 'DE'], ['name' => 'Vorozhba', 'country_code' => 'UA'], ['name' => 'Garden Home-Whitford', 'country_code' => 'US'], ['name' => 'Kravare', 'country_code' => 'CZ'], ['name' => 'Mezhdurechenskoye', 'country_code' => 'KZ'], ['name' => 'Lutzelbach', 'country_code' => 'DE'], ['name' => 'St. Augustine Beach', 'country_code' => 'US'], ['name' => 'Oppdal', 'country_code' => 'NO'], ['name' => 'Sosnytsia', 'country_code' => 'UA'], ['name' => 'Velika Kladusa', 'country_code' => 'BA'], ['name' => 'Kouango', 'country_code' => 'CF'], ['name' => 'Warnemunde', 'country_code' => 'DE'], ['name' => 'Rosny-sur-Seine', 'country_code' => 'FR'], ['name' => 'Praia a Mare', 'country_code' => 'IT'], ['name' => 'Pilawa Gorna', 'country_code' => 'PL'], ['name' => 'Solyanka', 'country_code' => 'RU'], ['name' => 'Cazenovia', 'country_code' => 'US'], ['name' => 'Zuni Pueblo', 'country_code' => 'US'], ['name' => 'Ovacik', 'country_code' => 'TR'], ['name' => 'Vimianzo', 'country_code' => 'ES'], ['name' => 'Vacarisas', 'country_code' => 'ES'], ['name' => 'Luxeuil-les-Bains', 'country_code' => 'FR'], ['name' => 'Ponto Belo', 'country_code' => 'BR'], ['name' => 'Pryvillya', 'country_code' => 'UA'], ['name' => 'Xochicoatlan', 'country_code' => 'MX'], ['name' => 'Lipany', 'country_code' => 'SK'], ['name' => 'Olevano sul Tusciano', 'country_code' => 'IT'], ['name' => 'Torrisholme', 'country_code' => 'GB'], ['name' => 'Cabeceira Grande', 'country_code' => 'BR'], ['name' => 'Nambucca Heads', 'country_code' => 'AU'], ['name' => 'Mendota', 'country_code' => 'US'], ['name' => 'Saint-Pee-sur-Nivelle', 'country_code' => 'FR'], ['name' => 'Laer', 'country_code' => 'DE'], ['name' => 'Labenne', 'country_code' => 'FR'], ['name' => 'Guatavita', 'country_code' => 'CO'], ['name' => 'Cos Cob', 'country_code' => 'US'], ['name' => 'Xacmaz', 'country_code' => 'AZ'], ['name' => 'Herrliberg', 'country_code' => 'CH'], ['name' => 'Sao Miguel do Anta', 'country_code' => 'BR'], ['name' => 'Tixpehual', 'country_code' => 'MX'], ['name' => 'Adel', 'country_code' => 'US'], ['name' => 'Wynyard', 'country_code' => 'AU'], ['name' => 'Champigneulles', 'country_code' => 'FR'], ['name' => 'Cangyanshanzhen', 'country_code' => 'CN'], ['name' => 'Vendargues', 'country_code' => 'FR'], ['name' => 'Zirc', 'country_code' => 'HU'], ['name' => 'Heathrow', 'country_code' => 'US'], ['name' => 'Calverton', 'country_code' => 'US'], ['name' => 'Galliano', 'country_code' => 'US'], ['name' => 'Alliste', 'country_code' => 'IT'], ['name' => 'Faina', 'country_code' => 'BR'], ['name' => 'Eagle', 'country_code' => 'US'], ['name' => 'Vetroz', 'country_code' => 'CH'], ['name' => 'Caussade', 'country_code' => 'FR'], ['name' => 'Hillsboro', 'country_code' => 'US'], ['name' => 'Oakdale', 'country_code' => 'US'], ['name' => 'Tomakivka', 'country_code' => 'UA'], ['name' => 'Schwarzenburg', 'country_code' => 'CH'], ['name' => 'Pauliceia', 'country_code' => 'BR'], ['name' => 'Barberton', 'country_code' => 'US'], ['name' => 'Kieta', 'country_code' => 'PG'], ['name' => 'Bad Hofgastein', 'country_code' => 'AT'], ['name' => 'Zeliezovce', 'country_code' => 'SK'], ['name' => 'Conquista', 'country_code' => 'BR'], ['name' => 'Shevchenkove', 'country_code' => 'UA'], ['name' => 'Abadia dos Dourados', 'country_code' => 'BR'], ['name' => 'Lozen', 'country_code' => 'BG'], ['name' => 'Keyport', 'country_code' => 'US'], ['name' => 'Whitianga', 'country_code' => 'NZ'], ['name' => 'Bunola', 'country_code' => 'ES'], ['name' => 'Beacon Square', 'country_code' => 'US'], ['name' => 'North Mackay', 'country_code' => 'AU'], ['name' => 'Wustenrot', 'country_code' => 'DE'], ['name' => 'Ammanford', 'country_code' => 'GB'], ['name' => 'Vilshany', 'country_code' => 'UA'], ['name' => 'Schelklingen', 'country_code' => 'DE'], ['name' => 'Heillecourt', 'country_code' => 'FR'], ['name' => 'Jarovnice', 'country_code' => 'SK'], ['name' => 'Laudenbach', 'country_code' => 'DE'], ['name' => 'Villadossola', 'country_code' => 'IT'], ['name' => 'Brier', 'country_code' => 'US'], ['name' => 'Givet', 'country_code' => 'FR'], ['name' => 'Trumann', 'country_code' => 'US'], ['name' => 'Santa Giustina', 'country_code' => 'IT'], ['name' => 'La Ametlla de Mar', 'country_code' => 'ES'], ['name' => 'Milltown', 'country_code' => 'US'], ['name' => 'Vyerkhnyadzvinsk', 'country_code' => 'BY'], ['name' => 'Agua Doce', 'country_code' => 'BR'], ['name' => 'Pleidelsheim', 'country_code' => 'DE'], ['name' => 'Epping', 'country_code' => 'US'], ['name' => 'Almacellas', 'country_code' => 'ES'], ['name' => 'Chynadiyovo', 'country_code' => 'UA'], ['name' => 'Arosio', 'country_code' => 'IT'], ['name' => 'Hamilton', 'country_code' => 'US'], ['name' => 'Dubrowna', 'country_code' => 'BY'], ['name' => 'Le Pian-Medoc', 'country_code' => 'FR'], ['name' => 'Leitchfield', 'country_code' => 'US'], ['name' => 'Confins', 'country_code' => 'BR'], ['name' => 'Calamonte', 'country_code' => 'ES'], ['name' => 'Galileia', 'country_code' => 'BR'], ['name' => 'Burgebrach', 'country_code' => 'DE'], ['name' => 'Carapelle', 'country_code' => 'IT'], ['name' => 'Indianopolis', 'country_code' => 'BR'], ['name' => 'Bohlen', 'country_code' => 'DE'], ['name' => 'Assais', 'country_code' => 'MA'], ['name' => 'Creswell', 'country_code' => 'US'], ['name' => 'Edwardsburgh/Cardinal', 'country_code' => 'CA'], ['name' => 'Hartberg', 'country_code' => 'AT'], ['name' => 'Nerac', 'country_code' => 'FR'], ['name' => 'Bondurant', 'country_code' => 'US'], ['name' => 'San Buenaventura', 'country_code' => 'MX'], ['name' => 'Charoen Sin', 'country_code' => 'TH'], ['name' => 'Freckleton', 'country_code' => 'GB'], ['name' => 'Haworth', 'country_code' => 'GB'], ['name' => 'Argamasilla de Alba', 'country_code' => 'ES'], ['name' => 'Stratford', 'country_code' => 'US'], ['name' => 'Arapora', 'country_code' => 'BR'], ['name' => 'Prairie View', 'country_code' => 'US'], ['name' => 'Catoosa', 'country_code' => 'US'], ['name' => 'Borgo Val di Taro', 'country_code' => 'IT'], ['name' => 'Paintsville', 'country_code' => 'US'], ['name' => 'Atkinson', 'country_code' => 'US'], ['name' => 'Dielsdorf', 'country_code' => 'CH'], ['name' => 'Neoi Epivates', 'country_code' => 'GR'], ['name' => 'Taliwine', 'country_code' => 'MA'], ['name' => 'Ipeuna', 'country_code' => 'BR'], ['name' => 'Artern', 'country_code' => 'DE'], ['name' => 'Akyar', 'country_code' => 'RU'], ['name' => 'Texhuacan', 'country_code' => 'MX'], ['name' => 'San Cipriano Picentino', 'country_code' => 'IT'], ['name' => 'Ogunimachi', 'country_code' => 'JP'], ['name' => 'Pledran', 'country_code' => 'FR'], ['name' => 'Plymouth Meeting', 'country_code' => 'US'], ['name' => 'Ixtenco', 'country_code' => 'MX'], ['name' => 'Cliza', 'country_code' => 'BO'], ['name' => 'Palmopolis', 'country_code' => 'BR'], ['name' => 'Colbe', 'country_code' => 'DE'], ['name' => 'Divinopolis do Tocantins', 'country_code' => 'BR'], ['name' => 'Teshikaga', 'country_code' => 'JP'], ['name' => 'Bremen', 'country_code' => 'US'], ['name' => 'Marzabotto', 'country_code' => 'IT'], ['name' => 'Caraglio', 'country_code' => 'IT'], ['name' => 'Lercara Friddi', 'country_code' => 'IT'], ['name' => 'Enderby', 'country_code' => 'GB'], ['name' => 'Birmensdorf', 'country_code' => 'CH'], ['name' => 'Ocean City', 'country_code' => 'US'], ['name' => 'Sao Jose do Ouro', 'country_code' => 'BR'], ['name' => 'Samahil', 'country_code' => 'MX'], ['name' => 'Dobroslav', 'country_code' => 'UA'], ['name' => 'Upper Freehold', 'country_code' => 'US'], ['name' => 'Roost-Warendin', 'country_code' => 'FR'], ['name' => 'Selfoss', 'country_code' => 'IS'], ['name' => 'Azgour', 'country_code' => 'MA'], ['name' => 'Aya', 'country_code' => 'JP'], ['name' => 'Nova Siri', 'country_code' => 'IT'], ['name' => 'Holice', 'country_code' => 'CZ'], ['name' => 'Cojusna', 'country_code' => 'MD'], ['name' => 'Kornik', 'country_code' => 'PL'], ['name' => 'Zolakar', 'country_code' => 'AM'], ['name' => 'Franklin', 'country_code' => 'US'], ['name' => 'Roskovec', 'country_code' => 'AL'], ['name' => 'Baarle-Nassau', 'country_code' => 'NL'], ['name' => 'Hochstadt an der Donau', 'country_code' => 'DE'], ['name' => 'Vandalia', 'country_code' => 'US'], ['name' => 'Tommot', 'country_code' => 'RU'], ['name' => 'Edgemoor', 'country_code' => 'US'], ['name' => 'Southampton', 'country_code' => 'US'], ['name' => 'Westmere', 'country_code' => 'US'], ['name' => 'Sainte-Anne-des-Monts', 'country_code' => 'CA'], ['name' => 'Fort Meade', 'country_code' => 'US'], ['name' => 'Vengerovo', 'country_code' => 'RU'], ['name' => 'Mileto', 'country_code' => 'IT'], ['name' => 'Osprey', 'country_code' => 'US'], ['name' => 'Gniew', 'country_code' => 'PL'], ['name' => 'Thyez', 'country_code' => 'FR'], ['name' => 'Farmington', 'country_code' => 'US'], ['name' => 'Newton Grange', 'country_code' => 'GB'], ['name' => 'Limasawa', 'country_code' => 'PH'], ['name' => 'Franklin', 'country_code' => 'US'], ['name' => 'Waddington', 'country_code' => 'GB'], ['name' => 'San Luis', 'country_code' => 'ES'], ['name' => 'Geiselhoring', 'country_code' => 'DE'], ['name' => 'Sabaudia', 'country_code' => 'BR'], ['name' => 'Peru', 'country_code' => 'US'], ['name' => 'Askino', 'country_code' => 'RU'], ['name' => 'Roma', 'country_code' => 'AU'], ['name' => 'Divisa Alegre', 'country_code' => 'BR'], ['name' => 'Casares', 'country_code' => 'ES'], ['name' => 'Fort Pierce North', 'country_code' => 'US'], ['name' => 'Romhild', 'country_code' => 'DE'], ['name' => 'San Jose del Progreso', 'country_code' => 'MX'], ['name' => 'Ploeren', 'country_code' => 'FR'], ['name' => 'Salgareda', 'country_code' => 'IT'], ['name' => 'Burguillos', 'country_code' => 'ES'], ['name' => 'Canohes', 'country_code' => 'FR'], ['name' => 'Felsozsolca', 'country_code' => 'HU'], ['name' => 'Rodenberg', 'country_code' => 'DE'], ['name' => 'Sturgis', 'country_code' => 'US'], ['name' => 'Sao Carlos do Ivai', 'country_code' => 'BR'], ['name' => 'Aguiarnopolis', 'country_code' => 'BR'], ['name' => 'Seraitang', 'country_code' => 'CN'], ['name' => 'Neufchateau', 'country_code' => 'FR'], ['name' => 'West Samoset', 'country_code' => 'US'], ['name' => 'Bern', 'country_code' => 'US'], ['name' => 'Treasure Island', 'country_code' => 'US'], ['name' => 'Iitti', 'country_code' => 'FI'], ['name' => 'Estaires', 'country_code' => 'FR'], ['name' => 'Talmaciu', 'country_code' => 'RO'], ['name' => 'Cegrane', 'country_code' => 'MK'], ['name' => 'Branston', 'country_code' => 'GB'], ['name' => 'Tizi Ouzli', 'country_code' => 'MA'], ['name' => 'Schoppingen', 'country_code' => 'DE'], ['name' => 'Spring Lake Park', 'country_code' => 'US'], ['name' => 'Paradas', 'country_code' => 'ES'], ['name' => 'Olevano Romano', 'country_code' => 'IT'], ['name' => 'Black Jack', 'country_code' => 'US'], ['name' => 'Camposano', 'country_code' => 'IT'], ['name' => 'Lewisburg', 'country_code' => 'US'], ['name' => 'Susa', 'country_code' => 'IT'], ['name' => 'Guican', 'country_code' => 'CO'], ['name' => 'Maquine', 'country_code' => 'BR'], ['name' => 'Carrigtohill', 'country_code' => 'IE'], ['name' => 'Heber Springs', 'country_code' => 'US'], ['name' => 'Senafe', 'country_code' => 'ER'], ['name' => 'Muncheberg', 'country_code' => 'DE'], ['name' => 'Saue', 'country_code' => 'EE'], ['name' => 'Galia', 'country_code' => 'BR'], ['name' => 'Conemaugh', 'country_code' => 'US'], ['name' => 'West Slope', 'country_code' => 'US'], ['name' => 'Villmar', 'country_code' => 'DE'], ['name' => 'Guarena', 'country_code' => 'ES'], ['name' => 'Glorinha', 'country_code' => 'BR'], ['name' => 'El Maader El Kabir', 'country_code' => 'MA'], ['name' => 'Woodland', 'country_code' => 'US'], ['name' => 'Ostiglia', 'country_code' => 'IT'], ['name' => 'Devin', 'country_code' => 'BG'], ['name' => 'Veszto', 'country_code' => 'HU'], ['name' => 'Tiros', 'country_code' => 'BR'], ['name' => 'Old Chelsea', 'country_code' => 'CA'], ['name' => 'Tiefenbach', 'country_code' => 'DE'], ['name' => 'Moelan-sur-Mer', 'country_code' => 'FR'], ['name' => 'Saham al Jawlan', 'country_code' => 'SY'], ['name' => 'Mercato Saraceno', 'country_code' => 'IT'], ['name' => 'Oberrieden', 'country_code' => 'CH'], ['name' => 'Volkmarsen', 'country_code' => 'DE'], ['name' => 'Erp', 'country_code' => 'NL'], ['name' => 'Westbrook', 'country_code' => 'US'], ['name' => 'Cambo-les-Bains', 'country_code' => 'FR'], ['name' => 'Chasse-sur-Rhone', 'country_code' => 'FR'], ['name' => 'Ferreira Gomes', 'country_code' => 'BR'], ['name' => 'Sikatuna', 'country_code' => 'PH'], ['name' => 'Orgeval', 'country_code' => 'FR'], ['name' => 'Interlaken', 'country_code' => 'CH'], ['name' => 'Zakan-Yurt', 'country_code' => 'RU'], ['name' => 'Garabogaz', 'country_code' => 'TM'], ['name' => 'Great Barrington', 'country_code' => 'US'], ['name' => 'Nandy', 'country_code' => 'FR'], ['name' => 'Gulf Breeze', 'country_code' => 'US'], ['name' => 'Infiesto', 'country_code' => 'ES'], ['name' => 'Boa Vista', 'country_code' => 'BR'], ['name' => 'Guenes', 'country_code' => 'ES'], ['name' => 'Viola', 'country_code' => 'US'], ['name' => 'Freeland', 'country_code' => 'US'], ['name' => 'Noyelles-Godault', 'country_code' => 'FR'], ['name' => 'Schoorl', 'country_code' => 'NL'], ['name' => 'Bandjoun', 'country_code' => 'CM'], ['name' => 'Avon', 'country_code' => 'US'], ['name' => 'Lake Mills', 'country_code' => 'US'], ['name' => 'Byron', 'country_code' => 'US'], ['name' => 'Limeira d Oeste', 'country_code' => 'BR'], ['name' => 'Hulin', 'country_code' => 'CZ'], ['name' => 'Latimer', 'country_code' => 'US'], ['name' => 'Loison-sous-Lens', 'country_code' => 'FR'], ['name' => 'Loudun', 'country_code' => 'FR'], ['name' => 'Thermalito', 'country_code' => 'US'], ['name' => 'Whitemarsh Island', 'country_code' => 'US'], ['name' => 'Colusa', 'country_code' => 'US'], ['name' => 'Union', 'country_code' => 'US'], ['name' => 'Junction City', 'country_code' => 'US'], ['name' => 'Taradell', 'country_code' => 'ES'], ['name' => 'Santiago Yaveo', 'country_code' => 'MX'], ['name' => 'Ait Said', 'country_code' => 'MA'], ['name' => 'Merrimac', 'country_code' => 'US'], ['name' => 'Ben Lomond', 'country_code' => 'US'], ['name' => 'Stawell', 'country_code' => 'AU'], ['name' => 'Fabbrico', 'country_code' => 'IT'], ['name' => 'Bossoroca', 'country_code' => 'BR'], ['name' => 'Kampong Beribi', 'country_code' => 'BN'], ['name' => 'Marilena', 'country_code' => 'BR'], ['name' => 'Stare Mesto', 'country_code' => 'CZ'], ['name' => 'University Park', 'country_code' => 'US'], ['name' => 'Ban Haet', 'country_code' => 'TH'], ['name' => 'Yeniceoba', 'country_code' => 'TR'], ['name' => 'Akka', 'country_code' => 'MA'], ['name' => 'Beerwah', 'country_code' => 'AU'], ['name' => 'Sury-le-Comtal', 'country_code' => 'FR'], ['name' => 'Gleneagle', 'country_code' => 'US'], ['name' => 'Mountainside', 'country_code' => 'US'], ['name' => 'Saint-Pol-de-Leon', 'country_code' => 'FR'], ['name' => 'Ludres', 'country_code' => 'FR'], ['name' => 'Lienden', 'country_code' => 'NL'], ['name' => 'Jerichow', 'country_code' => 'DE'], ['name' => 'Jevnaker', 'country_code' => 'NO'], ['name' => 'Brendola', 'country_code' => 'IT'], ['name' => 'Bonfim', 'country_code' => 'BR'], ['name' => 'Battle', 'country_code' => 'GB'], ['name' => 'Moores Mill', 'country_code' => 'US'], ['name' => 'East Buffalo', 'country_code' => 'US'], ['name' => 'Vitorino', 'country_code' => 'BR'], ['name' => 'Constanti', 'country_code' => 'ES'], ['name' => 'Sao Sebastiao do Curral', 'country_code' => 'BR'], ['name' => 'Peronnas', 'country_code' => 'FR'], ['name' => 'Mambai', 'country_code' => 'BR'], ['name' => 'Perry', 'country_code' => 'US'], ['name' => 'Aydemir', 'country_code' => 'BG'], ['name' => 'Chestertown', 'country_code' => 'US'], ['name' => 'Saint-Alban-Leysse', 'country_code' => 'FR'], ['name' => 'Notaresco', 'country_code' => 'IT'], ['name' => 'Cheddleton', 'country_code' => 'GB'], ['name' => 'Almenno San Salvatore', 'country_code' => 'IT'], ['name' => 'Labarthe-sur-Leze', 'country_code' => 'FR'], ['name' => 'Brindas', 'country_code' => 'FR'], ['name' => 'Pietraperzia', 'country_code' => 'IT'], ['name' => 'Saanen', 'country_code' => 'CH'], ['name' => 'North Stormont', 'country_code' => 'CA'], ['name' => 'Mojacar', 'country_code' => 'ES'], ['name' => 'St. Martinville', 'country_code' => 'US'], ['name' => 'Harrisville', 'country_code' => 'US'], ['name' => 'Pottmes', 'country_code' => 'DE'], ['name' => 'Fishtoft', 'country_code' => 'GB'], ['name' => 'Oulad Sbih', 'country_code' => 'MA'], ['name' => 'Cuitegi', 'country_code' => 'BR'], ['name' => 'Assays', 'country_code' => 'MA'], ['name' => 'Beaufort-en-Vallee', 'country_code' => 'FR'], ['name' => 'Oakley', 'country_code' => 'GB'], ['name' => 'Huron', 'country_code' => 'US'], ['name' => 'Mechanicstown', 'country_code' => 'US'], ['name' => 'Alnwick/Haldimand', 'country_code' => 'CA'], ['name' => 'Rosice', 'country_code' => 'CZ'], ['name' => 'Newbiggin-by-the-Sea', 'country_code' => 'GB'], ['name' => 'Oberuzwil', 'country_code' => 'CH'], ['name' => 'Loomis', 'country_code' => 'US'], ['name' => 'Nervesa della Battaglia', 'country_code' => 'IT'], ['name' => 'Northam', 'country_code' => 'AU'], ['name' => 'Balozi', 'country_code' => 'LV'], ['name' => 'Sawtry', 'country_code' => 'GB'], ['name' => 'Jackson', 'country_code' => 'US'], ['name' => 'Montegiorgio', 'country_code' => 'IT'], ['name' => 'Thorpe', 'country_code' => 'GB'], ['name' => 'Bergondo', 'country_code' => 'ES'], ['name' => 'Montaigu', 'country_code' => 'FR'], ['name' => 'Schwendi', 'country_code' => 'DE'], ['name' => 'Dozza', 'country_code' => 'IT'], ['name' => 'Wutoschingen', 'country_code' => 'DE'], ['name' => 'Great Chart', 'country_code' => 'GB'], ['name' => 'Nagatoro', 'country_code' => 'JP'], ['name' => 'King', 'country_code' => 'US'], ['name' => 'Breidenbach', 'country_code' => 'DE'], ['name' => 'West Glens Falls', 'country_code' => 'US'], ['name' => 'Leinburg', 'country_code' => 'DE'], ['name' => 'Herdorf', 'country_code' => 'DE'], ['name' => 'Youngtown', 'country_code' => 'US'], ['name' => 'Mesola', 'country_code' => 'IT'], ['name' => 'Phelps', 'country_code' => 'US'], ['name' => 'Upper Nazareth', 'country_code' => 'US'], ['name' => 'Lemoore Station', 'country_code' => 'US'], ['name' => 'Erere', 'country_code' => 'BR'], ['name' => 'Lutherville', 'country_code' => 'US'], ['name' => 'Floresta', 'country_code' => 'BR'], ['name' => 'Milford', 'country_code' => 'US'], ['name' => 'Spisska Bela', 'country_code' => 'SK'], ['name' => 'Upper Mount Bethel', 'country_code' => 'US'], ['name' => 'Greenbrier', 'country_code' => 'US'], ['name' => 'Letovice', 'country_code' => 'CZ'], ['name' => 'Southbourne', 'country_code' => 'GB'], ['name' => 'Tabernacle', 'country_code' => 'US'], ['name' => 'Venta de Banos', 'country_code' => 'ES'], ['name' => 'Horncastle', 'country_code' => 'GB'], ['name' => 'Nizhnyaya Tavda', 'country_code' => 'RU'], ['name' => 'Georgensgmund', 'country_code' => 'DE'], ['name' => 'Saint-Pierre-d Oleron', 'country_code' => 'FR'], ['name' => 'Meung-sur-Loire', 'country_code' => 'FR'], ['name' => 'Maulbronn', 'country_code' => 'DE'], ['name' => 'Negreira', 'country_code' => 'ES'], ['name' => 'Lecanto', 'country_code' => 'US'], ['name' => 'Curinga', 'country_code' => 'IT'], ['name' => 'Ribeiro Goncalves', 'country_code' => 'BR'], ['name' => 'Montebello Vicentino', 'country_code' => 'IT'], ['name' => 'Sandycroft', 'country_code' => 'GB'], ['name' => 'Mount Cotton', 'country_code' => 'AU'], ['name' => 'Risor', 'country_code' => 'NO'], ['name' => 'Eldridge', 'country_code' => 'US'], ['name' => 'Teius', 'country_code' => 'RO'], ['name' => 'East Earl', 'country_code' => 'US'], ['name' => 'Hulha Negra', 'country_code' => 'BR'], ['name' => 'Dobruska', 'country_code' => 'CZ'], ['name' => 'Old Greenwich', 'country_code' => 'US'], ['name' => 'Malvern Link', 'country_code' => 'GB'], ['name' => 'Idabel', 'country_code' => 'US'], ['name' => 'Mehun-sur-Yevre', 'country_code' => 'FR'], ['name' => 'Piedimonte San Germano', 'country_code' => 'IT'], ['name' => 'South Patrick Shores', 'country_code' => 'US'], ['name' => 'Peace River', 'country_code' => 'CA'], ['name' => 'Isenbuttel', 'country_code' => 'DE'], ['name' => 'Sunnyvale', 'country_code' => 'US'], ['name' => 'Bee Cave', 'country_code' => 'US'], ['name' => 'Haag in Oberbayern', 'country_code' => 'DE'], ['name' => 'Lovejoy', 'country_code' => 'US'], ['name' => 'Gigean', 'country_code' => 'FR'], ['name' => 'Clay', 'country_code' => 'US'], ['name' => 'Torgiano', 'country_code' => 'IT'], ['name' => 'Sallent', 'country_code' => 'ES'], ['name' => 'Garsten', 'country_code' => 'AT'], ['name' => 'Chugqensumdo', 'country_code' => 'CN'], ['name' => 'Sekigahara', 'country_code' => 'JP'], ['name' => 'Acs', 'country_code' => 'HU'], ['name' => 'Almenno San Bartolomeo', 'country_code' => 'IT'], ['name' => 'Loriol-sur-Drome', 'country_code' => 'FR'], ['name' => 'Machern', 'country_code' => 'DE'], ['name' => 'Fircrest', 'country_code' => 'US'], ['name' => 'Landore', 'country_code' => 'GB'], ['name' => 'Annezin', 'country_code' => 'FR'], ['name' => 'Altenkirchen', 'country_code' => 'DE'], ['name' => 'Gelterkinden', 'country_code' => 'CH'], ['name' => 'Ladbergen', 'country_code' => 'DE'], ['name' => 'Dunbar', 'country_code' => 'US'], ['name' => 'Bietigheim', 'country_code' => 'DE'], ['name' => 'Hainburg an der Donau', 'country_code' => 'AT'], ['name' => 'Balan', 'country_code' => 'RO'], ['name' => 'Tagliacozzo', 'country_code' => 'IT'], ['name' => 'Puchezh', 'country_code' => 'RU'], ['name' => 'Alstonville', 'country_code' => 'AU'], ['name' => 'Ivanka pri Dunaji', 'country_code' => 'SK'], ['name' => 'Brixworth', 'country_code' => 'GB'], ['name' => 'Livada', 'country_code' => 'RO'], ['name' => 'Lincoln', 'country_code' => 'US'], ['name' => 'Careacu', 'country_code' => 'BR'], ['name' => 'Klundert', 'country_code' => 'NL'], ['name' => 'Cacimbas', 'country_code' => 'BR'], ['name' => 'Renascenca', 'country_code' => 'BR'], ['name' => 'Milo', 'country_code' => 'US'], ['name' => 'San Vincenzo', 'country_code' => 'IT'], ['name' => 'Mozonte', 'country_code' => 'NI'], ['name' => 'Huntertown', 'country_code' => 'US'], ['name' => 'Saint-Andre-des-Eaux', 'country_code' => 'FR'], ['name' => 'Oberhausbergen', 'country_code' => 'FR'], ['name' => 'Mejji', 'country_code' => 'MA'], ['name' => 'Lagoa de Sao Francisco', 'country_code' => 'BR'], ['name' => 'Ocampo', 'country_code' => 'MX'], ['name' => 'Bilmak', 'country_code' => 'UA'], ['name' => 'Saint Blazey', 'country_code' => 'GB'], ['name' => 'Crossett', 'country_code' => 'US'], ['name' => 'Vidigulfo', 'country_code' => 'IT'], ['name' => 'Puerto Narino', 'country_code' => 'CO'], ['name' => 'Waldeck', 'country_code' => 'DE'], ['name' => 'Kropp', 'country_code' => 'DE'], ['name' => 'Ostrach', 'country_code' => 'DE'], ['name' => 'Knyaginino', 'country_code' => 'RU'], ['name' => 'Jose Pedro Varela', 'country_code' => 'UY'], ['name' => 'Baboua', 'country_code' => 'CF'], ['name' => 'Herval', 'country_code' => 'BR'], ['name' => 'Santo Antonio do Pinhal', 'country_code' => 'BR'], ['name' => 'Margaret River', 'country_code' => 'AU'], ['name' => 'Belo Monte', 'country_code' => 'BR'], ['name' => 'Taneytown', 'country_code' => 'US'], ['name' => 'Mount Vernon', 'country_code' => 'US'], ['name' => 'Glen Innes', 'country_code' => 'AU'], ['name' => 'Kostenets', 'country_code' => 'BG'], ['name' => 'Roteiro', 'country_code' => 'BR'], ['name' => 'San Francisco del Norte', 'country_code' => 'NI'], ['name' => 'Penarrubia', 'country_code' => 'PH'], ['name' => 'Angical do Piaui', 'country_code' => 'BR'], ['name' => 'Cittaducale', 'country_code' => 'IT'], ['name' => 'Puerto Aventuras', 'country_code' => 'MX'], ['name' => 'Fort Myers Shores', 'country_code' => 'US'], ['name' => 'Bovenkarspel', 'country_code' => 'NL'], ['name' => 'Offenbach an der Queich', 'country_code' => 'DE'], ['name' => 'Vizinga', 'country_code' => 'RU'], ['name' => 'Lossiemouth', 'country_code' => 'GB'], ['name' => 'Kirtland', 'country_code' => 'US'], ['name' => 'Bishops Waltham', 'country_code' => 'GB'], ['name' => 'Hornostaivka', 'country_code' => 'UA'], ['name' => 'Castello d Argile', 'country_code' => 'IT'], ['name' => 'Lakes of the Four Seasons', 'country_code' => 'US'], ['name' => 'Na Duang', 'country_code' => 'TH'], ['name' => 'Verneuil-sur-Avre', 'country_code' => 'FR'], ['name' => 'Rheurdt', 'country_code' => 'DE'], ['name' => 'Loanhead', 'country_code' => 'GB'], ['name' => 'Tyrnava', 'country_code' => 'FI'], ['name' => 'Gilwala', 'country_code' => 'PK'], ['name' => 'Znada', 'country_code' => 'MA'], ['name' => 'Bolzano Vicentino', 'country_code' => 'IT'], ['name' => 'Oensingen', 'country_code' => 'CH'], ['name' => 'Faget', 'country_code' => 'RO'], ['name' => 'Turis', 'country_code' => 'ES'], ['name' => 'Yamba', 'country_code' => 'AU'], ['name' => 'Nagaya', 'country_code' => 'JP'], ['name' => 'Senov', 'country_code' => 'CZ'], ['name' => 'Inari', 'country_code' => 'FI'], ['name' => 'Marion', 'country_code' => 'US'], ['name' => 'Kristinestad', 'country_code' => 'FI'], ['name' => 'Chui', 'country_code' => 'BR'], ['name' => 'San Martin', 'country_code' => 'US'], ['name' => 'Arran-Elderslie', 'country_code' => 'CA'], ['name' => 'Ban Bang Pakong', 'country_code' => 'TH'], ['name' => 'Kimberly', 'country_code' => 'US'], ['name' => 'Taylor Mill', 'country_code' => 'US'], ['name' => 'Marmolejo', 'country_code' => 'ES'], ['name' => 'Yardville', 'country_code' => 'US'], ['name' => 'East Shoreham', 'country_code' => 'US'], ['name' => 'Bani Bangou', 'country_code' => 'NE'], ['name' => 'Nachrodt-Wiblingwerde', 'country_code' => 'DE'], ['name' => 'Ouvidor', 'country_code' => 'BR'], ['name' => 'Arges', 'country_code' => 'ES'], ['name' => 'Cromwell', 'country_code' => 'NZ'], ['name' => 'South Hanover', 'country_code' => 'US'], ['name' => 'Ytyk-Kyuyel ', 'country_code' => 'RU'], ['name' => 'Mutzig', 'country_code' => 'FR'], ['name' => 'Velizh', 'country_code' => 'RU'], ['name' => 'Bienenbuttel', 'country_code' => 'DE'], ['name' => 'Valley Park', 'country_code' => 'US'], ['name' => 'General Fernandez Oro', 'country_code' => 'AR'], ['name' => 'Saint-Yrieix-la-Perche', 'country_code' => 'FR'], ['name' => 'Waldsassen', 'country_code' => 'DE'], ['name' => 'Waldmunchen', 'country_code' => 'DE'], ['name' => 'Svelvik', 'country_code' => 'NO'], ['name' => 'Natividade da Serra', 'country_code' => 'BR'], ['name' => 'Thousand Palms', 'country_code' => 'US'], ['name' => 'Amory', 'country_code' => 'US'], ['name' => 'Perola do Oeste', 'country_code' => 'BR'], ['name' => 'Brech', 'country_code' => 'FR'], ['name' => 'Columbus', 'country_code' => 'US'], ['name' => 'Celeiroz', 'country_code' => 'PT'], ['name' => 'Waterford', 'country_code' => 'AU'], ['name' => 'Lake Mathews', 'country_code' => 'US'], ['name' => 'Marvin', 'country_code' => 'US'], ['name' => 'Itambaraca', 'country_code' => 'BR'], ['name' => 'Heitersheim', 'country_code' => 'DE'], ['name' => 'Fowler', 'country_code' => 'US'], ['name' => 'Mellingen', 'country_code' => 'CH'], ['name' => 'Le Cendre', 'country_code' => 'FR'], ['name' => 'Kervignac', 'country_code' => 'FR'], ['name' => 'Malaunay', 'country_code' => 'FR'], ['name' => 'Fishhook', 'country_code' => 'US'], ['name' => 'Kraslice', 'country_code' => 'CZ'], ['name' => 'Ampfing', 'country_code' => 'DE'], ['name' => 'San Feliu de Codinas', 'country_code' => 'ES'], ['name' => 'Courtepin', 'country_code' => 'CH'], ['name' => 'Landriano', 'country_code' => 'IT'], ['name' => 'Hoosick', 'country_code' => 'US'], ['name' => 'Almese', 'country_code' => 'IT'], ['name' => 'Castel di Sangro', 'country_code' => 'IT'], ['name' => 'Hersin-Coupigny', 'country_code' => 'FR'], ['name' => 'Hombourg-Haut', 'country_code' => 'FR'], ['name' => 'Breinigsville', 'country_code' => 'US'], ['name' => 'Marles-les-Mines', 'country_code' => 'FR'], ['name' => 'Douar el Caid el Gueddari', 'country_code' => 'MA'], ['name' => 'Gordonvale', 'country_code' => 'AU'], ['name' => 'Terezinha', 'country_code' => 'BR'], ['name' => 'Lincoln', 'country_code' => 'US'], ['name' => 'Charagua', 'country_code' => 'BO'], ['name' => 'Mimon', 'country_code' => 'CZ'], ['name' => 'Kishkenekol', 'country_code' => 'KZ'], ['name' => 'Groveland', 'country_code' => 'US'], ['name' => 'Poggio Rusco', 'country_code' => 'IT'], ['name' => 'Melenci', 'country_code' => 'RS'], ['name' => 'Tumiritinga', 'country_code' => 'BR'], ['name' => 'Untergrombach', 'country_code' => 'DE'], ['name' => 'Dovolnoye', 'country_code' => 'RU'], ['name' => 'Blainville-sur-Orne', 'country_code' => 'FR'], ['name' => 'Santa Cruz da Vitoria', 'country_code' => 'BR'], ['name' => 'Fukuyama', 'country_code' => 'JP'], ['name' => 'Myers Corner', 'country_code' => 'US'], ['name' => 'Ispringen', 'country_code' => 'DE'], ['name' => 'Mede', 'country_code' => 'IT'], ['name' => 'Plouguerneau', 'country_code' => 'FR'], ['name' => 'Malchow', 'country_code' => 'DE'], ['name' => 'Luftkurort Arendsee', 'country_code' => 'DE'], ['name' => ' Ayn Isa', 'country_code' => 'SY'], ['name' => 'Trappenkamp', 'country_code' => 'DE'], ['name' => 'Ghafsai', 'country_code' => 'MA'], ['name' => 'Colombier', 'country_code' => 'CH'], ['name' => 'Boa Vista do Burica', 'country_code' => 'BR'], ['name' => 'Parkano', 'country_code' => 'FI'], ['name' => 'Zerkat', 'country_code' => 'MA'], ['name' => 'Saint-Zotique', 'country_code' => 'CA'], ['name' => 'Greifenstein', 'country_code' => 'DE'], ['name' => 'Cellamare', 'country_code' => 'IT'], ['name' => 'La Canonja', 'country_code' => 'ES'], ['name' => 'Riudoms', 'country_code' => 'ES'], ['name' => 'Quixaba', 'country_code' => 'BR'], ['name' => 'Reutte', 'country_code' => 'AT'], ['name' => 'Oleksandrivsk', 'country_code' => 'UA'], ['name' => 'Danbury', 'country_code' => 'GB'], ['name' => 'Castro Marim', 'country_code' => 'PT'], ['name' => 'Millersville', 'country_code' => 'US'], ['name' => 'Ciserano', 'country_code' => 'IT'], ['name' => 'Glashutte', 'country_code' => 'DE'], ['name' => 'Cornuda', 'country_code' => 'IT'], ['name' => 'Cortland', 'country_code' => 'US'], ['name' => 'Crisolita', 'country_code' => 'BR'], ['name' => 'Serra San Bruno', 'country_code' => 'IT'], ['name' => 'Eggersdorf bei Graz', 'country_code' => 'AT'], ['name' => 'Cazaclia', 'country_code' => 'MD'], ['name' => 'Sofiivka', 'country_code' => 'UA'], ['name' => 'Mitterteich', 'country_code' => 'DE'], ['name' => 'Montelepre', 'country_code' => 'IT'], ['name' => 'Guanica', 'country_code' => 'PR'], ['name' => 'San Donaci', 'country_code' => 'IT'], ['name' => 'Chatelaillon-Plage', 'country_code' => 'FR'], ['name' => 'Annaburg', 'country_code' => 'DE'], ['name' => 'Santo Antonio da Alegria', 'country_code' => 'BR'], ['name' => 'Irshansk', 'country_code' => 'UA'], ['name' => 'East Coventry', 'country_code' => 'US'], ['name' => 'Oedheim', 'country_code' => 'DE'], ['name' => 'Hardheim', 'country_code' => 'DE'], ['name' => 'Santa Clara do Sul', 'country_code' => 'BR'], ['name' => 'Ibrany', 'country_code' => 'HU'], ['name' => 'Grand-Fort-Philippe', 'country_code' => 'FR'], ['name' => 'Williamson', 'country_code' => 'US'], ['name' => 'Avallon', 'country_code' => 'FR'], ['name' => 'Larino', 'country_code' => 'IT'], ['name' => 'Plymouth', 'country_code' => 'US'], ['name' => 'Desert Palms', 'country_code' => 'US'], ['name' => 'Acua', 'country_code' => 'BR'], ['name' => 'Lathen', 'country_code' => 'DE'], ['name' => 'Indian River Estates', 'country_code' => 'US'], ['name' => 'Cedeira', 'country_code' => 'ES'], ['name' => 'Ghisalba', 'country_code' => 'IT'], ['name' => 'Yetkul', 'country_code' => 'RU'], ['name' => 'Kamihonbetsu', 'country_code' => 'JP'], ['name' => 'Sutri', 'country_code' => 'IT'], ['name' => 'Asten', 'country_code' => 'AT'], ['name' => 'Odolena Voda', 'country_code' => 'CZ'], ['name' => 'Cranbrook', 'country_code' => 'GB'], ['name' => 'Fuente del Maestre', 'country_code' => 'ES'], ['name' => 'Medzilaborce', 'country_code' => 'SK'], ['name' => 'Alilem', 'country_code' => 'PH'], ['name' => 'Gemenos', 'country_code' => 'FR'], ['name' => 'Petershausen', 'country_code' => 'DE'], ['name' => 'Kochi', 'country_code' => 'JP'], ['name' => 'La Bouilladisse', 'country_code' => 'FR'], ['name' => 'Santiago Maravatio', 'country_code' => 'MX'], ['name' => 'Pembroke Park', 'country_code' => 'US'], ['name' => 'Vezin-le-Coquet', 'country_code' => 'FR'], ['name' => 'Horbourg', 'country_code' => 'FR'], ['name' => 'Washington', 'country_code' => 'US'], ['name' => 'Sobrance', 'country_code' => 'SK'], ['name' => 'Lake Hallie', 'country_code' => 'US'], ['name' => 'Ellettsville', 'country_code' => 'US'], ['name' => 'Diano Marina', 'country_code' => 'IT'], ['name' => 'Arapoema', 'country_code' => 'BR'], ['name' => 'Sapopema', 'country_code' => 'BR'], ['name' => 'Saint-Florent-sur-Cher', 'country_code' => 'FR'], ['name' => 'Ambert', 'country_code' => 'FR'], ['name' => 'Guglingen', 'country_code' => 'DE'], ['name' => 'Saint-Girons', 'country_code' => 'FR'], ['name' => 'Sankt Margrethen', 'country_code' => 'CH'], ['name' => 'Moraleja', 'country_code' => 'ES'], ['name' => 'Kremsmunster', 'country_code' => 'AT'], ['name' => 'Guged', 'country_code' => 'IR'], ['name' => 'Prairie Grove', 'country_code' => 'US'], ['name' => 'Tvarditsa', 'country_code' => 'BG'], ['name' => 'Timoulilt', 'country_code' => 'MA'], ['name' => 'Napili-Honokowai', 'country_code' => 'US'], ['name' => 'Buia', 'country_code' => 'IT'], ['name' => 'Khmis Sidi Yahia', 'country_code' => 'MA'], ['name' => 'Gorom-Gorom', 'country_code' => 'BF'], ['name' => 'Montevallo', 'country_code' => 'US'], ['name' => 'Sinn', 'country_code' => 'DE'], ['name' => 'Kimberley', 'country_code' => 'GB'], ['name' => 'Marineo', 'country_code' => 'IT'], ['name' => 'Countesthorpe', 'country_code' => 'GB'], ['name' => 'Beromunster', 'country_code' => 'CH'], ['name' => 'Mount Healthy', 'country_code' => 'US'], ['name' => 'Change', 'country_code' => 'FR'], ['name' => 'Enying', 'country_code' => 'HU'], ['name' => 'Clover Creek', 'country_code' => 'US'], ['name' => 'Allendale', 'country_code' => 'US'], ['name' => 'Luislandia', 'country_code' => 'BR'], ['name' => 'Marange-Silvange', 'country_code' => 'FR'], ['name' => 'Bois-le-Roi', 'country_code' => 'FR'], ['name' => 'Marignier', 'country_code' => 'FR'], ['name' => 'Rupert', 'country_code' => 'US'], ['name' => 'Snowflake', 'country_code' => 'US'], ['name' => 'Bayville', 'country_code' => 'US'], ['name' => 'Ijoukak', 'country_code' => 'MA'], ['name' => 'Puebla de Alfinden', 'country_code' => 'ES'], ['name' => 'Perechyn', 'country_code' => 'UA'], ['name' => 'Douar Oulad Mkoudou', 'country_code' => 'MA'], ['name' => 'Mount Hope', 'country_code' => 'US'], ['name' => 'Litchfield', 'country_code' => 'US'], ['name' => 'Muggensturm', 'country_code' => 'DE'], ['name' => 'Berkley', 'country_code' => 'US'], ['name' => 'Boxberg', 'country_code' => 'DE'], ['name' => 'Schildow', 'country_code' => 'DE'], ['name' => 'Cubara', 'country_code' => 'CO'], ['name' => 'Verzuolo', 'country_code' => 'IT'], ['name' => 'Glandorf', 'country_code' => 'DE'], ['name' => 'Jimena de la Frontera', 'country_code' => 'ES'], ['name' => 'Weisendorf', 'country_code' => 'DE'], ['name' => 'Maple Glen', 'country_code' => 'US'], ['name' => 'Eatonton', 'country_code' => 'US'], ['name' => 'Tuxcueca', 'country_code' => 'MX'], ['name' => 'Kamennogorsk', 'country_code' => 'RU'], ['name' => 'Kiama Downs', 'country_code' => 'AU'], ['name' => 'Catugi', 'country_code' => 'BR'], ['name' => 'Bulkington', 'country_code' => 'GB'], ['name' => 'Thones', 'country_code' => 'FR'], ['name' => 'Bellwood', 'country_code' => 'US'], ['name' => 'Vora', 'country_code' => 'FI'], ['name' => 'Obdam', 'country_code' => 'NL'], ['name' => 'Alvechurch', 'country_code' => 'GB'], ['name' => 'Aleksandrovskoye', 'country_code' => 'RU'], ['name' => 'Lacy-Lakeview', 'country_code' => 'US'], ['name' => 'Bad Bruckenau', 'country_code' => 'DE'], ['name' => 'Saint-Marcel-les-Valence', 'country_code' => 'FR'], ['name' => 'Kosciusko', 'country_code' => 'US'], ['name' => 'Tunkhannock', 'country_code' => 'US'], ['name' => 'Hinojosa del Duque', 'country_code' => 'ES'], ['name' => 'Rajamaki', 'country_code' => 'FI'], ['name' => 'Orchard Mesa', 'country_code' => 'US'], ['name' => 'Roaring Spring', 'country_code' => 'US'], ['name' => 'Calonne-Ricouart', 'country_code' => 'FR'], ['name' => 'San Martino Siccomario', 'country_code' => 'IT'], ['name' => 'Woodfin', 'country_code' => 'US'], ['name' => 'Eggolsheim', 'country_code' => 'DE'], ['name' => 'Pollenza', 'country_code' => 'IT'], ['name' => 'Saint-Marcel', 'country_code' => 'FR'], ['name' => 'Rumson', 'country_code' => 'US'], ['name' => 'Pedra Bonita', 'country_code' => 'BR'], ['name' => 'Saint-Prex', 'country_code' => 'CH'], ['name' => 'Bazargan', 'country_code' => 'IR'], ['name' => 'Letohrad', 'country_code' => 'CZ'], ['name' => 'Broadway', 'country_code' => 'US'], ['name' => 'Medina', 'country_code' => 'US'], ['name' => 'San Juan Mixtepec', 'country_code' => 'MX'], ['name' => 'Orio', 'country_code' => 'ES'], ['name' => 'Kaiseraugst', 'country_code' => 'CH'], ['name' => 'Val-Shefford', 'country_code' => 'CA'], ['name' => 'Harrisburg', 'country_code' => 'US'], ['name' => 'Et Tnine des Beni Ammart', 'country_code' => 'MA'], ['name' => 'Velden', 'country_code' => 'DE'], ['name' => 'Douro-Dummer', 'country_code' => 'CA'], ['name' => 'Schwabhausen', 'country_code' => 'DE'], ['name' => 'Frohnleiten', 'country_code' => 'AT'], ['name' => 'Yaring', 'country_code' => 'TH'], ['name' => 'Ilshofen', 'country_code' => 'DE'], ['name' => 'Phanom Sarakham', 'country_code' => 'TH'], ['name' => 'Santa Lucia Monte Verde', 'country_code' => 'MX'], ['name' => 'Gamovo', 'country_code' => 'RU'], ['name' => 'Bouillargues', 'country_code' => 'FR'], ['name' => 'Kampong Mulaut', 'country_code' => 'BN'], ['name' => 'Pottsville', 'country_code' => 'AU'], ['name' => 'Bermuda Dunes', 'country_code' => 'US'], ['name' => 'New Hartford', 'country_code' => 'US'], ['name' => 'Cellino San Marco', 'country_code' => 'IT'], ['name' => 'Hermeskeil', 'country_code' => 'DE'], ['name' => 'Dusslingen', 'country_code' => 'DE'], ['name' => 'Villers-le-Bouillet', 'country_code' => 'BE'], ['name' => 'Pavilly', 'country_code' => 'FR'], ['name' => 'Losone', 'country_code' => 'CH'], ['name' => 'New Alresford', 'country_code' => 'GB'], ['name' => 'Viriat', 'country_code' => 'FR'], ['name' => 'Wilhelmsburg', 'country_code' => 'AT'], ['name' => 'Pendleton', 'country_code' => 'US'], ['name' => 'Bol shaya Chernigovka', 'country_code' => 'RU'], ['name' => 'Kuttigen', 'country_code' => 'CH'], ['name' => 'Bucovice', 'country_code' => 'CZ'], ['name' => 'Gochsheim', 'country_code' => 'DE'], ['name' => 'Olney', 'country_code' => 'GB'], ['name' => 'That Phanom', 'country_code' => 'TH'], ['name' => 'Bullskin', 'country_code' => 'US'], ['name' => 'Horstmar', 'country_code' => 'DE'], ['name' => 'San Cesario sul Panaro', 'country_code' => 'IT'], ['name' => 'Cinquefrondi', 'country_code' => 'IT'], ['name' => 'Castelnau-d Estretefonds', 'country_code' => 'FR'], ['name' => 'Chalonnes-sur-Loire', 'country_code' => 'FR'], ['name' => 'Sottrum', 'country_code' => 'DE'], ['name' => 'Phan Thong', 'country_code' => 'TH'], ['name' => 'Villabe', 'country_code' => 'FR'], ['name' => 'Lityn', 'country_code' => 'UA'], ['name' => 'Corbie', 'country_code' => 'FR'], ['name' => 'Rohrmoos', 'country_code' => 'DE'], ['name' => 'Staryi Sambir', 'country_code' => 'UA'], ['name' => 'Wescosville', 'country_code' => 'US'], ['name' => 'Chinchilla', 'country_code' => 'AU'], ['name' => 'Blatna', 'country_code' => 'CZ'], ['name' => 'Avetrana', 'country_code' => 'IT'], ['name' => 'Rinconada', 'country_code' => 'AR'], ['name' => 'Omachi', 'country_code' => 'JP'], ['name' => 'Karagay', 'country_code' => 'RU'], ['name' => 'Kronoby', 'country_code' => 'FI'], ['name' => 'Pontenure', 'country_code' => 'IT'], ['name' => 'Hage', 'country_code' => 'DE'], ['name' => 'Trezzano Rosa', 'country_code' => 'IT'], ['name' => 'Ashoro', 'country_code' => 'JP'], ['name' => 'Gramsbergen', 'country_code' => 'NL'], ['name' => 'Roeland Park', 'country_code' => 'US'], ['name' => 'Plessisville', 'country_code' => 'CA'], ['name' => 'Palkane', 'country_code' => 'FI'], ['name' => 'Hanover', 'country_code' => 'US'], ['name' => 'Horn', 'country_code' => 'AT'], ['name' => 'Dayton', 'country_code' => 'US'], ['name' => 'Lucas Valley-Marinwood', 'country_code' => 'US'], ['name' => 'Zevenhuizen', 'country_code' => 'NL'], ['name' => 'Arbucias', 'country_code' => 'ES'], ['name' => 'Sawley', 'country_code' => 'GB'], ['name' => 'Faxinal do Soturno', 'country_code' => 'BR'], ['name' => 'Montenero di Bisaccia', 'country_code' => 'IT'], ['name' => 'Tafingoult', 'country_code' => 'MA'], ['name' => 'Louhans', 'country_code' => 'FR'], ['name' => 'Cherryville', 'country_code' => 'US'], ['name' => 'Pecquencourt', 'country_code' => 'FR'], ['name' => 'Belfast', 'country_code' => 'US'], ['name' => 'Ritchot', 'country_code' => 'CA'], ['name' => 'Putnok', 'country_code' => 'HU'], ['name' => 'Padre Marcos', 'country_code' => 'BR'], ['name' => 'Alcala de Chivert', 'country_code' => 'ES'], ['name' => 'Fishguard', 'country_code' => 'GB'], ['name' => 'Nevada', 'country_code' => 'US'], ['name' => 'Lichtetanne', 'country_code' => 'DE'], ['name' => 'Gouesnou', 'country_code' => 'FR'], ['name' => 'Sevsk', 'country_code' => 'RU'], ['name' => 'Alpicat', 'country_code' => 'ES'], ['name' => 'Lysterfield', 'country_code' => 'AU'], ['name' => 'Saint-Maurice-l Exil', 'country_code' => 'FR'], ['name' => 'Teufen', 'country_code' => 'CH'], ['name' => 'Sallapadan', 'country_code' => 'PH'], ['name' => 'Calci', 'country_code' => 'IT'], ['name' => 'Ijaci', 'country_code' => 'BR'], ['name' => 'Sumirago', 'country_code' => 'IT'], ['name' => 'Montauroux', 'country_code' => 'FR'], ['name' => 'Viitasaari', 'country_code' => 'FI'], ['name' => 'Eppertshausen', 'country_code' => 'DE'], ['name' => 'Svesa', 'country_code' => 'UA'], ['name' => 'Mindszent', 'country_code' => 'HU'], ['name' => 'Arnstedt', 'country_code' => 'DE'], ['name' => 'Otonabee-South Monaghan', 'country_code' => 'CA'], ['name' => 'Pinhao', 'country_code' => 'BR'], ['name' => 'Schladming', 'country_code' => 'AT'], ['name' => 'Las Pedroneras', 'country_code' => 'ES'], ['name' => 'Zierenberg', 'country_code' => 'DE'], ['name' => 'Cwmafan', 'country_code' => 'GB'], ['name' => 'Neuenstein', 'country_code' => 'DE'], ['name' => 'Misinto', 'country_code' => 'IT'], ['name' => 'Dunlap', 'country_code' => 'US'], ['name' => 'South Molton', 'country_code' => 'GB'], ['name' => 'Sainte-Livrade-sur-Lot', 'country_code' => 'FR'], ['name' => 'Pizzighettone', 'country_code' => 'IT'], ['name' => 'Nong Chik', 'country_code' => 'TH'], ['name' => 'Knetzgau', 'country_code' => 'DE'], ['name' => 'Guaranta', 'country_code' => 'BR'], ['name' => 'Montdidier', 'country_code' => 'FR'], ['name' => 'Vairano Patenora', 'country_code' => 'IT'], ['name' => 'Albizzate', 'country_code' => 'IT'], ['name' => 'Ar Rawdah', 'country_code' => 'YE'], ['name' => 'Marcaria', 'country_code' => 'IT'], ['name' => 'Church Hill', 'country_code' => 'US'], ['name' => 'Exeter', 'country_code' => 'US'], ['name' => 'Potomac Mills', 'country_code' => 'US'], ['name' => 'Shediac', 'country_code' => 'CA'], ['name' => 'Tatatila', 'country_code' => 'MX'], ['name' => 'Bickenbach', 'country_code' => 'DE'], ['name' => 'Briviesca', 'country_code' => 'ES'], ['name' => 'Verkhniye Tatyshly', 'country_code' => 'RU'], ['name' => 'Tangstedt', 'country_code' => 'DE'], ['name' => 'San Antonio de Vilamajor', 'country_code' => 'ES'], ['name' => 'Neuffen', 'country_code' => 'DE'], ['name' => 'Cooranbong', 'country_code' => 'AU'], ['name' => 'Illogan', 'country_code' => 'GB'], ['name' => 'Straldzha', 'country_code' => 'BG'], ['name' => 'Hopefield', 'country_code' => 'ZA'], ['name' => 'Eichendorf', 'country_code' => 'DE'], ['name' => 'Lachendorf', 'country_code' => 'DE'], ['name' => 'Linwood', 'country_code' => 'US'], ['name' => 'Ashville', 'country_code' => 'US'], ['name' => 'Barro Duro', 'country_code' => 'BR'], ['name' => 'Wirksworth', 'country_code' => 'GB'], ['name' => 'Ventnor', 'country_code' => 'GB'], ['name' => 'Kizilskoye', 'country_code' => 'RU'], ['name' => 'Pilsting', 'country_code' => 'DE'], ['name' => 'Valley Falls', 'country_code' => 'US'], ['name' => 'Sandersville', 'country_code' => 'US'], ['name' => 'Colnbrook', 'country_code' => 'GB'], ['name' => 'Rissa', 'country_code' => 'NO'], ['name' => 'Chapelhall', 'country_code' => 'GB'], ['name' => 'Blairsville', 'country_code' => 'US'], ['name' => 'Fegersheim', 'country_code' => 'FR'], ['name' => 'Douvaine', 'country_code' => 'FR'], ['name' => 'Bridgeport', 'country_code' => 'US'], ['name' => 'Gualtieri', 'country_code' => 'IT'], ['name' => 'Diekholzen', 'country_code' => 'DE'], ['name' => 'Ascona', 'country_code' => 'CH'], ['name' => 'Hunters Quay', 'country_code' => 'GB'], ['name' => 'Sturtevant', 'country_code' => 'US'], ['name' => 'Nyirtelek', 'country_code' => 'HU'], ['name' => 'Eaunes', 'country_code' => 'FR'], ['name' => 'Slave Lake', 'country_code' => 'CA'], ['name' => 'Port-Cartier', 'country_code' => 'CA'], ['name' => 'Castronno', 'country_code' => 'IT'], ['name' => 'Litchfield', 'country_code' => 'US'], ['name' => 'Sammichele di Bari', 'country_code' => 'IT'], ['name' => 'San Adrian', 'country_code' => 'ES'], ['name' => 'Verkhniye Kigi', 'country_code' => 'RU'], ['name' => 'Cherry Hills Village', 'country_code' => 'US'], ['name' => 'Souda', 'country_code' => 'GR'], ['name' => 'Grandes Rios', 'country_code' => 'BR'], ['name' => 'Barrington', 'country_code' => 'CA'], ['name' => 'Douar El Gouzal', 'country_code' => 'MA'], ['name' => 'Barao de Cotegipe', 'country_code' => 'BR'], ['name' => 'Kozarmisleny', 'country_code' => 'HU'], ['name' => 'Pocahontas', 'country_code' => 'US'], ['name' => 'Morrilton', 'country_code' => 'US'], ['name' => 'La Moncada', 'country_code' => 'MX'], ['name' => 'Saint-Genest-Lerpt', 'country_code' => 'FR'], ['name' => 'Osterburken', 'country_code' => 'DE'], ['name' => 'Corjeuti', 'country_code' => 'MD'], ['name' => 'Blanca', 'country_code' => 'ES'], ['name' => 'Chatenoy-le-Royal', 'country_code' => 'FR'], ['name' => 'Bellingwolde', 'country_code' => 'NL'], ['name' => 'Barrington', 'country_code' => 'US'], ['name' => 'Fislisbach', 'country_code' => 'CH'], ['name' => 'Shikama', 'country_code' => 'JP'], ['name' => 'Mariopolis', 'country_code' => 'BR'], ['name' => 'Belle Haven', 'country_code' => 'US'], ['name' => 'Bolligen', 'country_code' => 'CH'], ['name' => 'Tanvald', 'country_code' => 'CZ'], ['name' => 'Capannoli', 'country_code' => 'IT'], ['name' => 'Zavetnoye', 'country_code' => 'RU'], ['name' => 'Independencia', 'country_code' => 'BR'], ['name' => 'Juana Diaz', 'country_code' => 'PR'], ['name' => 'Tecumseh', 'country_code' => 'US'], ['name' => 'Chatel-Guyon', 'country_code' => 'FR'], ['name' => 'Mecca', 'country_code' => 'US'], ['name' => 'Rocky Mountain House', 'country_code' => 'CA'], ['name' => 'Flers-en-Escrebieux', 'country_code' => 'FR'], ['name' => 'Poggio Mirteto', 'country_code' => 'IT'], ['name' => 'Mira Monte', 'country_code' => 'US'], ['name' => 'Gournay-en-Bray', 'country_code' => 'FR'], ['name' => 'Einhausen', 'country_code' => 'DE'], ['name' => 'Kounoupidiana', 'country_code' => 'GR'], ['name' => 'Creel', 'country_code' => 'MX'], ['name' => 'Pea Ridge', 'country_code' => 'US'], ['name' => 'Belmont', 'country_code' => 'US'], ['name' => 'Palma', 'country_code' => 'BR'], ['name' => 'Yemilchyne', 'country_code' => 'UA'], ['name' => 'Tsiolkovskiy', 'country_code' => 'RU'], ['name' => 'Green Knoll', 'country_code' => 'US'], ['name' => 'Ban Hua Saphan', 'country_code' => 'TH'], ['name' => 'Villamuriel de Cerrato', 'country_code' => 'ES'], ['name' => 'Chatsworth', 'country_code' => 'CA'], ['name' => 'Trysil', 'country_code' => 'NO'], ['name' => 'Lloseta', 'country_code' => 'ES'], ['name' => 'Dona Eusebia', 'country_code' => 'BR'], ['name' => 'Veneta', 'country_code' => 'US'], ['name' => 'North Syracuse', 'country_code' => 'US'], ['name' => 'Kirchberg', 'country_code' => 'CH'], ['name' => 'Uffenheim', 'country_code' => 'DE'], ['name' => 'Jiaotanzhuang', 'country_code' => 'CN'], ['name' => 'Anta', 'country_code' => 'BR'], ['name' => 'Amga', 'country_code' => 'RU'], ['name' => 'Ghadamis', 'country_code' => 'LY'], ['name' => 'Monte Aguila', 'country_code' => 'CL'], ['name' => 'Bellona', 'country_code' => 'IT'], ['name' => 'Stephenville', 'country_code' => 'CA'], ['name' => 'Schlangenbad', 'country_code' => 'DE'], ['name' => 'Le Palais-sur-Vienne', 'country_code' => 'FR'], ['name' => 'Cadaujac', 'country_code' => 'FR'], ['name' => 'Cornetu', 'country_code' => 'RO'], ['name' => 'Battlefield', 'country_code' => 'US'], ['name' => 'Grezieu-la-Varenne', 'country_code' => 'FR'], ['name' => 'East Leake', 'country_code' => 'GB'], ['name' => 'North Caldwell', 'country_code' => 'US'], ['name' => 'Beaver Dam', 'country_code' => 'US'], ['name' => 'Prades', 'country_code' => 'FR'], ['name' => 'Metsavan', 'country_code' => 'AM'], ['name' => 'Roccella Ionica', 'country_code' => 'IT'], ['name' => 'Guinisiliban', 'country_code' => 'PH'], ['name' => 'Ladera Heights', 'country_code' => 'US'], ['name' => 'Stewarton', 'country_code' => 'GB'], ['name' => 'Bezopasnoye', 'country_code' => 'RU'], ['name' => 'Winthrop Harbor', 'country_code' => 'US'], ['name' => 'Whitmore Lake', 'country_code' => 'US'], ['name' => 'Neuhofen an der Krems', 'country_code' => 'AT'], ['name' => 'Verkhneye Kazanishche', 'country_code' => 'RU'], ['name' => 'Market Weighton', 'country_code' => 'GB'], ['name' => 'Hillsboro', 'country_code' => 'US'], ['name' => 'Valdovino', 'country_code' => 'ES'], ['name' => 'L Hopital', 'country_code' => 'FR'], ['name' => 'Arquata Scrivia', 'country_code' => 'IT'], ['name' => 'Diamante', 'country_code' => 'BR'], ['name' => 'Grao Para', 'country_code' => 'BR'], ['name' => 'Brewton', 'country_code' => 'US'], ['name' => 'Tamanredjo', 'country_code' => 'SR'], ['name' => 'Limbricht', 'country_code' => 'NL'], ['name' => 'Anavyssos', 'country_code' => 'GR'], ['name' => 'Orlov', 'country_code' => 'RU'], ['name' => 'Kermit', 'country_code' => 'US'], ['name' => 'Belisce', 'country_code' => 'HR'], ['name' => 'Demopolis', 'country_code' => 'US'], ['name' => 'Thalheim', 'country_code' => 'DE'], ['name' => 'Veigne', 'country_code' => 'FR'], ['name' => 'Awjilah', 'country_code' => 'LY'], ['name' => 'Sao Jose do Piaui', 'country_code' => 'BR'], ['name' => 'Santa Cruz', 'country_code' => 'BR'], ['name' => 'Dalton', 'country_code' => 'US'], ['name' => 'Burgkunstadt', 'country_code' => 'DE'], ['name' => 'Guairaca', 'country_code' => 'BR'], ['name' => 'Labruguiere', 'country_code' => 'FR'], ['name' => 'Saint-Pryve-Saint-Mesmin', 'country_code' => 'FR'], ['name' => 'Talent', 'country_code' => 'US'], ['name' => 'Carral', 'country_code' => 'ES'], ['name' => 'Dubnany', 'country_code' => 'CZ'], ['name' => 'Sudova Vyshnya', 'country_code' => 'UA'], ['name' => 'Almensilla', 'country_code' => 'ES'], ['name' => 'Pan de Azucar', 'country_code' => 'UY'], ['name' => 'Jaraiz de la Vera', 'country_code' => 'ES'], ['name' => 'Hamilton', 'country_code' => 'US'], ['name' => 'Trinity', 'country_code' => 'US'], ['name' => 'Ploce', 'country_code' => 'HR'], ['name' => 'Oberding', 'country_code' => 'DE'], ['name' => 'Uthai', 'country_code' => 'TH'], ['name' => 'Normandy Park', 'country_code' => 'US'], ['name' => 'Peterborough', 'country_code' => 'US'], ['name' => 'Essex', 'country_code' => 'US'], ['name' => 'Montesano sulla Marcellana', 'country_code' => 'IT'], ['name' => 'Santa Fe do Araguaia', 'country_code' => 'BR'], ['name' => 'Kerkwijk', 'country_code' => 'NL'], ['name' => 'Bridge City', 'country_code' => 'US'], ['name' => 'Echallens', 'country_code' => 'CH'], ['name' => 'Ambridge', 'country_code' => 'US'], ['name' => 'Amite City', 'country_code' => 'US'], ['name' => 'Saint-Flour', 'country_code' => 'FR'], ['name' => 'Catasauqua', 'country_code' => 'US'], ['name' => 'Ivanychi', 'country_code' => 'UA'], ['name' => 'Passo do Sobrado', 'country_code' => 'BR'], ['name' => 'Lydd', 'country_code' => 'GB'], ['name' => 'Kirchheim am Neckar', 'country_code' => 'DE'], ['name' => 'Afonso Cunha', 'country_code' => 'BR'], ['name' => 'Rodewisch', 'country_code' => 'DE'], ['name' => 'Cocoa West', 'country_code' => 'US'], ['name' => 'Pryazovske', 'country_code' => 'UA'], ['name' => 'Tetecala', 'country_code' => 'MX'], ['name' => 'Lat Yao', 'country_code' => 'TH'], ['name' => 'Tuddern', 'country_code' => 'DE'], ['name' => 'Strongoli', 'country_code' => 'IT'], ['name' => 'Mainleus', 'country_code' => 'DE'], ['name' => 'Alessano', 'country_code' => 'IT'], ['name' => 'Strensall', 'country_code' => 'GB'], ['name' => 'Dingwall', 'country_code' => 'GB'], ['name' => 'Tsuman', 'country_code' => 'UA'], ['name' => 'Slatyne', 'country_code' => 'UA'], ['name' => 'Nikhom Kham Soi', 'country_code' => 'TH'], ['name' => 'Nishiharadai', 'country_code' => 'JP'], ['name' => 'Gyorujbarat', 'country_code' => 'HU'], ['name' => 'Forestbrook', 'country_code' => 'US'], ['name' => 'Thannhausen', 'country_code' => 'DE'], ['name' => 'Gallicano nel Lazio', 'country_code' => 'IT'], ['name' => 'Cipotanea', 'country_code' => 'BR'], ['name' => 'Siziano', 'country_code' => 'IT'], ['name' => 'Kerekegyhaza', 'country_code' => 'HU'], ['name' => 'Eliot', 'country_code' => 'US'], ['name' => 'Treforest', 'country_code' => 'GB'], ['name' => 'Templeuve', 'country_code' => 'FR'], ['name' => 'Morro Reuter', 'country_code' => 'BR'], ['name' => 'Bad Blankenburg', 'country_code' => 'DE'], ['name' => 'Capranica', 'country_code' => 'IT'], ['name' => 'Bethel', 'country_code' => 'US'], ['name' => 'Nova Alianca', 'country_code' => 'BR'], ['name' => 'Tuiuti', 'country_code' => 'BR'], ['name' => 'Lavelanet', 'country_code' => 'FR'], ['name' => 'Aratiba', 'country_code' => 'BR'], ['name' => 'Buc', 'country_code' => 'FR'], ['name' => 'Meolo', 'country_code' => 'IT'], ['name' => 'Northgate', 'country_code' => 'US'], ['name' => 'Sretensk', 'country_code' => 'RU'], ['name' => 'Gonnosfanadiga', 'country_code' => 'IT'], ['name' => 'Makaryev', 'country_code' => 'RU'], ['name' => 'Svetla nad Sazavou', 'country_code' => 'CZ'], ['name' => 'Turcianske Teplice', 'country_code' => 'SK'], ['name' => 'Havelberg', 'country_code' => 'DE'], ['name' => 'Ishqoshim', 'country_code' => 'TJ'], ['name' => 'Varshets', 'country_code' => 'BG'], ['name' => 'Isen', 'country_code' => 'JP'], ['name' => 'Calatafimi', 'country_code' => 'IT'], ['name' => 'Aguas Mornas', 'country_code' => 'BR'], ['name' => 'Livigno', 'country_code' => 'IT'], ['name' => 'Roseti', 'country_code' => 'RO'], ['name' => 'Devon', 'country_code' => 'CA'], ['name' => 'Lehliu-Gara', 'country_code' => 'RO'], ['name' => 'Arcole', 'country_code' => 'IT'], ['name' => 'Solbiate Olona', 'country_code' => 'IT'], ['name' => 'Oneonta', 'country_code' => 'US'], ['name' => 'Mamonas', 'country_code' => 'BR'], ['name' => 'Phu Khiao', 'country_code' => 'TH'], ['name' => 'Bua Chet', 'country_code' => 'TH'], ['name' => 'Condom', 'country_code' => 'FR'], ['name' => 'Lezo', 'country_code' => 'ES'], ['name' => 'Khok Samrong', 'country_code' => 'TH'], ['name' => 'Ribeira de Pena', 'country_code' => 'PT'], ['name' => 'Agapovka', 'country_code' => 'RU'], ['name' => 'Mont Belvieu', 'country_code' => 'US'], ['name' => 'Bilokurakyne', 'country_code' => 'UA'], ['name' => 'Teglas', 'country_code' => 'HU'], ['name' => 'Challes-les-Eaux', 'country_code' => 'FR'], ['name' => 'Guarda Mor', 'country_code' => 'BR'], ['name' => 'Grossalmerode', 'country_code' => 'DE'], ['name' => 'Porter', 'country_code' => 'US'], ['name' => 'Sao Jose do Jacuri', 'country_code' => 'BR'], ['name' => 'Cold Spring', 'country_code' => 'US'], ['name' => 'Makarov', 'country_code' => 'RU'], ['name' => 'San Giorgio in Bosco', 'country_code' => 'IT'], ['name' => 'Velez Rubio', 'country_code' => 'ES'], ['name' => 'Scriba', 'country_code' => 'US'], ['name' => 'Harvard', 'country_code' => 'US'], ['name' => 'Fossacesia', 'country_code' => 'IT'], ['name' => 'Keene', 'country_code' => 'US'], ['name' => 'Walnut Ridge', 'country_code' => 'US'], ['name' => 'Topsfield', 'country_code' => 'US'], ['name' => 'Krimpen aan de Lek', 'country_code' => 'NL'], ['name' => 'Thompson s Station', 'country_code' => 'US'], ['name' => 'Condor', 'country_code' => 'BR'], ['name' => 'Schoffengrund', 'country_code' => 'DE'], ['name' => 'Stickney', 'country_code' => 'US'], ['name' => 'Aszod', 'country_code' => 'HU'], ['name' => 'Ohio', 'country_code' => 'US'], ['name' => 'Haparanda', 'country_code' => 'SE'], ['name' => 'Burwell', 'country_code' => 'GB'], ['name' => 'Spassk-Ryazanskiy', 'country_code' => 'RU'], ['name' => 'Wentworth Falls', 'country_code' => 'AU'], ['name' => 'Ploudalmezeau', 'country_code' => 'FR'], ['name' => 'Quinzano d Oglio', 'country_code' => 'IT'], ['name' => 'Sertao de Santana', 'country_code' => 'BR'], ['name' => 'Green Hill', 'country_code' => 'US'], ['name' => 'Raon-l Etape', 'country_code' => 'FR'], ['name' => 'Seeboden', 'country_code' => 'AT'], ['name' => 'Rossford', 'country_code' => 'US'], ['name' => 'Blackwell', 'country_code' => 'US'], ['name' => 'Aguas de Chapeco', 'country_code' => 'BR'], ['name' => 'Serzhen -Yurt', 'country_code' => 'RU'], ['name' => 'Outjo', 'country_code' => 'NA'], ['name' => 'Candido Godoi', 'country_code' => 'BR'], ['name' => 'Bad Marienberg', 'country_code' => 'DE'], ['name' => 'Wathlingen', 'country_code' => 'DE'], ['name' => 'Insuratei', 'country_code' => 'RO'], ['name' => 'Nemsova', 'country_code' => 'SK'], ['name' => 'Hiroo', 'country_code' => 'JP'], ['name' => 'Andijk', 'country_code' => 'NL'], ['name' => 'Scone', 'country_code' => 'AU'], ['name' => 'Blonay', 'country_code' => 'CH'], ['name' => 'Ottersweier', 'country_code' => 'DE'], ['name' => 'Fairfield', 'country_code' => 'US'], ['name' => 'Lawrence', 'country_code' => 'US'], ['name' => 'Codevigo', 'country_code' => 'IT'], ['name' => 'Barrow upon Soar', 'country_code' => 'GB'], ['name' => 'Juva', 'country_code' => 'FI'], ['name' => 'Ras Ijerri', 'country_code' => 'MA'], ['name' => 'Roslyn Heights', 'country_code' => 'US'], ['name' => 'Allegheny', 'country_code' => 'US'], ['name' => 'Albanella', 'country_code' => 'IT'], ['name' => 'Gignac', 'country_code' => 'FR'], ['name' => 'South Hill', 'country_code' => 'US'], ['name' => 'Spinazzola', 'country_code' => 'IT'], ['name' => 'Vestnes', 'country_code' => 'NO'], ['name' => 'Gata de Gorgos', 'country_code' => 'ES'], ['name' => 'Earlswood', 'country_code' => 'GB'], ['name' => 'Quirihue', 'country_code' => 'CL'], ['name' => 'Waki', 'country_code' => 'JP'], ['name' => 'Waikoloa Village', 'country_code' => 'US'], ['name' => 'Veseli nad Luznici', 'country_code' => 'CZ'], ['name' => 'Sehma', 'country_code' => 'DE'], ['name' => 'Keyes', 'country_code' => 'US'], ['name' => 'Cumming', 'country_code' => 'US'], ['name' => 'Cregy-les-Meaux', 'country_code' => 'FR'], ['name' => 'Zaratan', 'country_code' => 'ES'], ['name' => 'Dettingen unter Teck', 'country_code' => 'DE'], ['name' => 'Katikati', 'country_code' => 'NZ'], ['name' => 'Portage', 'country_code' => 'US'], ['name' => 'Linz am Rhein', 'country_code' => 'DE'], ['name' => 'South Elmsall', 'country_code' => 'GB'], ['name' => 'Fox Point', 'country_code' => 'US'], ['name' => 'Castelgomberto', 'country_code' => 'IT'], ['name' => 'Porto do Mangue', 'country_code' => 'BR'], ['name' => 'Rosolina', 'country_code' => 'IT'], ['name' => 'Bruguieres', 'country_code' => 'FR'], ['name' => 'Beaudesert', 'country_code' => 'AU'], ['name' => 'Slippery Rock', 'country_code' => 'US'], ['name' => 'Clairton', 'country_code' => 'US'], ['name' => 'Oakmont', 'country_code' => 'US'], ['name' => 'Sao Francisco de Oliveira', 'country_code' => 'BR'], ['name' => 'Fairview', 'country_code' => 'US'], ['name' => 'Melhus', 'country_code' => 'NO'], ['name' => 'Plaquemine', 'country_code' => 'US'], ['name' => 'Agria', 'country_code' => 'GR'], ['name' => 'Elkin', 'country_code' => 'US'], ['name' => 'Nova Palma', 'country_code' => 'BR'], ['name' => 'Beyram', 'country_code' => 'IR'], ['name' => 'Bischofszell', 'country_code' => 'CH'], ['name' => 'Plattsmouth', 'country_code' => 'US'], ['name' => 'De Queen', 'country_code' => 'US'], ['name' => 'Swanton', 'country_code' => 'US'], ['name' => 'Hapeville', 'country_code' => 'US'], ['name' => 'Laurence Harbor', 'country_code' => 'US'], ['name' => 'Montech', 'country_code' => 'FR'], ['name' => 'Plaidt', 'country_code' => 'DE'], ['name' => 'L Isle-d Espagnac', 'country_code' => 'FR'], ['name' => 'Marisopolis', 'country_code' => 'BR'], ['name' => 'Zellingen', 'country_code' => 'DE'], ['name' => 'Beaurains', 'country_code' => 'FR'], ['name' => 'Pa Daet', 'country_code' => 'TH'], ['name' => 'Bursledon', 'country_code' => 'GB'], ['name' => 'Lurago d Erba', 'country_code' => 'IT'], ['name' => 'Pedda Nandipadu', 'country_code' => 'IN'], ['name' => 'Olula del Rio', 'country_code' => 'ES'], ['name' => 'Eibiswald', 'country_code' => 'AT'], ['name' => 'Sao Jose da Boa Vista', 'country_code' => 'BR'], ['name' => 'Moudon', 'country_code' => 'CH'], ['name' => 'Villaverla', 'country_code' => 'IT'], ['name' => 'Atlantic', 'country_code' => 'US'], ['name' => 'Blaby', 'country_code' => 'GB'], ['name' => 'Ramillies-Offus', 'country_code' => 'BE'], ['name' => 'Jowzdan', 'country_code' => 'IR'], ['name' => 'Parentis-en-Born', 'country_code' => 'FR'], ['name' => 'Sesto al Reghena', 'country_code' => 'IT'], ['name' => 'Cagayancillo', 'country_code' => 'PH'], ['name' => 'Granby', 'country_code' => 'US'], ['name' => 'Friedland', 'country_code' => 'DE'], ['name' => 'Horneburg', 'country_code' => 'DE'], ['name' => 'Sant Arcangelo', 'country_code' => 'IT'], ['name' => 'Dinkelscherben', 'country_code' => 'DE'], ['name' => 'Brolo', 'country_code' => 'IT'], ['name' => 'Torrellas de Llobregat', 'country_code' => 'ES'], ['name' => 'Orindiuva', 'country_code' => 'BR'], ['name' => 'Boudry', 'country_code' => 'CH'], ['name' => 'Morro do Chapeu', 'country_code' => 'BR'], ['name' => 'Yarmouth', 'country_code' => 'CA'], ['name' => 'Mature', 'country_code' => 'BR'], ['name' => 'Dan Khun Thot', 'country_code' => 'TH'], ['name' => 'Altlussheim', 'country_code' => 'DE'], ['name' => 'Russells Point', 'country_code' => 'US'], ['name' => 'Martins Ferry', 'country_code' => 'US'], ['name' => 'Bom Jardim de Minas', 'country_code' => 'BR'], ['name' => 'Vargem Alegre', 'country_code' => 'BR'], ['name' => 'Port Mathurin', 'country_code' => 'MU'], ['name' => 'Calstock', 'country_code' => 'GB'], ['name' => 'Dromana', 'country_code' => 'AU'], ['name' => 'Douar Tassila Imassouane', 'country_code' => 'MA'], ['name' => 'Milford', 'country_code' => 'US'], ['name' => 'Dobrotvir', 'country_code' => 'UA'], ['name' => 'Bispingen', 'country_code' => 'DE'], ['name' => 'Weaverham', 'country_code' => 'GB'], ['name' => 'Kingston', 'country_code' => 'US'], ['name' => 'Bagrationovsk', 'country_code' => 'RU'], ['name' => 'Schallstadt', 'country_code' => 'DE'], ['name' => 'Bacsalmas', 'country_code' => 'HU'], ['name' => 'Air Force Academy', 'country_code' => 'US'], ['name' => 'De Soto', 'country_code' => 'US'], ['name' => 'Blankenhain', 'country_code' => 'DE'], ['name' => 'Novo Oriente', 'country_code' => 'BR'], ['name' => 'Avon', 'country_code' => 'US'], ['name' => 'Luis Domingues', 'country_code' => 'BR'], ['name' => 'Silacayoapam', 'country_code' => 'MX'], ['name' => 'Offanengo', 'country_code' => 'IT'], ['name' => 'Barzano', 'country_code' => 'IT'], ['name' => 'Casorate Sempione', 'country_code' => 'IT'], ['name' => 'Castries', 'country_code' => 'FR'], ['name' => 'New Inn', 'country_code' => 'GB'], ['name' => 'Nilsia', 'country_code' => 'FI'], ['name' => 'Salem', 'country_code' => 'US'], ['name' => 'Leves', 'country_code' => 'FR'], ['name' => 'Chrastava', 'country_code' => 'CZ'], ['name' => 'Metelen', 'country_code' => 'DE'], ['name' => 'Heathcote', 'country_code' => 'US'], ['name' => 'Jaunay-Clan', 'country_code' => 'FR'], ['name' => 'Balsthal', 'country_code' => 'CH'], ['name' => 'Rittman', 'country_code' => 'US'], ['name' => 'Bangor Base', 'country_code' => 'US'], ['name' => 'Saint-Cyr-au-Mont-d Or', 'country_code' => 'FR'], ['name' => 'Brignano Gera d Adda', 'country_code' => 'IT'], ['name' => 'Lassance', 'country_code' => 'BR'], ['name' => 'Anadarko', 'country_code' => 'US'], ['name' => 'Slavicin', 'country_code' => 'CZ'], ['name' => 'Barnstorf', 'country_code' => 'DE'], ['name' => 'Bahman', 'country_code' => 'IR'], ['name' => 'Dourges', 'country_code' => 'FR'], ['name' => 'Botumirim', 'country_code' => 'BR'], ['name' => 'Weiskirchen', 'country_code' => 'DE'], ['name' => 'Laudun-l Ardoise', 'country_code' => 'FR'], ['name' => 'Zell im Wiesental', 'country_code' => 'DE'], ['name' => 'Schriever', 'country_code' => 'US'], ['name' => 'Sommariva del Bosco', 'country_code' => 'IT'], ['name' => 'Harrah', 'country_code' => 'US'], ['name' => 'Monticello', 'country_code' => 'US'], ['name' => 'Obergunzburg', 'country_code' => 'DE'], ['name' => 'Podborany', 'country_code' => 'CZ'], ['name' => 'Williamston', 'country_code' => 'US'], ['name' => 'Homeacre-Lyndora', 'country_code' => 'US'], ['name' => 'Oishida', 'country_code' => 'JP'], ['name' => 'Brannenburg', 'country_code' => 'DE'], ['name' => 'Doutor Severiano', 'country_code' => 'BR'], ['name' => 'Bakum', 'country_code' => 'DE'], ['name' => 'Nossa Senhora de Lourdes', 'country_code' => 'BR'], ['name' => 'Pratt', 'country_code' => 'US'], ['name' => 'Basehor', 'country_code' => 'US'], ['name' => 'Dudenhofen', 'country_code' => 'DE'], ['name' => 'Geneseo', 'country_code' => 'US'], ['name' => 'Benfeld', 'country_code' => 'FR'], ['name' => 'Millingen aan de Rijn', 'country_code' => 'NL'], ['name' => 'Severance', 'country_code' => 'US'], ['name' => 'Ocean Shores', 'country_code' => 'US'], ['name' => 'San Michele Salentino', 'country_code' => 'IT'], ['name' => 'Kondor', 'country_code' => 'IR'], ['name' => 'Sciez', 'country_code' => 'FR'], ['name' => 'La Habra Heights', 'country_code' => 'US'], ['name' => 'Gangkofen', 'country_code' => 'DE'], ['name' => 'San Ramon', 'country_code' => 'BO'], ['name' => 'Caneva', 'country_code' => 'IT'], ['name' => 'East Rochester', 'country_code' => 'US'], ['name' => 'Cournonterral', 'country_code' => 'FR'], ['name' => 'Dragalina', 'country_code' => 'RO'], ['name' => 'Rio Sono', 'country_code' => 'BR'], ['name' => 'Mulvane', 'country_code' => 'US'], ['name' => 'Beerfelden', 'country_code' => 'DE'], ['name' => 'Tiradentes', 'country_code' => 'BR'], ['name' => 'Looe', 'country_code' => 'GB'], ['name' => 'Bungay', 'country_code' => 'GB'], ['name' => 'Camilla', 'country_code' => 'US'], ['name' => 'Lynchburg', 'country_code' => 'US'], ['name' => 'Hillandale', 'country_code' => 'US'], ['name' => 'Yar-Sale', 'country_code' => 'RU'], ['name' => 'Zarnovica', 'country_code' => 'SK'], ['name' => 'Schwarzenfeld', 'country_code' => 'DE'], ['name' => 'Grayvoron', 'country_code' => 'RU'], ['name' => 'Taksony', 'country_code' => 'HU'], ['name' => 'Weiler-Simmerberg', 'country_code' => 'DE'], ['name' => 'Medolla', 'country_code' => 'IT'], ['name' => 'Iacri', 'country_code' => 'BR'], ['name' => 'Stratmoor', 'country_code' => 'US'], ['name' => 'Saint-Jean-de-Boiseau', 'country_code' => 'FR'], ['name' => 'Jonage', 'country_code' => 'FR'], ['name' => 'Granville', 'country_code' => 'US'], ['name' => 'Mestigmer', 'country_code' => 'MA'], ['name' => 'Bon-Encontre', 'country_code' => 'FR'], ['name' => 'Sernaglia della Battaglia', 'country_code' => 'IT'], ['name' => 'Sao Martinho', 'country_code' => 'PT'], ['name' => 'Pimonte', 'country_code' => 'IT'], ['name' => 'Brejo dos Santos', 'country_code' => 'BR'], ['name' => 'Ares', 'country_code' => 'FR'], ['name' => 'Abercarn', 'country_code' => 'GB'], ['name' => 'Asiago', 'country_code' => 'IT'], ['name' => 'Juti', 'country_code' => 'BR'], ['name' => 'Drabiv', 'country_code' => 'UA'], ['name' => 'Pont-Saint-Martin', 'country_code' => 'FR'], ['name' => 'Buena Vista', 'country_code' => 'US'], ['name' => 'Lagoao', 'country_code' => 'BR'], ['name' => 'Sardarapat', 'country_code' => 'AM'], ['name' => 'Ida Ou Gailal', 'country_code' => 'MA'], ['name' => 'Duanesburg', 'country_code' => 'US'], ['name' => 'Prairie du Chien', 'country_code' => 'US'], ['name' => 'Winterlingen', 'country_code' => 'DE'], ['name' => 'Wiset Chaichan', 'country_code' => 'TH'], ['name' => 'Drayton', 'country_code' => 'GB'], ['name' => 'Silver Lake', 'country_code' => 'US'], ['name' => 'Shalya', 'country_code' => 'RU'], ['name' => 'Maiolati Spontini', 'country_code' => 'IT'], ['name' => 'Laage', 'country_code' => 'DE'], ['name' => 'Miraflores de la Sierra', 'country_code' => 'ES'], ['name' => 'Laranjal', 'country_code' => 'BR'], ['name' => 'Sarria de Ter', 'country_code' => 'ES'], ['name' => 'Monzuno', 'country_code' => 'IT'], ['name' => 'Irvington', 'country_code' => 'US'], ['name' => 'Prestonsburg', 'country_code' => 'US'], ['name' => 'Uetendorf', 'country_code' => 'CH'], ['name' => 'Gomez Farias', 'country_code' => 'MX'], ['name' => 'Hamilton', 'country_code' => 'US'], ['name' => 'Rosenfeld', 'country_code' => 'DE'], ['name' => 'Nagyecsed', 'country_code' => 'HU'], ['name' => 'Selviria', 'country_code' => 'BR'], ['name' => 'Zusmarshausen', 'country_code' => 'DE'], ['name' => 'Neumarkt am Wallersee', 'country_code' => 'AT'], ['name' => 'Lentilly', 'country_code' => 'FR'], ['name' => 'Sidley', 'country_code' => 'GB'], ['name' => 'Fockbek', 'country_code' => 'DE'], ['name' => 'Marsillargues', 'country_code' => 'FR'], ['name' => 'Moraine', 'country_code' => 'US'], ['name' => 'Castle Donnington', 'country_code' => 'GB'], ['name' => 'Penn Yan', 'country_code' => 'US'], ['name' => 'Scenic Oaks', 'country_code' => 'US'], ['name' => 'Lanchkhuti', 'country_code' => 'GE'], ['name' => 'Ras Tabouda', 'country_code' => 'MA'], ['name' => 'Gorliz-Elexalde', 'country_code' => 'ES'], ['name' => 'Columbia', 'country_code' => 'US'], ['name' => 'Moya', 'country_code' => 'ES'], ['name' => 'Villanuova sul clisi', 'country_code' => 'IT'], ['name' => 'Mendes Pimentel', 'country_code' => 'BR'], ['name' => 'Seloncourt', 'country_code' => 'FR'], ['name' => 'Genoa', 'country_code' => 'US'], ['name' => 'Otis Orchards-East Farms', 'country_code' => 'US'], ['name' => 'Sidney', 'country_code' => 'US'], ['name' => 'Fagagna', 'country_code' => 'IT'], ['name' => 'Herrera', 'country_code' => 'ES'], ['name' => 'Boischatel', 'country_code' => 'CA'], ['name' => 'Loutolim', 'country_code' => 'IN'], ['name' => 'Dalaba', 'country_code' => 'GN'], ['name' => 'Baykalovo', 'country_code' => 'RU'], ['name' => 'Bauvin', 'country_code' => 'FR'], ['name' => 'South Grafton', 'country_code' => 'AU'], ['name' => 'Kolleda', 'country_code' => 'DE'], ['name' => 'Loches', 'country_code' => 'FR'], ['name' => 'Berdigestyakh', 'country_code' => 'RU'], ['name' => 'Darnestown', 'country_code' => 'US'], ['name' => 'Urnieta', 'country_code' => 'ES'], ['name' => 'Collins', 'country_code' => 'US'], ['name' => 'Hebron', 'country_code' => 'US'], ['name' => 'Essingen', 'country_code' => 'DE'], ['name' => 'Glendive', 'country_code' => 'US'], ['name' => 'Cuddington', 'country_code' => 'GB'], ['name' => 'Epernon', 'country_code' => 'FR'], ['name' => 'Yorketown', 'country_code' => 'US'], ['name' => 'Guichon', 'country_code' => 'UY'], ['name' => 'Bizhbulyak', 'country_code' => 'RU'], ['name' => 'Oficina Maria Elena', 'country_code' => 'CL'], ['name' => 'Barra do Rocha', 'country_code' => 'BR'], ['name' => 'Wem', 'country_code' => 'GB'], ['name' => 'Santo Antonio de Lisboa', 'country_code' => 'BR'], ['name' => 'Umkirch', 'country_code' => 'DE'], ['name' => 'Liss', 'country_code' => 'GB'], ['name' => 'Ingeniero Guillermo N. Juarez', 'country_code' => 'AR'], ['name' => 'Nufringen', 'country_code' => 'DE'], ['name' => 'Uzzano', 'country_code' => 'IT'], ['name' => 'Lake Murray of Richland', 'country_code' => 'US'], ['name' => 'Encs', 'country_code' => 'HU'], ['name' => 'Subbiano', 'country_code' => 'IT'], ['name' => 'Pont-Sainte-Marie', 'country_code' => 'FR'], ['name' => 'Pereiro de Aguiar', 'country_code' => 'ES'], ['name' => 'Commentry', 'country_code' => 'FR'], ['name' => 'Belgioioso', 'country_code' => 'IT'], ['name' => 'Lubz', 'country_code' => 'DE'], ['name' => 'Klingenberg am Main', 'country_code' => 'DE'], ['name' => 'Marolles-en-Hurepoix', 'country_code' => 'FR'], ['name' => 'Beni Sidal Louta', 'country_code' => 'MA'], ['name' => 'Tiyghmi', 'country_code' => 'MA'], ['name' => 'Porto Cesareo', 'country_code' => 'IT'], ['name' => 'Girvan', 'country_code' => 'GB'], ['name' => 'Saidat', 'country_code' => 'MA'], ['name' => 'Swanscombe', 'country_code' => 'GB'], ['name' => 'Ironwood', 'country_code' => 'US'], ['name' => 'Macambira', 'country_code' => 'BR'], ['name' => 'Burghaun', 'country_code' => 'DE'], ['name' => 'Halych', 'country_code' => 'UA'], ['name' => 'Breal-sous-Montfort', 'country_code' => 'FR'], ['name' => 'Tancherfi', 'country_code' => 'MA'], ['name' => 'Collepasso', 'country_code' => 'IT'], ['name' => 'Trochtelfingen', 'country_code' => 'DE'], ['name' => 'Sealy', 'country_code' => 'US'], ['name' => 'Iscar', 'country_code' => 'ES'], ['name' => 'Falkenberg', 'country_code' => 'DE'], ['name' => 'Aparan', 'country_code' => 'AM'], ['name' => 'Deta', 'country_code' => 'RO'], ['name' => 'Strambino', 'country_code' => 'IT'], ['name' => 'Saint-Just-en-Chaussee', 'country_code' => 'FR'], ['name' => 'San Marcello Pistoiese', 'country_code' => 'IT'], ['name' => 'Beelen', 'country_code' => 'DE'], ['name' => 'La Grand-Croix', 'country_code' => 'FR'], ['name' => 'Torreglia', 'country_code' => 'IT'], ['name' => 'Dmitriyev-L govskiy', 'country_code' => 'RU'], ['name' => 'Emporia', 'country_code' => 'US'], ['name' => 'Bekkevoort', 'country_code' => 'BE'], ['name' => 'Corrego Fundo', 'country_code' => 'BR'], ['name' => 'Carrollton', 'country_code' => 'US'], ['name' => 'Wervicq-Sud', 'country_code' => 'FR'], ['name' => 'Quintana', 'country_code' => 'BR'], ['name' => 'Mundo Novo', 'country_code' => 'BR'], ['name' => 'Ligonier', 'country_code' => 'US'], ['name' => 'Inverness Highlands South', 'country_code' => 'US'], ['name' => 'East Falmouth', 'country_code' => 'US'], ['name' => 'Beilstein', 'country_code' => 'DE'], ['name' => 'Upper Sandusky', 'country_code' => 'US'], ['name' => 'Mer', 'country_code' => 'FR'], ['name' => 'Gammertingen', 'country_code' => 'DE'], ['name' => 'Burkhardtsdorf', 'country_code' => 'DE'], ['name' => 'Vine Grove', 'country_code' => 'US'], ['name' => 'Portel', 'country_code' => 'PT'], ['name' => 'Wrestedt', 'country_code' => 'DE'], ['name' => 'Padre Carvalho', 'country_code' => 'BR'], ['name' => 'Kununurra', 'country_code' => 'AU'], ['name' => 'Meersburg', 'country_code' => 'DE'], ['name' => 'Martfu', 'country_code' => 'HU'], ['name' => 'Litchfield Park', 'country_code' => 'US'], ['name' => 'Devine', 'country_code' => 'US'], ['name' => 'Dunningen', 'country_code' => 'DE'], ['name' => 'Si Prachan', 'country_code' => 'TH'], ['name' => 'Malesherbes', 'country_code' => 'FR'], ['name' => 'Orange Lake', 'country_code' => 'US'], ['name' => 'Mornant', 'country_code' => 'FR'], ['name' => 'Rumelange', 'country_code' => 'LU'], ['name' => 'Cambiano', 'country_code' => 'IT'], ['name' => 'Gersheim', 'country_code' => 'DE'], ['name' => 'Oelwein', 'country_code' => 'US'], ['name' => 'Santo Domingo de la Calzada', 'country_code' => 'ES'], ['name' => 'Zouar', 'country_code' => 'TD'], ['name' => 'Abbadia San Salvatore', 'country_code' => 'IT'], ['name' => 'Santa Margherita di Belice', 'country_code' => 'IT'], ['name' => 'Wheathampstead', 'country_code' => 'GB'], ['name' => 'Rosal', 'country_code' => 'ES'], ['name' => 'Ixtapan del Oro', 'country_code' => 'MX'], ['name' => 'Carthage', 'country_code' => 'US'], ['name' => 'Crystal Lake', 'country_code' => 'US'], ['name' => 'Grossbreitenbach', 'country_code' => 'DE'], ['name' => 'Hurricane', 'country_code' => 'US'], ['name' => 'Cottenham', 'country_code' => 'GB'], ['name' => 'Machecoul', 'country_code' => 'FR'], ['name' => 'Corinth', 'country_code' => 'US'], ['name' => 'North Riverside', 'country_code' => 'US'], ['name' => 'Le Blanc', 'country_code' => 'FR'], ['name' => 'San Miguel de Salinas', 'country_code' => 'ES'], ['name' => 'Cheverly', 'country_code' => 'US'], ['name' => 'Savage', 'country_code' => 'US'], ['name' => 'Sils', 'country_code' => 'ES'], ['name' => 'Yermolayevo', 'country_code' => 'RU'], ['name' => 'Aussillon', 'country_code' => 'FR'], ['name' => 'Hjo', 'country_code' => 'SE'], ['name' => 'Sengiley', 'country_code' => 'RU'], ['name' => 'Huttlingen', 'country_code' => 'DE'], ['name' => 'Bridgeport', 'country_code' => 'US'], ['name' => 'Sao Francisco do Piaui', 'country_code' => 'BR'], ['name' => 'Kostelec nad Orlici', 'country_code' => 'CZ'], ['name' => 'Mesoraca', 'country_code' => 'IT'], ['name' => 'Valley City', 'country_code' => 'US'], ['name' => 'Cairo', 'country_code' => 'US'], ['name' => 'Francisco Alves', 'country_code' => 'BR'], ['name' => 'Salem', 'country_code' => 'US'], ['name' => 'Douglas', 'country_code' => 'US'], ['name' => 'Tafraout', 'country_code' => 'MA'], ['name' => 'Cacaulandia', 'country_code' => 'BR'], ['name' => 'Greenville', 'country_code' => 'US'], ['name' => 'Pegau', 'country_code' => 'DE'], ['name' => 'Kittila', 'country_code' => 'FI'], ['name' => 'Santes', 'country_code' => 'FR'], ['name' => 'Gogolin', 'country_code' => 'PL'], ['name' => 'Melut', 'country_code' => 'SS'], ['name' => 'Orlovista', 'country_code' => 'US'], ['name' => 'Eudora', 'country_code' => 'US'], ['name' => 'Walkersville', 'country_code' => 'US'], ['name' => 'Bischberg', 'country_code' => 'DE'], ['name' => 'Usurbil', 'country_code' => 'ES'], ['name' => 'Garrett', 'country_code' => 'US'], ['name' => 'Zimmern ob Rottweil', 'country_code' => 'DE'], ['name' => 'Bowleys Quarters', 'country_code' => 'US'], ['name' => 'Naco', 'country_code' => 'MX'], ['name' => 'Recoaro Terme', 'country_code' => 'IT'], ['name' => 'Higashikyoshin', 'country_code' => 'JP'], ['name' => 'San Canzian d lsonzo', 'country_code' => 'IT'], ['name' => 'Horgos', 'country_code' => 'RS'], ['name' => 'Prathai', 'country_code' => 'TH'], ['name' => 'Littlestown', 'country_code' => 'US'], ['name' => 'Lee', 'country_code' => 'US'], ['name' => 'Rio Saliceto', 'country_code' => 'IT'], ['name' => 'Parry Sound', 'country_code' => 'CA'], ['name' => 'Anchieta', 'country_code' => 'BR'], ['name' => 'Embrun', 'country_code' => 'FR'], ['name' => 'Kappelrodeck', 'country_code' => 'DE'], ['name' => 'Capim', 'country_code' => 'BR'], ['name' => 'Sickte', 'country_code' => 'DE'], ['name' => 'Szentlorinc', 'country_code' => 'HU'], ['name' => 'Sardoa', 'country_code' => 'BR'], ['name' => 'Burnet', 'country_code' => 'US'], ['name' => 'Comandante Luis Piedra Buena', 'country_code' => 'AR'], ['name' => 'Kerns', 'country_code' => 'CH'], ['name' => 'Lincroft', 'country_code' => 'US'], ['name' => 'Monte San Biagio', 'country_code' => 'IT'], ['name' => 'Mszczonow', 'country_code' => 'PL'], ['name' => 'Lezoux', 'country_code' => 'FR'], ['name' => 'Toma', 'country_code' => 'JP'], ['name' => 'Jordan', 'country_code' => 'US'], ['name' => 'Talmaza', 'country_code' => 'MD'], ['name' => 'Alpirsbach', 'country_code' => 'DE'], ['name' => 'Sabrosa', 'country_code' => 'PT'], ['name' => 'Gojar', 'country_code' => 'ES'], ['name' => 'Hampstead', 'country_code' => 'US'], ['name' => 'Ceggia', 'country_code' => 'IT'], ['name' => 'Aurec-sur-Loire', 'country_code' => 'FR'], ['name' => 'Tasco', 'country_code' => 'CO'], ['name' => 'Carolina Beach', 'country_code' => 'US'], ['name' => 'Mount Vernon', 'country_code' => 'US'], ['name' => 'Ridgeway', 'country_code' => 'US'], ['name' => 'Lionville', 'country_code' => 'US'], ['name' => 'Tabuaco', 'country_code' => 'PT'], ['name' => 'Oberboihingen', 'country_code' => 'DE'], ['name' => 'Shamong', 'country_code' => 'US'], ['name' => 'Pointe-Calumet', 'country_code' => 'CA'], ['name' => 'Jussari', 'country_code' => 'BR'], ['name' => 'Carrazeda de Anciaes', 'country_code' => 'PT'], ['name' => 'La Glacerie', 'country_code' => 'FR'], ['name' => 'Blaenavon', 'country_code' => 'GB'], ['name' => 'Papudo', 'country_code' => 'CL'], ['name' => 'Grybow', 'country_code' => 'PL'], ['name' => 'Ramtown', 'country_code' => 'US'], ['name' => 'Bethoncourt', 'country_code' => 'FR'], ['name' => 'Terrasson-Lavilledieu', 'country_code' => 'FR'], ['name' => 'Sao Juliao', 'country_code' => 'BR'], ['name' => 'Grafenwohr', 'country_code' => 'DE'], ['name' => 'San Giovanni al Natisone', 'country_code' => 'IT'], ['name' => 'Santa Maria Yucuhiti', 'country_code' => 'MX'], ['name' => 'Killingworth', 'country_code' => 'US'], ['name' => 'Wittenburg', 'country_code' => 'DE'], ['name' => 'Waldsee', 'country_code' => 'DE'], ['name' => 'Cana', 'country_code' => 'SK'], ['name' => 'Meredith', 'country_code' => 'US'], ['name' => 'Rockford', 'country_code' => 'US'], ['name' => 'Fenain', 'country_code' => 'FR'], ['name' => 'Le Barcares', 'country_code' => 'FR'], ['name' => 'Douar Oulad Jaber', 'country_code' => 'MA'], ['name' => 'Steilacoom', 'country_code' => 'US'], ['name' => 'Opp', 'country_code' => 'US'], ['name' => 'Abilene', 'country_code' => 'US'], ['name' => 'Warkworth', 'country_code' => 'NZ'], ['name' => 'Nackenheim', 'country_code' => 'DE'], ['name' => 'Fossalta di Portogruaro', 'country_code' => 'IT'], ['name' => 'Sandown', 'country_code' => 'US'], ['name' => 'Valdoie', 'country_code' => 'FR'], ['name' => 'Wadomari', 'country_code' => 'JP'], ['name' => 'Jegenstorf', 'country_code' => 'CH'], ['name' => 'Rhome', 'country_code' => 'US'], ['name' => 'Aptos', 'country_code' => 'US'], ['name' => 'Lesina', 'country_code' => 'IT'], ['name' => 'Povoacao', 'country_code' => 'PT'], ['name' => 'Zell', 'country_code' => 'CH'], ['name' => 'Belpre', 'country_code' => 'US'], ['name' => 'Mudersbach', 'country_code' => 'DE'], ['name' => 'Crockett', 'country_code' => 'US'], ['name' => 'Zamberk', 'country_code' => 'CZ'], ['name' => 'Ellenville', 'country_code' => 'US'], ['name' => 'East End', 'country_code' => 'US'], ['name' => 'Oranzherei', 'country_code' => 'RU'], ['name' => 'Alexandra', 'country_code' => 'NZ'], ['name' => 'Yazykovo', 'country_code' => 'RU'], ['name' => 'Rushville', 'country_code' => 'US'], ['name' => 'Cavaion Veronese', 'country_code' => 'IT'], ['name' => 'Saint-Genis-les-Ollieres', 'country_code' => 'FR'], ['name' => 'International Falls', 'country_code' => 'US'], ['name' => 'Calcinate', 'country_code' => 'IT'], ['name' => 'Luba', 'country_code' => 'PH'], ['name' => 'Atengo', 'country_code' => 'MX'], ['name' => 'Permet', 'country_code' => 'AL'], ['name' => 'Piatra Olt', 'country_code' => 'RO'], ['name' => 'Saint-Arnoult-en-Yvelines', 'country_code' => 'FR'], ['name' => 'Naracoorte', 'country_code' => 'AU'], ['name' => 'Adrianopolis', 'country_code' => 'BR'], ['name' => 'Villennes-sur-Seine', 'country_code' => 'FR'], ['name' => 'Corowa', 'country_code' => 'AU'], ['name' => 'Rogersville', 'country_code' => 'US'], ['name' => 'Prosser', 'country_code' => 'US'], ['name' => 'Groot-Valkenisse', 'country_code' => 'NL'], ['name' => 'West Point', 'country_code' => 'US'], ['name' => 'Carroll', 'country_code' => 'US'], ['name' => 'Nephi', 'country_code' => 'US'], ['name' => 'Richboro', 'country_code' => 'US'], ['name' => 'Pulianas', 'country_code' => 'ES'], ['name' => 'Cullowhee', 'country_code' => 'US'], ['name' => 'Baud', 'country_code' => 'FR'], ['name' => 'Adelebsen', 'country_code' => 'DE'], ['name' => 'Arenas de San Pedro', 'country_code' => 'ES'], ['name' => 'Headley', 'country_code' => 'GB'], ['name' => 'Warmond', 'country_code' => 'NL'], ['name' => 'Arpajon-sur-Cere', 'country_code' => 'FR'], ['name' => 'Beaubassin East / Beaubassin-est', 'country_code' => 'CA'], ['name' => 'Woolgoolga', 'country_code' => 'AU'], ['name' => 'Chervonohryhorivka', 'country_code' => 'UA'], ['name' => 'Saint-Martin-le-Vinoux', 'country_code' => 'FR'], ['name' => 'Kizhinga', 'country_code' => 'RU'], ['name' => 'Mims', 'country_code' => 'US'], ['name' => 'Village of Oak Creek', 'country_code' => 'US'], ['name' => 'Pieksamaen Maalaiskunta', 'country_code' => 'FI'], ['name' => 'Newport', 'country_code' => 'US'], ['name' => 'Jasper', 'country_code' => 'US'], ['name' => 'Bela Vista do Toldo', 'country_code' => 'BR'], ['name' => 'Gebenstorf', 'country_code' => 'CH'], ['name' => 'Stavyshche', 'country_code' => 'UA'], ['name' => 'Santa Maria do Erval', 'country_code' => 'BR'], ['name' => 'Arandu', 'country_code' => 'BR'], ['name' => 'Nitro', 'country_code' => 'US'], ['name' => 'Nicotera', 'country_code' => 'IT'], ['name' => 'Saint-Andre-de-Sangonis', 'country_code' => 'FR'], ['name' => 'Rowley', 'country_code' => 'US'], ['name' => 'Wainfleet', 'country_code' => 'CA'], ['name' => 'Shimonita', 'country_code' => 'JP'], ['name' => 'Usolye', 'country_code' => 'RU'], ['name' => 'Okehampton', 'country_code' => 'GB'], ['name' => 'San Carlos', 'country_code' => 'BO'], ['name' => 'Rudiano', 'country_code' => 'IT'], ['name' => 'Kronau', 'country_code' => 'DE'], ['name' => 'Petropavlivs ka Borshchahivka', 'country_code' => 'UA'], ['name' => 'Wharton', 'country_code' => 'US'], ['name' => 'Serravalle Scrivia', 'country_code' => 'IT'], ['name' => 'Traismauer', 'country_code' => 'AT'], ['name' => 'Rupperswil', 'country_code' => 'CH'], ['name' => 'Johnsburg', 'country_code' => 'US'], ['name' => 'Fort Riley', 'country_code' => 'US'], ['name' => 'Marlborough', 'country_code' => 'US'], ['name' => 'Vinkivtsi', 'country_code' => 'UA'], ['name' => 'Pirajuba', 'country_code' => 'BR'], ['name' => 'Sunbury', 'country_code' => 'US'], ['name' => 'Laa an der Thaya', 'country_code' => 'AT'], ['name' => 'Turbiv', 'country_code' => 'UA'], ['name' => 'Bujor', 'country_code' => 'RO'], ['name' => 'Horsching', 'country_code' => 'AT'], ['name' => 'Wollochet', 'country_code' => 'US'], ['name' => 'Stockstadt am Rhein', 'country_code' => 'DE'], ['name' => 'Chirsova', 'country_code' => 'MD'], ['name' => 'Grandchamps-des-Fontaines', 'country_code' => 'FR'], ['name' => 'Feytiat', 'country_code' => 'FR'], ['name' => 'Goondiwindi', 'country_code' => 'AU'], ['name' => 'Villa Cura Brochero', 'country_code' => 'AR'], ['name' => 'Pulnoy', 'country_code' => 'FR'], ['name' => 'Cogorno', 'country_code' => 'IT'], ['name' => 'Keyser', 'country_code' => 'US'], ['name' => 'Dohna', 'country_code' => 'DE'], ['name' => 'Holmes Chapel', 'country_code' => 'GB'], ['name' => 'Ichu', 'country_code' => 'BR'], ['name' => 'Chizu', 'country_code' => 'JP'], ['name' => 'Itirapua', 'country_code' => 'BR'], ['name' => 'Beith', 'country_code' => 'GB'], ['name' => 'Velyki Mosty', 'country_code' => 'UA'], ['name' => 'Tanque d Arca', 'country_code' => 'BR'], ['name' => 'Dussen', 'country_code' => 'NL'], ['name' => 'Charbonnieres-les-Bains', 'country_code' => 'FR'], ['name' => 'Trevelin', 'country_code' => 'AR'], ['name' => 'Dadaab', 'country_code' => 'KE'], ['name' => 'Vanzaghello', 'country_code' => 'IT'], ['name' => 'Kathleen', 'country_code' => 'US'], ['name' => 'Ait Bou Madhi', 'country_code' => 'DZ'], ['name' => 'Combee Settlement', 'country_code' => 'US'], ['name' => 'Henderson', 'country_code' => 'US'], ['name' => 'Mahdalynivka', 'country_code' => 'UA'], ['name' => 'Cynthiana', 'country_code' => 'US'], ['name' => 'Tabor City', 'country_code' => 'US'], ['name' => 'North Fort Lewis', 'country_code' => 'US'], ['name' => 'Cramahe', 'country_code' => 'CA'], ['name' => 'Fenton', 'country_code' => 'US'], ['name' => 'Beauceville', 'country_code' => 'CA'], ['name' => 'Pinhalao', 'country_code' => 'BR'], ['name' => 'Ihringen', 'country_code' => 'DE'], ['name' => 'Buq ata', 'country_code' => 'IL'], ['name' => 'West Hattiesburg', 'country_code' => 'US'], ['name' => 'North Middlesex', 'country_code' => 'CA'], ['name' => 'Karmir Gyukh', 'country_code' => 'AM'], ['name' => 'Armamar', 'country_code' => 'PT'], ['name' => 'Hronov', 'country_code' => 'CZ'], ['name' => 'Allegan', 'country_code' => 'US'], ['name' => 'Dacula', 'country_code' => 'US'], ['name' => 'Saint-Quentin-Fallavier', 'country_code' => 'FR'], ['name' => 'Matarnia', 'country_code' => 'PL'], ['name' => 'Canejan', 'country_code' => 'FR'], ['name' => 'Schuyler', 'country_code' => 'US'], ['name' => 'Tipton', 'country_code' => 'US'], ['name' => 'Clarkston Heights-Vineland', 'country_code' => 'US'], ['name' => 'Tortorici', 'country_code' => 'IT'], ['name' => 'Vidal Ramos', 'country_code' => 'BR'], ['name' => 'Galax', 'country_code' => 'US'], ['name' => 'Messini', 'country_code' => 'GR'], ['name' => 'Ravarino', 'country_code' => 'IT'], ['name' => 'San Polo d Enza in Caviano', 'country_code' => 'IT'], ['name' => 'Palosco', 'country_code' => 'IT'], ['name' => 'Mattinata', 'country_code' => 'IT'], ['name' => 'Baixio', 'country_code' => 'BR'], ['name' => 'Jan Phyl Village', 'country_code' => 'US'], ['name' => 'Swarthmore', 'country_code' => 'US'], ['name' => 'Krk', 'country_code' => 'HR'], ['name' => 'Izumizaki', 'country_code' => 'JP'], ['name' => 'Neumarkt-Sankt Veit', 'country_code' => 'DE'], ['name' => 'Chipping Norton', 'country_code' => 'GB'], ['name' => 'Carmel Hamlet', 'country_code' => 'US'], ['name' => 'Kalefeld', 'country_code' => 'DE'], ['name' => 'Bondorf', 'country_code' => 'DE'], ['name' => 'Dobrany', 'country_code' => 'CZ'], ['name' => 'Immendingen', 'country_code' => 'DE'], ['name' => 'Toledo', 'country_code' => 'BR'], ['name' => 'Lazcano', 'country_code' => 'ES'], ['name' => 'Hachenburg', 'country_code' => 'DE'], ['name' => 'Walluf', 'country_code' => 'DE'], ['name' => 'Maarn', 'country_code' => 'NL'], ['name' => 'Staraya Mayna', 'country_code' => 'RU'], ['name' => 'Arrinj', 'country_code' => 'AM'], ['name' => 'Gladewater', 'country_code' => 'US'], ['name' => 'Zalaszentgrot', 'country_code' => 'HU'], ['name' => 'Litzendorf', 'country_code' => 'DE'], ['name' => 'Iowa Park', 'country_code' => 'US'], ['name' => 'Migne', 'country_code' => 'FR'], ['name' => 'Yaphank', 'country_code' => 'US'], ['name' => 'St. John', 'country_code' => 'US'], ['name' => 'Inhauma', 'country_code' => 'BR'], ['name' => 'Penon Blanco', 'country_code' => 'MX'], ['name' => 'Amapora', 'country_code' => 'BR'], ['name' => 'Mattapoisett', 'country_code' => 'US'], ['name' => 'Crocetta del Montello', 'country_code' => 'IT'], ['name' => 'Svislach', 'country_code' => 'BY'], ['name' => 'Theodore', 'country_code' => 'US'], ['name' => 'Souq at Tlata des Loulad', 'country_code' => 'MA'], ['name' => 'Fegyvernek', 'country_code' => 'HU'], ['name' => 'Karasburg', 'country_code' => 'NA'], ['name' => 'Paraiso', 'country_code' => 'BR'], ['name' => 'Mercedes', 'country_code' => 'PH'], ['name' => 'Pepper Pike', 'country_code' => 'US'], ['name' => 'Red Lion', 'country_code' => 'US'], ['name' => 'Vrbove', 'country_code' => 'SK'], ['name' => 'Verkhnevilyuysk', 'country_code' => 'RU'], ['name' => 'Echapora', 'country_code' => 'BR'], ['name' => 'Deisslingen', 'country_code' => 'DE'], ['name' => 'Hamlet', 'country_code' => 'US'], ['name' => 'Olival', 'country_code' => 'PT'], ['name' => 'Fazenda Nova', 'country_code' => 'BR'], ['name' => 'Pentling', 'country_code' => 'DE'], ['name' => 'Spirano', 'country_code' => 'IT'], ['name' => 'Carry-le-Rouet', 'country_code' => 'FR'], ['name' => 'El Main', 'country_code' => 'DZ'], ['name' => 'Myrina', 'country_code' => 'GR'], ['name' => 'Granby', 'country_code' => 'US'], ['name' => 'White Oak', 'country_code' => 'US'], ['name' => 'Amqui', 'country_code' => 'CA'], ['name' => 'Axams', 'country_code' => 'AT'], ['name' => 'Norderney', 'country_code' => 'DE'], ['name' => 'Dotlingen', 'country_code' => 'DE'], ['name' => 'Wolfeboro', 'country_code' => 'US'], ['name' => 'Chambourcy', 'country_code' => 'FR'], ['name' => 'Kis', 'country_code' => 'AZ'], ['name' => 'Sainte-Catherine-de-la-Jacques-Cartier', 'country_code' => 'CA'], ['name' => 'Trasacco', 'country_code' => 'IT'], ['name' => 'Vila Boa', 'country_code' => 'BR'], ['name' => 'Georges', 'country_code' => 'US'], ['name' => 'Comstock Northwest', 'country_code' => 'US'], ['name' => 'Allariz', 'country_code' => 'ES'], ['name' => 'Florian', 'country_code' => 'CO'], ['name' => 'Enrique Villanueva', 'country_code' => 'PH'], ['name' => 'Mesoy', 'country_code' => 'NO'], ['name' => 'Islamorada, Village of Islands', 'country_code' => 'US'], ['name' => 'Horezu', 'country_code' => 'RO'], ['name' => 'Astrakhan', 'country_code' => 'KZ'], ['name' => 'Markt Sankt Florian', 'country_code' => 'AT'], ['name' => 'Teplyk', 'country_code' => 'UA'], ['name' => 'San Benigno Canavese', 'country_code' => 'IT'], ['name' => 'Anhembi', 'country_code' => 'BR'], ['name' => 'Mascotte', 'country_code' => 'US'], ['name' => 'Mnisek pod Brdy', 'country_code' => 'CZ'], ['name' => 'Bataszek', 'country_code' => 'HU'], ['name' => 'Roveredo in Piano', 'country_code' => 'IT'], ['name' => 'Marly-la-Ville', 'country_code' => 'FR'], ['name' => 'Cobleskill', 'country_code' => 'US'], ['name' => 'Newarthill', 'country_code' => 'GB'], ['name' => 'Loon-Plage', 'country_code' => 'FR'], ['name' => 'Almenara', 'country_code' => 'ES'], ['name' => 'Wagna', 'country_code' => 'AT'], ['name' => 'Jedlicze', 'country_code' => 'PL'], ['name' => 'Farebersviller', 'country_code' => 'FR'], ['name' => 'Saint-Denis-les-Bourg', 'country_code' => 'FR'], ['name' => 'Bonchamp-les-Laval', 'country_code' => 'FR'], ['name' => 'Sertao', 'country_code' => 'BR'], ['name' => 'Zubtsov', 'country_code' => 'RU'], ['name' => 'Jouars-Pontchartrain', 'country_code' => 'FR'], ['name' => 'Pass Christian', 'country_code' => 'US'], ['name' => 'Lochau', 'country_code' => 'AT'], ['name' => 'Balkany', 'country_code' => 'HU'], ['name' => 'Change', 'country_code' => 'FR'], ['name' => 'Neustadt', 'country_code' => 'DE'], ['name' => 'Cobram', 'country_code' => 'AU'], ['name' => 'Hutthurm', 'country_code' => 'DE'], ['name' => 'Jeanerette', 'country_code' => 'US'], ['name' => 'Delano', 'country_code' => 'US'], ['name' => 'Waveland', 'country_code' => 'US'], ['name' => 'Itaruma', 'country_code' => 'BR'], ['name' => 'Besnate', 'country_code' => 'IT'], ['name' => 'Remanzacco', 'country_code' => 'IT'], ['name' => 'North Hobbs', 'country_code' => 'US'], ['name' => 'Luisburgo', 'country_code' => 'BR'], ['name' => 'Fronton', 'country_code' => 'FR'], ['name' => 'Mallemort', 'country_code' => 'FR'], ['name' => 'Nattheim', 'country_code' => 'DE'], ['name' => 'Forest Hills', 'country_code' => 'US'], ['name' => 'Stonewood', 'country_code' => 'GB'], ['name' => 'Lubizhde', 'country_code' => 'XK'], ['name' => 'Marsh Harbour', 'country_code' => 'BS'], ['name' => 'El Rio', 'country_code' => 'US'], ['name' => 'Tarleton', 'country_code' => 'GB'], ['name' => 'Nenzing', 'country_code' => 'AT'], ['name' => 'Altkirch', 'country_code' => 'FR'], ['name' => 'Delle', 'country_code' => 'FR'], ['name' => 'Cumberland', 'country_code' => 'US'], ['name' => 'Lely Resort', 'country_code' => 'US'], ['name' => 'Carloforte', 'country_code' => 'IT'], ['name' => 'Marton', 'country_code' => 'NZ'], ['name' => 'Poggiardo', 'country_code' => 'IT'], ['name' => 'Ihsim', 'country_code' => 'SY'], ['name' => 'East Porterville', 'country_code' => 'US'], ['name' => 'Clarenville', 'country_code' => 'CA'], ['name' => 'Kuchen', 'country_code' => 'DE'], ['name' => 'Bonstetten', 'country_code' => 'CH'], ['name' => 'Munhoz', 'country_code' => 'BR'], ['name' => 'Ranchettes', 'country_code' => 'US'], ['name' => 'Mazan', 'country_code' => 'FR'], ['name' => 'Montebello Ionico', 'country_code' => 'IT'], ['name' => 'Nouzonville', 'country_code' => 'FR'], ['name' => 'Sotnikovo', 'country_code' => 'RU'], ['name' => 'Boiling Spring Lakes', 'country_code' => 'US'], ['name' => 'Wannweil', 'country_code' => 'DE'], ['name' => 'Geisingen', 'country_code' => 'DE'], ['name' => 'Lioni', 'country_code' => 'IT'], ['name' => 'Nogent-sur-Seine', 'country_code' => 'FR'], ['name' => 'Port Saint John s', 'country_code' => 'ZA'], ['name' => 'Rio Grande do Piaui', 'country_code' => 'BR'], ['name' => 'Mikhaylovka', 'country_code' => 'RU'], ['name' => 'Phanna Nikhom', 'country_code' => 'TH'], ['name' => 'Obererli', 'country_code' => 'CH'], ['name' => 'Sao Francisco de Goias', 'country_code' => 'BR'], ['name' => 'Oberlungwitz', 'country_code' => 'DE'], ['name' => 'Godega di Sant Urbano', 'country_code' => 'IT'], ['name' => 'Nor Geghi', 'country_code' => 'AM'], ['name' => 'Guidizzolo', 'country_code' => 'IT'], ['name' => 'Stone Mountain', 'country_code' => 'US'], ['name' => 'Ashburnham', 'country_code' => 'US'], ['name' => 'Mont-Joli', 'country_code' => 'CA'], ['name' => 'Campo Limpo', 'country_code' => 'BR'], ['name' => 'Gaiarine', 'country_code' => 'IT'], ['name' => 'Octeville-sur-Mer', 'country_code' => 'FR'], ['name' => 'Casorezzo', 'country_code' => 'IT'], ['name' => 'Tammela', 'country_code' => 'FI'], ['name' => 'Hohenlockstedt', 'country_code' => 'DE'], ['name' => 'Sao Francisco de Sales', 'country_code' => 'BR'], ['name' => 'Sursk', 'country_code' => 'RU'], ['name' => 'Glucksburg', 'country_code' => 'DE'], ['name' => 'Zelezny Brod', 'country_code' => 'CZ'], ['name' => 'Kupferzell', 'country_code' => 'DE'], ['name' => 'Covedale', 'country_code' => 'US'], ['name' => 'California', 'country_code' => 'US'], ['name' => 'Ardud', 'country_code' => 'RO'], ['name' => 'Unterpremstatten', 'country_code' => 'AT'], ['name' => 'Oberthal', 'country_code' => 'DE'], ['name' => 'St. Robert', 'country_code' => 'US'], ['name' => 'New Castle', 'country_code' => 'US'], ['name' => 'Gildersome', 'country_code' => 'GB'], ['name' => 'Rotha', 'country_code' => 'DE'], ['name' => 'Oakland', 'country_code' => 'US'], ['name' => 'Rechberghausen', 'country_code' => 'DE'], ['name' => 'Mortagne-sur-Sevre', 'country_code' => 'FR'], ['name' => 'Dabrowa Bialostocka', 'country_code' => 'PL'], ['name' => 'Ploneour-Lanvern', 'country_code' => 'FR'], ['name' => 'Figueira de Castelo Rodrigo', 'country_code' => 'PT'], ['name' => 'Pernio', 'country_code' => 'FI'], ['name' => 'Saleilles', 'country_code' => 'FR'], ['name' => 'Ghidighici', 'country_code' => 'MD'], ['name' => 'Lebanon', 'country_code' => 'US'], ['name' => 'Wainwright', 'country_code' => 'CA'], ['name' => 'Noyal-sur-Vilaine', 'country_code' => 'FR'], ['name' => 'Ivankovo', 'country_code' => 'HR'], ['name' => 'Birstein', 'country_code' => 'DE'], ['name' => 'Elven', 'country_code' => 'FR'], ['name' => 'Burntisland', 'country_code' => 'GB'], ['name' => 'Howland Center', 'country_code' => 'US'], ['name' => 'Tortora', 'country_code' => 'IT'], ['name' => 'Silvianopolis', 'country_code' => 'BR'], ['name' => 'Mamers', 'country_code' => 'FR'], ['name' => 'Donji Miholjac', 'country_code' => 'HR'], ['name' => 'Sao Goncalo do Abaete', 'country_code' => 'BR'], ['name' => 'Sao Jose de Gaiana', 'country_code' => 'BR'], ['name' => 'Pigeon Forge', 'country_code' => 'US'], ['name' => 'Gmund am Tegernsee', 'country_code' => 'DE'], ['name' => 'Aradan', 'country_code' => 'IR'], ['name' => 'Huntington Woods', 'country_code' => 'US'], ['name' => 'Lower Nazareth', 'country_code' => 'US'], ['name' => 'Rong Kham', 'country_code' => 'TH'], ['name' => 'North East', 'country_code' => 'US'], ['name' => 'Progresso', 'country_code' => 'BR'], ['name' => 'Tazouta', 'country_code' => 'MA'], ['name' => 'Taiacu', 'country_code' => 'BR'], ['name' => 'Hooge Zwaluwe', 'country_code' => 'NL'], ['name' => 'Blahovishchenske', 'country_code' => 'UA'], ['name' => 'Viator', 'country_code' => 'ES'], ['name' => 'Maffra', 'country_code' => 'AU'], ['name' => 'Richmond', 'country_code' => 'US'], ['name' => 'Antis', 'country_code' => 'US'], ['name' => 'Ingeniero Jacobacci', 'country_code' => 'AR'], ['name' => 'Pontal do Araguaia', 'country_code' => 'BR'], ['name' => 'Fairwood', 'country_code' => 'US'], ['name' => 'Kingston', 'country_code' => 'US'], ['name' => 'Tahmoor', 'country_code' => 'AU'], ['name' => 'East Glenville', 'country_code' => 'US'], ['name' => 'Guer', 'country_code' => 'FR'], ['name' => 'Santa Cruz do Piaui', 'country_code' => 'BR'], ['name' => 'Lake Alfred', 'country_code' => 'US'], ['name' => 'Nong Song Hong', 'country_code' => 'TH'], ['name' => 'Plescop', 'country_code' => 'FR'], ['name' => 'Zeitlarn', 'country_code' => 'DE'], ['name' => 'Santa Filomena', 'country_code' => 'BR'], ['name' => 'Izon', 'country_code' => 'FR'], ['name' => 'Snyderville', 'country_code' => 'US'], ['name' => 'Morris Plains', 'country_code' => 'US'], ['name' => 'Lambert s Bay', 'country_code' => 'ZA'], ['name' => 'Pinxton', 'country_code' => 'GB'], ['name' => 'Powell', 'country_code' => 'US'], ['name' => 'Glyncorrwg', 'country_code' => 'GB'], ['name' => 'Contrecoeur', 'country_code' => 'CA'], ['name' => 'Piana degli Albanesi', 'country_code' => 'IT'], ['name' => 'Heric', 'country_code' => 'FR'], ['name' => 'Hampshire', 'country_code' => 'US'], ['name' => 'Enola', 'country_code' => 'US'], ['name' => 'Ingeniero Luis A. Huergo', 'country_code' => 'AR'], ['name' => 'Sainghin-en-Weppes', 'country_code' => 'FR'], ['name' => 'Sarrians', 'country_code' => 'FR'], ['name' => 'Berghem', 'country_code' => 'NL'], ['name' => 'Salton City', 'country_code' => 'US'], ['name' => 'Blue Bell', 'country_code' => 'US'], ['name' => 'Corcoran', 'country_code' => 'US'], ['name' => 'Blanzy', 'country_code' => 'FR'], ['name' => 'Collecorvino', 'country_code' => 'IT'], ['name' => 'Ocean City', 'country_code' => 'US'], ['name' => 'Dives-sur-Mer', 'country_code' => 'FR'], ['name' => 'General Sampaio', 'country_code' => 'BR'], ['name' => 'Walker', 'country_code' => 'US'], ['name' => 'St. James', 'country_code' => 'US'], ['name' => 'Spangenberg', 'country_code' => 'DE'], ['name' => 'Bir Anzarane', 'country_code' => 'MA'], ['name' => 'Kirchbichl', 'country_code' => 'AT'], ['name' => 'Ebersdorf bei Coburg', 'country_code' => 'DE'], ['name' => 'Woodend', 'country_code' => 'AU'], ['name' => 'Puebla de la Calzada', 'country_code' => 'ES'], ['name' => 'Hvardiys ke', 'country_code' => 'UA'], ['name' => 'Geghahovit', 'country_code' => 'AM'], ['name' => 'Inaciolandia', 'country_code' => 'BR'], ['name' => 'Camp Swift', 'country_code' => 'US'], ['name' => 'South Run', 'country_code' => 'US'], ['name' => 'Pecan Plantation', 'country_code' => 'US'], ['name' => 'Nieul-sur-Mer', 'country_code' => 'FR'], ['name' => 'Vernaison', 'country_code' => 'FR'], ['name' => 'Tapioszecso', 'country_code' => 'HU'], ['name' => 'Cadeo', 'country_code' => 'IT'], ['name' => 'Elva', 'country_code' => 'EE'], ['name' => 'New Whiteland', 'country_code' => 'US'], ['name' => 'La Roquette-sur-Siagne', 'country_code' => 'FR'], ['name' => 'Sylvester', 'country_code' => 'US'], ['name' => 'Balabyne', 'country_code' => 'UA'], ['name' => 'Boonville', 'country_code' => 'US'], ['name' => 'Inverloch', 'country_code' => 'AU'], ['name' => 'Pouso Alto', 'country_code' => 'BR'], ['name' => 'Boothwyn', 'country_code' => 'US'], ['name' => 'Moergestel', 'country_code' => 'NL'], ['name' => 'Orange Beach', 'country_code' => 'US'], ['name' => 'Silandro', 'country_code' => 'IT'], ['name' => 'La Ville-aux-Dames', 'country_code' => 'FR'], ['name' => 'Serraria', 'country_code' => 'BR'], ['name' => 'Buena Vista', 'country_code' => 'US'], ['name' => 'Solvay', 'country_code' => 'US'], ['name' => 'Whittlesea', 'country_code' => 'AU'], ['name' => 'Champion Heights', 'country_code' => 'US'], ['name' => 'East Foothills', 'country_code' => 'US'], ['name' => 'South Gate Ridge', 'country_code' => 'US'], ['name' => 'Bodelshausen', 'country_code' => 'DE'], ['name' => 'Newberry', 'country_code' => 'US'], ['name' => 'Brena Baja', 'country_code' => 'ES'], ['name' => 'Amrharas', 'country_code' => 'MA'], ['name' => 'Niedergorsdorf', 'country_code' => 'DE'], ['name' => 'Noormarkku', 'country_code' => 'FI'], ['name' => 'Sao Joao do Sabugi', 'country_code' => 'BR'], ['name' => 'Cammarata', 'country_code' => 'IT'], ['name' => 'Marnaz', 'country_code' => 'FR'], ['name' => 'Mayfield', 'country_code' => 'US'], ['name' => 'Carentan', 'country_code' => 'FR'], ['name' => 'Lardy', 'country_code' => 'FR'], ['name' => 'Esvres', 'country_code' => 'FR'], ['name' => 'Glenwood', 'country_code' => 'US'], ['name' => 'Vesyegonsk', 'country_code' => 'RU'], ['name' => 'Homer', 'country_code' => 'US'], ['name' => 'Aire-sur-l Adour', 'country_code' => 'FR'], ['name' => 'Rolde', 'country_code' => 'NL'], ['name' => 'Zhur', 'country_code' => 'XK'], ['name' => 'West Greenwich', 'country_code' => 'US'], ['name' => 'Trans-en-Provence', 'country_code' => 'FR'], ['name' => 'Kenedy', 'country_code' => 'US'], ['name' => 'Pimmit Hills', 'country_code' => 'US'], ['name' => 'Casalbordino', 'country_code' => 'IT'], ['name' => 'Edinboro', 'country_code' => 'US'], ['name' => 'Murashi', 'country_code' => 'RU'], ['name' => 'Domusnovas', 'country_code' => 'IT'], ['name' => 'Fruit Heights', 'country_code' => 'US'], ['name' => 'Addis', 'country_code' => 'US'], ['name' => 'Montgomery', 'country_code' => 'US'], ['name' => 'Soledade de Minas', 'country_code' => 'BR'], ['name' => 'Nikolo-Berezovka', 'country_code' => 'RU'], ['name' => 'Colombia', 'country_code' => 'BR'], ['name' => 'Swanwick', 'country_code' => 'GB'], ['name' => 'Morahalom', 'country_code' => 'HU'], ['name' => 'Gloggnitz', 'country_code' => 'AT'], ['name' => 'Biasca', 'country_code' => 'CH'], ['name' => 'Demidov', 'country_code' => 'RU'], ['name' => 'Sao Joao da Ponta', 'country_code' => 'BR'], ['name' => 'Rohrbach', 'country_code' => 'DE'], ['name' => 'Wailea', 'country_code' => 'US'], ['name' => 'Nicolas Flores', 'country_code' => 'MX'], ['name' => 'Maule', 'country_code' => 'FR'], ['name' => 'Khur', 'country_code' => 'IR'], ['name' => 'Hustopece', 'country_code' => 'CZ'], ['name' => 'Sittensen', 'country_code' => 'DE'], ['name' => 'Motta San Giovanni', 'country_code' => 'IT'], ['name' => 'Outes', 'country_code' => 'ES'], ['name' => 'Poppi', 'country_code' => 'IT'], ['name' => 'Barao', 'country_code' => 'BR'], ['name' => 'Tarazona de la Mancha', 'country_code' => 'ES'], ['name' => 'Nabburg', 'country_code' => 'DE'], ['name' => 'Tsarevo', 'country_code' => 'BG'], ['name' => 'Saint-Zacharie', 'country_code' => 'FR'], ['name' => 'Curcani', 'country_code' => 'RO'], ['name' => 'Bad Honningen', 'country_code' => 'DE'], ['name' => 'Savinesti', 'country_code' => 'RO'], ['name' => 'Hethersett', 'country_code' => 'GB'], ['name' => 'Liverdun', 'country_code' => 'FR'], ['name' => 'Saint-Symphorien-d Ozon', 'country_code' => 'FR'], ['name' => 'Verona', 'country_code' => 'US'], ['name' => 'Chelan', 'country_code' => 'US'], ['name' => 'Saint-Jory', 'country_code' => 'FR'], ['name' => 'Pea Ridge', 'country_code' => 'US'], ['name' => 'Americano Brasil', 'country_code' => 'BR'], ['name' => 'La Primaube', 'country_code' => 'FR'], ['name' => 'Blakely', 'country_code' => 'US'], ['name' => 'Saint-Sebastien-de-Morsent', 'country_code' => 'FR'], ['name' => 'Prades-le-Lez', 'country_code' => 'FR'], ['name' => 'Grayson Valley', 'country_code' => 'US'], ['name' => 'Vigneux-de-Bretagne', 'country_code' => 'FR'], ['name' => 'Vouneuil-sous-Biard', 'country_code' => 'FR'], ['name' => 'Corry', 'country_code' => 'US'], ['name' => 'Rio das Antas', 'country_code' => 'BR'], ['name' => 'Siuntio', 'country_code' => 'FI'], ['name' => 'Villabona', 'country_code' => 'ES'], ['name' => 'Fontenilles', 'country_code' => 'FR'], ['name' => 'Partenit', 'country_code' => 'UA'], ['name' => 'Gelnica', 'country_code' => 'SK'], ['name' => 'Takhtamukay', 'country_code' => 'RU'], ['name' => 'Twin Lakes', 'country_code' => 'US'], ['name' => 'Dennis', 'country_code' => 'US'], ['name' => 'Wilkins', 'country_code' => 'US'], ['name' => 'East Calder', 'country_code' => 'GB'], ['name' => 'Gunskirchen', 'country_code' => 'AT'], ['name' => 'Schaftlarn', 'country_code' => 'DE'], ['name' => 'Avra Valley', 'country_code' => 'US'], ['name' => 'Buchen', 'country_code' => 'DE'], ['name' => 'Sermide', 'country_code' => 'IT'], ['name' => 'Everman', 'country_code' => 'US'], ['name' => 'Parecis', 'country_code' => 'BR'], ['name' => 'Luco dei Marsi', 'country_code' => 'IT'], ['name' => 'Suria', 'country_code' => 'ES'], ['name' => 'Rowlands Gill', 'country_code' => 'GB'], ['name' => 'Union Gap', 'country_code' => 'US'], ['name' => 'Seichamps', 'country_code' => 'FR'], ['name' => 'Bellach', 'country_code' => 'CH'], ['name' => 'Ternay', 'country_code' => 'FR'], ['name' => 'Stowe', 'country_code' => 'US'], ['name' => 'Kirchardt', 'country_code' => 'DE'], ['name' => 'Fassberg', 'country_code' => 'DE'], ['name' => 'Sachkhere', 'country_code' => 'GE'], ['name' => 'Sant Elia Fiumerapido', 'country_code' => 'IT'], ['name' => 'Revin', 'country_code' => 'FR'], ['name' => 'Saint-Joseph-du-Lac', 'country_code' => 'CA'], ['name' => 'Plainfield', 'country_code' => 'US'], ['name' => 'Belfeld', 'country_code' => 'NL'], ['name' => 'Porcuna', 'country_code' => 'ES'], ['name' => 'Heliconia', 'country_code' => 'CO'], ['name' => 'Campo San Martino', 'country_code' => 'IT'], ['name' => 'Satsuma', 'country_code' => 'US'], ['name' => 'Prinzapolka', 'country_code' => 'NI'], ['name' => 'Tuakau', 'country_code' => 'NZ'], ['name' => 'Kirton', 'country_code' => 'GB'], ['name' => 'Temnikov', 'country_code' => 'RU'], ['name' => 'Thoiry', 'country_code' => 'FR'], ['name' => 'Lutjenburg', 'country_code' => 'DE'], ['name' => 'Vilseck', 'country_code' => 'DE'], ['name' => 'Riviersonderend', 'country_code' => 'ZA'], ['name' => 'Dyce', 'country_code' => 'GB'], ['name' => 'Ascoli Satriano', 'country_code' => 'IT'], ['name' => 'Slanic', 'country_code' => 'RO'], ['name' => 'Caracol', 'country_code' => 'BR'], ['name' => 'Lendelede', 'country_code' => 'BE'], ['name' => 'Berceni', 'country_code' => 'RO'], ['name' => 'Vendenheim', 'country_code' => 'FR'], ['name' => 'Sheridan', 'country_code' => 'US'], ['name' => 'Le Lavandou', 'country_code' => 'FR'], ['name' => 'Truccazzano', 'country_code' => 'IT'], ['name' => 'Leonardtown', 'country_code' => 'US'], ['name' => 'Poussan', 'country_code' => 'FR'], ['name' => 'Westhausen', 'country_code' => 'DE'], ['name' => 'Steyning', 'country_code' => 'GB'], ['name' => 'Parmain', 'country_code' => 'FR'], ['name' => 'Hope', 'country_code' => 'CA'], ['name' => 'Gimli', 'country_code' => 'CA'], ['name' => 'Eastman', 'country_code' => 'US'], ['name' => 'Kusatsu', 'country_code' => 'JP'], ['name' => 'Yeranos', 'country_code' => 'AM'], ['name' => 'Dusheti', 'country_code' => 'GE'], ['name' => 'Asakawa', 'country_code' => 'JP'], ['name' => 'San Cristobal Acasaguastlan', 'country_code' => 'GT'], ['name' => 'Darcinopolis', 'country_code' => 'BR'], ['name' => 'High Springs', 'country_code' => 'US'], ['name' => 'Doullens', 'country_code' => 'FR'], ['name' => 'Konigsfeld im Schwarzwald', 'country_code' => 'DE'], ['name' => 'Orsett', 'country_code' => 'GB'], ['name' => 'University at Buffalo', 'country_code' => 'US'], ['name' => 'Olhos d Agua', 'country_code' => 'BR'], ['name' => 'Vaison-la-Romaine', 'country_code' => 'FR'], ['name' => 'Au in der Hallertau', 'country_code' => 'DE'], ['name' => 'Silveiras', 'country_code' => 'BR'], ['name' => 'Pembury', 'country_code' => 'GB'], ['name' => 'Ibiracatu', 'country_code' => 'BR'], ['name' => 'Jandaia', 'country_code' => 'BR'], ['name' => 'Loimaan Kunta', 'country_code' => 'FI'], ['name' => 'Solt', 'country_code' => 'HU'], ['name' => 'Untergriesbach', 'country_code' => 'DE'], ['name' => 'Huntingburg', 'country_code' => 'US'], ['name' => 'Almadina', 'country_code' => 'BR'], ['name' => 'Dainville', 'country_code' => 'FR'], ['name' => 'Cocal dos Alves', 'country_code' => 'BR'], ['name' => 'Nieheim', 'country_code' => 'DE'], ['name' => 'Pontotoc', 'country_code' => 'US'], ['name' => 'Pierrefeu-du-Var', 'country_code' => 'FR'], ['name' => 'Lingenfeld', 'country_code' => 'DE'], ['name' => 'Emerald', 'country_code' => 'AU'], ['name' => 'Treffurt', 'country_code' => 'DE'], ['name' => 'Monterenzio', 'country_code' => 'IT'], ['name' => 'Beacon Falls', 'country_code' => 'US'], ['name' => 'East Farmingdale', 'country_code' => 'US'], ['name' => 'Richmond', 'country_code' => 'AU'], ['name' => 'Dartmouth', 'country_code' => 'GB'], ['name' => 'Clyde', 'country_code' => 'US'], ['name' => 'Tyniste nad Orlici', 'country_code' => 'CZ'], ['name' => 'Itumirim', 'country_code' => 'BR'], ['name' => 'Mantyharju', 'country_code' => 'FI'], ['name' => 'Yoshinoyama', 'country_code' => 'JP'], ['name' => 'Eagar', 'country_code' => 'US'], ['name' => 'Ida Ou Moumene', 'country_code' => 'MA'], ['name' => 'Senador Eloi de Souza', 'country_code' => 'BR'], ['name' => 'Sao Joao da Serra', 'country_code' => 'BR'], ['name' => 'Gyangze', 'country_code' => 'CN'], ['name' => 'Branford Center', 'country_code' => 'US'], ['name' => 'Rib Mountain', 'country_code' => 'US'], ['name' => 'Adligenswil', 'country_code' => 'CH'], ['name' => 'Kuybyshevo', 'country_code' => 'RU'], ['name' => 'Henryetta', 'country_code' => 'US'], ['name' => 'Unterseen', 'country_code' => 'CH'], ['name' => 'Magny-en-Vexin', 'country_code' => 'FR'], ['name' => 'Montgomery', 'country_code' => 'US'], ['name' => 'Fort Edward', 'country_code' => 'US'], ['name' => 'Barra Longa', 'country_code' => 'BR'], ['name' => 'Polygyros', 'country_code' => 'GR'], ['name' => 'Szabadszallas', 'country_code' => 'HU'], ['name' => 'Rusko', 'country_code' => 'FI'], ['name' => 'San Gerardo', 'country_code' => 'SV'], ['name' => 'Odesskoye', 'country_code' => 'RU'], ['name' => 'Erdweg', 'country_code' => 'DE'], ['name' => 'Jemna', 'country_code' => 'TN'], ['name' => 'Hemhofen', 'country_code' => 'DE'], ['name' => 'Simsbury Center', 'country_code' => 'US'], ['name' => 'Chanceford', 'country_code' => 'US'], ['name' => 'Wassertrudingen', 'country_code' => 'DE'], ['name' => 'Kojetin', 'country_code' => 'CZ'], ['name' => 'Sainte-Sigolene', 'country_code' => 'FR'], ['name' => 'Monteiasi', 'country_code' => 'IT'], ['name' => 'Kulary', 'country_code' => 'RU'], ['name' => 'Clinton', 'country_code' => 'US'], ['name' => 'Evansville', 'country_code' => 'US'], ['name' => 'Bonares', 'country_code' => 'ES'], ['name' => 'San Pol de Mar', 'country_code' => 'ES'], ['name' => 'Pardinho', 'country_code' => 'BR'], ['name' => 'Saxon', 'country_code' => 'CH'], ['name' => 'Lanett', 'country_code' => 'US'], ['name' => 'Quinto Vicentino', 'country_code' => 'IT'], ['name' => 'Veintiocho de Noviembre', 'country_code' => 'AR'], ['name' => 'Pignataro Maggiore', 'country_code' => 'IT'], ['name' => 'Nurensdorf', 'country_code' => 'CH'], ['name' => 'Ares', 'country_code' => 'ES'], ['name' => 'Ujszasz', 'country_code' => 'HU'], ['name' => 'Ballingry', 'country_code' => 'GB'], ['name' => 'Raleigh Hills', 'country_code' => 'US'], ['name' => 'Naintre', 'country_code' => 'FR'], ['name' => 'Bridgewater', 'country_code' => 'US'], ['name' => 'Kleinwallstadt', 'country_code' => 'DE'], ['name' => 'Lausen', 'country_code' => 'CH'], ['name' => 'Southampton', 'country_code' => 'US'], ['name' => 'Northfield', 'country_code' => 'US'], ['name' => 'Graca Aranha', 'country_code' => 'BR'], ['name' => 'Vernio', 'country_code' => 'IT'], ['name' => 'Santorso', 'country_code' => 'IT'], ['name' => 'Glenarden', 'country_code' => 'US'], ['name' => 'East Pasadena', 'country_code' => 'US'], ['name' => 'Kechoulah', 'country_code' => 'MA'], ['name' => 'Sint Pancras', 'country_code' => 'NL'], ['name' => 'Trunovskoye', 'country_code' => 'RU'], ['name' => 'Maiano', 'country_code' => 'IT'], ['name' => 'Saint-Jorioz', 'country_code' => 'FR'], ['name' => 'Hofbieber', 'country_code' => 'DE'], ['name' => 'Ronco all Adige', 'country_code' => 'IT'], ['name' => 'Potiretama', 'country_code' => 'BR'], ['name' => 'New Norfolk', 'country_code' => 'AU'], ['name' => 'Gurinhata', 'country_code' => 'BR'], ['name' => 'Pelican Bay', 'country_code' => 'US'], ['name' => 'Dornhan', 'country_code' => 'DE'], ['name' => 'Tequesta', 'country_code' => 'US'], ['name' => 'Montbonnot-Saint-Martin', 'country_code' => 'FR'], ['name' => 'Clapiers', 'country_code' => 'FR'], ['name' => 'Alpnach', 'country_code' => 'CH'], ['name' => 'Broughton', 'country_code' => 'GB'], ['name' => 'Elm Grove', 'country_code' => 'US'], ['name' => 'Borso del Grappa', 'country_code' => 'IT'], ['name' => 'Genazzano', 'country_code' => 'IT'], ['name' => 'Varnita', 'country_code' => 'MD'], ['name' => 'Sidi Mbark', 'country_code' => 'MA'], ['name' => 'Welshpool', 'country_code' => 'GB'], ['name' => 'Lom Kao', 'country_code' => 'TH'], ['name' => 'Carlstadt', 'country_code' => 'US'], ['name' => 'Vaugneray', 'country_code' => 'FR'], ['name' => 'Sumeg', 'country_code' => 'HU'], ['name' => 'Torrebelvicino', 'country_code' => 'IT'], ['name' => 'North Windham', 'country_code' => 'US'], ['name' => 'Cochran', 'country_code' => 'US'], ['name' => 'Sedgefield', 'country_code' => 'GB'], ['name' => 'Riantec', 'country_code' => 'FR'], ['name' => 'Eucalyptus Hills', 'country_code' => 'US'], ['name' => 'Arlington Heights', 'country_code' => 'US'], ['name' => 'Brownville', 'country_code' => 'US'], ['name' => 'Sosnovo-Ozerskoye', 'country_code' => 'RU'], ['name' => 'Helmshore', 'country_code' => 'GB'], ['name' => 'Castelsardo', 'country_code' => 'IT'], ['name' => 'Emskirchen', 'country_code' => 'DE'], ['name' => 'Novokhopersk', 'country_code' => 'RU'], ['name' => 'Jambeiro', 'country_code' => 'BR'], ['name' => 'Shikhany', 'country_code' => 'RU'], ['name' => 'Bo', 'country_code' => 'NO'], ['name' => 'Independence', 'country_code' => 'US'], ['name' => 'Lebanon', 'country_code' => 'US'], ['name' => 'Laurel Bay', 'country_code' => 'US'], ['name' => 'Braunlage', 'country_code' => 'DE'], ['name' => 'Garrettsville', 'country_code' => 'US'], ['name' => 'Abanilla', 'country_code' => 'ES'], ['name' => 'Pollau', 'country_code' => 'AT'], ['name' => 'Douvrin', 'country_code' => 'FR'], ['name' => 'Fundeni', 'country_code' => 'RO'], ['name' => 'Frick', 'country_code' => 'CH'], ['name' => 'Kirchentellinsfurt', 'country_code' => 'DE'], ['name' => 'Gardnerville', 'country_code' => 'US'], ['name' => 'Gnas', 'country_code' => 'AT'], ['name' => 'Candiolo', 'country_code' => 'IT'], ['name' => 'Fleurance', 'country_code' => 'FR'], ['name' => 'Lochgau', 'country_code' => 'DE'], ['name' => 'Isanti', 'country_code' => 'US'], ['name' => 'Taciba', 'country_code' => 'BR'], ['name' => 'Vizzini', 'country_code' => 'IT'], ['name' => 'Mainhardt', 'country_code' => 'DE'], ['name' => 'Otaci', 'country_code' => 'MD'], ['name' => 'Monroe', 'country_code' => 'US'], ['name' => 'Norena', 'country_code' => 'ES'], ['name' => 'Lannemezan', 'country_code' => 'FR'], ['name' => 'Punxsutawney', 'country_code' => 'US'], ['name' => 'Country Homes', 'country_code' => 'US'], ['name' => 'Wailua Homesteads', 'country_code' => 'US'], ['name' => 'Hergiswil', 'country_code' => 'CH'], ['name' => 'Kehychivka', 'country_code' => 'UA'], ['name' => 'Haute-Goulaine', 'country_code' => 'FR'], ['name' => 'Chiquilistlan', 'country_code' => 'MX'], ['name' => 'Brigg', 'country_code' => 'GB'], ['name' => 'Sidney', 'country_code' => 'US'], ['name' => 'Mendon', 'country_code' => 'US'], ['name' => 'Princeton', 'country_code' => 'US'], ['name' => 'Fahrland', 'country_code' => 'DE'], ['name' => 'Aznalcollar', 'country_code' => 'ES'], ['name' => 'Moulay Bouzarqtoune', 'country_code' => 'MA'], ['name' => 'Spydeberg', 'country_code' => 'NO'], ['name' => 'Bartonville', 'country_code' => 'US'], ['name' => 'Ixcateopan de Cuauhtemoc', 'country_code' => 'MX'], ['name' => 'Chena Ridge', 'country_code' => 'US'], ['name' => 'Pauls Valley', 'country_code' => 'US'], ['name' => 'Saint-Apollinaire', 'country_code' => 'CA'], ['name' => 'Wanon Niwat', 'country_code' => 'TH'], ['name' => 'Tazemmourt', 'country_code' => 'MA'], ['name' => 'Munford', 'country_code' => 'US'], ['name' => 'Tarrant', 'country_code' => 'US'], ['name' => 'Los Chaves', 'country_code' => 'US'], ['name' => 'Woodville', 'country_code' => 'GB'], ['name' => 'Fornovo di Taro', 'country_code' => 'IT'], ['name' => 'Wildon', 'country_code' => 'AT'], ['name' => 'Wilhering', 'country_code' => 'AT'], ['name' => 'Santo Antonio do Jardim', 'country_code' => 'BR'], ['name' => 'Los Ranchos de Albuquerque', 'country_code' => 'US'], ['name' => 'Megalopoli', 'country_code' => 'GR'], ['name' => 'Prrenjas', 'country_code' => 'AL'], ['name' => 'San Antonio Canada', 'country_code' => 'MX'], ['name' => 'Edgewood', 'country_code' => 'US'], ['name' => 'Windsbach', 'country_code' => 'DE'], ['name' => 'Aquia Harbour', 'country_code' => 'US'], ['name' => 'Nereto', 'country_code' => 'IT'], ['name' => 'Indian Hills', 'country_code' => 'US'], ['name' => 'Bresje', 'country_code' => 'XK'], ['name' => 'Coursan', 'country_code' => 'FR'], ['name' => 'Klaebu', 'country_code' => 'NO'], ['name' => 'El Granada', 'country_code' => 'US'], ['name' => 'Pai Pedro', 'country_code' => 'BR'], ['name' => 'Villefranche-sur-Mer', 'country_code' => 'FR'], ['name' => 'Concepcion de Buenos Aires', 'country_code' => 'MX'], ['name' => 'San Giovanni Suergiu', 'country_code' => 'IT'], ['name' => 'Serradifalco', 'country_code' => 'IT'], ['name' => 'Alkoven', 'country_code' => 'AT'], ['name' => 'Acque Dolci', 'country_code' => 'IT'], ['name' => 'Thelepte', 'country_code' => 'TN'], ['name' => 'Chalfont Saint Giles', 'country_code' => 'GB'], ['name' => 'Tillicoultry', 'country_code' => 'GB'], ['name' => 'Anta Gorda', 'country_code' => 'BR'], ['name' => 'Alcudia de Crespins', 'country_code' => 'ES'], ['name' => 'Gauchy', 'country_code' => 'FR'], ['name' => 'Niedereschach', 'country_code' => 'DE'], ['name' => 'Pueai Noi', 'country_code' => 'TH'], ['name' => 'Rio Espera', 'country_code' => 'BR'], ['name' => 'Lucciana', 'country_code' => 'FR'], ['name' => 'Rosate', 'country_code' => 'IT'], ['name' => 'Stewartville', 'country_code' => 'US'], ['name' => 'Filiatra', 'country_code' => 'GR'], ['name' => 'Pagham', 'country_code' => 'GB'], ['name' => 'Navas', 'country_code' => 'ES'], ['name' => 'Janossomorja', 'country_code' => 'HU'], ['name' => 'Oulad Amghar', 'country_code' => 'MA'], ['name' => 'Bensley', 'country_code' => 'US'], ['name' => 'Hordle', 'country_code' => 'GB'], ['name' => 'Mesquita', 'country_code' => 'BR'], ['name' => 'Shrewsbury', 'country_code' => 'US'], ['name' => 'Adlington', 'country_code' => 'GB'], ['name' => 'Madalena', 'country_code' => 'PT'], ['name' => 'Riedenburg', 'country_code' => 'DE'], ['name' => 'Villemur-sur-Tarn', 'country_code' => 'FR'], ['name' => 'Alpine', 'country_code' => 'US'], ['name' => 'Lindau', 'country_code' => 'CH'], ['name' => 'Meriel', 'country_code' => 'FR'], ['name' => 'Harlan', 'country_code' => 'US'], ['name' => 'Ginoza', 'country_code' => 'JP'], ['name' => 'Los Villares', 'country_code' => 'ES'], ['name' => 'Hindon Hill', 'country_code' => 'CA'], ['name' => 'East Ballina', 'country_code' => 'AU'], ['name' => 'Dinguiraye', 'country_code' => 'GN'], ['name' => 'Krume', 'country_code' => 'AL'], ['name' => 'Willard', 'country_code' => 'US'], ['name' => 'Puttershoek', 'country_code' => 'NL'], ['name' => 'Roquefort-la-Bedoule', 'country_code' => 'FR'], ['name' => 'Biloela', 'country_code' => 'AU'], ['name' => 'Hastiere-par-dela', 'country_code' => 'BE'], ['name' => 'Ontario', 'country_code' => 'US'], ['name' => 'Artes', 'country_code' => 'ES'], ['name' => 'Meyreuil', 'country_code' => 'FR'], ['name' => 'Aubignan', 'country_code' => 'FR'], ['name' => 'Pedra Bela', 'country_code' => 'BR'], ['name' => 'Wheelersburg', 'country_code' => 'US'], ['name' => 'Cheshire Village', 'country_code' => 'US'], ['name' => 'Dol-de-Bretagne', 'country_code' => 'FR'], ['name' => 'Albaida', 'country_code' => 'ES'], ['name' => 'Marcellus', 'country_code' => 'US'], ['name' => 'Hurley', 'country_code' => 'US'], ['name' => 'Les Cedres', 'country_code' => 'CA'], ['name' => 'Steinfort', 'country_code' => 'LU'], ['name' => 'Meijel', 'country_code' => 'NL'], ['name' => 'Worragee', 'country_code' => 'AU'], ['name' => 'Montauban-de-Bretagne', 'country_code' => 'FR'], ['name' => 'Vilaboa', 'country_code' => 'ES'], ['name' => 'Sannicola', 'country_code' => 'IT'], ['name' => 'Noves', 'country_code' => 'FR'], ['name' => 'Roye', 'country_code' => 'FR'], ['name' => 'La Broquerie', 'country_code' => 'CA'], ['name' => 'Saint-Mitre-les-Remparts', 'country_code' => 'FR'], ['name' => 'Ahtari', 'country_code' => 'FI'], ['name' => 'Aixe-sur-Vienne', 'country_code' => 'FR'], ['name' => 'Colney Heath', 'country_code' => 'GB'], ['name' => 'Labunista', 'country_code' => 'MK'], ['name' => 'Alezio', 'country_code' => 'IT'], ['name' => 'Ostricourt', 'country_code' => 'FR'], ['name' => 'Verkhniy Avzyan', 'country_code' => 'RU'], ['name' => 'Williams', 'country_code' => 'US'], ['name' => 'Neftenbach', 'country_code' => 'CH'], ['name' => 'Clifton Springs', 'country_code' => 'US'], ['name' => 'Santa Catarina', 'country_code' => 'MX'], ['name' => 'Butjadingen', 'country_code' => 'DE'], ['name' => 'Ceriale', 'country_code' => 'IT'], ['name' => 'Nova Olinda', 'country_code' => 'BR'], ['name' => 'Bad Konigshofen im Grabfeld', 'country_code' => 'DE'], ['name' => 'Breitenfurth bei Wien', 'country_code' => 'AT'], ['name' => 'Sebis', 'country_code' => 'RO'], ['name' => 'Merville', 'country_code' => 'FR'], ['name' => 'Mrgashat', 'country_code' => 'AM'], ['name' => 'Guadasuar', 'country_code' => 'ES'], ['name' => 'Sandnessjoen', 'country_code' => 'NO'], ['name' => 'Gozzano', 'country_code' => 'IT'], ['name' => 'Verkh-Tula', 'country_code' => 'RU'], ['name' => 'Chorvatsky Grob', 'country_code' => 'SK'], ['name' => 'South Williamsport', 'country_code' => 'US'], ['name' => 'Westmoreland', 'country_code' => 'US'], ['name' => 'La Wantzenau', 'country_code' => 'FR'], ['name' => 'Chevreuse', 'country_code' => 'FR'], ['name' => 'Allershausen', 'country_code' => 'DE'], ['name' => 'Kent', 'country_code' => 'CA'], ['name' => 'Baltmannsweiler', 'country_code' => 'DE'], ['name' => 'Vilafant', 'country_code' => 'ES'], ['name' => 'Itueta', 'country_code' => 'BR'], ['name' => 'Carcare', 'country_code' => 'IT'], ['name' => 'Munchwilen', 'country_code' => 'CH'], ['name' => 'Uchaly', 'country_code' => 'RU'], ['name' => 'Altafulla', 'country_code' => 'ES'], ['name' => 'Geislingen', 'country_code' => 'DE'], ['name' => 'Ostellato', 'country_code' => 'IT'], ['name' => 'Pacuja', 'country_code' => 'BR'], ['name' => 'Saint-Georges-d Orques', 'country_code' => 'FR'], ['name' => 'Bagnolo Piemonte', 'country_code' => 'IT'], ['name' => 'Campo Alegre de Goias', 'country_code' => 'BR'], ['name' => 'Ulety', 'country_code' => 'RU'], ['name' => 'San Lucido', 'country_code' => 'IT'], ['name' => 'Cirali', 'country_code' => 'TR'], ['name' => 'Waihi', 'country_code' => 'NZ'], ['name' => 'Alban', 'country_code' => 'CO'], ['name' => 'Coloso', 'country_code' => 'CO'], ['name' => 'Monchique', 'country_code' => 'PT'], ['name' => 'Donzere', 'country_code' => 'FR'], ['name' => 'Maurik', 'country_code' => 'NL'], ['name' => 'Bechhofen', 'country_code' => 'DE'], ['name' => 'Bagnolo San Vito', 'country_code' => 'IT'], ['name' => 'Saint-Hilaire-du-Harcouet', 'country_code' => 'FR'], ['name' => 'Sao Vicente', 'country_code' => 'BR'], ['name' => 'Moosinning', 'country_code' => 'DE'], ['name' => 'Zumikon', 'country_code' => 'CH'], ['name' => 'Thalgau', 'country_code' => 'AT'], ['name' => 'Rindge', 'country_code' => 'US'], ['name' => 'Sersheim', 'country_code' => 'DE'], ['name' => 'Divisa Nova', 'country_code' => 'BR'], ['name' => 'Rhuthun', 'country_code' => 'GB'], ['name' => 'Fort Ann', 'country_code' => 'US'], ['name' => 'Arnemuiden', 'country_code' => 'NL'], ['name' => 'Lindfield', 'country_code' => 'GB'], ['name' => 'Askern', 'country_code' => 'GB'], ['name' => 'Ouro Verde de Minas', 'country_code' => 'BR'], ['name' => 'Shihoro', 'country_code' => 'JP'], ['name' => 'Colonia do Gurgueia', 'country_code' => 'BR'], ['name' => 'Nelsonville', 'country_code' => 'US'], ['name' => 'Writtle', 'country_code' => 'GB'], ['name' => 'Kastellaun', 'country_code' => 'DE'], ['name' => 'Obfelden', 'country_code' => 'CH'], ['name' => 'Magdalena Tequisistlan', 'country_code' => 'MX'], ['name' => 'Childress', 'country_code' => 'US'], ['name' => 'Brezoi', 'country_code' => 'RO'], ['name' => 'Lonate Ceppino', 'country_code' => 'IT'], ['name' => 'Staplehurst', 'country_code' => 'GB'], ['name' => 'Bni Abdellah', 'country_code' => 'MA'], ['name' => 'Kotel', 'country_code' => 'BG'], ['name' => 'Kabansk', 'country_code' => 'RU'], ['name' => 'Oraison', 'country_code' => 'FR'], ['name' => 'Deschutes River Woods', 'country_code' => 'US'], ['name' => 'Dover', 'country_code' => 'US'], ['name' => 'Tweed', 'country_code' => 'CA'], ['name' => 'Laufen', 'country_code' => 'CH'], ['name' => 'Brookhaven', 'country_code' => 'US'], ['name' => 'Carrizo Springs', 'country_code' => 'US'], ['name' => 'Totkomlos', 'country_code' => 'HU'], ['name' => 'Maintirano', 'country_code' => 'MG'], ['name' => 'Sanitz', 'country_code' => 'DE'], ['name' => 'Belusa', 'country_code' => 'SK'], ['name' => 'Combourg', 'country_code' => 'FR'], ['name' => 'Wasselonne', 'country_code' => 'FR'], ['name' => 'Lossa', 'country_code' => 'DE'], ['name' => 'Riverside', 'country_code' => 'US'], ['name' => 'Mel', 'country_code' => 'IT'], ['name' => 'Itaguatins', 'country_code' => 'BR'], ['name' => 'Pau D Arco', 'country_code' => 'BR'], ['name' => 'Mishkino', 'country_code' => 'RU'], ['name' => 'Barbourville', 'country_code' => 'US'], ['name' => 'Buttenwiesen', 'country_code' => 'DE'], ['name' => 'Dubasarii Vechi', 'country_code' => 'MD'], ['name' => 'Calvisson', 'country_code' => 'FR'], ['name' => 'Dacono', 'country_code' => 'US'], ['name' => 'Union', 'country_code' => 'US'], ['name' => 'Tapa', 'country_code' => 'EE'], ['name' => 'Chapeu', 'country_code' => 'BR'], ['name' => 'Bagni di Lucca', 'country_code' => 'IT'], ['name' => 'Cartes', 'country_code' => 'ES'], ['name' => 'Saint-Galmier', 'country_code' => 'FR'], ['name' => 'Wilna', 'country_code' => 'US'], ['name' => 'Tea', 'country_code' => 'US'], ['name' => 'Hambrucken', 'country_code' => 'DE'], ['name' => 'Milhaud', 'country_code' => 'FR'], ['name' => 'Rohrdorf', 'country_code' => 'DE'], ['name' => 'Rensselaer', 'country_code' => 'US'], ['name' => 'Saint-Felix-de-Valois', 'country_code' => 'CA'], ['name' => 'Xambre', 'country_code' => 'BR'], ['name' => 'Krasavino', 'country_code' => 'RU'], ['name' => 'Khlevnoye', 'country_code' => 'RU'], ['name' => 'Corsano', 'country_code' => 'IT'], ['name' => 'Penela', 'country_code' => 'PT'], ['name' => 'Bottanuco', 'country_code' => 'IT'], ['name' => 'Beaucourt', 'country_code' => 'FR'], ['name' => 'Deryneia', 'country_code' => 'CY'], ['name' => 'Gualdo Cattaneo', 'country_code' => 'IT'], ['name' => 'Great Warley Street', 'country_code' => 'GB'], ['name' => 'Schlusselfeld', 'country_code' => 'DE'], ['name' => 'La Ferte-Mace', 'country_code' => 'FR'], ['name' => 'Volodarka', 'country_code' => 'UA'], ['name' => 'Billigheim', 'country_code' => 'DE'], ['name' => 'Chepes', 'country_code' => 'AR'], ['name' => 'Timelkam', 'country_code' => 'AT'], ['name' => 'Nove Straseci', 'country_code' => 'CZ'], ['name' => 'Ban Chet Samian', 'country_code' => 'TH'], ['name' => 'Sales', 'country_code' => 'BR'], ['name' => 'Pinehurst', 'country_code' => 'US'], ['name' => 'Finley', 'country_code' => 'US'], ['name' => 'Betania do Piaui', 'country_code' => 'BR'], ['name' => 'Mugeln', 'country_code' => 'DE'], ['name' => 'Darjazin', 'country_code' => 'IR'], ['name' => 'Stoke Mandeville', 'country_code' => 'GB'], ['name' => 'Felipe Guerra', 'country_code' => 'BR'], ['name' => 'Chatham', 'country_code' => 'US'], ['name' => 'Parabel ', 'country_code' => 'RU'], ['name' => 'Seaton Carew', 'country_code' => 'GB'], ['name' => 'Pluak Daeng', 'country_code' => 'TH'], ['name' => 'Pluneret', 'country_code' => 'FR'], ['name' => 'Nerokouros', 'country_code' => 'GR'], ['name' => 'Cumberland', 'country_code' => 'US'], ['name' => 'Montmorillon', 'country_code' => 'FR'], ['name' => 'Douar Tazrout', 'country_code' => 'MA'], ['name' => 'Ra s al Khashufah', 'country_code' => 'SY'], ['name' => 'Querqueville', 'country_code' => 'FR'], ['name' => 'Azovo', 'country_code' => 'RU'], ['name' => 'Aiuruoca', 'country_code' => 'BR'], ['name' => 'Chillicothe', 'country_code' => 'US'], ['name' => 'Bay Roberts', 'country_code' => 'CA'], ['name' => 'La Gorgue', 'country_code' => 'FR'], ['name' => 'Crofton', 'country_code' => 'GB'], ['name' => 'Ascea', 'country_code' => 'IT'], ['name' => 'Hainesport', 'country_code' => 'US'], ['name' => 'Fort Shawnee', 'country_code' => 'US'], ['name' => 'Metropolis', 'country_code' => 'US'], ['name' => 'Oshakan', 'country_code' => 'AM'], ['name' => 'Maquoketa', 'country_code' => 'US'], ['name' => 'Watchung', 'country_code' => 'US'], ['name' => 'Davenport', 'country_code' => 'US'], ['name' => 'Zhongcha', 'country_code' => 'CN'], ['name' => 'Zeeland', 'country_code' => 'NL'], ['name' => 'Los Reyes', 'country_code' => 'MX'], ['name' => 'Godstone', 'country_code' => 'GB'], ['name' => 'Portland', 'country_code' => 'US'], ['name' => 'Williamsburg', 'country_code' => 'US'], ['name' => 'St. Thomas', 'country_code' => 'US'], ['name' => 'Herrnhut', 'country_code' => 'DE'], ['name' => 'Matsuzaki', 'country_code' => 'JP'], ['name' => 'Soligalich', 'country_code' => 'RU'], ['name' => 'Du Quoin', 'country_code' => 'US'], ['name' => 'Rajec', 'country_code' => 'SK'], ['name' => 'Angles', 'country_code' => 'ES'], ['name' => 'Tessalit', 'country_code' => 'ML'], ['name' => 'Baldwin', 'country_code' => 'US'], ['name' => 'Villanova Mondovi', 'country_code' => 'IT'], ['name' => 'Burghfield', 'country_code' => 'GB'], ['name' => 'Bons-en-Chablais', 'country_code' => 'FR'], ['name' => 'Ibiara', 'country_code' => 'BR'], ['name' => 'Karlshuld', 'country_code' => 'DE'], ['name' => 'Blean', 'country_code' => 'GB'], ['name' => 'Amalfi', 'country_code' => 'IT'], ['name' => 'Elburn', 'country_code' => 'US'], ['name' => 'Ashton-Sandy Spring', 'country_code' => 'US'], ['name' => 'Belyayevka', 'country_code' => 'RU'], ['name' => 'Jose da Penha', 'country_code' => 'BR'], ['name' => 'Tarp', 'country_code' => 'DE'], ['name' => 'Hittfeld', 'country_code' => 'DE'], ['name' => 'Hillsborough', 'country_code' => 'US'], ['name' => 'Yukhnov', 'country_code' => 'RU'], ['name' => 'Kingston', 'country_code' => 'US'], ['name' => 'Kvinesdal', 'country_code' => 'NO'], ['name' => 'Santa Albertina', 'country_code' => 'BR'], ['name' => 'Porvenir', 'country_code' => 'CL'], ['name' => 'Coristanco', 'country_code' => 'ES'], ['name' => 'Castelnuovo di Garfagnana', 'country_code' => 'IT'], ['name' => 'Windsor', 'country_code' => 'US'], ['name' => 'Melfort', 'country_code' => 'CA'], ['name' => 'San Dorligo della Valle', 'country_code' => 'IT'], ['name' => 'Villa Bartolomea', 'country_code' => 'IT'], ['name' => 'Coulogne', 'country_code' => 'FR'], ['name' => 'Pinkafeld', 'country_code' => 'AT'], ['name' => 'Upice', 'country_code' => 'CZ'], ['name' => 'Cristalia', 'country_code' => 'BR'], ['name' => 'Bathmen', 'country_code' => 'NL'], ['name' => 'Eastampton', 'country_code' => 'US'], ['name' => 'Wingham', 'country_code' => 'AU'], ['name' => 'Bramley', 'country_code' => 'GB'], ['name' => 'Trebechovice pod Orebem', 'country_code' => 'CZ'], ['name' => 'Stadtoldendorf', 'country_code' => 'DE'], ['name' => 'Almodovar del Campo', 'country_code' => 'ES'], ['name' => 'Homeland Park', 'country_code' => 'US'], ['name' => 'Karaidel', 'country_code' => 'RU'], ['name' => 'Lewistown', 'country_code' => 'US'], ['name' => 'Durham', 'country_code' => 'US'], ['name' => 'Winfield', 'country_code' => 'US'], ['name' => 'Alnashi', 'country_code' => 'RU'], ['name' => 'Bredstedt', 'country_code' => 'DE'], ['name' => 'Wemding', 'country_code' => 'DE'], ['name' => 'Tegernheim', 'country_code' => 'DE'], ['name' => 'Cut Off', 'country_code' => 'US'], ['name' => 'Tapioszele', 'country_code' => 'HU'], ['name' => 'Murca', 'country_code' => 'PT'], ['name' => 'Membrilla', 'country_code' => 'ES'], ['name' => 'Louisville', 'country_code' => 'US'], ['name' => 'Winthrop', 'country_code' => 'US'], ['name' => 'Gannat', 'country_code' => 'FR'], ['name' => 'Bussoleno', 'country_code' => 'IT'], ['name' => 'Northern Cambria', 'country_code' => 'US'], ['name' => 'Camalau', 'country_code' => 'BR'], ['name' => 'Costigliole d Asti', 'country_code' => 'IT'], ['name' => 'Balatonboglar', 'country_code' => 'HU'], ['name' => 'Romentino', 'country_code' => 'IT'], ['name' => 'Rousinov', 'country_code' => 'CZ'], ['name' => 'Bedarieux', 'country_code' => 'FR'], ['name' => 'Pevely', 'country_code' => 'US'], ['name' => 'Sao Pedro de Alcantara', 'country_code' => 'BR'], ['name' => 'South Monroe', 'country_code' => 'US'], ['name' => 'Bourne End', 'country_code' => 'GB'], ['name' => 'Douar Oulad Bou Krae El Fouqani', 'country_code' => 'MA'], ['name' => 'Hungerford', 'country_code' => 'GB'], ['name' => 'Bonnyville', 'country_code' => 'CA'], ['name' => 'Sutamarchan', 'country_code' => 'CO'], ['name' => 'Stornara', 'country_code' => 'IT'], ['name' => 'Fayence', 'country_code' => 'FR'], ['name' => 'Hellam', 'country_code' => 'US'], ['name' => 'Westerburg', 'country_code' => 'DE'], ['name' => 'Velesta', 'country_code' => 'MK'], ['name' => 'Kisanpur', 'country_code' => 'NP'], ['name' => 'Ettingen', 'country_code' => 'CH'], ['name' => 'Robbio', 'country_code' => 'IT'], ['name' => 'Corigliano d Otranto', 'country_code' => 'IT'], ['name' => 'Lagodekhi', 'country_code' => 'GE'], ['name' => 'Gieten', 'country_code' => 'NL'], ['name' => 'Micheldorf in Oberosterreich', 'country_code' => 'AT'], ['name' => 'Kivioli', 'country_code' => 'EE'], ['name' => 'Chinnor', 'country_code' => 'GB'], ['name' => 'Kazimierza Wielka', 'country_code' => 'PL'], ['name' => 'Berhida', 'country_code' => 'HU'], ['name' => 'Jablunkov', 'country_code' => 'CZ'], ['name' => 'North Hills', 'country_code' => 'US'], ['name' => 'Andebu', 'country_code' => 'NO'], ['name' => 'Carbonne', 'country_code' => 'FR'], ['name' => 'Murs-Erigne', 'country_code' => 'FR'], ['name' => 'Novobelokatay', 'country_code' => 'RU'], ['name' => 'Bad Saarow-Pieskow', 'country_code' => 'DE'], ['name' => 'Valga', 'country_code' => 'ES'], ['name' => 'Lakemoor', 'country_code' => 'US'], ['name' => 'Karstadt', 'country_code' => 'DE'], ['name' => 'Guardo', 'country_code' => 'ES'], ['name' => 'Americo de Campos', 'country_code' => 'BR'], ['name' => 'Quincy-Voisins', 'country_code' => 'FR'], ['name' => 'Isen', 'country_code' => 'DE'], ['name' => 'Fatezh', 'country_code' => 'RU'], ['name' => 'Lower Heidelberg', 'country_code' => 'US'], ['name' => 'Trooper', 'country_code' => 'US'], ['name' => 'Vail', 'country_code' => 'US'], ['name' => 'Echzell', 'country_code' => 'DE'], ['name' => 'Zaraysk', 'country_code' => 'RU'], ['name' => 'Lengnau', 'country_code' => 'CH'], ['name' => 'Inniswold', 'country_code' => 'US'], ['name' => 'Peypin', 'country_code' => 'FR'], ['name' => 'Axminster', 'country_code' => 'GB'], ['name' => 'Girifalco', 'country_code' => 'IT'], ['name' => 'Steelton', 'country_code' => 'US'], ['name' => 'Lesparre-Medoc', 'country_code' => 'FR'], ['name' => 'Le Poinconnet', 'country_code' => 'FR'], ['name' => 'Sao Joao de Manteninha', 'country_code' => 'BR'], ['name' => 'Haiterbach', 'country_code' => 'DE'], ['name' => 'Maria Helena', 'country_code' => 'BR'], ['name' => 'Santa Barbara do Rio Pardo', 'country_code' => 'BR'], ['name' => 'Pusztaszabolcs', 'country_code' => 'HU'], ['name' => 'Northville', 'country_code' => 'US'], ['name' => 'Johnson Lane', 'country_code' => 'US'], ['name' => 'Lucerne Valley', 'country_code' => 'US'], ['name' => 'Kao Liao', 'country_code' => 'TH'], ['name' => 'St. Clair', 'country_code' => 'US'], ['name' => 'Ao Luek', 'country_code' => 'TH'], ['name' => 'East Alton', 'country_code' => 'US'], ['name' => 'La Creche', 'country_code' => 'FR'], ['name' => 'Rocky Mount', 'country_code' => 'US'], ['name' => 'Dedoplists q aro', 'country_code' => 'GE'], ['name' => 'San Miguel Panixtlahuaca', 'country_code' => 'MX'], ['name' => 'Desselgem', 'country_code' => 'BE'], ['name' => 'Beniganim', 'country_code' => 'ES'], ['name' => 'Stettler', 'country_code' => 'CA'], ['name' => 'Dionysos', 'country_code' => 'GR'], ['name' => 'Munzenberg', 'country_code' => 'DE'], ['name' => 'Rochlitz', 'country_code' => 'DE'], ['name' => 'Kungsor', 'country_code' => 'SE'], ['name' => 'Vidigueira', 'country_code' => 'PT'], ['name' => 'Sireti', 'country_code' => 'MD'], ['name' => 'Andover', 'country_code' => 'US'], ['name' => 'Eberndorf', 'country_code' => 'AT'], ['name' => 'Modrice', 'country_code' => 'CZ'], ['name' => 'Kozaki', 'country_code' => 'JP'], ['name' => 'Barnhart', 'country_code' => 'US'], ['name' => 'Fruta de Leite', 'country_code' => 'BR'], ['name' => 'Villeneuve', 'country_code' => 'CH'], ['name' => 'Eurajoki', 'country_code' => 'FI'], ['name' => 'Mila Doce', 'country_code' => 'US'], ['name' => 'Hopedale', 'country_code' => 'US'], ['name' => 'Tashtyp', 'country_code' => 'RU'], ['name' => 'Fernandes Pinheiro', 'country_code' => 'BR'], ['name' => 'Waldbrunn', 'country_code' => 'DE'], ['name' => 'New London', 'country_code' => 'US'], ['name' => 'Gowanda', 'country_code' => 'US'], ['name' => 'Shields', 'country_code' => 'US'], ['name' => 'Sharan', 'country_code' => 'RU'], ['name' => 'Shatsk', 'country_code' => 'RU'], ['name' => 'Progreso', 'country_code' => 'US'], ['name' => 'Gray', 'country_code' => 'US'], ['name' => 'Picerno', 'country_code' => 'IT'], ['name' => 'Frasin', 'country_code' => 'RO'], ['name' => 'Westville', 'country_code' => 'US'], ['name' => 'Studley', 'country_code' => 'GB'], ['name' => 'Sterlibashevo', 'country_code' => 'RU'], ['name' => 'Callington', 'country_code' => 'GB'], ['name' => 'Davyd-Haradok', 'country_code' => 'BY'], ['name' => 'Itau', 'country_code' => 'BR'], ['name' => 'Charlestown', 'country_code' => 'US'], ['name' => 'Dechy', 'country_code' => 'FR'], ['name' => 'Yoakum', 'country_code' => 'US'], ['name' => 'Darlington', 'country_code' => 'US'], ['name' => 'Kaba', 'country_code' => 'HU'], ['name' => 'Canale', 'country_code' => 'IT'], ['name' => 'Rodeio Bonito', 'country_code' => 'BR'], ['name' => 'Tinzart', 'country_code' => 'MA'], ['name' => 'Ubarana', 'country_code' => 'BR'], ['name' => 'Waakirchen', 'country_code' => 'DE'], ['name' => 'Ornago', 'country_code' => 'IT'], ['name' => 'Montalcino', 'country_code' => 'IT'], ['name' => 'Wolfach', 'country_code' => 'DE'], ['name' => 'East Preston', 'country_code' => 'GB'], ['name' => 'Raton', 'country_code' => 'US'], ['name' => 'Mojen', 'country_code' => 'IR'], ['name' => 'Al Qutaylibiyah', 'country_code' => 'SY'], ['name' => 'Shefar am', 'country_code' => 'IL'], ['name' => 'Certosa di Pavia', 'country_code' => 'IT'], ['name' => 'Goodrich', 'country_code' => 'US'], ['name' => 'East Hanover', 'country_code' => 'US'], ['name' => 'Psachna', 'country_code' => 'GR'], ['name' => 'Fontenay-Tresigny', 'country_code' => 'FR'], ['name' => 'Ararica', 'country_code' => 'BR'], ['name' => 'Freshwater', 'country_code' => 'GB'], ['name' => 'Morshyn', 'country_code' => 'UA'], ['name' => 'Leongatha', 'country_code' => 'AU'], ['name' => 'Saint-Calixte', 'country_code' => 'CA'], ['name' => 'Longare', 'country_code' => 'IT'], ['name' => 'Campina do Monte Alegre', 'country_code' => 'BR'], ['name' => 'Countryside', 'country_code' => 'US'], ['name' => 'Furiani', 'country_code' => 'FR'], ['name' => 'Xylokastro', 'country_code' => 'GR'], ['name' => 'Sullivan City', 'country_code' => 'US'], ['name' => 'Lac-Megantic', 'country_code' => 'CA'], ['name' => 'Tucunduva', 'country_code' => 'BR'], ['name' => 'Tremp', 'country_code' => 'ES'], ['name' => 'Perth', 'country_code' => 'CA'], ['name' => 'Etalle', 'country_code' => 'BE'], ['name' => 'Mucuchies', 'country_code' => 'VE'], ['name' => 'Loro Ciuffenna', 'country_code' => 'IT'], ['name' => 'Pyrbaum', 'country_code' => 'DE'], ['name' => 'Keswick', 'country_code' => 'GB'], ['name' => 'Paradise', 'country_code' => 'US'], ['name' => 'Leun', 'country_code' => 'DE'], ['name' => 'Hausach', 'country_code' => 'DE'], ['name' => 'Boe', 'country_code' => 'FR'], ['name' => 'Havelte', 'country_code' => 'NL'], ['name' => 'Leiston', 'country_code' => 'GB'], ['name' => 'Blaichach', 'country_code' => 'DE'], ['name' => 'Pagosa Springs', 'country_code' => 'US'], ['name' => 'Santa Maria da Serra', 'country_code' => 'BR'], ['name' => 'Mullica', 'country_code' => 'US'], ['name' => 'Woodcreek', 'country_code' => 'US'], ['name' => 'Surnadal', 'country_code' => 'NO'], ['name' => 'Santa Helena', 'country_code' => 'BR'], ['name' => 'Dettenhausen', 'country_code' => 'DE'], ['name' => 'Logan', 'country_code' => 'US'], ['name' => 'Paula Freitas', 'country_code' => 'BR'], ['name' => 'Dumfries', 'country_code' => 'US'], ['name' => 'Homer', 'country_code' => 'US'], ['name' => 'Oliver Paipoonge', 'country_code' => 'CA'], ['name' => 'Braunlingen', 'country_code' => 'DE'], ['name' => 'Tynec nad Sazavou', 'country_code' => 'CZ'], ['name' => 'Gransee', 'country_code' => 'DE'], ['name' => 'Wesley Hills', 'country_code' => 'US'], ['name' => 'Mineola', 'country_code' => 'US'], ['name' => 'Finderne', 'country_code' => 'US'], ['name' => 'San Donato di Lecce', 'country_code' => 'IT'], ['name' => 'Coqueiro Seco', 'country_code' => 'BR'], ['name' => 'Marennes', 'country_code' => 'FR'], ['name' => 'Zebulon', 'country_code' => 'US'], ['name' => 'Banatski Karlovac', 'country_code' => 'RS'], ['name' => 'Pocking', 'country_code' => 'DE'], ['name' => 'Cresaptown', 'country_code' => 'US'], ['name' => 'Granville', 'country_code' => 'US'], ['name' => 'Akbarabad', 'country_code' => 'IR'], ['name' => 'Kaltennordheim', 'country_code' => 'DE'], ['name' => 'Littleton', 'country_code' => 'US'], ['name' => 'Barra de Sao Miguel', 'country_code' => 'BR'], ['name' => 'Sao Joao do Caiua', 'country_code' => 'BR'], ['name' => 'Ospedaletto Euganeo', 'country_code' => 'IT'], ['name' => 'Palmwoods', 'country_code' => 'AU'], ['name' => 'Staunton', 'country_code' => 'US'], ['name' => 'Taylor', 'country_code' => 'US'], ['name' => 'Roanoke', 'country_code' => 'US'], ['name' => 'Groton', 'country_code' => 'US'], ['name' => 'Vias', 'country_code' => 'FR'], ['name' => 'Greenacres', 'country_code' => 'US'], ['name' => 'Bazarnyye Mataki', 'country_code' => 'RU'], ['name' => 'Chambarak', 'country_code' => 'AM'], ['name' => 'Dunsborough', 'country_code' => 'AU'], ['name' => 'Ruhen', 'country_code' => 'DE'], ['name' => 'Schwarmstedt', 'country_code' => 'DE'], ['name' => 'Le Valdahon', 'country_code' => 'FR'], ['name' => 'Wilnis', 'country_code' => 'NL'], ['name' => 'Kipfenberg', 'country_code' => 'DE'], ['name' => 'El Arba Bouzemmour', 'country_code' => 'MA'], ['name' => 'Alzamay', 'country_code' => 'RU'], ['name' => 'Ubinskoye', 'country_code' => 'RU'], ['name' => 'Luzerne', 'country_code' => 'US'], ['name' => 'Koreiz', 'country_code' => 'UA'], ['name' => 'Ceva', 'country_code' => 'IT'], ['name' => 'Bracigliano', 'country_code' => 'IT'], ['name' => 'Fontanelle', 'country_code' => 'IT'], ['name' => 'Trebes', 'country_code' => 'FR'], ['name' => 'Saint-Memmie', 'country_code' => 'FR'], ['name' => 'Horst', 'country_code' => 'DE'], ['name' => 'Rio Manso', 'country_code' => 'BR'], ['name' => 'Waibstadt', 'country_code' => 'DE'], ['name' => 'Maiori', 'country_code' => 'IT'], ['name' => 'Buyni Qarah', 'country_code' => 'AF'], ['name' => 'Uelsen', 'country_code' => 'DE'], ['name' => 'Turuntayevo', 'country_code' => 'RU'], ['name' => 'Eagleton Village', 'country_code' => 'US'], ['name' => 'Aljezur', 'country_code' => 'PT'], ['name' => 'Selinsgrove', 'country_code' => 'US'], ['name' => 'Tournus', 'country_code' => 'FR'], ['name' => 'Murovani Kurylivtsi', 'country_code' => 'UA'], ['name' => 'Bandeira do Sul', 'country_code' => 'BR'], ['name' => 'Hampstead', 'country_code' => 'US'], ['name' => 'Gataia', 'country_code' => 'RO'], ['name' => 'Schonenberg-Kubelberg', 'country_code' => 'DE'], ['name' => 'Borabue', 'country_code' => 'TH'], ['name' => 'Nasrabad', 'country_code' => 'IR'], ['name' => 'Bagno di Romagna', 'country_code' => 'IT'], ['name' => 'Ozerne', 'country_code' => 'UA'], ['name' => 'Courthezon', 'country_code' => 'FR'], ['name' => 'Aimargues', 'country_code' => 'FR'], ['name' => 'Radenthein', 'country_code' => 'AT'], ['name' => 'Visegrad', 'country_code' => 'BA'], ['name' => 'Rogliano', 'country_code' => 'IT'], ['name' => 'Hermon', 'country_code' => 'US'], ['name' => 'Sweetwater', 'country_code' => 'US'], ['name' => 'Huai Mek', 'country_code' => 'TH'], ['name' => 'Sambuca di Sicilia', 'country_code' => 'IT'], ['name' => 'Old Tappan', 'country_code' => 'US'], ['name' => 'Hebertshausen', 'country_code' => 'DE'], ['name' => 'Willington', 'country_code' => 'US'], ['name' => 'Ober-Morlen', 'country_code' => 'DE'], ['name' => 'Ait Ouakrim', 'country_code' => 'MA'], ['name' => 'Viggiu', 'country_code' => 'IT'], ['name' => 'Mengerskirchen', 'country_code' => 'DE'], ['name' => 'Drighlington', 'country_code' => 'GB'], ['name' => 'Fismes', 'country_code' => 'FR'], ['name' => 'Naturno', 'country_code' => 'IT'], ['name' => 'Lannilis', 'country_code' => 'FR'], ['name' => 'Willard', 'country_code' => 'US'], ['name' => 'Gaurama', 'country_code' => 'BR'], ['name' => 'Los Yebenes', 'country_code' => 'ES'], ['name' => 'Ybbs an der Donau', 'country_code' => 'AT'], ['name' => 'Simiane-Collongue', 'country_code' => 'FR'], ['name' => 'Madisonville', 'country_code' => 'US'], ['name' => 'Loudon', 'country_code' => 'US'], ['name' => 'Slaton', 'country_code' => 'US'], ['name' => 'Buti', 'country_code' => 'IT'], ['name' => 'Frei Gaspar', 'country_code' => 'BR'], ['name' => 'Mouroux', 'country_code' => 'FR'], ['name' => 'Flines-les-Raches', 'country_code' => 'FR'], ['name' => 'Chamberlayne', 'country_code' => 'US'], ['name' => 'Irymple', 'country_code' => 'AU'], ['name' => 'Uttenreuth', 'country_code' => 'DE'], ['name' => 'Aragominas', 'country_code' => 'BR'], ['name' => 'Santa Luz', 'country_code' => 'BR'], ['name' => 'Weischlitz', 'country_code' => 'DE'], ['name' => 'Montezuma', 'country_code' => 'US'], ['name' => 'Dulliken', 'country_code' => 'CH'], ['name' => 'Vargarda', 'country_code' => 'SE'], ['name' => 'Biesenthal', 'country_code' => 'DE'], ['name' => 'Sollies-Toucas', 'country_code' => 'FR'], ['name' => 'Port-la-Nouvelle', 'country_code' => 'FR'], ['name' => 'Massanetta Springs', 'country_code' => 'US'], ['name' => 'Lovere', 'country_code' => 'IT'], ['name' => 'Briey', 'country_code' => 'FR'], ['name' => 'Bryukhovychi', 'country_code' => 'UA'], ['name' => 'Gustine', 'country_code' => 'US'], ['name' => 'Wellesbourne Hastings', 'country_code' => 'GB'], ['name' => 'Erquinghem-Lys', 'country_code' => 'FR'], ['name' => 'Alhama de Granada', 'country_code' => 'ES'], ['name' => 'Gattatico', 'country_code' => 'IT'], ['name' => 'Korocha', 'country_code' => 'RU'], ['name' => 'Moeiwadi', 'country_code' => 'TH'], ['name' => 'Poltar', 'country_code' => 'SK'], ['name' => 'Mezokovacshaza', 'country_code' => 'HU'], ['name' => 'San Juan Numi', 'country_code' => 'MX'], ['name' => 'Nolanville', 'country_code' => 'US'], ['name' => 'Tittmoning', 'country_code' => 'DE'], ['name' => 'Mindyak', 'country_code' => 'RU'], ['name' => 'Dierdorf', 'country_code' => 'DE'], ['name' => 'Speichersdorf', 'country_code' => 'DE'], ['name' => 'Boulay-Moselle', 'country_code' => 'FR'], ['name' => 'Pliening', 'country_code' => 'DE'], ['name' => 'Rottach-Egern', 'country_code' => 'DE'], ['name' => 'Poloni', 'country_code' => 'BR'], ['name' => 'Constantina', 'country_code' => 'ES'], ['name' => 'Argamasilla de Calatrava', 'country_code' => 'ES'], ['name' => 'Windcrest', 'country_code' => 'US'], ['name' => 'Spring Ridge', 'country_code' => 'US'], ['name' => 'Phachi', 'country_code' => 'TH'], ['name' => 'Paternion', 'country_code' => 'AT'], ['name' => 'Otranto', 'country_code' => 'IT'], ['name' => 'Brookville', 'country_code' => 'US'], ['name' => 'Abtenau', 'country_code' => 'AT'], ['name' => 'Marlow Heights', 'country_code' => 'US'], ['name' => 'Ighil', 'country_code' => 'MA'], ['name' => 'Wormhout', 'country_code' => 'FR'], ['name' => 'Hagenbach', 'country_code' => 'DE'], ['name' => 'Al Mulayhah al Gharbiyah', 'country_code' => 'SY'], ['name' => 'Campagnola Emilia', 'country_code' => 'IT'], ['name' => 'Busalla', 'country_code' => 'IT'], ['name' => 'Turpin Hills', 'country_code' => 'US'], ['name' => 'Wirges', 'country_code' => 'DE'], ['name' => 'Castelverde', 'country_code' => 'IT'], ['name' => 'Luling', 'country_code' => 'US'], ['name' => 'Humboldt', 'country_code' => 'CA'], ['name' => 'Camporosso', 'country_code' => 'IT'], ['name' => 'Mereni', 'country_code' => 'MD'], ['name' => 'Ernee', 'country_code' => 'FR'], ['name' => 'Mikomeseng', 'country_code' => 'GQ'], ['name' => 'Le Puy-Sainte-Reparade', 'country_code' => 'FR'], ['name' => 'Tahitofalu', 'country_code' => 'HU'], ['name' => 'Azatan', 'country_code' => 'AM'], ['name' => 'Amersid', 'country_code' => 'MA'], ['name' => 'Vilppula', 'country_code' => 'FI'], ['name' => 'Martlesham', 'country_code' => 'GB'], ['name' => 'Glendale', 'country_code' => 'US'], ['name' => 'Hutchins', 'country_code' => 'US'], ['name' => 'Chester', 'country_code' => 'US'], ['name' => 'Furstenberg', 'country_code' => 'DE'], ['name' => 'Cortina d Ampezzo', 'country_code' => 'IT'], ['name' => 'Vilanova de la Roca', 'country_code' => 'ES'], ['name' => 'Belton', 'country_code' => 'US'], ['name' => 'Margate City', 'country_code' => 'US'], ['name' => 'Posen', 'country_code' => 'US'], ['name' => 'Delvine', 'country_code' => 'AL'], ['name' => 'Dowagiac', 'country_code' => 'US'], ['name' => 'Alma', 'country_code' => 'US'], ['name' => 'Dompierre-sur-Mer', 'country_code' => 'FR'], ['name' => 'La Chevroliere', 'country_code' => 'FR'], ['name' => ' Assal al Ward', 'country_code' => 'SY'], ['name' => 'Nieuwe Pekela', 'country_code' => 'NL'], ['name' => 'Chlumec nad Cidlinou', 'country_code' => 'CZ'], ['name' => 'Las Flores', 'country_code' => 'US'], ['name' => 'Birnbach', 'country_code' => 'DE'], ['name' => 'Vereide', 'country_code' => 'NO'], ['name' => 'Grebenstein', 'country_code' => 'DE'], ['name' => 'Franklin Center', 'country_code' => 'US'], ['name' => 'Angera', 'country_code' => 'IT'], ['name' => 'Sobralia', 'country_code' => 'BR'], ['name' => 'Saint-Denis-de-Pile', 'country_code' => 'FR'], ['name' => 'Rosendale', 'country_code' => 'US'], ['name' => 'Algaida', 'country_code' => 'ES'], ['name' => 'Viarmes', 'country_code' => 'FR'], ['name' => 'Helsa', 'country_code' => 'DE'], ['name' => 'Dawran ad Daydah', 'country_code' => 'YE'], ['name' => 'Weidenberg', 'country_code' => 'DE'], ['name' => 'Cilavegna', 'country_code' => 'IT'], ['name' => 'La Chapelle-Basse-Mer', 'country_code' => 'FR'], ['name' => 'Paulsboro', 'country_code' => 'US'], ['name' => 'Alandroal', 'country_code' => 'PT'], ['name' => 'Bohain-en-Vermandois', 'country_code' => 'FR'], ['name' => 'Martonvasar', 'country_code' => 'HU'], ['name' => 'New Martinsville', 'country_code' => 'US'], ['name' => 'Breese', 'country_code' => 'US'], ['name' => 'Verkhovyna', 'country_code' => 'UA'], ['name' => 'Red Cliffs', 'country_code' => 'AU'], ['name' => 'Mount Arlington', 'country_code' => 'US'], ['name' => 'Neubulach', 'country_code' => 'DE'], ['name' => 'Botley', 'country_code' => 'GB'], ['name' => 'Old Fig Garden', 'country_code' => 'US'], ['name' => 'Pontiac', 'country_code' => 'CA'], ['name' => 'Silver Lakes', 'country_code' => 'US'], ['name' => 'Arnage', 'country_code' => 'FR'], ['name' => 'Gracho Cardoso', 'country_code' => 'BR'], ['name' => 'Tacherting', 'country_code' => 'DE'], ['name' => 'Ross', 'country_code' => 'US'], ['name' => 'Sluknov', 'country_code' => 'CZ'], ['name' => 'Calvi', 'country_code' => 'FR'], ['name' => 'Cumnor', 'country_code' => 'GB'], ['name' => 'Harris Hill', 'country_code' => 'US'], ['name' => 'Carterville', 'country_code' => 'US'], ['name' => 'Orchard Homes', 'country_code' => 'US'], ['name' => 'Celra', 'country_code' => 'ES'], ['name' => 'Buochs', 'country_code' => 'CH'], ['name' => 'Haimhausen', 'country_code' => 'DE'], ['name' => 'Kartal', 'country_code' => 'HU'], ['name' => 'Saint-Georges-de-Didonne', 'country_code' => 'FR'], ['name' => 'Esquivias', 'country_code' => 'ES'], ['name' => 'Yakoruda', 'country_code' => 'BG'], ['name' => 'La Selva', 'country_code' => 'ES'], ['name' => 'Littlefield', 'country_code' => 'US'], ['name' => 'Paterna de Rivera', 'country_code' => 'ES'], ['name' => 'Sidi Harazem', 'country_code' => 'MA'], ['name' => 'Willow Park', 'country_code' => 'US'], ['name' => 'Dello', 'country_code' => 'IT'], ['name' => 'Hartwell', 'country_code' => 'US'], ['name' => 'Villa del Conte', 'country_code' => 'IT'], ['name' => 'Saint-Pierre-d Irube', 'country_code' => 'FR'], ['name' => 'Shintoku', 'country_code' => 'JP'], ['name' => 'Hambergen', 'country_code' => 'DE'], ['name' => 'Woodcliff Lake', 'country_code' => 'US'], ['name' => 'Rijsbergen', 'country_code' => 'NL'], ['name' => 'Cave Creek', 'country_code' => 'US'], ['name' => 'Seon', 'country_code' => 'CH'], ['name' => 'Chelsea', 'country_code' => 'US'], ['name' => 'Wusterhausen', 'country_code' => 'DE'], ['name' => 'San Secondo Parmense', 'country_code' => 'IT'], ['name' => 'Roseland', 'country_code' => 'US'], ['name' => 'Babenhausen', 'country_code' => 'DE'], ['name' => 'Glina', 'country_code' => 'RO'], ['name' => 'Wallers', 'country_code' => 'FR'], ['name' => 'Aroazes', 'country_code' => 'BR'], ['name' => 'Ohira', 'country_code' => 'JP'], ['name' => 'Langquaid', 'country_code' => 'DE'], ['name' => 'Brescello', 'country_code' => 'IT'], ['name' => 'Gossolengo', 'country_code' => 'IT'], ['name' => 'Sauvian', 'country_code' => 'FR'], ['name' => 'Grotte', 'country_code' => 'IT'], ['name' => 'Saint-Cannat', 'country_code' => 'FR'], ['name' => 'Greenwood', 'country_code' => 'US'], ['name' => 'Yeles', 'country_code' => 'ES'], ['name' => 'Jaszfenyszaru', 'country_code' => 'HU'], ['name' => 'Filyro', 'country_code' => 'GR'], ['name' => 'Moosic', 'country_code' => 'US'], ['name' => 'Tancoco', 'country_code' => 'MX'], ['name' => 'Guines', 'country_code' => 'FR'], ['name' => 'Potcoava', 'country_code' => 'RO'], ['name' => 'Melicucco', 'country_code' => 'IT'], ['name' => 'Les Avenieres', 'country_code' => 'FR'], ['name' => 'Alfacar', 'country_code' => 'ES'], ['name' => 'Fontevivo', 'country_code' => 'IT'], ['name' => 'Hellertown', 'country_code' => 'US'], ['name' => 'South Hooksett', 'country_code' => 'US'], ['name' => 'Cancello', 'country_code' => 'IT'], ['name' => 'Aragatsavan', 'country_code' => 'AM'], ['name' => 'Guagnano', 'country_code' => 'IT'], ['name' => 'Berne', 'country_code' => 'US'], ['name' => 'West Clarkston-Highland', 'country_code' => 'US'], ['name' => 'Houlton', 'country_code' => 'US'], ['name' => 'Bni Hadifa', 'country_code' => 'MA'], ['name' => 'Chagny', 'country_code' => 'FR'], ['name' => 'Orjiva', 'country_code' => 'ES'], ['name' => 'St. Paul', 'country_code' => 'CA'], ['name' => 'Chernihivka', 'country_code' => 'UA'], ['name' => 'Arkhangelskoye', 'country_code' => 'RU'], ['name' => 'Palmanova', 'country_code' => 'IT'], ['name' => 'Fenouillet', 'country_code' => 'FR'], ['name' => 'Dasing', 'country_code' => 'DE'], ['name' => 'Tuglie', 'country_code' => 'IT'], ['name' => 'Eschau', 'country_code' => 'FR'], ['name' => 'Poshekhonye', 'country_code' => 'RU'], ['name' => 'Baar-Ebenhausen', 'country_code' => 'DE'], ['name' => 'Thalheim bei Wels', 'country_code' => 'AT'], ['name' => 'Sibbesse', 'country_code' => 'DE'], ['name' => 'Tatsugo', 'country_code' => 'JP'], ['name' => 'Eldorado at Santa Fe', 'country_code' => 'US'], ['name' => 'Firmino Alves', 'country_code' => 'BR'], ['name' => 'Vayk', 'country_code' => 'AM'], ['name' => 'Villanova d Asti', 'country_code' => 'IT'], ['name' => 'Schwarzheide', 'country_code' => 'DE'], ['name' => 'Ferriere-la-Grande', 'country_code' => 'FR'], ['name' => 'Kremasti', 'country_code' => 'GR'], ['name' => 'Kameno', 'country_code' => 'BG'], ['name' => 'Ouderkerk aan den IJssel', 'country_code' => 'NL'], ['name' => 'Senhora de Oliveira', 'country_code' => 'BR'], ['name' => 'Mattydale', 'country_code' => 'US'], ['name' => 'Wilson', 'country_code' => 'US'], ['name' => 'Sertaneja', 'country_code' => 'BR'], ['name' => 'Itaverava', 'country_code' => 'BR'], ['name' => 'Fuzesgyarmat', 'country_code' => 'HU'], ['name' => 'Szecseny', 'country_code' => 'HU'], ['name' => 'Harvest', 'country_code' => 'US'], ['name' => 'Audruicq', 'country_code' => 'FR'], ['name' => 'Balerno', 'country_code' => 'GB'], ['name' => 'Aylsham', 'country_code' => 'GB'], ['name' => 'Lebanon', 'country_code' => 'US'], ['name' => 'Non Sila', 'country_code' => 'TH'], ['name' => 'Chatuzange-le-Goubet', 'country_code' => 'FR'], ['name' => 'Phayuha Khiri', 'country_code' => 'TH'], ['name' => 'Brookshire', 'country_code' => 'US'], ['name' => 'Bright', 'country_code' => 'US'], ['name' => 'Gray', 'country_code' => 'FR'], ['name' => 'Chauchina', 'country_code' => 'ES'], ['name' => 'Sausheim', 'country_code' => 'FR'], ['name' => 'Arce', 'country_code' => 'IT'], ['name' => 'Montrond-les-Bains', 'country_code' => 'FR'], ['name' => 'Volo', 'country_code' => 'US'], ['name' => 'Ramblewood', 'country_code' => 'US'], ['name' => 'Tewksbury', 'country_code' => 'US'], ['name' => 'Plouay', 'country_code' => 'FR'], ['name' => 'Arroyo de la Luz', 'country_code' => 'ES'], ['name' => 'Serra de Sao Bento', 'country_code' => 'BR'], ['name' => 'Kippenheim', 'country_code' => 'DE'], ['name' => 'Riolo Terme', 'country_code' => 'IT'], ['name' => 'Wittichenau', 'country_code' => 'DE'], ['name' => 'Leopoldsdorf', 'country_code' => 'AT'], ['name' => 'Lake Mohegan', 'country_code' => 'US'], ['name' => 'Orleans', 'country_code' => 'US'], ['name' => 'Jilemnice', 'country_code' => 'CZ'], ['name' => 'Rocca di Neto', 'country_code' => 'IT'], ['name' => 'Fischamend', 'country_code' => 'AT'], ['name' => 'Cambria', 'country_code' => 'US'], ['name' => 'Beardstown', 'country_code' => 'US'], ['name' => 'Manasquan', 'country_code' => 'US'], ['name' => 'Sala Baganza', 'country_code' => 'IT'], ['name' => 'Nagyhalasz', 'country_code' => 'HU'], ['name' => 'Woodstock', 'country_code' => 'US'], ['name' => 'Liberato Salzano', 'country_code' => 'BR'], ['name' => 'Veselynove', 'country_code' => 'UA'], ['name' => 'San Paolo di Civitate', 'country_code' => 'IT'], ['name' => 'Walenstadt', 'country_code' => 'CH'], ['name' => 'Aschau im Chiemgau', 'country_code' => 'DE'], ['name' => 'Marianna', 'country_code' => 'US'], ['name' => 'Trest ', 'country_code' => 'CZ'], ['name' => 'Moravsky Krumlov', 'country_code' => 'CZ'], ['name' => 'Schliengen', 'country_code' => 'DE'], ['name' => 'Markfield', 'country_code' => 'GB'], ['name' => 'Pont-Eveque', 'country_code' => 'FR'], ['name' => 'Britania', 'country_code' => 'BR'], ['name' => 'Semeac', 'country_code' => 'FR'], ['name' => 'West Bountiful', 'country_code' => 'US'], ['name' => 'Fellsmere', 'country_code' => 'US'], ['name' => 'Mondorf-les-Bains', 'country_code' => 'LU'], ['name' => 'Lyndon', 'country_code' => 'US'], ['name' => 'Wernberg', 'country_code' => 'AT'], ['name' => 'Oscadnica', 'country_code' => 'SK'], ['name' => 'Gorebridge', 'country_code' => 'GB'], ['name' => 'Castuera', 'country_code' => 'ES'], ['name' => 'Svaty Jur', 'country_code' => 'SK'], ['name' => 'Hrebinky', 'country_code' => 'UA'], ['name' => 'Selkirk', 'country_code' => 'GB'], ['name' => 'Tomislavgrad', 'country_code' => 'BA'], ['name' => 'Ban Bang Tabun', 'country_code' => 'TH'], ['name' => 'Schrozberg', 'country_code' => 'DE'], ['name' => 'Mount Zion', 'country_code' => 'US'], ['name' => 'Piedmont', 'country_code' => 'US'], ['name' => 'Casaleone', 'country_code' => 'IT'], ['name' => 'Fernando Prestes', 'country_code' => 'BR'], ['name' => 'Turi', 'country_code' => 'EE'], ['name' => 'Norwood', 'country_code' => 'US'], ['name' => 'China', 'country_code' => 'JP'], ['name' => 'Riachos', 'country_code' => 'PT'], ['name' => 'Santa Barbara', 'country_code' => 'BR'], ['name' => 'Patterson', 'country_code' => 'US'], ['name' => 'Dosrius', 'country_code' => 'ES'], ['name' => 'Debesy', 'country_code' => 'RU'], ['name' => 'Villa Park', 'country_code' => 'US'], ['name' => 'Novaya Mayna', 'country_code' => 'RU'], ['name' => 'Dobrovelychkivka', 'country_code' => 'UA'], ['name' => 'Tupper Lake', 'country_code' => 'US'], ['name' => 'Sveio', 'country_code' => 'NO'], ['name' => 'Belogradchik', 'country_code' => 'BG'], ['name' => 'Severiano Melo', 'country_code' => 'BR'], ['name' => 'San Giorgio Piacentino', 'country_code' => 'IT'], ['name' => 'Vadso', 'country_code' => 'NO'], ['name' => 'Lyubeshiv', 'country_code' => 'UA'], ['name' => 'Mouy', 'country_code' => 'FR'], ['name' => 'Rudna', 'country_code' => 'CZ'], ['name' => 'Highgrove', 'country_code' => 'US'], ['name' => 'The Village of Indian Hill', 'country_code' => 'US'], ['name' => 'Solidao', 'country_code' => 'BR'], ['name' => 'Sudzha', 'country_code' => 'RU'], ['name' => 'Wangen bei Olten', 'country_code' => 'CH'], ['name' => 'Turner', 'country_code' => 'US'], ['name' => 'Markt Erlbach', 'country_code' => 'DE'], ['name' => 'Conley', 'country_code' => 'US'], ['name' => 'Little Silver', 'country_code' => 'US'], ['name' => 'Jahnsdorf', 'country_code' => 'DE'], ['name' => 'Slobozia Mare', 'country_code' => 'MD'], ['name' => 'Edna', 'country_code' => 'US'], ['name' => 'Peoria Heights', 'country_code' => 'US'], ['name' => 'Dunboyne', 'country_code' => 'IE'], ['name' => 'Llerena', 'country_code' => 'ES'], ['name' => 'Cestica', 'country_code' => 'HR'], ['name' => 'Montehermoso', 'country_code' => 'ES'], ['name' => 'Hilton', 'country_code' => 'US'], ['name' => 'Sewickley', 'country_code' => 'US'], ['name' => 'Eschede', 'country_code' => 'DE'], ['name' => 'Dyshne-Vedeno', 'country_code' => 'RU'], ['name' => 'Meymeh', 'country_code' => 'IR'], ['name' => 'Granite Shoals', 'country_code' => 'US'], ['name' => 'Palmview', 'country_code' => 'US'], ['name' => 'Fountainhead-Orchard Hills', 'country_code' => 'US'], ['name' => 'La Guancha', 'country_code' => 'ES'], ['name' => 'Stavern', 'country_code' => 'NO'], ['name' => 'Calumbi', 'country_code' => 'BR'], ['name' => 'Eaton', 'country_code' => 'US'], ['name' => 'Cambria', 'country_code' => 'US'], ['name' => 'Vetovo', 'country_code' => 'BG'], ['name' => 'Domsod', 'country_code' => 'HU'], ['name' => 'Gas City', 'country_code' => 'US'], ['name' => 'Brownfields', 'country_code' => 'US'], ['name' => 'San Hilario Sacalm', 'country_code' => 'ES'], ['name' => 'Trivero', 'country_code' => 'IT'], ['name' => 'Attalla', 'country_code' => 'US'], ['name' => 'Belding', 'country_code' => 'US'], ['name' => 'Bannockburn', 'country_code' => 'AU'], ['name' => 'Le Boulou', 'country_code' => 'FR'], ['name' => 'Crafton', 'country_code' => 'US'], ['name' => 'Harris', 'country_code' => 'US'], ['name' => 'Washingtonville', 'country_code' => 'US'], ['name' => 'Suolahti', 'country_code' => 'FI'], ['name' => 'Brush', 'country_code' => 'US'], ['name' => 'Chiaravalle Centrale', 'country_code' => 'IT'], ['name' => 'Jaramataia', 'country_code' => 'BR'], ['name' => 'Patrocinio do Muriae', 'country_code' => 'BR'], ['name' => 'Ajdir', 'country_code' => 'MA'], ['name' => 'Huelma', 'country_code' => 'ES'], ['name' => 'Wartenberg', 'country_code' => 'DE'], ['name' => 'Tamsweg', 'country_code' => 'AT'], ['name' => 'Dobsina', 'country_code' => 'SK'], ['name' => 'Piacatu', 'country_code' => 'BR'], ['name' => 'Ait el Farsi', 'country_code' => 'MA'], ['name' => 'Trenton', 'country_code' => 'US'], ['name' => 'Fort Lee', 'country_code' => 'US'], ['name' => 'Oak Point', 'country_code' => 'US'], ['name' => 'West Modesto', 'country_code' => 'US'], ['name' => 'Kampong Rimba', 'country_code' => 'BN'], ['name' => 'Torreblanca', 'country_code' => 'ES'], ['name' => 'Dickson City', 'country_code' => 'US'], ['name' => 'Medina de Pomar', 'country_code' => 'ES'], ['name' => 'Romont', 'country_code' => 'CH'], ['name' => 'Coroados', 'country_code' => 'BR'], ['name' => 'El Aargub', 'country_code' => 'MA'], ['name' => 'Vergeze', 'country_code' => 'FR'], ['name' => 'Oulad Zarrad', 'country_code' => 'MA'], ['name' => 'Arafo', 'country_code' => 'ES'], ['name' => 'Viana do Alentejo', 'country_code' => 'PT'], ['name' => 'Arienzo', 'country_code' => 'IT'], ['name' => 'Grossschirma', 'country_code' => 'DE'], ['name' => 'Takamori', 'country_code' => 'JP'], ['name' => 'Valer', 'country_code' => 'NO'], ['name' => 'Negrepelisse', 'country_code' => 'FR'], ['name' => 'Tres Fronteiras', 'country_code' => 'BR'], ['name' => 'Saint-Martin-de-Seignanx', 'country_code' => 'FR'], ['name' => 'Elena', 'country_code' => 'BG'], ['name' => 'Ribadesella', 'country_code' => 'ES'], ['name' => 'Hilmar-Irwin', 'country_code' => 'US'], ['name' => 'Violet', 'country_code' => 'US'], ['name' => 'Mendham', 'country_code' => 'US'], ['name' => 'Lansdowne', 'country_code' => 'IN'], ['name' => 'Szada', 'country_code' => 'HU'], ['name' => 'Bodenwerder', 'country_code' => 'DE'], ['name' => 'Brunnthal', 'country_code' => 'DE'], ['name' => 'Davoli', 'country_code' => 'IT'], ['name' => 'Rabastens', 'country_code' => 'FR'], ['name' => 'White Rock', 'country_code' => 'US'], ['name' => 'Sao Domingos das Dores', 'country_code' => 'BR'], ['name' => 'Flanders', 'country_code' => 'US'], ['name' => 'Findlay', 'country_code' => 'US'], ['name' => 'Fischbachau', 'country_code' => 'DE'], ['name' => 'Schattdorf', 'country_code' => 'CH'], ['name' => 'Tiefenbronn', 'country_code' => 'DE'], ['name' => 'Bagshot', 'country_code' => 'GB'], ['name' => 'Onagawa', 'country_code' => 'JP'], ['name' => 'Hanstedt', 'country_code' => 'DE'], ['name' => 'Sansom Park', 'country_code' => 'US'], ['name' => 'Nocera Umbra', 'country_code' => 'IT'], ['name' => 'North Manchester', 'country_code' => 'US'], ['name' => 'Asbury', 'country_code' => 'US'], ['name' => 'Riedering', 'country_code' => 'DE'], ['name' => 'Bascharage', 'country_code' => 'LU'], ['name' => 'Fort Wright', 'country_code' => 'US'], ['name' => 'Marsannay-la-Cote', 'country_code' => 'FR'], ['name' => 'Sancraiu de Mures', 'country_code' => 'RO'], ['name' => 'Traben-Trarbach', 'country_code' => 'DE'], ['name' => 'Melk', 'country_code' => 'AT'], ['name' => 'Rancho Murieta', 'country_code' => 'US'], ['name' => 'Niederorschel', 'country_code' => 'DE'], ['name' => 'Hosszupalyi', 'country_code' => 'HU'], ['name' => 'Tichla', 'country_code' => 'MA'], ['name' => 'Bergheim', 'country_code' => 'AT'], ['name' => 'Pong', 'country_code' => 'TH'], ['name' => 'Lee', 'country_code' => 'US'], ['name' => 'Petrolia', 'country_code' => 'CA'], ['name' => 'Alkhazurovo', 'country_code' => 'RU'], ['name' => 'Ebbs', 'country_code' => 'AT'], ['name' => 'Elbridge', 'country_code' => 'US'], ['name' => 'West Yarmouth', 'country_code' => 'US'], ['name' => 'Ensues-la-Redonne', 'country_code' => 'FR'], ['name' => 'Aldeamayor de San Martin', 'country_code' => 'ES'], ['name' => 'Eglisau', 'country_code' => 'CH'], ['name' => 'Lomnice nad Popelkou', 'country_code' => 'CZ'], ['name' => 'Alaro', 'country_code' => 'ES'], ['name' => 'Warrenton', 'country_code' => 'US'], ['name' => 'Coublevie', 'country_code' => 'FR'], ['name' => 'Sao Nicolau', 'country_code' => 'BR'], ['name' => 'Decazeville', 'country_code' => 'FR'], ['name' => 'Sinton', 'country_code' => 'US'], ['name' => 'New Gloucester', 'country_code' => 'US'], ['name' => 'Pyrford', 'country_code' => 'GB'], ['name' => 'Geltendorf', 'country_code' => 'DE'], ['name' => 'Kapustin Yar', 'country_code' => 'RU'], ['name' => 'East Rockhill', 'country_code' => 'US'], ['name' => 'Bannalec', 'country_code' => 'FR'], ['name' => 'Veredinha', 'country_code' => 'BR'], ['name' => 'Fair Haven', 'country_code' => 'US'], ['name' => 'Fabens', 'country_code' => 'US'], ['name' => 'Erdmannhausen', 'country_code' => 'DE'], ['name' => 'Wernberg-Koblitz', 'country_code' => 'DE'], ['name' => 'Pavia di Udine', 'country_code' => 'IT'], ['name' => 'Lee Acres', 'country_code' => 'US'], ['name' => 'Moulins-les-Metz', 'country_code' => 'FR'], ['name' => 'Zsambek', 'country_code' => 'HU'], ['name' => 'Dagmersellen', 'country_code' => 'CH'], ['name' => 'Oleiros', 'country_code' => 'PT'], ['name' => 'Pomarance', 'country_code' => 'IT'], ['name' => 'Naples Park', 'country_code' => 'US'], ['name' => 'Luzerna', 'country_code' => 'BR'], ['name' => 'Uncia', 'country_code' => 'BO'], ['name' => 'Benton', 'country_code' => 'US'], ['name' => 'Blairstown', 'country_code' => 'US'], ['name' => 'Roquemaure', 'country_code' => 'FR'], ['name' => 'Zubri', 'country_code' => 'CZ'], ['name' => 'Botzingen', 'country_code' => 'DE'], ['name' => 'Wasungen', 'country_code' => 'DE'], ['name' => 'Diamante', 'country_code' => 'IT'], ['name' => 'Tat', 'country_code' => 'HU'], ['name' => 'Nord-Fron', 'country_code' => 'NO'], ['name' => 'Fort Washington', 'country_code' => 'US'], ['name' => 'Celanova', 'country_code' => 'ES'], ['name' => 'Ambazac', 'country_code' => 'FR'], ['name' => 'Crosspointe', 'country_code' => 'US'], ['name' => 'Thayngen', 'country_code' => 'CH'], ['name' => 'Sennwald', 'country_code' => 'CH'], ['name' => 'Pato Bragado', 'country_code' => 'BR'], ['name' => 'Volney', 'country_code' => 'US'], ['name' => 'Chale', 'country_code' => 'BR'], ['name' => 'Piding', 'country_code' => 'DE'], ['name' => 'Gugark', 'country_code' => 'AM'], ['name' => 'Longswamp', 'country_code' => 'US'], ['name' => 'Ait Ban', 'country_code' => 'MA'], ['name' => 'Lorinci', 'country_code' => 'HU'], ['name' => 'Santa Ernestina', 'country_code' => 'BR'], ['name' => 'Chitaraque', 'country_code' => 'CO'], ['name' => 'Southwest Middlesex', 'country_code' => 'CA'], ['name' => 'Montpon-Menesterol', 'country_code' => 'FR'], ['name' => 'Bol shaya Kudara', 'country_code' => 'RU'], ['name' => 'Guaimbe', 'country_code' => 'BR'], ['name' => 'Vitkov', 'country_code' => 'CZ'], ['name' => 'Oceanport', 'country_code' => 'US'], ['name' => 'Hjarup', 'country_code' => 'SE'], ['name' => 'Lammi', 'country_code' => 'FI'], ['name' => 'South Haven', 'country_code' => 'US'], ['name' => 'Paola', 'country_code' => 'US'], ['name' => 'Rumford', 'country_code' => 'US'], ['name' => 'Velence', 'country_code' => 'HU'], ['name' => 'Wessling', 'country_code' => 'DE'], ['name' => 'Monroeville', 'country_code' => 'US'], ['name' => 'Cividate al Piano', 'country_code' => 'IT'], ['name' => 'Gergebil', 'country_code' => 'RU'], ['name' => 'Zapata', 'country_code' => 'US'], ['name' => 'San Andres Huayapam', 'country_code' => 'MX'], ['name' => 'Briec', 'country_code' => 'FR'], ['name' => 'Mezocsat', 'country_code' => 'HU'], ['name' => 'Genzano di Lucania', 'country_code' => 'IT'], ['name' => 'Vladimiro-Aleksandrovskoye', 'country_code' => 'RU'], ['name' => 'Union', 'country_code' => 'US'], ['name' => 'Grafton', 'country_code' => 'US'], ['name' => 'Gabicce', 'country_code' => 'IT'], ['name' => 'Rio Pinar', 'country_code' => 'US'], ['name' => 'Tubo', 'country_code' => 'PH'], ['name' => 'Passignano sul Trasimeno', 'country_code' => 'IT'], ['name' => 'La Cadiere-d Azur', 'country_code' => 'FR'], ['name' => 'Hopfgarten im Brixental', 'country_code' => 'AT'], ['name' => 'Grabow', 'country_code' => 'DE'], ['name' => 'Trevignano Romano', 'country_code' => 'IT'], ['name' => 'Ulysses', 'country_code' => 'US'], ['name' => 'New Boston', 'country_code' => 'US'], ['name' => 'Ilava', 'country_code' => 'SK'], ['name' => 'Primorsk', 'country_code' => 'RU'], ['name' => 'Mengjiazhuang', 'country_code' => 'CN'], ['name' => 'Ondres', 'country_code' => 'FR'], ['name' => 'Front of Yonge', 'country_code' => 'CA'], ['name' => 'Montepaone', 'country_code' => 'IT'], ['name' => 'Kunovice', 'country_code' => 'CZ'], ['name' => 'Saratoga', 'country_code' => 'US'], ['name' => 'Santa Rita do Itueto', 'country_code' => 'BR'], ['name' => 'Sillingy', 'country_code' => 'FR'], ['name' => 'Genlis', 'country_code' => 'FR'], ['name' => 'Malta', 'country_code' => 'BR'], ['name' => 'Claverack', 'country_code' => 'US'], ['name' => 'Dripping Springs', 'country_code' => 'US'], ['name' => 'Vegreville', 'country_code' => 'CA'], ['name' => 'Saint-Laurent-de-Mure', 'country_code' => 'FR'], ['name' => 'Wareham', 'country_code' => 'GB'], ['name' => 'Grafton', 'country_code' => 'US'], ['name' => 'Highland', 'country_code' => 'US'], ['name' => 'Douglass Hills', 'country_code' => 'US'], ['name' => 'Bystrice', 'country_code' => 'CZ'], ['name' => 'Lamspringe', 'country_code' => 'DE'], ['name' => 'Jones', 'country_code' => 'PH'], ['name' => 'Spring Grove', 'country_code' => 'US'], ['name' => 'Woods Creek', 'country_code' => 'US'], ['name' => 'Casalserugo', 'country_code' => 'IT'], ['name' => 'Gan', 'country_code' => 'FR'], ['name' => 'Reichshoffen', 'country_code' => 'FR'], ['name' => 'Hirschau', 'country_code' => 'DE'], ['name' => 'Prado del Rey', 'country_code' => 'ES'], ['name' => 'Laie', 'country_code' => 'US'], ['name' => 'Barguzin', 'country_code' => 'RU'], ['name' => 'Cedro de Sao Joao', 'country_code' => 'BR'], ['name' => 'Kembs', 'country_code' => 'FR'], ['name' => 'Belle Fourche', 'country_code' => 'US'], ['name' => 'Chickasaw', 'country_code' => 'US'], ['name' => 'Nazareth', 'country_code' => 'US'], ['name' => 'Allendorf', 'country_code' => 'DE'], ['name' => 'Pouzauges', 'country_code' => 'FR'], ['name' => 'Barabash', 'country_code' => 'RU'], ['name' => 'Sontheim an der Brenz', 'country_code' => 'DE'], ['name' => 'Mugnano del Cardinale', 'country_code' => 'IT'], ['name' => 'Turiys k', 'country_code' => 'UA'], ['name' => 'Elmwood', 'country_code' => 'US'], ['name' => 'Munderkingen', 'country_code' => 'DE'], ['name' => 'Ylistaro', 'country_code' => 'FI'], ['name' => 'Sainte-Brigitte-de-Laval', 'country_code' => 'CA'], ['name' => 'Saint-Pierre-les-Nemours', 'country_code' => 'FR'], ['name' => 'Konolfingen Dorf', 'country_code' => 'CH'], ['name' => 'Grossschonau', 'country_code' => 'DE'], ['name' => 'Divilaca', 'country_code' => 'PH'], ['name' => 'Mezzocorona', 'country_code' => 'IT'], ['name' => 'Shatrovo', 'country_code' => 'RU'], ['name' => 'Penamacor', 'country_code' => 'PT'], ['name' => 'Dniprovske', 'country_code' => 'UA'], ['name' => 'Babak', 'country_code' => 'AZ'], ['name' => 'La Cenia', 'country_code' => 'ES'], ['name' => 'Vercheres', 'country_code' => 'CA'], ['name' => 'Apice', 'country_code' => 'IT'], ['name' => 'Oleksandriiske', 'country_code' => 'UA'], ['name' => 'Hopkinton', 'country_code' => 'US'], ['name' => 'Bobov Dol', 'country_code' => 'BG'], ['name' => 'Marchwood', 'country_code' => 'GB'], ['name' => 'Westenschouwen', 'country_code' => 'NL'], ['name' => 'The Pas', 'country_code' => 'CA'], ['name' => 'Duffield', 'country_code' => 'GB'], ['name' => 'Wrightsville', 'country_code' => 'US'], ['name' => 'Linglestown', 'country_code' => 'US'], ['name' => 'Sigean', 'country_code' => 'FR'], ['name' => 'Hamanaka-sakuraminami', 'country_code' => 'JP'], ['name' => 'Dalen', 'country_code' => 'NL'], ['name' => 'Saint-Cesaire', 'country_code' => 'CA'], ['name' => 'Nuits-Saint-Georges', 'country_code' => 'FR'], ['name' => 'Les Essarts', 'country_code' => 'FR'], ['name' => 'Satteldorf', 'country_code' => 'DE'], ['name' => 'Rottendorf', 'country_code' => 'DE'], ['name' => 'Ruhla', 'country_code' => 'DE'], ['name' => 'Caldeirao Grande', 'country_code' => 'BR'], ['name' => 'Leutershausen', 'country_code' => 'DE'], ['name' => 'Igersheim', 'country_code' => 'DE'], ['name' => 'Nakkila', 'country_code' => 'FI'], ['name' => 'Cocalinho', 'country_code' => 'BR'], ['name' => 'Glenbrook', 'country_code' => 'AU'], ['name' => 'San Tammaro', 'country_code' => 'IT'], ['name' => 'Bacurituba', 'country_code' => 'BR'], ['name' => 'Virgolandia', 'country_code' => 'BR'], ['name' => 'Saint-Gervais-les-Bains', 'country_code' => 'FR'], ['name' => 'Panicale', 'country_code' => 'IT'], ['name' => 'Marsico Vetere', 'country_code' => 'IT'], ['name' => 'Prum', 'country_code' => 'DE'], ['name' => 'Grangetown', 'country_code' => 'GB'], ['name' => 'Topolovgrad', 'country_code' => 'BG'], ['name' => 'Princeton', 'country_code' => 'US'], ['name' => 'Tafadna', 'country_code' => 'MA'], ['name' => 'Gavrilov Posad', 'country_code' => 'RU'], ['name' => 'Nunchritz', 'country_code' => 'DE'], ['name' => 'Borderes-sur-l Echez', 'country_code' => 'FR'], ['name' => 'Alianca do Tocantins', 'country_code' => 'BR'], ['name' => 'Ebensfeld', 'country_code' => 'DE'], ['name' => 'Quistello', 'country_code' => 'IT'], ['name' => 'Hollidaysburg', 'country_code' => 'US'], ['name' => 'Loughman', 'country_code' => 'US'], ['name' => 'Manchester', 'country_code' => 'US'], ['name' => 'Dove Valley', 'country_code' => 'US'], ['name' => 'Manzariyeh', 'country_code' => 'IR'], ['name' => 'Sigayevo', 'country_code' => 'RU'], ['name' => 'Bad Boll', 'country_code' => 'DE'], ['name' => 'Tellico Village', 'country_code' => 'US'], ['name' => 'La Ronge', 'country_code' => 'CA'], ['name' => 'Narjeh', 'country_code' => 'IR'], ['name' => 'Belin-Beliet', 'country_code' => 'FR'], ['name' => 'Kelso', 'country_code' => 'GB'], ['name' => 'Casoli', 'country_code' => 'IT'], ['name' => 'Himmelpforten', 'country_code' => 'DE'], ['name' => 'Arradon', 'country_code' => 'FR'], ['name' => 'Stolpen', 'country_code' => 'DE'], ['name' => 'Cupra Marittima', 'country_code' => 'IT'], ['name' => 'Perobal', 'country_code' => 'BR'], ['name' => 'Saint-Martin-d Uriage', 'country_code' => 'FR'], ['name' => 'Sao Jose do Goiabal', 'country_code' => 'BR'], ['name' => 'Zermatt', 'country_code' => 'CH'], ['name' => 'Estherville', 'country_code' => 'US'], ['name' => 'Philomath', 'country_code' => 'US'], ['name' => 'Greenbrier', 'country_code' => 'US'], ['name' => 'Wilton', 'country_code' => 'US'], ['name' => 'Tay Valley', 'country_code' => 'CA'], ['name' => 'Jonquieres', 'country_code' => 'FR'], ['name' => 'Mechra-Hommadi', 'country_code' => 'MA'], ['name' => 'Butgenbach', 'country_code' => 'BE'], ['name' => 'Mathis', 'country_code' => 'US'], ['name' => 'Vadul lui Voda', 'country_code' => 'MD'], ['name' => 'Villa Huidobro', 'country_code' => 'AR'], ['name' => 'Salteras', 'country_code' => 'ES'], ['name' => 'Dietenhofen', 'country_code' => 'DE'], ['name' => 'Hartford City', 'country_code' => 'US'], ['name' => 'Wayne', 'country_code' => 'US'], ['name' => 'Santa Marta de Ortigueira', 'country_code' => 'ES'], ['name' => 'Zeithain', 'country_code' => 'DE'], ['name' => 'Moglia', 'country_code' => 'IT'], ['name' => 'Sasbach', 'country_code' => 'DE'], ['name' => 'Springfield', 'country_code' => 'US'], ['name' => 'Barrolandia', 'country_code' => 'BR'], ['name' => 'Paradise', 'country_code' => 'US'], ['name' => 'Montefalco', 'country_code' => 'IT'], ['name' => 'Myshkin', 'country_code' => 'RU'], ['name' => 'Oberammergau', 'country_code' => 'DE'], ['name' => 'Eastwood', 'country_code' => 'US'], ['name' => 'Bruckberg', 'country_code' => 'DE'], ['name' => 'Sarcedo', 'country_code' => 'IT'], ['name' => 'La Roque-d Antheron', 'country_code' => 'FR'], ['name' => 'Sannazzaro de Burgondi', 'country_code' => 'IT'], ['name' => 'Subkhankulovo', 'country_code' => 'RU'], ['name' => 'Miercurea Nirajului', 'country_code' => 'RO'], ['name' => 'Richmond', 'country_code' => 'US'], ['name' => 'Gardiner', 'country_code' => 'US'], ['name' => 'Wilmington', 'country_code' => 'US'], ['name' => 'Pranchita', 'country_code' => 'BR'], ['name' => 'Puhoi', 'country_code' => 'MD'], ['name' => 'Vohl', 'country_code' => 'DE'], ['name' => 'Paoli', 'country_code' => 'US'], ['name' => 'Schwertberg', 'country_code' => 'AT'], ['name' => 'Custonaci', 'country_code' => 'IT'], ['name' => 'Elsbethen', 'country_code' => 'AT'], ['name' => 'Zipacon', 'country_code' => 'CO'], ['name' => 'Povegliano', 'country_code' => 'IT'], ['name' => 'Haag', 'country_code' => 'AT'], ['name' => 'Jemaat Moul Blad', 'country_code' => 'MA'], ['name' => 'Domburg', 'country_code' => 'SR'], ['name' => 'Longton', 'country_code' => 'GB'], ['name' => 'Neuenkirchen', 'country_code' => 'DE'], ['name' => 'Chubar', 'country_code' => 'IR'], ['name' => 'Taiuva', 'country_code' => 'BR'], ['name' => 'Telgate', 'country_code' => 'IT'], ['name' => 'Gareoult', 'country_code' => 'FR'], ['name' => 'Nederhorst den Berg', 'country_code' => 'NL'], ['name' => 'San Sebastian del Oeste', 'country_code' => 'MX'], ['name' => 'Starke', 'country_code' => 'US'], ['name' => 'East Flat Rock', 'country_code' => 'US'], ['name' => 'Dandridge', 'country_code' => 'US'], ['name' => 'Cambria', 'country_code' => 'US'], ['name' => 'Lambres-les-Douai', 'country_code' => 'FR'], ['name' => 'Gadebusch', 'country_code' => 'DE'], ['name' => 'Corydon', 'country_code' => 'US'], ['name' => 'Chonchi', 'country_code' => 'CL'], ['name' => 'Nueva-Carteya', 'country_code' => 'ES'], ['name' => 'Huejucar', 'country_code' => 'MX'], ['name' => 'Aiffres', 'country_code' => 'FR'], ['name' => 'Kolitzheim', 'country_code' => 'DE'], ['name' => 'Upper Pottsgrove', 'country_code' => 'US'], ['name' => 'Peveragno', 'country_code' => 'IT'], ['name' => 'Poncarale', 'country_code' => 'IT'], ['name' => 'Couto de Magalhaes', 'country_code' => 'BR'], ['name' => 'Fulnek', 'country_code' => 'CZ'], ['name' => 'Straznice', 'country_code' => 'CZ'], ['name' => 'Pontoon Beach', 'country_code' => 'US'], ['name' => 'Ban Krang', 'country_code' => 'TH'], ['name' => 'Porreras', 'country_code' => 'ES'], ['name' => 'Boretto', 'country_code' => 'IT'], ['name' => 'Adams', 'country_code' => 'US'], ['name' => 'Oye-Plage', 'country_code' => 'FR'], ['name' => 'Borgo San Giacomo', 'country_code' => 'IT'], ['name' => 'Rakova', 'country_code' => 'SK'], ['name' => 'Ventabren', 'country_code' => 'FR'], ['name' => 'Champlain', 'country_code' => 'US'], ['name' => 'Byron', 'country_code' => 'US'], ['name' => 'South Bruce', 'country_code' => 'CA'], ['name' => 'Wyndmoor', 'country_code' => 'US'], ['name' => 'Caiazzo', 'country_code' => 'IT'], ['name' => 'Samsula-Spruce Creek', 'country_code' => 'US'], ['name' => 'Zephyrhills South', 'country_code' => 'US'], ['name' => 'Unkel', 'country_code' => 'DE'], ['name' => 'Bohmenkirch', 'country_code' => 'DE'], ['name' => 'Goiandira', 'country_code' => 'BR'], ['name' => 'Etoile-sur-Rhone', 'country_code' => 'FR'], ['name' => 'Kangasniemi', 'country_code' => 'FI'], ['name' => 'Bang Sai', 'country_code' => 'TH'], ['name' => 'Lakehills', 'country_code' => 'US'], ['name' => 'Kosmonosy', 'country_code' => 'CZ'], ['name' => 'Elstree', 'country_code' => 'GB'], ['name' => 'Dymer', 'country_code' => 'UA'], ['name' => 'Taquarivai', 'country_code' => 'BR'], ['name' => 'Beni Ounif', 'country_code' => 'DZ'], ['name' => 'Alva', 'country_code' => 'US'], ['name' => 'Atarjea', 'country_code' => 'MX'], ['name' => 'Hotton', 'country_code' => 'BE'], ['name' => 'Campinas do Piaui', 'country_code' => 'BR'], ['name' => 'Milton', 'country_code' => 'US'], ['name' => 'Onrus', 'country_code' => 'ZA'], ['name' => 'Spielberg bei Knittelfeld', 'country_code' => 'AT'], ['name' => 'Oreland', 'country_code' => 'US'], ['name' => 'Abenberg', 'country_code' => 'DE'], ['name' => 'Corguinho', 'country_code' => 'BR'], ['name' => 'Mellrichstadt', 'country_code' => 'DE'], ['name' => 'Mugardos', 'country_code' => 'ES'], ['name' => 'Ellrich', 'country_code' => 'DE'], ['name' => 'Root', 'country_code' => 'CH'], ['name' => 'Frantiskovy Lazne', 'country_code' => 'CZ'], ['name' => 'Wright', 'country_code' => 'US'], ['name' => 'Riga', 'country_code' => 'US'], ['name' => 'Groveport', 'country_code' => 'US'], ['name' => 'Olivarez', 'country_code' => 'US'], ['name' => 'Willow Springs', 'country_code' => 'US'], ['name' => 'Bentivoglio', 'country_code' => 'IT'], ['name' => 'Waidhofen an der Thaya', 'country_code' => 'AT'], ['name' => 'Chazelles-sur-Lyon', 'country_code' => 'FR'], ['name' => 'Cana Verde', 'country_code' => 'BR'], ['name' => 'Gardiner', 'country_code' => 'US'], ['name' => 'Forino', 'country_code' => 'IT'], ['name' => 'Neuville-de-Poitou', 'country_code' => 'FR'], ['name' => 'Hradec nad Moravici', 'country_code' => 'CZ'], ['name' => 'Chudniv', 'country_code' => 'UA'], ['name' => 'Strazhitsa', 'country_code' => 'BG'], ['name' => 'Izsak', 'country_code' => 'HU'], ['name' => 'Giebelstadt', 'country_code' => 'DE'], ['name' => 'Neilston', 'country_code' => 'GB'], ['name' => 'Beratzhausen', 'country_code' => 'DE'], ['name' => 'Attert', 'country_code' => 'BE'], ['name' => 'McMasterville', 'country_code' => 'CA'], ['name' => 'Botricello', 'country_code' => 'IT'], ['name' => 'Sovere', 'country_code' => 'IT'], ['name' => 'Vel ky Saris', 'country_code' => 'SK'], ['name' => 'Sao Cristovao do Sul', 'country_code' => 'BR'], ['name' => 'West Pennsboro', 'country_code' => 'US'], ['name' => 'Ochtendung', 'country_code' => 'DE'], ['name' => 'Copsa Mica', 'country_code' => 'RO'], ['name' => 'Savyntsi', 'country_code' => 'UA'], ['name' => 'Broshniv-Osada', 'country_code' => 'UA'], ['name' => 'Schoppenstedt', 'country_code' => 'DE'], ['name' => 'Pittstown', 'country_code' => 'US'], ['name' => 'Klyuchevka', 'country_code' => 'KG'], ['name' => 'Starobaltachevo', 'country_code' => 'RU'], ['name' => 'Ostseebad Binz', 'country_code' => 'DE'], ['name' => 'Jonesborough', 'country_code' => 'US'], ['name' => 'Glattfelden', 'country_code' => 'CH'], ['name' => 'Harburg', 'country_code' => 'DE'], ['name' => 'Lenzing', 'country_code' => 'AT'], ['name' => 'Kingstree', 'country_code' => 'US'], ['name' => 'Anna', 'country_code' => 'US'], ['name' => 'Lake Delton', 'country_code' => 'US'], ['name' => 'Dayton', 'country_code' => 'US'], ['name' => 'Cottleville', 'country_code' => 'US'], ['name' => 'Bowling Green', 'country_code' => 'US'], ['name' => 'Le Barp', 'country_code' => 'FR'], ['name' => 'Ille-sur-Tet', 'country_code' => 'FR'], ['name' => 'Ispra', 'country_code' => 'IT'], ['name' => 'Geveze', 'country_code' => 'FR'], ['name' => 'Blaine', 'country_code' => 'US'], ['name' => 'Guenfouda', 'country_code' => 'MA'], ['name' => 'Wyke Regis', 'country_code' => 'GB'], ['name' => 'Dicomano', 'country_code' => 'IT'], ['name' => 'Oberkotzau', 'country_code' => 'DE'], ['name' => 'Lackland AFB', 'country_code' => 'US'], ['name' => 'Elverta', 'country_code' => 'US'], ['name' => 'Kemnath', 'country_code' => 'DE'], ['name' => 'Macael', 'country_code' => 'ES'], ['name' => 'Cavour', 'country_code' => 'IT'], ['name' => 'Mansfield', 'country_code' => 'US'], ['name' => 'San Cipirello', 'country_code' => 'IT'], ['name' => 'Rusk', 'country_code' => 'US'], ['name' => 'Kirkwood', 'country_code' => 'US'], ['name' => 'Kibale', 'country_code' => 'UG'], ['name' => 'Novoyegor yevskoye', 'country_code' => 'RU'], ['name' => 'Leacock', 'country_code' => 'US'], ['name' => 'Valence', 'country_code' => 'FR'], ['name' => 'Soleto', 'country_code' => 'IT'], ['name' => 'Redcliff', 'country_code' => 'CA'], ['name' => 'Barra do Chapeu', 'country_code' => 'BR'], ['name' => 'Smithfield Heights', 'country_code' => 'AU'], ['name' => 'Affing', 'country_code' => 'DE'], ['name' => 'Castiglione dei Pepoli', 'country_code' => 'IT'], ['name' => 'Ingelfingen', 'country_code' => 'DE'], ['name' => 'Galliera', 'country_code' => 'IT'], ['name' => 'Hohenwestedt', 'country_code' => 'DE'], ['name' => 'Dhar Souk', 'country_code' => 'MA'], ['name' => 'Puente Caldelas', 'country_code' => 'ES'], ['name' => 'Linton', 'country_code' => 'US'], ['name' => 'Aquino', 'country_code' => 'IT'], ['name' => 'Richland', 'country_code' => 'US'], ['name' => 'Alambari', 'country_code' => 'BR'], ['name' => 'Hartford', 'country_code' => 'GB'], ['name' => 'Cravolandia', 'country_code' => 'BR'], ['name' => 'Korishe', 'country_code' => 'XK'], ['name' => 'Semmes', 'country_code' => 'US'], ['name' => 'General Carneiro', 'country_code' => 'BR'], ['name' => 'Pannal', 'country_code' => 'GB'], ['name' => 'Caiana', 'country_code' => 'BR'], ['name' => 'Xoxocotla', 'country_code' => 'MX'], ['name' => 'Glashutten', 'country_code' => 'DE'], ['name' => 'Benejuzar', 'country_code' => 'ES'], ['name' => 'Waldmohr', 'country_code' => 'DE'], ['name' => 'Wilhermsdorf', 'country_code' => 'DE'], ['name' => 'Gmund', 'country_code' => 'AT'], ['name' => 'Palmview South', 'country_code' => 'US'], ['name' => 'Honesdale', 'country_code' => 'US'], ['name' => 'Poland', 'country_code' => 'US'], ['name' => 'Sao Pedro do Suacui', 'country_code' => 'BR'], ['name' => 'Zilair', 'country_code' => 'RU'], ['name' => 'Onguday', 'country_code' => 'RU'], ['name' => 'Warren', 'country_code' => 'US'], ['name' => 'Contulmo', 'country_code' => 'CL'], ['name' => 'Torchiarolo', 'country_code' => 'IT'], ['name' => 'Lipcani', 'country_code' => 'MD'], ['name' => 'Aginskoye', 'country_code' => 'RU'], ['name' => 'Codogne', 'country_code' => 'IT'], ['name' => 'Pedro Vicente Maldonado', 'country_code' => 'EC'], ['name' => 'Poysdorf', 'country_code' => 'AT'], ['name' => 'Amphawa', 'country_code' => 'TH'], ['name' => 'Tonganoxie', 'country_code' => 'US'], ['name' => 'Saint-Cheron', 'country_code' => 'FR'], ['name' => 'Bergrheinfeld', 'country_code' => 'DE'], ['name' => 'Souppes-sur-Loing', 'country_code' => 'FR'], ['name' => 'Dargaville', 'country_code' => 'NZ'], ['name' => 'Maralik', 'country_code' => 'AM'], ['name' => 'Marlin', 'country_code' => 'US'], ['name' => 'Oxford', 'country_code' => 'US'], ['name' => 'Tynset', 'country_code' => 'NO'], ['name' => 'Saint-Astier', 'country_code' => 'FR'], ['name' => 'Rochester', 'country_code' => 'US'], ['name' => 'San Vito Chietino', 'country_code' => 'IT'], ['name' => 'Islip Terrace', 'country_code' => 'US'], ['name' => 'Anghiari', 'country_code' => 'IT'], ['name' => 'Bessemer City', 'country_code' => 'US'], ['name' => 'Aguiar', 'country_code' => 'BR'], ['name' => 'Drebkau', 'country_code' => 'DE'], ['name' => 'Romelandia', 'country_code' => 'BR'], ['name' => 'Gandino', 'country_code' => 'IT'], ['name' => 'Mulsanne', 'country_code' => 'FR'], ['name' => 'Siesta Key', 'country_code' => 'US'], ['name' => 'Beaucouze', 'country_code' => 'FR'], ['name' => 'Barbing', 'country_code' => 'DE'], ['name' => 'Wegscheid', 'country_code' => 'DE'], ['name' => 'Zakamenne', 'country_code' => 'SK'], ['name' => 'Nueil-les-Aubiers', 'country_code' => 'FR'], ['name' => 'Tomashpil', 'country_code' => 'UA'], ['name' => 'New Carlisle', 'country_code' => 'US'], ['name' => 'Kumhausen', 'country_code' => 'DE'], ['name' => 'Povoletto', 'country_code' => 'IT'], ['name' => 'Aubigny-sur-Nere', 'country_code' => 'FR'], ['name' => 'Deba', 'country_code' => 'ES'], ['name' => 'Deggingen', 'country_code' => 'DE'], ['name' => 'Ploumagoar', 'country_code' => 'FR'], ['name' => 'Slinger', 'country_code' => 'US'], ['name' => 'Aceuchal', 'country_code' => 'ES'], ['name' => 'Bowling', 'country_code' => 'GB'], ['name' => 'Dayr al Bukht', 'country_code' => 'SY'], ['name' => 'Mali', 'country_code' => 'GN'], ['name' => 'Schonau am Konigssee', 'country_code' => 'DE'], ['name' => 'Cochem', 'country_code' => 'DE'], ['name' => 'Kerimaki', 'country_code' => 'FI'], ['name' => 'Feusisberg', 'country_code' => 'CH'], ['name' => 'Stochov', 'country_code' => 'CZ'], ['name' => 'Korop', 'country_code' => 'UA'], ['name' => 'Lake Bluff', 'country_code' => 'US'], ['name' => 'Waterford', 'country_code' => 'US'], ['name' => 'Boxborough', 'country_code' => 'US'], ['name' => 'Caiua', 'country_code' => 'BR'], ['name' => 'Cavallermaggiore', 'country_code' => 'IT'], ['name' => 'Presidente Bernardes', 'country_code' => 'BR'], ['name' => 'Frankenmuth', 'country_code' => 'US'], ['name' => 'Eureka', 'country_code' => 'US'], ['name' => 'Balsfjord', 'country_code' => 'NO'], ['name' => 'Guxhagen', 'country_code' => 'DE'], ['name' => 'Nova Borova', 'country_code' => 'UA'], ['name' => 'Stroudsburg', 'country_code' => 'US'], ['name' => 'Duquesne', 'country_code' => 'US'], ['name' => 'Preston', 'country_code' => 'US'], ['name' => 'Malax', 'country_code' => 'FI'], ['name' => 'Otterberg', 'country_code' => 'DE'], ['name' => 'Villanueva', 'country_code' => 'CO'], ['name' => 'Ertingen', 'country_code' => 'DE'], ['name' => 'Inga', 'country_code' => 'FI'], ['name' => 'Tracyton', 'country_code' => 'US'], ['name' => 'Champagne-sur-Oise', 'country_code' => 'FR'], ['name' => 'Conceicao do Para', 'country_code' => 'BR'], ['name' => 'Cancale', 'country_code' => 'FR'], ['name' => 'San Nicolas Tolentino', 'country_code' => 'MX'], ['name' => 'Nashville', 'country_code' => 'US'], ['name' => 'Leadville', 'country_code' => 'US'], ['name' => 'Battonya', 'country_code' => 'HU'], ['name' => 'Brebieres', 'country_code' => 'FR'], ['name' => 'Seelow', 'country_code' => 'DE'], ['name' => 'Vila do Porto', 'country_code' => 'PT'], ['name' => 'Darkush', 'country_code' => 'SY'], ['name' => 'Heiningen', 'country_code' => 'DE'], ['name' => 'Commercy', 'country_code' => 'FR'], ['name' => 'Dabancheng', 'country_code' => 'CN'], ['name' => 'Japi', 'country_code' => 'BR'], ['name' => 'Egling', 'country_code' => 'DE'], ['name' => 'Ceiba', 'country_code' => 'PR'], ['name' => 'Espenau', 'country_code' => 'DE'], ['name' => 'Meckesheim', 'country_code' => 'DE'], ['name' => 'Berryville', 'country_code' => 'US'], ['name' => 'Vinita', 'country_code' => 'US'], ['name' => 'Arjona', 'country_code' => 'ES'], ['name' => 'Neviano', 'country_code' => 'IT'], ['name' => 'Saint-Privat-des-Vieux', 'country_code' => 'FR'], ['name' => 'Algodonales', 'country_code' => 'ES'], ['name' => 'Hubynykha', 'country_code' => 'UA'], ['name' => 'Altenkunstadt', 'country_code' => 'DE'], ['name' => 'Tidenham', 'country_code' => 'GB'], ['name' => 'Siatista', 'country_code' => 'GR'], ['name' => 'Otyniia', 'country_code' => 'UA'], ['name' => 'Sao Jorge do Ivai', 'country_code' => 'BR'], ['name' => 'Connell', 'country_code' => 'US'], ['name' => 'Buckner', 'country_code' => 'US'], ['name' => 'Itaara', 'country_code' => 'BR'], ['name' => 'Sarina', 'country_code' => 'AU'], ['name' => 'Taylorsville', 'country_code' => 'US'], ['name' => 'Glencoe', 'country_code' => 'US'], ['name' => 'Wappingers Falls', 'country_code' => 'US'], ['name' => 'Lake Park', 'country_code' => 'US'], ['name' => 'Ada', 'country_code' => 'US'], ['name' => 'Bento Fernandes', 'country_code' => 'BR'], ['name' => 'Renswoude', 'country_code' => 'NL'], ['name' => 'Drusenheim', 'country_code' => 'FR'], ['name' => 'Lohra', 'country_code' => 'DE'], ['name' => 'Exeter', 'country_code' => 'US'], ['name' => 'Grand-Champ', 'country_code' => 'FR'], ['name' => 'Rondinha', 'country_code' => 'BR'], ['name' => 'Shalazhi', 'country_code' => 'RU'], ['name' => 'Hidden Valley Lake', 'country_code' => 'US'], ['name' => 'Barre', 'country_code' => 'US'], ['name' => 'Waterville', 'country_code' => 'US'], ['name' => 'Piolenc', 'country_code' => 'FR'], ['name' => 'Canzo', 'country_code' => 'IT'], ['name' => 'Kae Dam', 'country_code' => 'TH'], ['name' => 'Waimanalo', 'country_code' => 'US'], ['name' => 'Lendak', 'country_code' => 'SK'], ['name' => 'Anamosa', 'country_code' => 'US'], ['name' => 'Golega', 'country_code' => 'PT'], ['name' => 'Zeeland', 'country_code' => 'US'], ['name' => 'Forest', 'country_code' => 'US'], ['name' => 'Favria', 'country_code' => 'IT'], ['name' => 'Cotronei', 'country_code' => 'IT'], ['name' => 'Loudon', 'country_code' => 'US'], ['name' => 'Pelham Manor', 'country_code' => 'US'], ['name' => 'Monticello', 'country_code' => 'US'], ['name' => 'Nedryhayliv', 'country_code' => 'UA'], ['name' => 'Coronel Ezequiel', 'country_code' => 'BR'], ['name' => 'Guaraci', 'country_code' => 'BR'], ['name' => 'Amagi', 'country_code' => 'JP'], ['name' => 'Colorado City', 'country_code' => 'US'], ['name' => 'Weldon Spring', 'country_code' => 'US'], ['name' => 'Montemiletto', 'country_code' => 'IT'], ['name' => 'Jestetten', 'country_code' => 'DE'], ['name' => 'Stara Syniava', 'country_code' => 'UA'], ['name' => 'San Ciprian de Vinas', 'country_code' => 'ES'], ['name' => 'Kannus', 'country_code' => 'FI'], ['name' => 'Casariche', 'country_code' => 'ES'], ['name' => 'Hidden Valley', 'country_code' => 'US'], ['name' => 'Hachirougata', 'country_code' => 'JP'], ['name' => 'Cap Malheureux', 'country_code' => 'MU'], ['name' => 'Chiquiza', 'country_code' => 'CO'], ['name' => 'Lieboch', 'country_code' => 'AT'], ['name' => 'Falcon Heights', 'country_code' => 'US'], ['name' => 'Ore', 'country_code' => 'GB'], ['name' => 'Feres', 'country_code' => 'GR'], ['name' => 'Lichk', 'country_code' => 'AM'], ['name' => 'Campinas do Sul', 'country_code' => 'BR'], ['name' => 'Strawberry', 'country_code' => 'US'], ['name' => 'South Huntingdon', 'country_code' => 'US'], ['name' => 'Incourt', 'country_code' => 'BE'], ['name' => 'Machadinho', 'country_code' => 'BR'], ['name' => 'Estenfeld', 'country_code' => 'DE'], ['name' => 'Atlanta', 'country_code' => 'US'], ['name' => 'Obrigheim', 'country_code' => 'DE'], ['name' => 'Saint Legier-La Chiesaz', 'country_code' => 'CH'], ['name' => 'Zschorlau', 'country_code' => 'DE'], ['name' => 'Horni Slavkov', 'country_code' => 'CZ'], ['name' => 'Warthausen', 'country_code' => 'DE'], ['name' => 'Weiser', 'country_code' => 'US'], ['name' => 'Yosemite Lakes', 'country_code' => 'US'], ['name' => 'Ambleve', 'country_code' => 'BE'], ['name' => 'Erlenbach', 'country_code' => 'DE'], ['name' => 'Kirchdorf am Inn', 'country_code' => 'DE'], ['name' => 'Barnard Castle', 'country_code' => 'GB'], ['name' => 'Harrietstown', 'country_code' => 'US'], ['name' => 'Hopewell', 'country_code' => 'US'], ['name' => 'Nassogne', 'country_code' => 'BE'], ['name' => 'San Benito', 'country_code' => 'PH'], ['name' => 'Trilport', 'country_code' => 'FR'], ['name' => 'Brejinho de Nazare', 'country_code' => 'BR'], ['name' => 'Clare', 'country_code' => 'US'], ['name' => 'Byron Bay', 'country_code' => 'AU'], ['name' => 'Horgenzell', 'country_code' => 'DE'], ['name' => 'Esterwegen', 'country_code' => 'DE'], ['name' => 'San Quintin', 'country_code' => 'PH'], ['name' => 'Sabino', 'country_code' => 'BR'], ['name' => 'Wool', 'country_code' => 'GB'], ['name' => 'Bom Jesus do Amparo', 'country_code' => 'BR'], ['name' => 'Gersfeld', 'country_code' => 'DE'], ['name' => 'Highland Lakes', 'country_code' => 'US'], ['name' => 'Germantown', 'country_code' => 'US'], ['name' => 'Wangen', 'country_code' => 'CH'], ['name' => 'Plouhinec', 'country_code' => 'FR'], ['name' => 'Nong Muang', 'country_code' => 'TH'], ['name' => 'Pequizeiro', 'country_code' => 'BR'], ['name' => 'Luisiania', 'country_code' => 'BR'], ['name' => 'Hamptonburgh', 'country_code' => 'US'], ['name' => 'Chatillon-sur-Seine', 'country_code' => 'FR'], ['name' => 'Dietramszell', 'country_code' => 'DE'], ['name' => 'Brosteni', 'country_code' => 'RO'], ['name' => 'Bagan', 'country_code' => 'RU'], ['name' => 'Pirangucu', 'country_code' => 'BR'], ['name' => 'Baxley', 'country_code' => 'US'], ['name' => 'Santa Teresa', 'country_code' => 'US'], ['name' => 'Boa Ventura', 'country_code' => 'BR'], ['name' => 'Carlinville', 'country_code' => 'US'], ['name' => 'Smigiel', 'country_code' => 'PL'], ['name' => 'Montanaro', 'country_code' => 'IT'], ['name' => 'Bernhardswald', 'country_code' => 'DE'], ['name' => 'Aramina', 'country_code' => 'BR'], ['name' => 'Bethany', 'country_code' => 'US'], ['name' => 'Sherwood Manor', 'country_code' => 'US'], ['name' => 'Bidokht', 'country_code' => 'IR'], ['name' => 'Meano', 'country_code' => 'ES'], ['name' => 'Kham Sakae Saeng', 'country_code' => 'TH'], ['name' => 'Elberton', 'country_code' => 'US'], ['name' => 'Kayenta', 'country_code' => 'US'], ['name' => 'Bertolinia', 'country_code' => 'BR'], ['name' => 'Vechigen', 'country_code' => 'CH'], ['name' => 'Ebstorf', 'country_code' => 'DE'], ['name' => 'Dolni Lutyne', 'country_code' => 'CZ'], ['name' => 'Winston', 'country_code' => 'US'], ['name' => 'Hluboka nad Vltavou', 'country_code' => 'CZ'], ['name' => 'Rivanazzano', 'country_code' => 'IT'], ['name' => 'Sollenau', 'country_code' => 'AT'], ['name' => 'Almazan', 'country_code' => 'ES'], ['name' => 'Pyhajarvi', 'country_code' => 'FI'], ['name' => 'Guitiriz', 'country_code' => 'ES'], ['name' => 'Nachalovo', 'country_code' => 'RU'], ['name' => 'Faulquemont', 'country_code' => 'FR'], ['name' => 'Hagendorf', 'country_code' => 'CH'], ['name' => 'Wellston', 'country_code' => 'US'], ['name' => 'San Pietro di Feletto', 'country_code' => 'IT'], ['name' => 'Blackrod', 'country_code' => 'GB'], ['name' => 'Rockdale', 'country_code' => 'US'], ['name' => 'Stornarella', 'country_code' => 'IT'], ['name' => 'Villapiana', 'country_code' => 'IT'], ['name' => 'Presicce', 'country_code' => 'IT'], ['name' => 'Viry', 'country_code' => 'FR'], ['name' => 'Jubbah', 'country_code' => 'SA'], ['name' => 'Penn', 'country_code' => 'US'], ['name' => 'Holdenville', 'country_code' => 'US'], ['name' => 'Swartz Creek', 'country_code' => 'US'], ['name' => 'Mutriku', 'country_code' => 'ES'], ['name' => 'Aying', 'country_code' => 'DE'], ['name' => 'Ladyville', 'country_code' => 'BZ'], ['name' => 'Tympaki', 'country_code' => 'GR'], ['name' => 'Viiala', 'country_code' => 'FI'], ['name' => 'Gravenwiesbach', 'country_code' => 'DE'], ['name' => 'Aguiar da Beira', 'country_code' => 'PT'], ['name' => 'Phanom Thuan', 'country_code' => 'TH'], ['name' => 'Lanzo Torinese', 'country_code' => 'IT'], ['name' => 'Rangendingen', 'country_code' => 'DE'], ['name' => 'Feldkirchen an der Donau', 'country_code' => 'AT'], ['name' => 'Mirecourt', 'country_code' => 'FR'], ['name' => 'Marbletown', 'country_code' => 'US'], ['name' => 'Makhkety', 'country_code' => 'RU'], ['name' => 'Carroll', 'country_code' => 'US'], ['name' => 'Glabbeek-Zuurbemde', 'country_code' => 'BE'], ['name' => 'Saint-Philippe', 'country_code' => 'CA'], ['name' => 'Jamestown', 'country_code' => 'US'], ['name' => 'Gabcikovo', 'country_code' => 'SK'], ['name' => 'Archidona', 'country_code' => 'EC'], ['name' => 'Caparao', 'country_code' => 'BR'], ['name' => 'Schrems', 'country_code' => 'AT'], ['name' => 'Teuva', 'country_code' => 'FI'], ['name' => 'Imigdal', 'country_code' => 'MA'], ['name' => 'Dzierzgon', 'country_code' => 'PL'], ['name' => 'Riltsi', 'country_code' => 'BG'], ['name' => 'Lagonegro', 'country_code' => 'IT'], ['name' => 'Mena', 'country_code' => 'US'], ['name' => 'Casal Velino', 'country_code' => 'IT'], ['name' => 'Sambaiba', 'country_code' => 'BR'], ['name' => 'Stokesdale', 'country_code' => 'US'], ['name' => 'Caprarola', 'country_code' => 'IT'], ['name' => 'Lanusei', 'country_code' => 'IT'], ['name' => 'Fort Plain', 'country_code' => 'US'], ['name' => 'Kalaheo', 'country_code' => 'US'], ['name' => 'Corlateni', 'country_code' => 'MD'], ['name' => 'Wolfforth', 'country_code' => 'US'], ['name' => 'Fairview', 'country_code' => 'US'], ['name' => 'General Conesa', 'country_code' => 'AR'], ['name' => 'Jaszladany', 'country_code' => 'HU'], ['name' => 'Borriol', 'country_code' => 'ES'], ['name' => 'Vaileka', 'country_code' => 'FJ'], ['name' => 'Perranzabuloe', 'country_code' => 'GB'], ['name' => 'Pregarten', 'country_code' => 'AT'], ['name' => 'Castelvetro Piacentino', 'country_code' => 'IT'], ['name' => 'Vila de Porto Santo', 'country_code' => 'PT'], ['name' => 'Tvardita', 'country_code' => 'MD'], ['name' => 'Bol shoye Nagatkino', 'country_code' => 'RU'], ['name' => 'Laufach', 'country_code' => 'DE'], ['name' => 'Saint-Etienne-au-Mont', 'country_code' => 'FR'], ['name' => 'Kremnica', 'country_code' => 'SK'], ['name' => 'San Antonio de los Cobres', 'country_code' => 'AR'], ['name' => 'Manteo', 'country_code' => 'US'], ['name' => 'Acquapendente', 'country_code' => 'IT'], ['name' => 'Greenwich', 'country_code' => 'US'], ['name' => 'Kuzumaki', 'country_code' => 'JP'], ['name' => 'Kouli Kouara', 'country_code' => 'NE'], ['name' => 'Lekala', 'country_code' => 'BW'], ['name' => 'Agramunt', 'country_code' => 'ES'], ['name' => 'Cucq', 'country_code' => 'FR'], ['name' => 'Peculiar', 'country_code' => 'US'], ['name' => 'Muldrow', 'country_code' => 'US'], ['name' => 'Breckenridge', 'country_code' => 'US'], ['name' => 'Vic-le-Comte', 'country_code' => 'FR'], ['name' => 'Somerdale', 'country_code' => 'US'], ['name' => 'Desaguadero', 'country_code' => 'PE'], ['name' => 'Sparta', 'country_code' => 'US'], ['name' => 'Tharandt', 'country_code' => 'DE'], ['name' => 'Beekmantown', 'country_code' => 'US'], ['name' => 'Dulles Town Center', 'country_code' => 'US'], ['name' => 'Pommelsbrunn', 'country_code' => 'DE'], ['name' => 'Calatabiano', 'country_code' => 'IT'], ['name' => 'Sulzbach an der Murr', 'country_code' => 'DE'], ['name' => 'Nandlstadt', 'country_code' => 'DE'], ['name' => 'Caramanta', 'country_code' => 'CO'], ['name' => 'Oryahovo', 'country_code' => 'BG'], ['name' => 'Sant Omero', 'country_code' => 'IT'], ['name' => 'Macachin', 'country_code' => 'AR'], ['name' => 'Niedenstein', 'country_code' => 'DE'], ['name' => 'Hartley', 'country_code' => 'GB'], ['name' => 'Limana', 'country_code' => 'IT'], ['name' => 'Plana', 'country_code' => 'CZ'], ['name' => 'Condat-sur-Vienne', 'country_code' => 'FR'], ['name' => 'Indian Wells', 'country_code' => 'US'], ['name' => 'Quincy', 'country_code' => 'US'], ['name' => 'Bar Harbor', 'country_code' => 'US'], ['name' => 'Alameda', 'country_code' => 'ES'], ['name' => 'Bine Al Widane', 'country_code' => 'MA'], ['name' => 'Borgo Ticino', 'country_code' => 'IT'], ['name' => 'Benedito Leite', 'country_code' => 'BR'], ['name' => 'Basiliano', 'country_code' => 'IT'], ['name' => 'Zhizdra', 'country_code' => 'RU'], ['name' => 'Pervomayskoye', 'country_code' => 'RU'], ['name' => 'Williams', 'country_code' => 'US'], ['name' => 'Alcantil', 'country_code' => 'BR'], ['name' => 'Telc', 'country_code' => 'CZ'], ['name' => 'Colle Umberto', 'country_code' => 'IT'], ['name' => 'Charleston', 'country_code' => 'US'], ['name' => 'Richelieu', 'country_code' => 'CA'], ['name' => 'Notre-Dame-du-Mont-Carmel', 'country_code' => 'CA'], ['name' => 'Rockenhausen', 'country_code' => 'DE'], ['name' => 'Kurumkan', 'country_code' => 'RU'], ['name' => 'Rye', 'country_code' => 'US'], ['name' => 'Fragagnano', 'country_code' => 'IT'], ['name' => 'Campo Novo', 'country_code' => 'BR'], ['name' => 'Cameron', 'country_code' => 'US'], ['name' => 'New Holland', 'country_code' => 'US'], ['name' => 'L Ange-Gardien', 'country_code' => 'CA'], ['name' => 'Pana', 'country_code' => 'US'], ['name' => 'Arzakan', 'country_code' => 'AM'], ['name' => 'Cabaceiras', 'country_code' => 'BR'], ['name' => 'Sladkovicovo', 'country_code' => 'SK'], ['name' => 'Abegondo', 'country_code' => 'ES'], ['name' => 'Caxinga', 'country_code' => 'BR'], ['name' => 'Sainte-Martine', 'country_code' => 'CA'], ['name' => 'Hisya ', 'country_code' => 'SY'], ['name' => 'Rot am See', 'country_code' => 'DE'], ['name' => 'Niederaula', 'country_code' => 'DE'], ['name' => 'Itaguaru', 'country_code' => 'BR'], ['name' => 'Chinchon', 'country_code' => 'ES'], ['name' => 'Komadi', 'country_code' => 'HU'], ['name' => 'Woodside', 'country_code' => 'US'], ['name' => 'Brauna', 'country_code' => 'BR'], ['name' => 'Giavera del Montello', 'country_code' => 'IT'], ['name' => 'Hugelsheim', 'country_code' => 'DE'], ['name' => 'Padula', 'country_code' => 'IT'], ['name' => 'Missillac', 'country_code' => 'FR'], ['name' => 'Wesendorf', 'country_code' => 'DE'], ['name' => 'Harwinton', 'country_code' => 'US'], ['name' => 'Colibasi', 'country_code' => 'MD'], ['name' => 'Penmarch', 'country_code' => 'FR'], ['name' => 'Taiki', 'country_code' => 'JP'], ['name' => 'Bedarrides', 'country_code' => 'FR'], ['name' => 'Jokioinen', 'country_code' => 'FI'], ['name' => 'San Simon de Guerrero', 'country_code' => 'MX'], ['name' => 'Nursling', 'country_code' => 'GB'], ['name' => 'Adel', 'country_code' => 'US'], ['name' => 'Vamospercs', 'country_code' => 'HU'], ['name' => 'Barton on Sea', 'country_code' => 'GB'], ['name' => 'Novaci-Straini', 'country_code' => 'RO'], ['name' => 'Sam Sung', 'country_code' => 'TH'], ['name' => 'Pfreimd', 'country_code' => 'DE'], ['name' => 'Batinci', 'country_code' => 'MK'], ['name' => 'Ahlerstedt', 'country_code' => 'DE'], ['name' => 'Illasi', 'country_code' => 'IT'], ['name' => 'Stary Plzenec', 'country_code' => 'CZ'], ['name' => 'Lyons', 'country_code' => 'US'], ['name' => 'Zistersdorf', 'country_code' => 'AT'], ['name' => 'Earls Barton', 'country_code' => 'GB'], ['name' => 'Bad Gleichenberg', 'country_code' => 'AT'], ['name' => 'Morristown', 'country_code' => 'US'], ['name' => 'Glonn', 'country_code' => 'DE'], ['name' => 'Independence', 'country_code' => 'US'], ['name' => 'Baindt', 'country_code' => 'DE'], ['name' => 'Vrontados', 'country_code' => 'GR'], ['name' => 'Jim Thorpe', 'country_code' => 'US'], ['name' => 'Poretskoye', 'country_code' => 'RU'], ['name' => 'Joanesia', 'country_code' => 'BR'], ['name' => 'Valle de Juarez', 'country_code' => 'MX'], ['name' => 'Bilton', 'country_code' => 'GB'], ['name' => 'Terrell Hills', 'country_code' => 'US'], ['name' => 'Dorpen', 'country_code' => 'DE'], ['name' => 'Longuyon', 'country_code' => 'FR'], ['name' => 'Auburn', 'country_code' => 'US'], ['name' => 'Carlisle', 'country_code' => 'US'], ['name' => 'Piterka', 'country_code' => 'RU'], ['name' => 'Caseara', 'country_code' => 'BR'], ['name' => 'Colby', 'country_code' => 'US'], ['name' => 'Centerville', 'country_code' => 'US'], ['name' => 'Jamul', 'country_code' => 'US'], ['name' => 'East Moriches', 'country_code' => 'US'], ['name' => 'Saliste', 'country_code' => 'RO'], ['name' => 'Villaviciosa', 'country_code' => 'PH'], ['name' => 'Velas', 'country_code' => 'PT'], ['name' => 'Springhill', 'country_code' => 'US'], ['name' => 'Catas Altas', 'country_code' => 'BR'], ['name' => 'Monte Libretti', 'country_code' => 'IT'], ['name' => 'Castrignano del Capo', 'country_code' => 'IT'], ['name' => 'Santa Teresa Gallura', 'country_code' => 'IT'], ['name' => 'Schermerhorn', 'country_code' => 'NL'], ['name' => 'Imouzzer des Ida ou Tanane', 'country_code' => 'MA'], ['name' => 'Gazzo Veronese', 'country_code' => 'IT'], ['name' => 'Marquise', 'country_code' => 'FR'], ['name' => 'Entre-Folhas', 'country_code' => 'BR'], ['name' => 'Jampruca', 'country_code' => 'BR'], ['name' => 'Malpica', 'country_code' => 'ES'], ['name' => 'La Grand-Combe', 'country_code' => 'FR'], ['name' => 'South Pittsburg', 'country_code' => 'US'], ['name' => 'Eaton Rapids', 'country_code' => 'US'], ['name' => 'Datas', 'country_code' => 'BR'], ['name' => 'Gizzeria', 'country_code' => 'IT'], ['name' => 'Chateaulin', 'country_code' => 'FR'], ['name' => 'Pulyny', 'country_code' => 'UA'], ['name' => 'Gilbertsville', 'country_code' => 'US'], ['name' => 'Robbins', 'country_code' => 'US'], ['name' => 'Saint-Pie', 'country_code' => 'CA'], ['name' => 'Maraba Paulista', 'country_code' => 'BR'], ['name' => 'Porto Lucena', 'country_code' => 'BR'], ['name' => 'Heroldsbach', 'country_code' => 'DE'], ['name' => 'Northwood', 'country_code' => 'US'], ['name' => 'Cardenden', 'country_code' => 'GB'], ['name' => 'Silvanopolis', 'country_code' => 'BR'], ['name' => 'Eltmann', 'country_code' => 'DE'], ['name' => 'Mouguerre', 'country_code' => 'FR'], ['name' => 'Paranga', 'country_code' => 'RU'], ['name' => 'St. Augustine South', 'country_code' => 'US'], ['name' => 'Sidney', 'country_code' => 'US'], ['name' => 'Archangelos', 'country_code' => 'GR'], ['name' => 'Black River Falls', 'country_code' => 'US'], ['name' => 'Sankt Ruprecht an der Raab', 'country_code' => 'AT'], ['name' => 'Grossposna', 'country_code' => 'DE'], ['name' => 'West Vincent', 'country_code' => 'US'], ['name' => 'Grieskirchen', 'country_code' => 'AT'], ['name' => 'Maslog', 'country_code' => 'PH'], ['name' => 'Skydra', 'country_code' => 'GR'], ['name' => 'Quorndon', 'country_code' => 'GB'], ['name' => 'Honeoye Falls', 'country_code' => 'US'], ['name' => 'Peachland', 'country_code' => 'CA'], ['name' => 'Fruitland', 'country_code' => 'US'], ['name' => 'Neudenau', 'country_code' => 'DE'], ['name' => 'Linguaglossa', 'country_code' => 'IT'], ['name' => 'Rockwood', 'country_code' => 'US'], ['name' => 'Teojomulco', 'country_code' => 'MX'], ['name' => 'Debeljaca', 'country_code' => 'RS'], ['name' => 'Coraopolis', 'country_code' => 'US'], ['name' => 'Scharding', 'country_code' => 'AT'], ['name' => 'Ofterdingen', 'country_code' => 'DE'], ['name' => 'Szikszo', 'country_code' => 'HU'], ['name' => 'Ludersdorf', 'country_code' => 'DE'], ['name' => 'Vernon', 'country_code' => 'US'], ['name' => 'Shady Side', 'country_code' => 'US'], ['name' => 'Tremosna', 'country_code' => 'CZ'], ['name' => 'Iffezheim', 'country_code' => 'DE'], ['name' => 'Esine', 'country_code' => 'IT'], ['name' => 'Waynesboro', 'country_code' => 'US'], ['name' => 'Ashfield-Colborne-Wawanosh', 'country_code' => 'CA'], ['name' => 'Wackersdorf', 'country_code' => 'DE'], ['name' => 'Monaca', 'country_code' => 'US'], ['name' => 'Dalry', 'country_code' => 'GB'], ['name' => 'Mittersill', 'country_code' => 'AT'], ['name' => 'Bad Hall', 'country_code' => 'AT'], ['name' => 'Blere', 'country_code' => 'FR'], ['name' => 'El Limon', 'country_code' => 'MX'], ['name' => 'Librilla', 'country_code' => 'ES'], ['name' => 'Itacambira', 'country_code' => 'BR'], ['name' => 'Santo Inacio', 'country_code' => 'BR'], ['name' => 'Thum', 'country_code' => 'DE'], ['name' => 'Benkovski', 'country_code' => 'BG'], ['name' => 'Jackson', 'country_code' => 'US'], ['name' => 'Jeceaba', 'country_code' => 'BR'], ['name' => 'Rheinzabern', 'country_code' => 'DE'], ['name' => 'Nova Esperanca', 'country_code' => 'BR'], ['name' => 'Columbia', 'country_code' => 'US'], ['name' => 'Lafayette', 'country_code' => 'US'], ['name' => 'Hobol', 'country_code' => 'NO'], ['name' => 'Weitnau', 'country_code' => 'DE'], ['name' => 'Cigales', 'country_code' => 'ES'], ['name' => 'Ripi', 'country_code' => 'IT'], ['name' => 'Angier', 'country_code' => 'US'], ['name' => 'Batesburg-Leesville', 'country_code' => 'US'], ['name' => 'North Sewickley', 'country_code' => 'US'], ['name' => 'Gemmingen', 'country_code' => 'DE'], ['name' => 'Denver City', 'country_code' => 'US'], ['name' => 'Chadron', 'country_code' => 'US'], ['name' => 'Ferriday', 'country_code' => 'US'], ['name' => 'Kisber', 'country_code' => 'HU'], ['name' => 'Ixtapangajoya', 'country_code' => 'MX'], ['name' => 'Buchenbach', 'country_code' => 'DE'], ['name' => 'New Hempstead', 'country_code' => 'US'], ['name' => 'Gazzaniga', 'country_code' => 'IT'], ['name' => 'Coal City', 'country_code' => 'US'], ['name' => 'San Miguel Panan', 'country_code' => 'GT'], ['name' => 'Kusel', 'country_code' => 'DE'], ['name' => 'Vitorchiano', 'country_code' => 'IT'], ['name' => 'Canal Fulton', 'country_code' => 'US'], ['name' => 'Holdrege', 'country_code' => 'US'], ['name' => 'Sebezh', 'country_code' => 'RU'], ['name' => 'Baia de Arama', 'country_code' => 'RO'], ['name' => 'Sully-sur-Loire', 'country_code' => 'FR'], ['name' => 'Altentreptow', 'country_code' => 'DE'], ['name' => 'East Port Orchard', 'country_code' => 'US'], ['name' => 'Skalite', 'country_code' => 'SK'], ['name' => 'Zdvinsk', 'country_code' => 'RU'], ['name' => 'Battenberg', 'country_code' => 'DE'], ['name' => 'Gagliano del Capo', 'country_code' => 'IT'], ['name' => 'Basdorf', 'country_code' => 'DE'], ['name' => 'Qaminis', 'country_code' => 'LY'], ['name' => 'Takae', 'country_code' => 'JP'], ['name' => 'Centuripe', 'country_code' => 'IT'], ['name' => 'Tota', 'country_code' => 'CO'], ['name' => 'Rakoczifalva', 'country_code' => 'HU'], ['name' => 'Salamanca', 'country_code' => 'US'], ['name' => 'Monticelli d Ongina', 'country_code' => 'IT'], ['name' => 'Valparaiso', 'country_code' => 'US'], ['name' => 'Rosheim', 'country_code' => 'FR'], ['name' => 'Talavera La Real', 'country_code' => 'ES'], ['name' => 'Valatie', 'country_code' => 'US'], ['name' => 'Chateau-Arnoux-Saint-Auban', 'country_code' => 'FR'], ['name' => 'Rodigo', 'country_code' => 'IT'], ['name' => 'Los Montesinos', 'country_code' => 'ES'], ['name' => 'Laaber', 'country_code' => 'DE'], ['name' => 'Villanueva del Trabuco', 'country_code' => 'ES'], ['name' => 'Pagnacco', 'country_code' => 'IT'], ['name' => 'Ourique', 'country_code' => 'PT'], ['name' => 'Algona', 'country_code' => 'US'], ['name' => 'Mocksville', 'country_code' => 'US'], ['name' => 'Trent Lakes', 'country_code' => 'CA'], ['name' => 'Leglise', 'country_code' => 'BE'], ['name' => 'La Ferriere', 'country_code' => 'FR'], ['name' => 'Senador Amaral', 'country_code' => 'BR'], ['name' => 'San Vicente de Alcantara', 'country_code' => 'ES'], ['name' => 'Ohlsdorf', 'country_code' => 'AT'], ['name' => 'Giussago', 'country_code' => 'IT'], ['name' => 'Rocbaron', 'country_code' => 'FR'], ['name' => 'Palermo', 'country_code' => 'US'], ['name' => 'Floral City', 'country_code' => 'US'], ['name' => 'Centerport', 'country_code' => 'US'], ['name' => 'Jacare dos Homens', 'country_code' => 'BR'], ['name' => 'Pinckneyville', 'country_code' => 'US'], ['name' => 'Northern Rockies', 'country_code' => 'CA'], ['name' => 'New Castle', 'country_code' => 'US'], ['name' => 'Kinross', 'country_code' => 'GB'], ['name' => 'Purulha', 'country_code' => 'GT'], ['name' => 'Celopek', 'country_code' => 'MK'], ['name' => 'Smiths Station', 'country_code' => 'US'], ['name' => 'Simancas', 'country_code' => 'ES'], ['name' => 'Scaer', 'country_code' => 'FR'], ['name' => 'Warm Mineral Springs', 'country_code' => 'US'], ['name' => 'Manitou Springs', 'country_code' => 'US'], ['name' => 'Kale', 'country_code' => 'MM'], ['name' => 'Stadl-Paura', 'country_code' => 'AT'], ['name' => 'Rambervillers', 'country_code' => 'FR'], ['name' => 'General Bravo', 'country_code' => 'MX'], ['name' => 'Heimsheim', 'country_code' => 'DE'], ['name' => 'Komsomolskoye', 'country_code' => 'RU'], ['name' => 'Muro Lucano', 'country_code' => 'IT'], ['name' => 'Bidford-on-Avon', 'country_code' => 'GB'], ['name' => 'Northfield', 'country_code' => 'US'], ['name' => 'Zlynka', 'country_code' => 'RU'], ['name' => 'Berlin', 'country_code' => 'US'], ['name' => 'Central', 'country_code' => 'US'], ['name' => 'Hitzkirch', 'country_code' => 'CH'], ['name' => 'Stuhlingen', 'country_code' => 'DE'], ['name' => 'Osterronfeld', 'country_code' => 'DE'], ['name' => 'La Grange', 'country_code' => 'US'], ['name' => 'Pechenizhyn', 'country_code' => 'UA'], ['name' => 'Winterset', 'country_code' => 'US'], ['name' => 'Manchester-by-the-Sea', 'country_code' => 'US'], ['name' => 'Lemmon Valley', 'country_code' => 'US'], ['name' => 'Polla', 'country_code' => 'IT'], ['name' => 'Fraureuth', 'country_code' => 'DE'], ['name' => 'Exton', 'country_code' => 'US'], ['name' => 'Bridgton', 'country_code' => 'US'], ['name' => 'Valencia de Alcantara', 'country_code' => 'ES'], ['name' => 'Entrambasaguas', 'country_code' => 'ES'], ['name' => 'Nagbukel', 'country_code' => 'PH'], ['name' => 'Vienna', 'country_code' => 'US'], ['name' => 'Bellows Falls', 'country_code' => 'US'], ['name' => 'Oppido Mamertina', 'country_code' => 'IT'], ['name' => 'Darda', 'country_code' => 'HR'], ['name' => 'Trhove Sviny', 'country_code' => 'CZ'], ['name' => 'Saint-Michel-Chef-Chef', 'country_code' => 'FR'], ['name' => 'Measham', 'country_code' => 'GB'], ['name' => 'Wonthaggi', 'country_code' => 'AU'], ['name' => 'Marilla', 'country_code' => 'US'], ['name' => 'Neuhausen', 'country_code' => 'DE'], ['name' => 'Totontepec Villa de Morelos', 'country_code' => 'MX'], ['name' => 'Acula', 'country_code' => 'MX'], ['name' => 'Decize', 'country_code' => 'FR'], ['name' => 'Orwigsburg', 'country_code' => 'US'], ['name' => 'Citrus Park', 'country_code' => 'US'], ['name' => 'Albaredo d Adige', 'country_code' => 'IT'], ['name' => 'Newmains', 'country_code' => 'GB'], ['name' => 'Caldwell', 'country_code' => 'US'], ['name' => 'Sao Tome', 'country_code' => 'BR'], ['name' => 'Trogstad', 'country_code' => 'NO'], ['name' => 'Pohorelice', 'country_code' => 'CZ'], ['name' => 'Cleveland', 'country_code' => 'US'], ['name' => 'Lisbon', 'country_code' => 'US'], ['name' => 'Odzun', 'country_code' => 'AM'], ['name' => 'Momignies', 'country_code' => 'BE'], ['name' => 'Turvelandia', 'country_code' => 'BR'], ['name' => 'Polson', 'country_code' => 'US'], ['name' => 'Cavalero', 'country_code' => 'US'], ['name' => 'Carsoli', 'country_code' => 'IT'], ['name' => 'Hanna', 'country_code' => 'IR'], ['name' => 'Ciacova', 'country_code' => 'RO'], ['name' => 'Hoshcha', 'country_code' => 'UA'], ['name' => 'Bodenkirchen', 'country_code' => 'DE'], ['name' => 'Rapolano Terme', 'country_code' => 'IT'], ['name' => 'Pettenbach', 'country_code' => 'AT'], ['name' => 'Estacada', 'country_code' => 'US'], ['name' => 'Chackbay', 'country_code' => 'US'], ['name' => 'West St. Paul', 'country_code' => 'CA'], ['name' => 'Vanju-Mare', 'country_code' => 'RO'], ['name' => 'Bellpuig', 'country_code' => 'ES'], ['name' => 'Lindenfels', 'country_code' => 'DE'], ['name' => 'Manchester', 'country_code' => 'US'], ['name' => 'Windsor', 'country_code' => 'CA'], ['name' => 'Mahlberg', 'country_code' => 'DE'], ['name' => 'Clarinda', 'country_code' => 'US'], ['name' => 'Ribadumia', 'country_code' => 'ES'], ['name' => 'Santa Cristina de Aro', 'country_code' => 'ES'], ['name' => 'Pytalovo', 'country_code' => 'RU'], ['name' => 'Sunset', 'country_code' => 'US'], ['name' => 'Wind Lake', 'country_code' => 'US'], ['name' => 'Porto dos Gauchos', 'country_code' => 'BR'], ['name' => 'Penn Estates', 'country_code' => 'US'], ['name' => 'Valencia de Don Juan', 'country_code' => 'ES'], ['name' => 'Janduis', 'country_code' => 'BR'], ['name' => 'Horodnytsia', 'country_code' => 'UA'], ['name' => 'Alness', 'country_code' => 'GB'], ['name' => 'Dickinson', 'country_code' => 'US'], ['name' => 'St. Paul Park', 'country_code' => 'US'], ['name' => 'Simonton Lake', 'country_code' => 'US'], ['name' => 'Redbourn', 'country_code' => 'GB'], ['name' => 'Krieglach', 'country_code' => 'AT'], ['name' => 'Veronella', 'country_code' => 'IT'], ['name' => 'Gottolengo', 'country_code' => 'IT'], ['name' => 'Sarroch', 'country_code' => 'IT'], ['name' => 'Noyemberyan', 'country_code' => 'AM'], ['name' => 'Le Rove', 'country_code' => 'FR'], ['name' => 'Liberdade', 'country_code' => 'BR'], ['name' => 'Ward', 'country_code' => 'US'], ['name' => 'Gualchos', 'country_code' => 'ES'], ['name' => 'Parres', 'country_code' => 'ES'], ['name' => 'Pishchanka', 'country_code' => 'UA'], ['name' => 'Roundway', 'country_code' => 'GB'], ['name' => 'Hockinson', 'country_code' => 'US'], ['name' => 'Velden', 'country_code' => 'NL'], ['name' => 'Uhlingen-Birkendorf', 'country_code' => 'DE'], ['name' => 'Pabrade', 'country_code' => 'LT'], ['name' => 'Englewood Cliffs', 'country_code' => 'US'], ['name' => 'James City', 'country_code' => 'US'], ['name' => 'Oberaudorf', 'country_code' => 'DE'], ['name' => 'Feira Nova', 'country_code' => 'BR'], ['name' => 'Anthony', 'country_code' => 'US'], ['name' => 'Redstone', 'country_code' => 'US'], ['name' => 'Shepherdstown', 'country_code' => 'US'], ['name' => 'North Oaks', 'country_code' => 'US'], ['name' => 'Creston', 'country_code' => 'CA'], ['name' => 'Smithers', 'country_code' => 'CA'], ['name' => 'Breitenbrunn', 'country_code' => 'DE'], ['name' => 'Bajram Curri', 'country_code' => 'AL'], ['name' => 'Mattawa', 'country_code' => 'US'], ['name' => 'Bederkesa', 'country_code' => 'DE'], ['name' => 'Caruthersville', 'country_code' => 'US'], ['name' => 'Port LaBelle', 'country_code' => 'US'], ['name' => 'Brookline', 'country_code' => 'US'], ['name' => 'Cornwall', 'country_code' => 'CA'], ['name' => 'Castellucchio', 'country_code' => 'IT'], ['name' => 'Maruggio', 'country_code' => 'IT'], ['name' => 'San Pedro de Atacama', 'country_code' => 'CL'], ['name' => 'Campegine', 'country_code' => 'IT'], ['name' => 'Ligne', 'country_code' => 'FR'], ['name' => 'Williamson', 'country_code' => 'US'], ['name' => 'Mollina', 'country_code' => 'ES'], ['name' => 'Travelers Rest', 'country_code' => 'US'], ['name' => 'Newport', 'country_code' => 'US'], ['name' => 'Rincon Valley', 'country_code' => 'US'], ['name' => 'Kyparissia', 'country_code' => 'GR'], ['name' => 'Meadow Lake', 'country_code' => 'CA'], ['name' => 'Balatonlelle', 'country_code' => 'HU'], ['name' => 'East Quogue', 'country_code' => 'US'], ['name' => 'Figueiropolis', 'country_code' => 'BR'], ['name' => 'Shatsk', 'country_code' => 'UA'], ['name' => 'Velburg', 'country_code' => 'DE'], ['name' => 'Alsonemedi', 'country_code' => 'HU'], ['name' => 'Blaufelden', 'country_code' => 'DE'], ['name' => 'Jaboti', 'country_code' => 'BR'], ['name' => 'Macon', 'country_code' => 'US'], ['name' => 'Schweitenkirchen', 'country_code' => 'DE'], ['name' => 'Kunmadaras', 'country_code' => 'HU'], ['name' => 'Frankford', 'country_code' => 'US'], ['name' => 'Tassamert', 'country_code' => 'DZ'], ['name' => 'Botuvera', 'country_code' => 'BR'], ['name' => 'Rupea', 'country_code' => 'RO'], ['name' => 'Saint-Gilles', 'country_code' => 'FR'], ['name' => 'Spas-Klepiki', 'country_code' => 'RU'], ['name' => 'Polna', 'country_code' => 'CZ'], ['name' => 'Pyhtaa', 'country_code' => 'FI'], ['name' => 'Lanark Highlands', 'country_code' => 'CA'], ['name' => 'Ilomantsi', 'country_code' => 'FI'], ['name' => 'Velka Bites', 'country_code' => 'CZ'], ['name' => 'Chiusa', 'country_code' => 'IT'], ['name' => 'Morganfield', 'country_code' => 'US'], ['name' => 'Apple Valley', 'country_code' => 'US'], ['name' => 'Palmerton', 'country_code' => 'US'], ['name' => 'San Leon', 'country_code' => 'US'], ['name' => 'Chions', 'country_code' => 'IT'], ['name' => 'Horazd ovice', 'country_code' => 'CZ'], ['name' => 'Montefrio', 'country_code' => 'ES'], ['name' => 'Doutor Mauricio Cardoso', 'country_code' => 'BR'], ['name' => 'Jonesboro', 'country_code' => 'US'], ['name' => 'Morris', 'country_code' => 'US'], ['name' => 'Terrujem', 'country_code' => 'PT'], ['name' => 'Tickhill', 'country_code' => 'GB'], ['name' => 'La Balme-de-Sillingy', 'country_code' => 'FR'], ['name' => 'Bakov nad Jizerou', 'country_code' => 'CZ'], ['name' => 'Puchuncavi', 'country_code' => 'CL'], ['name' => 'Nava', 'country_code' => 'ES'], ['name' => 'McGregor', 'country_code' => 'US'], ['name' => 'Sackville', 'country_code' => 'CA'], ['name' => 'Triftern', 'country_code' => 'DE'], ['name' => 'Viadutos', 'country_code' => 'BR'], ['name' => 'Bratske', 'country_code' => 'UA'], ['name' => 'Ceska Kamenice', 'country_code' => 'CZ'], ['name' => 'Westernport', 'country_code' => 'US'], ['name' => 'Muravera', 'country_code' => 'IT'], ['name' => 'Maze', 'country_code' => 'FR'], ['name' => 'Geoagiu', 'country_code' => 'RO'], ['name' => 'Mapire', 'country_code' => 'VE'], ['name' => 'Holysov', 'country_code' => 'CZ'], ['name' => 'Saint-Pourcain-sur-Sioule', 'country_code' => 'FR'], ['name' => 'Wake Village', 'country_code' => 'US'], ['name' => 'Canino', 'country_code' => 'IT'], ['name' => 'Grand Falls', 'country_code' => 'CA'], ['name' => 'Kdyne', 'country_code' => 'CZ'], ['name' => 'Tiszalok', 'country_code' => 'HU'], ['name' => 'Santa Caterina Villarmosa', 'country_code' => 'IT'], ['name' => 'Mourmelon-le-Grand', 'country_code' => 'FR'], ['name' => 'Briare', 'country_code' => 'FR'], ['name' => 'San Ildefonso', 'country_code' => 'ES'], ['name' => 'Avondale', 'country_code' => 'US'], ['name' => 'Cochrane', 'country_code' => 'CA'], ['name' => 'Bol shoye Sorokino', 'country_code' => 'RU'], ['name' => 'New Ipswich', 'country_code' => 'US'], ['name' => 'Hawaiian Beaches', 'country_code' => 'US'], ['name' => 'Bilibino', 'country_code' => 'RU'], ['name' => 'Hadley', 'country_code' => 'US'], ['name' => 'Coreglia Antelminelli', 'country_code' => 'IT'], ['name' => 'Sedelnikovo', 'country_code' => 'RU'], ['name' => 'Gommiswald', 'country_code' => 'CH'], ['name' => 'Ruokolahti', 'country_code' => 'FI'], ['name' => 'Opishnya', 'country_code' => 'UA'], ['name' => 'Le Pellerin', 'country_code' => 'FR'], ['name' => 'Correzzola', 'country_code' => 'IT'], ['name' => 'Marystown', 'country_code' => 'CA'], ['name' => 'Kolosovka', 'country_code' => 'RU'], ['name' => 'Ocean Shores', 'country_code' => 'AU'], ['name' => 'McKenzie', 'country_code' => 'US'], ['name' => 'Bom Principio', 'country_code' => 'BR'], ['name' => 'Uhrichsville', 'country_code' => 'US'], ['name' => 'Saint-Germain-du-Puy', 'country_code' => 'FR'], ['name' => 'Lehighton', 'country_code' => 'US'], ['name' => 'Vicente Dutra', 'country_code' => 'BR'], ['name' => 'Minot AFB', 'country_code' => 'US'], ['name' => 'Grossheubach', 'country_code' => 'DE'], ['name' => 'Fort Rucker', 'country_code' => 'US'], ['name' => 'Bandar-e Rig', 'country_code' => 'IR'], ['name' => 'Zolynia', 'country_code' => 'PL'], ['name' => 'Andorf', 'country_code' => 'AT'], ['name' => 'Lohsa', 'country_code' => 'DE'], ['name' => 'Camarinas', 'country_code' => 'ES'], ['name' => 'Fruitland', 'country_code' => 'US'], ['name' => 'Locmaria-Plouzane', 'country_code' => 'FR'], ['name' => 'Villeneuve-sur-Yonne', 'country_code' => 'FR'], ['name' => 'Taliouine', 'country_code' => 'MA'], ['name' => 'Plesse', 'country_code' => 'FR'], ['name' => 'Castelnuovo Scrivia', 'country_code' => 'IT'], ['name' => 'Molchanovo', 'country_code' => 'RU'], ['name' => 'Gweta', 'country_code' => 'BW'], ['name' => 'Savannah', 'country_code' => 'US'], ['name' => 'Jefferson', 'country_code' => 'US'], ['name' => 'Lampazos de Naranjo', 'country_code' => 'MX'], ['name' => 'Khatassy', 'country_code' => 'RU'], ['name' => 'Tha Wang Pha', 'country_code' => 'TH'], ['name' => 'Wiedemar', 'country_code' => 'DE'], ['name' => 'Ceska Skalice', 'country_code' => 'CZ'], ['name' => 'Zovuni', 'country_code' => 'AM'], ['name' => 'Hirbovat', 'country_code' => 'MD'], ['name' => 'Cordoba', 'country_code' => 'CO'], ['name' => 'Avdon', 'country_code' => 'RU'], ['name' => 'Grans', 'country_code' => 'FR'], ['name' => 'Fairport', 'country_code' => 'US'], ['name' => 'Union Beach', 'country_code' => 'US'], ['name' => 'Pawcatuck', 'country_code' => 'US'], ['name' => 'Bessan', 'country_code' => 'FR'], ['name' => 'Berri', 'country_code' => 'AU'], ['name' => 'Hightstown', 'country_code' => 'US'], ['name' => 'East Granby', 'country_code' => 'US'], ['name' => 'Suvorovo', 'country_code' => 'BG'], ['name' => 'Rochedo', 'country_code' => 'BR'], ['name' => 'Conches-en-Ouche', 'country_code' => 'FR'], ['name' => 'Alton', 'country_code' => 'US'], ['name' => 'Brady', 'country_code' => 'US'], ['name' => 'Brent', 'country_code' => 'US'], ['name' => 'Eagleville', 'country_code' => 'US'], ['name' => 'Ovelgonne', 'country_code' => 'DE'], ['name' => 'Kelly', 'country_code' => 'US'], ['name' => 'Henfield', 'country_code' => 'GB'], ['name' => 'Alburquerque', 'country_code' => 'ES'], ['name' => 'Krivosheino', 'country_code' => 'RU'], ['name' => 'Camogli', 'country_code' => 'IT'], ['name' => 'Bulverde', 'country_code' => 'US'], ['name' => 'Alto del Carmen', 'country_code' => 'CL'], ['name' => 'Waeng Yai', 'country_code' => 'TH'], ['name' => 'Pacy-sur-Eure', 'country_code' => 'FR'], ['name' => 'Bolton', 'country_code' => 'US'], ['name' => 'Kirchberg in Tirol', 'country_code' => 'AT'], ['name' => 'Guglionesi', 'country_code' => 'IT'], ['name' => 'Hareid', 'country_code' => 'NO'], ['name' => 'Pottenstein', 'country_code' => 'DE'], ['name' => 'Znamenskoye', 'country_code' => 'RU'], ['name' => 'Komyshuvakha', 'country_code' => 'UA'], ['name' => 'Longarone', 'country_code' => 'IT'], ['name' => 'Dom Cavati', 'country_code' => 'BR'], ['name' => 'Odelzhausen', 'country_code' => 'DE'], ['name' => 'Santa Maria do Salto', 'country_code' => 'BR'], ['name' => 'Paxtonia', 'country_code' => 'US'], ['name' => 'Ochamchire', 'country_code' => 'GE'], ['name' => 'Waynesville', 'country_code' => 'US'], ['name' => 'Ayora', 'country_code' => 'ES'], ['name' => 'Naie', 'country_code' => 'JP'], ['name' => 'Kappel-Grafenhausen', 'country_code' => 'DE'], ['name' => 'Cerda', 'country_code' => 'IT'], ['name' => 'Mount Carmel', 'country_code' => 'US'], ['name' => 'Waldems', 'country_code' => 'DE'], ['name' => 'Borkum', 'country_code' => 'DE'], ['name' => 'Parazinho', 'country_code' => 'BR'], ['name' => 'Oettingen in Bayern', 'country_code' => 'DE'], ['name' => 'Kings Point', 'country_code' => 'US'], ['name' => 'Bear Valley Springs', 'country_code' => 'US'], ['name' => 'San Jose de Pare', 'country_code' => 'CO'], ['name' => 'Benjamin Hill', 'country_code' => 'MX'], ['name' => 'Maser', 'country_code' => 'IT'], ['name' => 'Orange', 'country_code' => 'US'], ['name' => 'Kahaluu-Keauhou', 'country_code' => 'US'], ['name' => 'Vacha', 'country_code' => 'DE'], ['name' => 'Carroll', 'country_code' => 'US'], ['name' => 'Cannobio', 'country_code' => 'IT'], ['name' => 'Ronneburg', 'country_code' => 'DE'], ['name' => 'Vigone', 'country_code' => 'IT'], ['name' => 'Wanroij', 'country_code' => 'NL'], ['name' => 'Polop', 'country_code' => 'ES'], ['name' => 'Iola', 'country_code' => 'US'], ['name' => 'Tizagzawine', 'country_code' => 'MA'], ['name' => 'Pechenihy', 'country_code' => 'UA'], ['name' => 'Vila do Bispo', 'country_code' => 'PT'], ['name' => 'Landri Sales', 'country_code' => 'BR'], ['name' => 'Zephyrhills West', 'country_code' => 'US'], ['name' => 'Malles Venosta', 'country_code' => 'IT'], ['name' => 'Volta Grande', 'country_code' => 'BR'], ['name' => 'San Giovanni Ilarione', 'country_code' => 'IT'], ['name' => 'Garnet', 'country_code' => 'US'], ['name' => 'Avai', 'country_code' => 'BR'], ['name' => 'Igensdorf', 'country_code' => 'DE'], ['name' => 'Lake Fenton', 'country_code' => 'US'], ['name' => 'Novohuivynske', 'country_code' => 'UA'], ['name' => 'Kyshtovka', 'country_code' => 'RU'], ['name' => 'Baliza', 'country_code' => 'BR'], ['name' => 'Old Bethpage', 'country_code' => 'US'], ['name' => 'South Sarasota', 'country_code' => 'US'], ['name' => 'Jaffrey', 'country_code' => 'US'], ['name' => 'Corropoli', 'country_code' => 'IT'], ['name' => 'Laces', 'country_code' => 'IT'], ['name' => 'North Dansville', 'country_code' => 'US'], ['name' => 'Marano sul Panaro', 'country_code' => 'IT'], ['name' => 'Nalbandyan', 'country_code' => 'AM'], ['name' => 'Chepelare', 'country_code' => 'BG'], ['name' => 'Midway', 'country_code' => 'US'], ['name' => 'La Campana', 'country_code' => 'ES'], ['name' => 'Cuges-les-Pins', 'country_code' => 'FR'], ['name' => 'Big Bear Lake', 'country_code' => 'US'], ['name' => 'Titusville', 'country_code' => 'US'], ['name' => 'St. Clair', 'country_code' => 'US'], ['name' => 'Austevoll', 'country_code' => 'NO'], ['name' => 'Bratslav', 'country_code' => 'UA'], ['name' => 'Grayson', 'country_code' => 'US'], ['name' => 'Stara Vyzhivka', 'country_code' => 'UA'], ['name' => 'Red Oak', 'country_code' => 'US'], ['name' => 'Cave Springs', 'country_code' => 'US'], ['name' => 'Peal de Becerro', 'country_code' => 'ES'], ['name' => 'Acorizal', 'country_code' => 'BR'], ['name' => 'Wadesboro', 'country_code' => 'US'], ['name' => 'Frei', 'country_code' => 'NO'], ['name' => 'Arcabuco', 'country_code' => 'CO'], ['name' => 'Edwinstowe', 'country_code' => 'GB'], ['name' => 'Ripley', 'country_code' => 'US'], ['name' => 'Drebach', 'country_code' => 'DE'], ['name' => 'Altenstadt', 'country_code' => 'DE'], ['name' => 'Sioux Lookout', 'country_code' => 'CA'], ['name' => 'Zarat', 'country_code' => 'TN'], ['name' => 'Divina Pastora', 'country_code' => 'BR'], ['name' => 'Peyrolles-en-Provence', 'country_code' => 'FR'], ['name' => 'Sevelen', 'country_code' => 'CH'], ['name' => 'Arzberg', 'country_code' => 'DE'], ['name' => 'Ardore', 'country_code' => 'IT'], ['name' => 'Hawkinsville', 'country_code' => 'US'], ['name' => 'Forsyth', 'country_code' => 'US'], ['name' => 'Santana do Itarare', 'country_code' => 'BR'], ['name' => 'Csakvar', 'country_code' => 'HU'], ['name' => 'Pourrieres', 'country_code' => 'FR'], ['name' => 'Le Bourget-du-Lac', 'country_code' => 'FR'], ['name' => 'Sechenovo', 'country_code' => 'RU'], ['name' => 'Didsbury', 'country_code' => 'CA'], ['name' => 'Yamanaka', 'country_code' => 'JP'], ['name' => 'Thalmassing', 'country_code' => 'DE'], ['name' => 'Rothschild', 'country_code' => 'US'], ['name' => 'Lomovka', 'country_code' => 'RU'], ['name' => 'Fraubrunnen', 'country_code' => 'CH'], ['name' => 'Delhi Hills', 'country_code' => 'US'], ['name' => 'Ban Bang Pramung', 'country_code' => 'TH'], ['name' => 'Grossaitingen', 'country_code' => 'DE'], ['name' => 'Champniers', 'country_code' => 'FR'], ['name' => 'Belvedere', 'country_code' => 'US'], ['name' => 'El Cocuy', 'country_code' => 'CO'], ['name' => 'Shaykh al Hadid', 'country_code' => 'SY'], ['name' => 'Centola', 'country_code' => 'IT'], ['name' => 'Wermsdorf', 'country_code' => 'DE'], ['name' => 'Bucchianico', 'country_code' => 'IT'], ['name' => 'Angelina', 'country_code' => 'BR'], ['name' => 'Lagundo', 'country_code' => 'IT'], ['name' => 'Pecan Acres', 'country_code' => 'US'], ['name' => 'Timzguida Ouftas', 'country_code' => 'MA'], ['name' => 'Dom Silverio', 'country_code' => 'BR'], ['name' => 'Villers-le-Lac', 'country_code' => 'FR'], ['name' => 'Nea Anchialos', 'country_code' => 'GR'], ['name' => 'Esporlas', 'country_code' => 'ES'], ['name' => 'Rottenmann', 'country_code' => 'AT'], ['name' => 'Wilhelmsdorf', 'country_code' => 'DE'], ['name' => 'Syumsi', 'country_code' => 'RU'], ['name' => 'Mansue', 'country_code' => 'IT'], ['name' => 'Marianopolis do Tocantins', 'country_code' => 'BR'], ['name' => 'Guemene-Penfao', 'country_code' => 'FR'], ['name' => 'Howard Springs', 'country_code' => 'AU'], ['name' => 'Alcover', 'country_code' => 'ES'], ['name' => 'Villette-d Anthon', 'country_code' => 'FR'], ['name' => 'Francinopolis', 'country_code' => 'BR'], ['name' => 'Novomykolayivka', 'country_code' => 'UA'], ['name' => 'Parigne-l Eveque', 'country_code' => 'FR'], ['name' => 'Giddings', 'country_code' => 'US'], ['name' => 'Beya', 'country_code' => 'RU'], ['name' => 'Houffalize', 'country_code' => 'BE'], ['name' => 'Baretswil', 'country_code' => 'CH'], ['name' => 'Servian', 'country_code' => 'FR'], ['name' => 'Abrud', 'country_code' => 'RO'], ['name' => 'Venus', 'country_code' => 'US'], ['name' => 'Orchomenos', 'country_code' => 'GR'], ['name' => 'Jilove', 'country_code' => 'CZ'], ['name' => 'Castelbellino', 'country_code' => 'IT'], ['name' => 'Turangi', 'country_code' => 'NZ'], ['name' => 'Worthsee', 'country_code' => 'DE'], ['name' => 'Fernie', 'country_code' => 'CA'], ['name' => 'Deer Lake', 'country_code' => 'CA'], ['name' => 'Luynes', 'country_code' => 'FR'], ['name' => 'Hankasalmi', 'country_code' => 'FI'], ['name' => 'Tvrdosovce', 'country_code' => 'SK'], ['name' => 'Otero de Rey', 'country_code' => 'ES'], ['name' => 'Sankt Johann', 'country_code' => 'DE'], ['name' => 'Perry', 'country_code' => 'US'], ['name' => 'Carlyss', 'country_code' => 'US'], ['name' => 'Tapioszentmarton', 'country_code' => 'HU'], ['name' => 'Doksy', 'country_code' => 'CZ'], ['name' => 'Calberlah', 'country_code' => 'DE'], ['name' => 'Calistoga', 'country_code' => 'US'], ['name' => 'Perushtitsa', 'country_code' => 'BG'], ['name' => 'Odessa', 'country_code' => 'US'], ['name' => 'Kalynivka', 'country_code' => 'UA'], ['name' => 'Chemerivtsi', 'country_code' => 'UA'], ['name' => 'Francisco Dumont', 'country_code' => 'BR'], ['name' => 'Steyerberg', 'country_code' => 'DE'], ['name' => 'Brensbach', 'country_code' => 'DE'], ['name' => 'Holmfirth', 'country_code' => 'GB'], ['name' => 'Poolesville', 'country_code' => 'US'], ['name' => 'Pedrera', 'country_code' => 'ES'], ['name' => 'Eckersdorf', 'country_code' => 'DE'], ['name' => 'Livingston', 'country_code' => 'US'], ['name' => 'Walkertown', 'country_code' => 'US'], ['name' => 'Osceola', 'country_code' => 'US'], ['name' => 'Yarmouth Port', 'country_code' => 'US'], ['name' => 'Parikkala', 'country_code' => 'FI'], ['name' => 'Sachseln', 'country_code' => 'CH'], ['name' => 'Gbely', 'country_code' => 'SK'], ['name' => 'Briar', 'country_code' => 'US'], ['name' => 'Wenham', 'country_code' => 'US'], ['name' => 'Ranson', 'country_code' => 'US'], ['name' => 'Capistrello', 'country_code' => 'IT'], ['name' => 'Portoscuso', 'country_code' => 'IT'], ['name' => 'Gouvy', 'country_code' => 'BE'], ['name' => 'Alcala de los Gazules', 'country_code' => 'ES'], ['name' => 'Dores de Guanhaes', 'country_code' => 'BR'], ['name' => 'Holytown', 'country_code' => 'GB'], ['name' => 'Santana de Mangueira', 'country_code' => 'BR'], ['name' => 'Oderwitz', 'country_code' => 'DE'], ['name' => 'Moral de Calatrava', 'country_code' => 'ES'], ['name' => 'Salem', 'country_code' => 'US'], ['name' => 'Sanom', 'country_code' => 'TH'], ['name' => 'Prroshyan', 'country_code' => 'AM'], ['name' => 'Birkenes', 'country_code' => 'NO'], ['name' => 'Neda', 'country_code' => 'ES'], ['name' => 'Seubersdorf', 'country_code' => 'DE'], ['name' => 'Buje', 'country_code' => 'HR'], ['name' => 'Lake Wildwood', 'country_code' => 'US'], ['name' => 'West Rockhill', 'country_code' => 'US'], ['name' => 'Washington', 'country_code' => 'US'], ['name' => 'Samassi', 'country_code' => 'IT'], ['name' => 'La Souterraine', 'country_code' => 'FR'], ['name' => 'Tricarico', 'country_code' => 'IT'], ['name' => 'Ruskington', 'country_code' => 'GB'], ['name' => 'Luhacovice', 'country_code' => 'CZ'], ['name' => 'Sasykoli', 'country_code' => 'RU'], ['name' => 'Gramastetten', 'country_code' => 'AT'], ['name' => 'Xibaipo', 'country_code' => 'CN'], ['name' => 'Radoaia', 'country_code' => 'MD'], ['name' => 'Hendron', 'country_code' => 'US'], ['name' => 'Bangor', 'country_code' => 'US'], ['name' => 'Londonderry', 'country_code' => 'US'], ['name' => 'Bethel', 'country_code' => 'US'], ['name' => 'Woodstock', 'country_code' => 'CA'], ['name' => 'Rio do Prado', 'country_code' => 'BR'], ['name' => 'Laille', 'country_code' => 'FR'], ['name' => 'Hollywood', 'country_code' => 'US'], ['name' => 'Ses Salines', 'country_code' => 'ES'], ['name' => 'Byron', 'country_code' => 'US'], ['name' => 'Ballston Spa', 'country_code' => 'US'], ['name' => 'Nong Na Kham', 'country_code' => 'TH'], ['name' => 'Bisbee', 'country_code' => 'US'], ['name' => 'Vaglia', 'country_code' => 'IT'], ['name' => 'Springfield', 'country_code' => 'US'], ['name' => 'Chisago City', 'country_code' => 'US'], ['name' => 'Carlisle', 'country_code' => 'US'], ['name' => 'Sariegos', 'country_code' => 'ES'], ['name' => 'Santiago Zacatepec', 'country_code' => 'MX'], ['name' => 'Union City', 'country_code' => 'US'], ['name' => 'North Stonington', 'country_code' => 'US'], ['name' => 'Laureana di Borrello', 'country_code' => 'IT'], ['name' => 'Myrtletown', 'country_code' => 'US'], ['name' => 'Almaden', 'country_code' => 'ES'], ['name' => 'Victor Meireles', 'country_code' => 'BR'], ['name' => 'Chiny', 'country_code' => 'BE'], ['name' => 'Kut Bak', 'country_code' => 'TH'], ['name' => 'Gilmer', 'country_code' => 'US'], ['name' => 'Williamsville', 'country_code' => 'US'], ['name' => 'Martic', 'country_code' => 'US'], ['name' => 'Guaramiranga', 'country_code' => 'BR'], ['name' => 'Bugyi', 'country_code' => 'HU'], ['name' => 'Jequitiba', 'country_code' => 'BR'], ['name' => 'Jinzhong', 'country_code' => 'CN'], ['name' => 'Vereya', 'country_code' => 'RU'], ['name' => 'San Jose del Golfo', 'country_code' => 'GT'], ['name' => 'Manoel Emidio', 'country_code' => 'BR'], ['name' => 'Layhill', 'country_code' => 'US'], ['name' => 'Elmsford', 'country_code' => 'US'], ['name' => 'Center', 'country_code' => 'US'], ['name' => 'Farmers Loop', 'country_code' => 'US'], ['name' => 'Warren', 'country_code' => 'US'], ['name' => 'Amoneburg', 'country_code' => 'DE'], ['name' => 'Kyren', 'country_code' => 'RU'], ['name' => 'Halsbrucke', 'country_code' => 'DE'], ['name' => 'Quesada', 'country_code' => 'ES'], ['name' => 'Jicalapa', 'country_code' => 'SV'], ['name' => 'Driedorf', 'country_code' => 'DE'], ['name' => 'Ribadavia', 'country_code' => 'ES'], ['name' => 'Selty', 'country_code' => 'RU'], ['name' => 'Sao Francisco do Gloria', 'country_code' => 'BR'], ['name' => 'Tunari', 'country_code' => 'RO'], ['name' => 'Val-David', 'country_code' => 'CA'], ['name' => 'Akarma', 'country_code' => 'MA'], ['name' => 'Robel', 'country_code' => 'DE'], ['name' => 'Montrose', 'country_code' => 'US'], ['name' => 'Pinardville', 'country_code' => 'US'], ['name' => 'Rodniki', 'country_code' => 'RU'], ['name' => 'Tiouli', 'country_code' => 'MA'], ['name' => 'Frensdorf', 'country_code' => 'DE'], ['name' => 'Jaszkiser', 'country_code' => 'HU'], ['name' => 'Bulboaca', 'country_code' => 'MD'], ['name' => 'Baystonhill', 'country_code' => 'GB'], ['name' => 'Vila Nova de Paiva', 'country_code' => 'PT'], ['name' => 'Gresford', 'country_code' => 'GB'], ['name' => 'Rabca', 'country_code' => 'SK'], ['name' => 'Aberdeen', 'country_code' => 'US'], ['name' => 'Lagoa do Sitio', 'country_code' => 'BR'], ['name' => 'Sankt Peter in der Au Markt', 'country_code' => 'AT'], ['name' => 'Konstantinovka', 'country_code' => 'RU'], ['name' => 'Diboll', 'country_code' => 'US'], ['name' => 'Hutchinson Island South', 'country_code' => 'US'], ['name' => 'Salto do Itarare', 'country_code' => 'BR'], ['name' => 'Izmorene', 'country_code' => 'MA'], ['name' => 'Wiggensbach', 'country_code' => 'DE'], ['name' => 'Williamston', 'country_code' => 'US'], ['name' => 'Ravena', 'country_code' => 'US'], ['name' => 'Skutec', 'country_code' => 'CZ'], ['name' => 'In Buri', 'country_code' => 'TH'], ['name' => 'San Cristobal Amatlan', 'country_code' => 'MX'], ['name' => 'Ettrick', 'country_code' => 'US'], ['name' => 'Tannum Sands', 'country_code' => 'AU'], ['name' => 'Thatcher', 'country_code' => 'US'], ['name' => 'South Bay', 'country_code' => 'US'], ['name' => 'Hofheim in Unterfranken', 'country_code' => 'DE'], ['name' => 'Grassano', 'country_code' => 'IT'], ['name' => 'Ocean Bluff-Brant Rock', 'country_code' => 'US'], ['name' => 'Boheimkirchen', 'country_code' => 'AT'], ['name' => 'Baselga di Pine', 'country_code' => 'IT'], ['name' => 'Springfield', 'country_code' => 'US'], ['name' => 'Timber Pines', 'country_code' => 'US'], ['name' => 'Llangefni', 'country_code' => 'GB'], ['name' => 'West Wendover', 'country_code' => 'US'], ['name' => 'Larsmo', 'country_code' => 'FI'], ['name' => 'Obetz', 'country_code' => 'US'], ['name' => 'Muhlhausen', 'country_code' => 'DE'], ['name' => 'Cristiano Otoni', 'country_code' => 'BR'], ['name' => 'Chipping Sodbury', 'country_code' => 'GB'], ['name' => 'Staroye Shaygovo', 'country_code' => 'RU'], ['name' => 'Douar Oulad Amer Leqliaa', 'country_code' => 'MA'], ['name' => 'Florensac', 'country_code' => 'FR'], ['name' => 'DeWitt', 'country_code' => 'US'], ['name' => 'Ranstadt', 'country_code' => 'DE'], ['name' => 'Ubersee', 'country_code' => 'DE'], ['name' => 'Forchtenberg', 'country_code' => 'DE'], ['name' => 'Aghbar', 'country_code' => 'MA'], ['name' => 'Sawmills', 'country_code' => 'US'], ['name' => 'Paulden', 'country_code' => 'US'], ['name' => 'Newfield', 'country_code' => 'US'], ['name' => 'Shebalino', 'country_code' => 'RU'], ['name' => 'Maetinga', 'country_code' => 'BR'], ['name' => 'Malishka', 'country_code' => 'AM'], ['name' => 'Los Menucos', 'country_code' => 'AR'], ['name' => 'Forcalquier', 'country_code' => 'FR'], ['name' => 'Attica', 'country_code' => 'US'], ['name' => 'Flin Flon', 'country_code' => 'CA'], ['name' => 'Kulsheim', 'country_code' => 'DE'], ['name' => 'Sainte-Marie-aux-Mines', 'country_code' => 'FR'], ['name' => 'Celle Ligure', 'country_code' => 'IT'], ['name' => 'Mount Olive', 'country_code' => 'US'], ['name' => 'Mae Chai', 'country_code' => 'TH'], ['name' => 'Nesvady', 'country_code' => 'SK'], ['name' => 'Boulder Creek', 'country_code' => 'US'], ['name' => 'Weisenberg', 'country_code' => 'US'], ['name' => 'Salmourao', 'country_code' => 'BR'], ['name' => 'Kings Langley', 'country_code' => 'GB'], ['name' => 'Marquina-Jemein', 'country_code' => 'ES'], ['name' => 'Erval Grande', 'country_code' => 'BR'], ['name' => 'Weitramsdorf', 'country_code' => 'DE'], ['name' => 'Tichigan', 'country_code' => 'US'], ['name' => 'Conklin', 'country_code' => 'US'], ['name' => 'Walton', 'country_code' => 'US'], ['name' => 'Severnoye', 'country_code' => 'RU'], ['name' => 'Hampden', 'country_code' => 'US'], ['name' => 'Parker', 'country_code' => 'US'], ['name' => 'Pound Ridge', 'country_code' => 'US'], ['name' => 'Tiszaluc', 'country_code' => 'HU'], ['name' => 'Abuzeydabad', 'country_code' => 'IR'], ['name' => 'Agricolandia', 'country_code' => 'BR'], ['name' => 'Dunlap', 'country_code' => 'US'], ['name' => 'Doffing', 'country_code' => 'US'], ['name' => 'Vedeno', 'country_code' => 'RU'], ['name' => 'Bad Wiessee', 'country_code' => 'DE'], ['name' => 'Fahrenzhausen', 'country_code' => 'DE'], ['name' => 'Vomp', 'country_code' => 'AT'], ['name' => 'Volovets', 'country_code' => 'UA'], ['name' => 'Collegeville', 'country_code' => 'US'], ['name' => 'Zlatitsa', 'country_code' => 'BG'], ['name' => 'Saint-Mars-du-Desert', 'country_code' => 'FR'], ['name' => 'West Pleasant View', 'country_code' => 'US'], ['name' => 'Obersontheim', 'country_code' => 'DE'], ['name' => 'Ninotsminda', 'country_code' => 'GE'], ['name' => 'Bedford', 'country_code' => 'US'], ['name' => 'Villadose', 'country_code' => 'IT'], ['name' => 'Grandwood Park', 'country_code' => 'US'], ['name' => 'La Caniza', 'country_code' => 'ES'], ['name' => 'Creve Coeur', 'country_code' => 'US'], ['name' => 'Sterling', 'country_code' => 'US'], ['name' => 'Muzillac', 'country_code' => 'FR'], ['name' => 'Broadalbin', 'country_code' => 'US'], ['name' => 'Pfeffenhausen', 'country_code' => 'DE'], ['name' => 'North Salem', 'country_code' => 'US'], ['name' => 'Cierny Balog', 'country_code' => 'SK'], ['name' => 'Rehfelde', 'country_code' => 'DE'], ['name' => 'Sangeorgiu de Padure', 'country_code' => 'RO'], ['name' => 'Monheim', 'country_code' => 'DE'], ['name' => 'Zapfendorf', 'country_code' => 'DE'], ['name' => 'Hudson', 'country_code' => 'CA'], ['name' => 'Crawfordville', 'country_code' => 'US'], ['name' => 'Bigoudine', 'country_code' => 'MA'], ['name' => 'Dvory nad Zitavou', 'country_code' => 'SK'], ['name' => 'Ibiquera', 'country_code' => 'BR'], ['name' => 'Maratea', 'country_code' => 'IT'], ['name' => 'Victor Harbor', 'country_code' => 'AU'], ['name' => 'Berdyuzhye', 'country_code' => 'RU'], ['name' => 'Plouigneau', 'country_code' => 'FR'], ['name' => 'Tamboara', 'country_code' => 'BR'], ['name' => 'Lake City', 'country_code' => 'US'], ['name' => 'Erbendorf', 'country_code' => 'DE'], ['name' => 'La Garnache', 'country_code' => 'FR'], ['name' => 'Pornainen', 'country_code' => 'FI'], ['name' => 'Gruissan', 'country_code' => 'FR'], ['name' => 'Gananoque', 'country_code' => 'CA'], ['name' => 'Fezouane', 'country_code' => 'MA'], ['name' => 'Rackwitz', 'country_code' => 'DE'], ['name' => 'Oulad Messaoud', 'country_code' => 'MA'], ['name' => 'River Ridge', 'country_code' => 'US'], ['name' => 'Grigor evka', 'country_code' => 'KG'], ['name' => 'Ochi', 'country_code' => 'JP'], ['name' => 'Peize', 'country_code' => 'NL'], ['name' => 'Marcelino Ramos', 'country_code' => 'BR'], ['name' => 'Felicio dos Santos', 'country_code' => 'BR'], ['name' => 'Erwin', 'country_code' => 'US'], ['name' => 'Crihana Veche', 'country_code' => 'MD'], ['name' => 'Grosse Pointe', 'country_code' => 'US'], ['name' => 'Oerlenbach', 'country_code' => 'DE'], ['name' => 'Cazouls-les-Beziers', 'country_code' => 'FR'], ['name' => 'Zyryanskoye', 'country_code' => 'RU'], ['name' => 'Schwaan', 'country_code' => 'DE'], ['name' => 'Blauvelt', 'country_code' => 'US'], ['name' => 'Maine', 'country_code' => 'US'], ['name' => 'Greene', 'country_code' => 'US'], ['name' => 'Alcala del Valle', 'country_code' => 'ES'], ['name' => 'Brochier', 'country_code' => 'BR'], ['name' => 'Hanamaulu', 'country_code' => 'US'], ['name' => 'Bliss Corner', 'country_code' => 'US'], ['name' => 'Grambling', 'country_code' => 'US'], ['name' => 'San Dionisio del Mar', 'country_code' => 'MX'], ['name' => 'Milisauti', 'country_code' => 'RO'], ['name' => 'Vila Propicio', 'country_code' => 'BR'], ['name' => 'Bitche', 'country_code' => 'FR'], ['name' => 'Krasnyy Kholm', 'country_code' => 'RU'], ['name' => 'Ottawa', 'country_code' => 'US'], ['name' => 'Ebnat-Kappel', 'country_code' => 'CH'], ['name' => 'Las Navas del Marques', 'country_code' => 'ES'], ['name' => 'Birdsboro', 'country_code' => 'US'], ['name' => 'Upper Yoder', 'country_code' => 'US'], ['name' => 'Bristol', 'country_code' => 'US'], ['name' => 'Gameleiras', 'country_code' => 'BR'], ['name' => 'Rafael Fernandes', 'country_code' => 'BR'], ['name' => 'St. Clairsville', 'country_code' => 'US'], ['name' => 'Waterbury', 'country_code' => 'US'], ['name' => 'Ayden', 'country_code' => 'US'], ['name' => 'Russkiy Kameshkir', 'country_code' => 'RU'], ['name' => 'Turriff', 'country_code' => 'GB'], ['name' => 'Combarbala', 'country_code' => 'CL'], ['name' => 'Colebrookdale', 'country_code' => 'US'], ['name' => 'Idrinskoye', 'country_code' => 'RU'], ['name' => 'Margaret', 'country_code' => 'US'], ['name' => 'Condofuri', 'country_code' => 'IT'], ['name' => 'Iznalloz', 'country_code' => 'ES'], ['name' => 'Aetsa', 'country_code' => 'FI'], ['name' => 'Assoro', 'country_code' => 'IT'], ['name' => 'Lenzkirch', 'country_code' => 'DE'], ['name' => 'Colville', 'country_code' => 'US'], ['name' => 'Bierutow', 'country_code' => 'PL'], ['name' => 'Mukhorshibir', 'country_code' => 'RU'], ['name' => 'Tourves', 'country_code' => 'FR'], ['name' => 'Holland', 'country_code' => 'US'], ['name' => 'Beas de Segura', 'country_code' => 'ES'], ['name' => 'Goianorte', 'country_code' => 'BR'], ['name' => 'Ghent', 'country_code' => 'US'], ['name' => 'Marion', 'country_code' => 'US'], ['name' => 'Shibetsu', 'country_code' => 'JP'], ['name' => 'Sumiswald', 'country_code' => 'CH'], ['name' => 'Sievi', 'country_code' => 'FI'], ['name' => 'Primera', 'country_code' => 'US'], ['name' => 'Chester', 'country_code' => 'US'], ['name' => 'Oshamambe', 'country_code' => 'JP'], ['name' => 'Humboldt', 'country_code' => 'US'], ['name' => 'Askola', 'country_code' => 'FI'], ['name' => 'Sergeant Bluff', 'country_code' => 'US'], ['name' => 'Homestead Meadows North', 'country_code' => 'US'], ['name' => 'Lonsee', 'country_code' => 'DE'], ['name' => 'Caturai', 'country_code' => 'BR'], ['name' => 'Freren', 'country_code' => 'DE'], ['name' => 'Japura', 'country_code' => 'BR'], ['name' => 'Spring Valley', 'country_code' => 'US'], ['name' => 'Oberthulba', 'country_code' => 'DE'], ['name' => 'Flagler Beach', 'country_code' => 'US'], ['name' => 'Canutillo', 'country_code' => 'US'], ['name' => 'Rainsville', 'country_code' => 'US'], ['name' => 'Khatukay', 'country_code' => 'RU'], ['name' => 'Brokenhead', 'country_code' => 'CA'], ['name' => 'Saint-Paul', 'country_code' => 'CA'], ['name' => 'Recani', 'country_code' => 'MA'], ['name' => 'Lone Grove', 'country_code' => 'US'], ['name' => 'La Puebla de Almoradiel', 'country_code' => 'ES'], ['name' => 'Penafiel', 'country_code' => 'ES'], ['name' => 'Oliva de la Frontera', 'country_code' => 'ES'], ['name' => 'Silver Hill', 'country_code' => 'US'], ['name' => 'Colona', 'country_code' => 'US'], ['name' => 'Alfandega da Fe', 'country_code' => 'PT'], ['name' => 'Catuti', 'country_code' => 'BR'], ['name' => 'Madre de Deus de Minas', 'country_code' => 'BR'], ['name' => 'Egyek', 'country_code' => 'HU'], ['name' => 'Krauchenwies', 'country_code' => 'DE'], ['name' => 'Negru Voda', 'country_code' => 'RO'], ['name' => 'Halac', 'country_code' => 'TM'], ['name' => 'Joroinen', 'country_code' => 'FI'], ['name' => 'Bab Boudir', 'country_code' => 'MA'], ['name' => 'Valverde', 'country_code' => 'ES'], ['name' => 'Montecastrilli', 'country_code' => 'IT'], ['name' => 'Battlement Mesa', 'country_code' => 'US'], ['name' => 'Post', 'country_code' => 'US'], ['name' => 'Dmitrovsk-Orlovskiy', 'country_code' => 'RU'], ['name' => 'Bowie', 'country_code' => 'US'], ['name' => 'Northumberland', 'country_code' => 'US'], ['name' => 'Spalt', 'country_code' => 'DE'], ['name' => 'McGuire AFB', 'country_code' => 'US'], ['name' => 'Guzolandia', 'country_code' => 'BR'], ['name' => 'Montbard', 'country_code' => 'FR'], ['name' => 'Serra do Navio', 'country_code' => 'BR'], ['name' => 'Carmi', 'country_code' => 'US'], ['name' => 'Paris', 'country_code' => 'US'], ['name' => 'Oberviechtach', 'country_code' => 'DE'], ['name' => 'Lesignano de Bagni', 'country_code' => 'IT'], ['name' => 'Ilok', 'country_code' => 'HR'], ['name' => 'Kings Park', 'country_code' => 'US'], ['name' => 'Quantico Base', 'country_code' => 'US'], ['name' => 'Mineo', 'country_code' => 'IT'], ['name' => 'Thung Yai', 'country_code' => 'TH'], ['name' => 'Oyer', 'country_code' => 'NO'], ['name' => 'Stara Moravica', 'country_code' => 'RS'], ['name' => 'Gargalianoi', 'country_code' => 'GR'], ['name' => 'Coco', 'country_code' => 'PR'], ['name' => 'Lake', 'country_code' => 'US'], ['name' => 'Salbris', 'country_code' => 'FR'], ['name' => 'Labranzagrande', 'country_code' => 'CO'], ['name' => 'Utica', 'country_code' => 'US'], ['name' => 'Schuylkill Haven', 'country_code' => 'US'], ['name' => 'Lacanau', 'country_code' => 'FR'], ['name' => 'Hollfeld', 'country_code' => 'DE'], ['name' => 'Korpilahti', 'country_code' => 'FI'], ['name' => 'Scott City', 'country_code' => 'US'], ['name' => 'Portland', 'country_code' => 'US'], ['name' => 'Poplar Grove', 'country_code' => 'US'], ['name' => 'Tineg', 'country_code' => 'PH'], ['name' => 'Sao Jose da Varginha', 'country_code' => 'BR'], ['name' => 'Naumburg', 'country_code' => 'DE'], ['name' => 'Phanom', 'country_code' => 'TH'], ['name' => 'Bozhurishte', 'country_code' => 'BG'], ['name' => 'Bevagna', 'country_code' => 'IT'], ['name' => 'Buellton', 'country_code' => 'US'], ['name' => 'Daleville', 'country_code' => 'US'], ['name' => 'Susel', 'country_code' => 'DE'], ['name' => 'Castro de Rey', 'country_code' => 'ES'], ['name' => 'Belleview', 'country_code' => 'US'], ['name' => 'Schuyler Falls', 'country_code' => 'US'], ['name' => 'Denair', 'country_code' => 'US'], ['name' => 'Westlock', 'country_code' => 'CA'], ['name' => 'Bocaina de Minas', 'country_code' => 'BR'], ['name' => 'Cacique Doble', 'country_code' => 'BR'], ['name' => 'Ostrov', 'country_code' => 'RO'], ['name' => 'Highland Lakes', 'country_code' => 'US'], ['name' => 'Johnstown', 'country_code' => 'US'], ['name' => 'Caicara', 'country_code' => 'BR'], ['name' => 'Temiscouata-sur-le-Lac', 'country_code' => 'CA'], ['name' => 'Pojo', 'country_code' => 'FI'], ['name' => 'Dickinson', 'country_code' => 'US'], ['name' => 'Klavdiyevo-Tarasove', 'country_code' => 'UA'], ['name' => 'Turvolandia', 'country_code' => 'BR'], ['name' => 'Sousel', 'country_code' => 'PT'], ['name' => 'South Haven', 'country_code' => 'US'], ['name' => 'Hugo', 'country_code' => 'US'], ['name' => 'Tice', 'country_code' => 'US'], ['name' => 'Jalcomulco', 'country_code' => 'MX'], ['name' => 'Mexico', 'country_code' => 'US'], ['name' => 'Town and Country', 'country_code' => 'US'], ['name' => 'Quinta do Sol', 'country_code' => 'BR'], ['name' => 'Lakeview', 'country_code' => 'US'], ['name' => 'Morganville', 'country_code' => 'US'], ['name' => 'New Burlington', 'country_code' => 'US'], ['name' => 'Mockrehna', 'country_code' => 'DE'], ['name' => 'Bol shoye Boldino', 'country_code' => 'RU'], ['name' => 'Shannon', 'country_code' => 'CA'], ['name' => 'Osoyoos', 'country_code' => 'CA'], ['name' => 'Crucilandia', 'country_code' => 'BR'], ['name' => 'Holbrook', 'country_code' => 'US'], ['name' => 'Four Corners', 'country_code' => 'US'], ['name' => 'Rio Hondo', 'country_code' => 'US'], ['name' => 'Sheldon', 'country_code' => 'US'], ['name' => 'Lyubim', 'country_code' => 'RU'], ['name' => 'North Fond du Lac', 'country_code' => 'US'], ['name' => 'Shelby', 'country_code' => 'US'], ['name' => 'Crestwood', 'country_code' => 'US'], ['name' => 'Middle Paxton', 'country_code' => 'US'], ['name' => 'Whiston', 'country_code' => 'GB'], ['name' => 'Moulay Driss Aghbal', 'country_code' => 'MA'], ['name' => 'Isaccea', 'country_code' => 'RO'], ['name' => 'Jose Raydam', 'country_code' => 'BR'], ['name' => 'Middleton-on-Sea', 'country_code' => 'GB'], ['name' => 'Fox Chapel', 'country_code' => 'US'], ['name' => 'Vinton', 'country_code' => 'US'], ['name' => 'Palestina', 'country_code' => 'BR'], ['name' => 'De Motte', 'country_code' => 'US'], ['name' => 'Silver Springs', 'country_code' => 'US'], ['name' => 'Maplewood', 'country_code' => 'US'], ['name' => 'Laraquete', 'country_code' => 'CL'], ['name' => 'Chaiten', 'country_code' => 'CL'], ['name' => 'Glencoe', 'country_code' => 'US'], ['name' => 'Kolochava', 'country_code' => 'UA'], ['name' => 'Hearst', 'country_code' => 'CA'], ['name' => 'West Mead', 'country_code' => 'US'], ['name' => 'Canterbury', 'country_code' => 'US'], ['name' => 'Adams', 'country_code' => 'US'], ['name' => 'Shanor-Northvue', 'country_code' => 'US'], ['name' => 'Dachi', 'country_code' => 'CN'], ['name' => 'Domeikava', 'country_code' => 'LT'], ['name' => 'Tiszaalpar', 'country_code' => 'HU'], ['name' => 'Shipston on Stour', 'country_code' => 'GB'], ['name' => 'Itaja', 'country_code' => 'BR'], ['name' => 'Bella', 'country_code' => 'IT'], ['name' => 'Sao Goncalo do Piaui', 'country_code' => 'BR'], ['name' => 'Massac', 'country_code' => 'US'], ['name' => 'Lower Oxford', 'country_code' => 'US'], ['name' => 'Naganohara', 'country_code' => 'JP'], ['name' => 'Alvaro de Carvalho', 'country_code' => 'BR'], ['name' => 'Munroe Falls', 'country_code' => 'US'], ['name' => 'Saltillo', 'country_code' => 'US'], ['name' => 'Monee', 'country_code' => 'US'], ['name' => 'Imagane', 'country_code' => 'JP'], ['name' => 'Vedra', 'country_code' => 'ES'], ['name' => 'Agnone', 'country_code' => 'IT'], ['name' => 'Sao Pedro da Uniao', 'country_code' => 'BR'], ['name' => 'Iowa Falls', 'country_code' => 'US'], ['name' => 'Roseburg North', 'country_code' => 'US'], ['name' => 'Ipigua', 'country_code' => 'BR'], ['name' => 'Congonhas do Norte', 'country_code' => 'BR'], ['name' => 'Buckley', 'country_code' => 'US'], ['name' => 'Nottingham', 'country_code' => 'US'], ['name' => 'Scott', 'country_code' => 'US'], ['name' => 'Gretna', 'country_code' => 'US'], ['name' => 'Candor', 'country_code' => 'US'], ['name' => 'Stewartstown', 'country_code' => 'US'], ['name' => 'Hitra', 'country_code' => 'NO'], ['name' => 'Z.hurivka', 'country_code' => 'UA'], ['name' => 'Bohdanivka', 'country_code' => 'UA'], ['name' => 'Baile Herculane', 'country_code' => 'RO'], ['name' => 'Florai', 'country_code' => 'BR'], ['name' => 'West Hills', 'country_code' => 'US'], ['name' => 'Glen Head', 'country_code' => 'US'], ['name' => 'Cerceda', 'country_code' => 'ES'], ['name' => 'Descoberto', 'country_code' => 'BR'], ['name' => 'Azrar', 'country_code' => 'MA'], ['name' => 'Clifton', 'country_code' => 'US'], ['name' => 'Pratania', 'country_code' => 'BR'], ['name' => 'Candeleda', 'country_code' => 'ES'], ['name' => 'Offutt AFB', 'country_code' => 'US'], ['name' => 'Berkeley', 'country_code' => 'US'], ['name' => 'Wayne', 'country_code' => 'US'], ['name' => 'Wakefield', 'country_code' => 'US'], ['name' => 'Carver', 'country_code' => 'US'], ['name' => 'Dundee', 'country_code' => 'US'], ['name' => 'North Scituate', 'country_code' => 'US'], ['name' => 'Braunas', 'country_code' => 'BR'], ['name' => 'Montevideo', 'country_code' => 'US'], ['name' => 'Sulphur', 'country_code' => 'US'], ['name' => 'Summit', 'country_code' => 'US'], ['name' => 'Ibertioga', 'country_code' => 'BR'], ['name' => 'Springfield', 'country_code' => 'US'], ['name' => 'Colesville', 'country_code' => 'US'], ['name' => 'Amelia', 'country_code' => 'US'], ['name' => 'Palmeira', 'country_code' => 'BR'], ['name' => 'Juuka', 'country_code' => 'FI'], ['name' => 'Vargem Grande do Rio Pardo', 'country_code' => 'BR'], ['name' => 'Barling', 'country_code' => 'US'], ['name' => 'Krum', 'country_code' => 'US'], ['name' => 'Tolfa', 'country_code' => 'IT'], ['name' => 'Alfred', 'country_code' => 'US'], ['name' => 'Bom Sucesso', 'country_code' => 'BR'], ['name' => 'San Jeronimo Coatlan', 'country_code' => 'MX'], ['name' => 'Uvat', 'country_code' => 'RU'], ['name' => 'Rockingham', 'country_code' => 'US'], ['name' => 'Jericho', 'country_code' => 'US'], ['name' => 'Terryville', 'country_code' => 'US'], ['name' => 'La Crescent', 'country_code' => 'US'], ['name' => 'Piedade dos Gerais', 'country_code' => 'BR'], ['name' => 'Cuparaque', 'country_code' => 'BR'], ['name' => 'Admont', 'country_code' => 'AT'], ['name' => 'Sand', 'country_code' => 'NO'], ['name' => 'Worland', 'country_code' => 'US'], ['name' => 'Olyphant', 'country_code' => 'US'], ['name' => 'Stafford Springs', 'country_code' => 'US'], ['name' => 'Whiskey Creek', 'country_code' => 'US'], ['name' => 'Doney Park', 'country_code' => 'US'], ['name' => 'Glennville', 'country_code' => 'US'], ['name' => 'Sea Cliff', 'country_code' => 'US'], ['name' => 'Lackawaxen', 'country_code' => 'US'], ['name' => 'Jose Boiteux', 'country_code' => 'BR'], ['name' => 'Abbeville', 'country_code' => 'US'], ['name' => 'Muleshoe', 'country_code' => 'US'], ['name' => 'Charlestown', 'country_code' => 'US'], ['name' => 'Chukhloma', 'country_code' => 'RU'], ['name' => 'Deerfield', 'country_code' => 'US'], ['name' => 'Granville', 'country_code' => 'US'], ['name' => 'West Salem', 'country_code' => 'US'], ['name' => 'Mossamedes', 'country_code' => 'BR'], ['name' => 'Guerneville', 'country_code' => 'US'], ['name' => 'Dinapigue', 'country_code' => 'PH'], ['name' => 'Bom Jesus do Tocantins', 'country_code' => 'BR'], ['name' => 'Hawaiian Ocean View', 'country_code' => 'US'], ['name' => 'West Sayville', 'country_code' => 'US'], ['name' => 'Mullins', 'country_code' => 'US'], ['name' => 'Peach Bottom', 'country_code' => 'US'], ['name' => 'Waldoboro', 'country_code' => 'US'], ['name' => 'Swoyersville', 'country_code' => 'US'], ['name' => 'Hoopeston', 'country_code' => 'US'], ['name' => 'Chechelnyk', 'country_code' => 'UA'], ['name' => 'Greenfield', 'country_code' => 'US'], ['name' => 'Hudson', 'country_code' => 'US'], ['name' => 'Ridgeland', 'country_code' => 'US'], ['name' => 'Dwight', 'country_code' => 'US'], ['name' => 'Oak Park Heights', 'country_code' => 'US'], ['name' => 'Gillespie', 'country_code' => 'US'], ['name' => 'Midfield', 'country_code' => 'US'], ['name' => 'Antigonish', 'country_code' => 'CA'], ['name' => 'Igarka', 'country_code' => 'RU'], ['name' => 'Ingham', 'country_code' => 'AU'], ['name' => 'Oranjemund', 'country_code' => 'NA'], ['name' => 'Manjimup', 'country_code' => 'AU'], ['name' => 'Nata', 'country_code' => 'BW'], ['name' => 'Carnarvon', 'country_code' => 'AU'], ['name' => 'Turukhansk', 'country_code' => 'RU'], ['name' => 'Susuman', 'country_code' => 'RU'], ['name' => 'Bagdarin', 'country_code' => 'RU'], ['name' => 'Smithton', 'country_code' => 'AU'], ['name' => 'Svolvaer', 'country_code' => 'NO'], ['name' => 'Narrogin', 'country_code' => 'AU'], ['name' => 'Westport', 'country_code' => 'NZ'], ['name' => 'Perito Moreno', 'country_code' => 'AR'], ['name' => 'Newman', 'country_code' => 'AU'], ['name' => 'Otavi', 'country_code' => 'NA'], ['name' => 'Tepelene', 'country_code' => 'AL'], ['name' => 'Camargo', 'country_code' => 'BO'], ['name' => 'Gobernador Gregores', 'country_code' => 'AR'], ['name' => 'Abra Pampa', 'country_code' => 'AR'], ['name' => 'Pofadder', 'country_code' => 'ZA'], ['name' => 'Victorica', 'country_code' => 'AR'], ['name' => 'La Paz', 'country_code' => 'AR'], ['name' => 'Kyaukpyu', 'country_code' => 'MM'], ['name' => 'Sokolo', 'country_code' => 'ML'], ['name' => 'Merimbula', 'country_code' => 'AU'], ['name' => 'Manica', 'country_code' => 'MZ'], ['name' => 'Katanning', 'country_code' => 'AU'], ['name' => 'Dehiba', 'country_code' => 'TN'], ['name' => 'Comandante Fontana', 'country_code' => 'AR'], ['name' => 'Erseke', 'country_code' => 'AL'], ['name' => 'Weipa', 'country_code' => 'AU'], ['name' => 'Wallaroo', 'country_code' => 'AU'], ['name' => 'Renwick', 'country_code' => 'NZ'], ['name' => 'Mitzic', 'country_code' => 'GA'], ['name' => 'Brus Laguna', 'country_code' => 'HN'], ['name' => 'Corovode', 'country_code' => 'AL'], ['name' => 'Pevek', 'country_code' => 'RU'], ['name' => 'El Maiten', 'country_code' => 'AR'], ['name' => 'Central Coast', 'country_code' => 'AU'], ['name' => 'Karmah an Nuzul', 'country_code' => 'SD'], ['name' => 'Mayumba', 'country_code' => 'GA'], ['name' => 'La Paloma', 'country_code' => 'UY'], ['name' => 'Nautla', 'country_code' => 'MX'], ['name' => 'Finnsnes', 'country_code' => 'NO'], ['name' => 'Sapouy', 'country_code' => 'BF'], ['name' => 'Sicasica', 'country_code' => 'BO'], ['name' => 'Teseney', 'country_code' => 'ER'], ['name' => 'Ulaan-Uul', 'country_code' => 'MN'], ['name' => 'Yomou', 'country_code' => 'GN'], ['name' => 'Lavumisa', 'country_code' => 'SZ'], ['name' => 'Proserpine', 'country_code' => 'AU'], ['name' => 'Port Douglas', 'country_code' => 'AU'], ['name' => 'Baltasar Brum', 'country_code' => 'UY'], ['name' => 'Clare', 'country_code' => 'AU'], ['name' => 'Tom Price', 'country_code' => 'AU'], ['name' => 'Hokitika', 'country_code' => 'NZ'], ['name' => 'Kirkenes', 'country_code' => 'NO'], ['name' => 'Te Anau', 'country_code' => 'NZ'], ['name' => 'Santa Barbara', 'country_code' => 'CL'], ['name' => 'Srednekolymsk', 'country_code' => 'RU'], ['name' => 'Magdalena', 'country_code' => 'BO'], ['name' => 'Zhigansk', 'country_code' => 'RU'], ['name' => 'Charleville', 'country_code' => 'AU'], ['name' => 'Sebba', 'country_code' => 'BF'], ['name' => 'Mopipi', 'country_code' => 'BW'], ['name' => 'Donegal', 'country_code' => 'IE'], ['name' => 'Mezen', 'country_code' => 'RU'], ['name' => 'Caballococha', 'country_code' => 'PE'], ['name' => 'Teeli', 'country_code' => 'RU'], ['name' => 'Sinnamary', 'country_code' => 'GF'], ['name' => 'Cloncurry', 'country_code' => 'AU'], ['name' => 'Bordertown', 'country_code' => 'AU'], ['name' => 'Aigua', 'country_code' => 'UY'], ['name' => 'Mkokotoni', 'country_code' => 'TZ'], ['name' => 'Buur Gaabo', 'country_code' => 'SO'], ['name' => 'Karungu', 'country_code' => 'KE'], ['name' => 'Mangbwalu', 'country_code' => 'CD'], ['name' => 'I-n-Amguel', 'country_code' => 'DZ'], ['name' => 'Longreach', 'country_code' => 'AU'], ['name' => 'Merredin', 'country_code' => 'AU'], ['name' => 'Samaipata', 'country_code' => 'BO'], ['name' => 'Padilla', 'country_code' => 'BO'], ['name' => 'Pampa del Infierno', 'country_code' => 'AR'], ['name' => 'Kailu', 'country_code' => 'CN'], ['name' => 'Urubamba', 'country_code' => 'PE'], ['name' => 'Hlatikulu', 'country_code' => 'SZ'], ['name' => 'Rio Mayo', 'country_code' => 'AR'], ['name' => 'Cochrane', 'country_code' => 'CL'], ['name' => 'Puerto Villamil', 'country_code' => 'EC'], ['name' => 'Saint-Georges', 'country_code' => 'GF'], ['name' => 'Scottsdale', 'country_code' => 'AU'], ['name' => 'Rorvik', 'country_code' => 'NO'], ['name' => 'Isafjordhur', 'country_code' => 'IS'], ['name' => 'Bourke', 'country_code' => 'AU'], ['name' => 'Chumbicha', 'country_code' => 'AR'], ['name' => 'Huasco', 'country_code' => 'CL'], ['name' => 'Severo-Kuril sk', 'country_code' => 'RU'], ['name' => 'Nauta', 'country_code' => 'PE'], ['name' => 'Exmouth', 'country_code' => 'AU'], ['name' => 'Queenstown', 'country_code' => 'AU'], ['name' => 'Tarabuco', 'country_code' => 'BO'], ['name' => 'Baures', 'country_code' => 'BO'], ['name' => 'Al Alamayn', 'country_code' => 'EG'], ['name' => 'El Dorado', 'country_code' => 'VE'], ['name' => 'Hofn', 'country_code' => 'IS'], ['name' => 'Boffa', 'country_code' => 'GN'], ['name' => 'Dondo', 'country_code' => 'AO'], ['name' => 'Jurado', 'country_code' => 'CO'], ['name' => 'Coroico', 'country_code' => 'BO'], ['name' => 'Egilsstadhir', 'country_code' => 'IS'], ['name' => 'Mount Barker', 'country_code' => 'AU'], ['name' => 'Saskylakh', 'country_code' => 'RU'], ['name' => 'Lehututu', 'country_code' => 'BW'], ['name' => 'Roura', 'country_code' => 'GF'], ['name' => 'Sorata', 'country_code' => 'BO'], ['name' => 'Plumtree', 'country_code' => 'ZW'], ['name' => 'Kaikoura', 'country_code' => 'NZ'], ['name' => 'Katwe', 'country_code' => 'UG'], ['name' => 'Alexander Bay', 'country_code' => 'ZA'], ['name' => 'Mejillones', 'country_code' => 'CL'], ['name' => 'Wagin', 'country_code' => 'AU'], ['name' => 'Tasiilaq', 'country_code' => 'GL'], ['name' => 'Kingston South East', 'country_code' => 'AU'], ['name' => 'Tumby Bay', 'country_code' => 'AU'], ['name' => 'Borgarnes', 'country_code' => 'IS'], ['name' => 'Qasigiannguit', 'country_code' => 'GL'], ['name' => 'Puerto Williams', 'country_code' => 'CL'], ['name' => 'Novyy Port', 'country_code' => 'RU'], ['name' => 'Kalbarri', 'country_code' => 'AU'], ['name' => 'Nokaneng', 'country_code' => 'BW'], ['name' => 'Port Denison', 'country_code' => 'AU'], ['name' => 'Penola', 'country_code' => 'AU'], ['name' => 'Artemovsk', 'country_code' => 'RU'], ['name' => 'Streaky Bay', 'country_code' => 'AU'], ['name' => 'Cuevo', 'country_code' => 'BO'], ['name' => 'Qaanaaq', 'country_code' => 'GL'], ['name' => 'Halls Creek', 'country_code' => 'AU'], ['name' => 'Trancas', 'country_code' => 'AR'], ['name' => 'Uummannaq', 'country_code' => 'GL'], ['name' => 'Peterborough', 'country_code' => 'AU'], ['name' => 'Alto Rio Senguer', 'country_code' => 'AR'], ['name' => 'Sierra Colorada', 'country_code' => 'AR'], ['name' => 'Iracoubo', 'country_code' => 'GF'], ['name' => 'Ouyen', 'country_code' => 'AU'], ['name' => 'Chibemba', 'country_code' => 'AO'], ['name' => 'Tajarhi', 'country_code' => 'LY'], ['name' => 'Katherine', 'country_code' => 'AU'], ['name' => 'Lokwabe', 'country_code' => 'BW'], ['name' => 'Chibia', 'country_code' => 'AO'], ['name' => 'Paamiut', 'country_code' => 'GL'], ['name' => 'Barcaldine', 'country_code' => 'AU'], ['name' => 'Tsau', 'country_code' => 'BW'], ['name' => 'Tarutung', 'country_code' => 'ID'], ['name' => 'Nakhodka', 'country_code' => 'RU'], ['name' => 'Jaque', 'country_code' => 'PA'], ['name' => 'Ourense', 'country_code' => 'ES'], ['name' => 'Lavrentiya', 'country_code' => 'RU'], ['name' => 'Cowell', 'country_code' => 'AU'], ['name' => 'Principe da Beira', 'country_code' => 'BR'], ['name' => 'Meningie', 'country_code' => 'AU'], ['name' => 'Las Lajas', 'country_code' => 'AR'], ['name' => 'Upernavik', 'country_code' => 'GL'], ['name' => 'Hughenden', 'country_code' => 'AU'], ['name' => 'Verkhoyansk', 'country_code' => 'RU'], ['name' => 'Meekatharra', 'country_code' => 'AU'], ['name' => 'Uad Damran', 'country_code' => 'MA'], ['name' => 'Yulara', 'country_code' => 'AU'], ['name' => 'Wyndham', 'country_code' => 'AU'], ['name' => 'Susques', 'country_code' => 'AR'], ['name' => 'Chumikan', 'country_code' => 'RU'], ['name' => 'Roebourne', 'country_code' => 'AU'], ['name' => 'Yelimane', 'country_code' => 'ML'], ['name' => 'Kaupanger', 'country_code' => 'NO'], ['name' => 'Tunduru', 'country_code' => 'TZ'], ['name' => 'Bicheno', 'country_code' => 'AU'], ['name' => 'Kullorsuaq', 'country_code' => 'GL'], ['name' => 'Winton', 'country_code' => 'AU'], ['name' => 'Oatlands', 'country_code' => 'AU'], ['name' => 'Godhavn', 'country_code' => 'GL'], ['name' => 'Leonora', 'country_code' => 'AU'], ['name' => 'Gingin', 'country_code' => 'AU'], ['name' => 'Ayan', 'country_code' => 'RU'], ['name' => 'Wilcannia', 'country_code' => 'AU'], ['name' => 'Onslow', 'country_code' => 'AU'], ['name' => 'Laverton', 'country_code' => 'AU'], ['name' => 'Morawa', 'country_code' => 'AU'], ['name' => 'Southern Cross', 'country_code' => 'AU'], ['name' => 'Omolon', 'country_code' => 'RU'], ['name' => 'Linxi', 'country_code' => 'CN'], ['name' => 'Comallo', 'country_code' => 'AR'], ['name' => 'Norseman', 'country_code' => 'AU'], ['name' => 'Ravensthorpe', 'country_code' => 'AU'], ['name' => 'Eidsvold', 'country_code' => 'AU'], ['name' => 'Pannawonica', 'country_code' => 'AU'], ['name' => 'Rodeo', 'country_code' => 'AR'], ['name' => 'Ubombo', 'country_code' => 'ZA'], ['name' => 'Kimba', 'country_code' => 'AU'], ['name' => 'Peterborough', 'country_code' => 'GB'], ['name' => 'Mount Magnet', 'country_code' => 'AU'], ['name' => 'Three Springs', 'country_code' => 'AU'], ['name' => 'Uelen', 'country_code' => 'RU'], ['name' => 'Theodore', 'country_code' => 'AU'], ['name' => 'Gastre', 'country_code' => 'AR'], ['name' => 'Tinogasta', 'country_code' => 'AR'], ['name' => 'Halfmoon Bay', 'country_code' => 'NZ'], ['name' => 'Lemsid', 'country_code' => 'MA'], ['name' => 'Mikhalkino', 'country_code' => 'RU'], ['name' => 'Lasserre', 'country_code' => 'GP'], ['name' => 'Scoresbysund', 'country_code' => 'GL'], ['name' => 'Telsen', 'country_code' => 'AR'], ['name' => 'Karumba', 'country_code' => 'AU'], ['name' => 'Richmond', 'country_code' => 'AU'], ['name' => 'Andamooka', 'country_code' => 'AU'], ['name' => 'Georgetown', 'country_code' => 'AU'], ['name' => 'Xangongo', 'country_code' => 'AO'], ['name' => 'Boulia', 'country_code' => 'AU'], ['name' => 'Espungabera', 'country_code' => 'MZ'], ['name' => 'Adelaide River', 'country_code' => 'AU'], ['name' => 'Burketown', 'country_code' => 'AU'], ['name' => 'Progress', 'country_code' => 'RU'], ['name' => 'Kairaki', 'country_code' => 'NZ'], ['name' => 'Ivanhoe', 'country_code' => 'AU'], ['name' => 'Nimule', 'country_code' => 'SS'], ['name' => 'Thargomindah', 'country_code' => 'AU'], ['name' => 'Pine Creek', 'country_code' => 'AU'], ['name' => 'Ikela', 'country_code' => 'CD'], ['name' => 'Cazombo', 'country_code' => 'AO'], ['name' => 'Shoyna', 'country_code' => 'RU'], ['name' => 'Enurmino', 'country_code' => 'RU'], ['name' => 'Timbedgha', 'country_code' => 'MR'], ['name' => 'Greytown', 'country_code' => 'NI'], ['name' => 'Camooweal', 'country_code' => 'AU'], ['name' => 'Vilankulo', 'country_code' => 'MZ'], ['name' => 'Quipungo', 'country_code' => 'AO'], ['name' => 'Sayhut', 'country_code' => 'YE'], ['name' => 'Korf', 'country_code' => 'RU'], ['name' => 'La Esmeralda', 'country_code' => 'VE'], ['name' => 'Birdsville', 'country_code' => 'AU'], ['name' => 'Bedourie', 'country_code' => 'AU'], ['name' => 'Windorah', 'country_code' => 'AU'], ['name' => 'Punta Prieta', 'country_code' => 'MX'], ['name' => 'Al Uqaylah', 'country_code' => 'LY'], ['name' => 'Ituni', 'country_code' => 'GY'], ['name' => 'Southend', 'country_code' => 'GB'], ['name' => 'Kovda', 'country_code' => 'RU'], ['name' => 'Kingoonya', 'country_code' => 'AU'], ['name' => 'Hodrogo', 'country_code' => 'MN'], ['name' => 'Tiyerbes', 'country_code' => 'RU'], ['name' => 'Ust -Nyukzha', 'country_code' => 'RU'], ['name' => 'Chegga', 'country_code' => 'MR'], ['name' => 'Zhilinda', 'country_code' => 'RU'], ['name' => 'Ust -Olenek', 'country_code' => 'RU'], ['name' => 'Olenek', 'country_code' => 'RU'], ['name' => 'Ambarchik', 'country_code' => 'RU'], ['name' => 'Logashkino', 'country_code' => 'RU'], ['name' => 'Bolsward', 'country_code' => 'NL'], ['name' => 'Mazoe', 'country_code' => 'ZW'], ['name' => 'Al Qurayyat', 'country_code' => 'SA'], ['name' => 'Yueyaquan', 'country_code' => 'CN'], ['name' => 'Gamba', 'country_code' => 'GA'], ['name' => 'Jixian', 'country_code' => 'CN'], ['name' => 'Ksar Oulad Azzouz', 'country_code' => 'MA'], ['name' => 'Qarabalyq', 'country_code' => 'KZ'], ['name' => 'Mandritsara', 'country_code' => 'MG'], ['name' => 'Lakha Nevre', 'country_code' => 'RU'], ['name' => 'Olmos', 'country_code' => 'PE'], ['name' => 'Dangcheng', 'country_code' => 'CN'], ['name' => 'Xiba', 'country_code' => 'CN'], ['name' => 'Shiyuan', 'country_code' => 'CN'], ['name' => 'Zengjiaba', 'country_code' => 'CN'], ['name' => 'Aqadyr', 'country_code' => 'KZ'], ['name' => 'Sembe', 'country_code' => 'CG'], ['name' => 'Tounfafi', 'country_code' => 'NE'], ['name' => 'Xiada', 'country_code' => 'CN'], ['name' => 'Bou Zemou', 'country_code' => 'MA'], ['name' => 'Sultan-Yangiyurt', 'country_code' => 'RU'], ['name' => 'Dombarovskiy', 'country_code' => 'RU'], ['name' => 'Novogagatli', 'country_code' => 'RU'], ['name' => 'Igrim', 'country_code' => 'RU'], ['name' => 'Soldato-Aleksandrovskoye', 'country_code' => 'RU'], ['name' => 'Zhangping', 'country_code' => 'CN'], ['name' => 'Pedro Luro', 'country_code' => 'AR'], ['name' => 'Benbutucun', 'country_code' => 'CN'], ['name' => 'Douar Oulad Bouziane', 'country_code' => 'MA'], ['name' => 'Chechen-Aul', 'country_code' => 'RU'], ['name' => 'Weerselo', 'country_code' => 'NL'], ['name' => 'Moisei', 'country_code' => 'RO'], ['name' => 'Ban Kham Pom', 'country_code' => 'TH'], ['name' => 'Douar El Mellaliyine', 'country_code' => 'MA'], ['name' => 'Bandio', 'country_code' => 'NE'], ['name' => 'Mikhaylovskoye', 'country_code' => 'RU'], ['name' => 'Saumalkol', 'country_code' => 'KZ'], ['name' => 'Xiangping', 'country_code' => 'CN'], ['name' => 'Monte Cristo', 'country_code' => 'AR'], ['name' => 'Kawara', 'country_code' => 'NE'], ['name' => 'Leichi', 'country_code' => 'CN'], ['name' => 'Sholaqqorghan', 'country_code' => 'KZ'], ['name' => 'Podstepki', 'country_code' => 'RU'], ['name' => 'Ust -Nera', 'country_code' => 'RU'], ['name' => 'Dazhuangzi', 'country_code' => 'CN'], ['name' => 'Vinsady', 'country_code' => 'RU'], ['name' => 'Jumla', 'country_code' => 'NP'], ['name' => 'Coatetelco', 'country_code' => 'MX'], ['name' => 'Ixtapa Zihuatanejo', 'country_code' => 'MX'], ['name' => 'Shar', 'country_code' => 'KZ'], ['name' => 'Mandishah', 'country_code' => 'EG'], ['name' => 'Liesti', 'country_code' => 'RO'], ['name' => 'Qashyr', 'country_code' => 'KZ'], ['name' => 'Daping', 'country_code' => 'CN'], ['name' => 'Yanchep', 'country_code' => 'AU'], ['name' => 'Zhangaozen', 'country_code' => 'KZ'], ['name' => 'Toulou', 'country_code' => 'NE'], ['name' => 'Marrupa', 'country_code' => 'MZ'], ['name' => 'Verkhniye Achaluki', 'country_code' => 'RU'], ['name' => 'Gidan Ider', 'country_code' => 'NE'], ['name' => 'Al Quway iyah', 'country_code' => 'SA'], ['name' => 'Marginea', 'country_code' => 'RO'], ['name' => 'Nerubaiske', 'country_code' => 'UA'], ['name' => 'Chermen', 'country_code' => 'RU'], ['name' => 'Vicam Pueblo', 'country_code' => 'MX'], ['name' => 'Zhujiagua', 'country_code' => 'CN'], ['name' => 'Corman Park No. 344', 'country_code' => 'CA'], ['name' => 'Aqsu', 'country_code' => 'KZ'], ['name' => 'Justiniano Posse', 'country_code' => 'AR'], ['name' => 'Elin-Yurt', 'country_code' => 'RU'], ['name' => 'Ban Tham', 'country_code' => 'TH'], ['name' => 'Ban Pa Lu Ru', 'country_code' => 'TH'], ['name' => 'Alougoum', 'country_code' => 'MA'], ['name' => 'Mihail Kogalniceanu', 'country_code' => 'RO'], ['name' => 'Masindi Port', 'country_code' => 'UG'], ['name' => 'Hukou', 'country_code' => 'CN'], ['name' => 'Ivanivka', 'country_code' => 'UA'], ['name' => 'Olovyannaya', 'country_code' => 'RU'], ['name' => 'Baili', 'country_code' => 'CN'], ['name' => 'Qarqaraly', 'country_code' => 'KZ'], ['name' => 'Khomutovo', 'country_code' => 'RU'], ['name' => 'Sarmakovo', 'country_code' => 'RU'], ['name' => 'Putina', 'country_code' => 'PE'], ['name' => 'Happy Valley', 'country_code' => 'CA'], ['name' => 'Borcea', 'country_code' => 'RO'], ['name' => 'Oldeani', 'country_code' => 'TZ'], ['name' => 'Ban Banlang', 'country_code' => 'TH'], ['name' => 'Ban Huai Mai', 'country_code' => 'TH'], ['name' => 'Grabovo', 'country_code' => 'RU'], ['name' => 'Afumati', 'country_code' => 'RO'], ['name' => 'Guazhoucun', 'country_code' => 'CN'], ['name' => 'Qusmuryn', 'country_code' => 'KZ'], ['name' => 'Staraya Sunzha', 'country_code' => 'RU'], ['name' => 'Kontcha', 'country_code' => 'CM'], ['name' => 'Matarka', 'country_code' => 'MA'], ['name' => 'Baksanenok', 'country_code' => 'RU'], ['name' => 'Ain Bida', 'country_code' => 'MA'], ['name' => 'Lumina', 'country_code' => 'RO'], ['name' => 'Ch osan-up', 'country_code' => 'KP'], ['name' => 'Ban Pao', 'country_code' => 'TH'], ['name' => 'Benoy-Yurt', 'country_code' => 'RU'], ['name' => 'Iqaluit', 'country_code' => 'CA'], ['name' => 'Kalabo', 'country_code' => 'ZM'], ['name' => 'Velykyi Dalnyk', 'country_code' => 'UA'], ['name' => 'Bansang', 'country_code' => 'GM'], ['name' => 'Baguey', 'country_code' => 'NE'], ['name' => 'Bayghanin', 'country_code' => 'KZ'], ['name' => 'Gucheng', 'country_code' => 'CN'], ['name' => 'Holmestrand', 'country_code' => 'NO'], ['name' => 'Kabardinka', 'country_code' => 'RU'], ['name' => 'Senillosa', 'country_code' => 'AR'], ['name' => 'Morfou', 'country_code' => 'CY'], ['name' => 'Ivanovskoye', 'country_code' => 'RU'], ['name' => 'Birnin Kazoe', 'country_code' => 'NE'], ['name' => 'Tranqueras', 'country_code' => 'UY'], ['name' => 'Sipoteni', 'country_code' => 'MD'], ['name' => 'Neiafu', 'country_code' => 'TO'], ['name' => 'Laguna Larga', 'country_code' => 'AR'], ['name' => 'Yaama', 'country_code' => 'NE'], ['name' => 'Luan Chau', 'country_code' => 'VN'], ['name' => 'Sierra Grande', 'country_code' => 'AR'], ['name' => 'Mzizal', 'country_code' => 'MA'], ['name' => 'Kurush', 'country_code' => 'RU'], ['name' => 'Basing', 'country_code' => 'GB'], ['name' => 'Osakarovka', 'country_code' => 'KZ'], ['name' => 'Bossembele', 'country_code' => 'CF'], ['name' => 'Dalakovo', 'country_code' => 'RU'], ['name' => 'Peterculter', 'country_code' => 'GB'], ['name' => 'Nkob', 'country_code' => 'MA'], ['name' => 'Ban Bua Ngam', 'country_code' => 'TH'], ['name' => 'Hafendorf', 'country_code' => 'AT'], ['name' => 'Bestobe', 'country_code' => 'KZ'], ['name' => 'Tobyl', 'country_code' => 'KZ'], ['name' => 'Dumbraveni', 'country_code' => 'RO'], ['name' => 'Okondja', 'country_code' => 'GA'], ['name' => 'Santa Rosa', 'country_code' => 'AR'], ['name' => 'Berdakel', 'country_code' => 'RU'], ['name' => 'Sichon', 'country_code' => 'TH'], ['name' => 'Brownsburg', 'country_code' => 'CA'], ['name' => 'Dafawa', 'country_code' => 'NE'], ['name' => 'Ban Karaket', 'country_code' => 'TH'], ['name' => 'Datian', 'country_code' => 'CN'], ['name' => 'Taza', 'country_code' => 'NE'], ['name' => 'Zambezi', 'country_code' => 'ZM'], ['name' => 'Dosey', 'country_code' => 'NE'], ['name' => 'Guanzhuang', 'country_code' => 'CN'], ['name' => 'Angoul Denya', 'country_code' => 'NE'], ['name' => 'Melekeok', 'country_code' => 'PW'], ['name' => 'Rio Primero', 'country_code' => 'AR'], ['name' => 'La Punta', 'country_code' => 'CL'], ['name' => 'Quellon', 'country_code' => 'CL'], ['name' => 'Staryy Cherek', 'country_code' => 'RU'], ['name' => 'Bghaghza', 'country_code' => 'MA'], ['name' => 'Azitan', 'country_code' => 'CN'], ['name' => 'Nicoadala', 'country_code' => 'MZ'], ['name' => 'Sidi Bettach', 'country_code' => 'MA'], ['name' => 'Yangjiagetai', 'country_code' => 'CN'], ['name' => 'Ban Kamphuan', 'country_code' => 'TH'], ['name' => 'Dovhe', 'country_code' => 'UA'], ['name' => 'Psygansu', 'country_code' => 'RU'], ['name' => 'Karibib', 'country_code' => 'NA'], ['name' => 'Toubout', 'country_code' => 'NE'], ['name' => 'Ban Wang Kalang', 'country_code' => 'TH'], ['name' => 'Zholymbet', 'country_code' => 'KZ'], ['name' => 'Tuzla', 'country_code' => 'RO'], ['name' => 'Nova Maiachka', 'country_code' => 'UA'], ['name' => 'Supsekh', 'country_code' => 'RU'], ['name' => 'Outerbat', 'country_code' => 'MA'], ['name' => 'Velyki Komiaty', 'country_code' => 'UA'], ['name' => 'Laba', 'country_code' => 'NE'], ['name' => 'Levokumka', 'country_code' => 'RU'], ['name' => 'Moussadeye', 'country_code' => 'NE'], ['name' => 'Golfito', 'country_code' => 'CR'], ['name' => 'Khandyga', 'country_code' => 'RU'], ['name' => 'Taouz', 'country_code' => 'MA'], ['name' => 'Beni Khaled', 'country_code' => 'MA'], ['name' => 'Rozsoshentsi', 'country_code' => 'UA'], ['name' => 'Saddina', 'country_code' => 'MA'], ['name' => 'Sadova', 'country_code' => 'RO'], ['name' => 'Lozuvatka', 'country_code' => 'UA'], ['name' => 'Kurumoch', 'country_code' => 'RU'], ['name' => 'Bakin Birji I', 'country_code' => 'NE'], ['name' => 'Dagou', 'country_code' => 'CN'], ['name' => 'Domna', 'country_code' => 'RU'], ['name' => 'Voronovytsia', 'country_code' => 'UA'], ['name' => 'Saint-Lambert-de-Lauzon', 'country_code' => 'CA'], ['name' => 'Ban Phon Yai', 'country_code' => 'TH'], ['name' => 'Tyourout', 'country_code' => 'NE'], ['name' => 'Sokole', 'country_code' => 'NE'], ['name' => 'Ban Tai', 'country_code' => 'TH'], ['name' => 'Diosig', 'country_code' => 'RO'], ['name' => 'Kubei', 'country_code' => 'UA'], ['name' => 'Muskoka Falls', 'country_code' => 'CA'], ['name' => 'Qazaly', 'country_code' => 'KZ'], ['name' => 'Bile', 'country_code' => 'UA'], ['name' => 'Shechengtan', 'country_code' => 'CN'], ['name' => 'Nasarawa', 'country_code' => 'NE'], ['name' => 'Gilau', 'country_code' => 'RO'], ['name' => 'Vladimirescu', 'country_code' => 'RO'], ['name' => 'Cobadin', 'country_code' => 'RO'], ['name' => 'Adis', 'country_code' => 'MA'], ['name' => 'Vozdvizhenka', 'country_code' => 'RU'], ['name' => 'Bingzhongluo', 'country_code' => 'CN'], ['name' => 'Balotesti', 'country_code' => 'RO'], ['name' => 'Akka Irene', 'country_code' => 'MA'], ['name' => 'Jiyek', 'country_code' => 'CN'], ['name' => 'Bosanci', 'country_code' => 'RO'], ['name' => 'Divnomorskoye', 'country_code' => 'RU'], ['name' => 'Fangjiata', 'country_code' => 'CN'], ['name' => 'Tatarka', 'country_code' => 'RU'], ['name' => 'Peretu', 'country_code' => 'RO'], ['name' => 'Madeta II', 'country_code' => 'NE'], ['name' => 'Garswood', 'country_code' => 'GB'], ['name' => 'Cudalbi', 'country_code' => 'RO'], ['name' => 'San Matias', 'country_code' => 'BO'], ['name' => 'Lydiate', 'country_code' => 'GB'], ['name' => 'Fontanka', 'country_code' => 'UA'], ['name' => 'Belbeji', 'country_code' => 'NE'], ['name' => 'Aouloumal', 'country_code' => 'NE'], ['name' => 'Velikovechnoye', 'country_code' => 'RU'], ['name' => 'Strugi-Krasnyye', 'country_code' => 'RU'], ['name' => 'Tamchen', 'country_code' => 'MX'], ['name' => 'Strejnicu', 'country_code' => 'RO'], ['name' => 'Oum Azza', 'country_code' => 'MA'], ['name' => 'Dysart et al', 'country_code' => 'CA'], ['name' => 'Khurba', 'country_code' => 'RU'], ['name' => 'Kushnytsia', 'country_code' => 'UA'], ['name' => 'Kudryashovskiy', 'country_code' => 'RU'], ['name' => 'Tadighoust', 'country_code' => 'MA'], ['name' => 'Lakkha Nevre', 'country_code' => 'RU'], ['name' => 'Beresford', 'country_code' => 'CA'], ['name' => 'Ban Dong Mafai', 'country_code' => 'TH'], ['name' => 'Remetea', 'country_code' => 'RO'], ['name' => 'Baciu', 'country_code' => 'RO'], ['name' => 'Hamdallay', 'country_code' => 'NE'], ['name' => 'Pattijoki', 'country_code' => 'FI'], ['name' => 'Ndende', 'country_code' => 'GA'], ['name' => 'El Palqui', 'country_code' => 'CL'], ['name' => 'Chemodanovka', 'country_code' => 'RU'], ['name' => 'Ban Chiang', 'country_code' => 'TH'], ['name' => 'Douglas', 'country_code' => 'CA'], ['name' => 'Sandominic', 'country_code' => 'RO'], ['name' => 'Asoudie', 'country_code' => 'NE'], ['name' => 'Ivanovka', 'country_code' => 'RU'], ['name' => 'Umba', 'country_code' => 'RU'], ['name' => 'Ahrarne', 'country_code' => 'UA'], ['name' => 'Sutysky', 'country_code' => 'UA'], ['name' => 'Hollington', 'country_code' => 'GB'], ['name' => 'Sabon Birni', 'country_code' => 'NE'], ['name' => 'Apahida', 'country_code' => 'RO'], ['name' => 'Vicovu de Jos', 'country_code' => 'RO'], ['name' => 'Lea Town', 'country_code' => 'GB'], ['name' => 'Lozova', 'country_code' => 'MD'], ['name' => 'Dindi', 'country_code' => 'NE'], ['name' => 'Barbulesti', 'country_code' => 'RO'], ['name' => 'Plosca', 'country_code' => 'RO'], ['name' => 'Chapaev', 'country_code' => 'KZ'], ['name' => 'Dan Kori', 'country_code' => 'NE'], ['name' => 'Tazovskiy', 'country_code' => 'RU'], ['name' => 'Achikulak', 'country_code' => 'RU'], ['name' => 'General Zaragoza', 'country_code' => 'MX'], ['name' => 'Ban Talat Ko Ta Ba Ru', 'country_code' => 'TH'], ['name' => 'Masalata', 'country_code' => 'NE'], ['name' => 'Shemordan', 'country_code' => 'RU'], ['name' => 'Toudouni', 'country_code' => 'NE'], ['name' => 'Urvan', 'country_code' => 'RU'], ['name' => 'Garadoume', 'country_code' => 'NE'], ['name' => 'Oulad Aissa', 'country_code' => 'MA'], ['name' => 'Kelente', 'country_code' => 'NE'], ['name' => 'Mundybash', 'country_code' => 'RU'], ['name' => 'Zandak', 'country_code' => 'RU'], ['name' => 'Djibale', 'country_code' => 'NE'], ['name' => 'Sokilnyky', 'country_code' => 'UA'], ['name' => 'Ibstock', 'country_code' => 'GB'], ['name' => 'Aiyomojok', 'country_code' => 'CM'], ['name' => 'Feldru', 'country_code' => 'RO'], ['name' => 'Giroc', 'country_code' => 'RO'], ['name' => 'Peris', 'country_code' => 'RO'], ['name' => 'Piggs Peak', 'country_code' => 'SZ'], ['name' => 'Spasskoye', 'country_code' => 'RU'], ['name' => 'Sokur', 'country_code' => 'RU'], ['name' => 'Kamennomostskoye', 'country_code' => 'RU'], ['name' => 'Bouti', 'country_code' => 'NE'], ['name' => 'Kaora Abdou', 'country_code' => 'NE'], ['name' => 'Chernolesskoye', 'country_code' => 'RU'], ['name' => 'Koundoumawa', 'country_code' => 'NE'], ['name' => 'Fderik', 'country_code' => 'MR'], ['name' => 'Soubdou', 'country_code' => 'NE'], ['name' => 'Krym', 'country_code' => 'RU'], ['name' => 'Saal', 'country_code' => 'DE'], ['name' => 'Horonda', 'country_code' => 'UA'], ['name' => 'Presnovka', 'country_code' => 'KZ'], ['name' => 'Kazminskoye', 'country_code' => 'RU'], ['name' => 'General Levalle', 'country_code' => 'AR'], ['name' => 'Tiksi', 'country_code' => 'RU'], ['name' => 'Princeville', 'country_code' => 'CA'], ['name' => 'Perugorria', 'country_code' => 'AR'], ['name' => 'Macea', 'country_code' => 'RO'], ['name' => 'Ruscova', 'country_code' => 'RO'], ['name' => 'Jinshan', 'country_code' => 'CN'], ['name' => 'Oituz', 'country_code' => 'RO'], ['name' => 'Jiajiaping', 'country_code' => 'CN'], ['name' => 'Prigorodnoye', 'country_code' => 'RU'], ['name' => 'Rucar', 'country_code' => 'RO'], ['name' => 'Rodna', 'country_code' => 'RO'], ['name' => 'Kasempa', 'country_code' => 'ZM'], ['name' => 'Altud', 'country_code' => 'RU'], ['name' => 'Riadi Dan Bizo', 'country_code' => 'NE'], ['name' => 'Kugulta', 'country_code' => 'RU'], ['name' => 'Crowsnest Pass', 'country_code' => 'CA'], ['name' => 'Vitomirice', 'country_code' => 'XK'], ['name' => 'Gugesti', 'country_code' => 'RO'], ['name' => 'Vossevangen', 'country_code' => 'NO'], ['name' => 'Benoy', 'country_code' => 'RU'], ['name' => 'Okhotsk', 'country_code' => 'RU'], ['name' => 'Stanthorpe', 'country_code' => 'AU'], ['name' => 'Zoria', 'country_code' => 'UA'], ['name' => 'Souloulou', 'country_code' => 'NE'], ['name' => 'Tsibanobalka', 'country_code' => 'RU'], ['name' => 'Horenka', 'country_code' => 'UA'], ['name' => 'Bullsbrook', 'country_code' => 'AU'], ['name' => 'Rivne', 'country_code' => 'UA'], ['name' => 'Stepanivka', 'country_code' => 'UA'], ['name' => 'Bialet Masse', 'country_code' => 'AR'], ['name' => 'Tash-Dobo', 'country_code' => 'KG'], ['name' => 'Moulela', 'country_code' => 'NE'], ['name' => 'Renzhuangcun', 'country_code' => 'CN'], ['name' => 'Cairima', 'country_code' => 'CN'], ['name' => 'Zawyat Sidi Hamza', 'country_code' => 'MA'], ['name' => 'Hejiachuan', 'country_code' => 'CN'], ['name' => 'Witu', 'country_code' => 'KE'], ['name' => 'Nakoni', 'country_code' => 'NE'], ['name' => 'Motatei', 'country_code' => 'RO'], ['name' => 'Sollom', 'country_code' => 'GB'], ['name' => 'Ait Athmane', 'country_code' => 'MA'], ['name' => 'Tura', 'country_code' => 'RU'], ['name' => 'Prejmer', 'country_code' => 'RO'], ['name' => 'San Quintin', 'country_code' => 'MX'], ['name' => 'Ouadda', 'country_code' => 'CF'], ['name' => 'Yarkovo', 'country_code' => 'RU'], ['name' => 'Gandasamou', 'country_code' => 'NE'], ['name' => 'Linda', 'country_code' => 'RU'], ['name' => 'Sanmucha', 'country_code' => 'CN'], ['name' => 'Sabonkafi', 'country_code' => 'NE'], ['name' => 'Taoyan', 'country_code' => 'CN'], ['name' => 'Russko-Vysotskoye', 'country_code' => 'RU'], ['name' => 'Homocea', 'country_code' => 'RO'], ['name' => 'Cookshire', 'country_code' => 'CA'], ['name' => 'Maieru', 'country_code' => 'RO'], ['name' => 'Jambriji', 'country_code' => 'NE'], ['name' => 'Pavlodarskoe', 'country_code' => 'KZ'], ['name' => 'Zyazikov', 'country_code' => 'RU'], ['name' => 'Mykolayivka', 'country_code' => 'UA'], ['name' => 'Timoulay Izder', 'country_code' => 'MA'], ['name' => 'Arbore', 'country_code' => 'RO'], ['name' => 'Baia', 'country_code' => 'RO'], ['name' => 'Hohenau', 'country_code' => 'PY'], ['name' => 'Komsomol skoye', 'country_code' => 'RU'], ['name' => 'Verkhnerusskiy', 'country_code' => 'RU'], ['name' => 'Damjan', 'country_code' => 'XK'], ['name' => 'Bogoslovka', 'country_code' => 'RU'], ['name' => 'Giarmata', 'country_code' => 'RO'], ['name' => 'Tufesti', 'country_code' => 'RO'], ['name' => 'Jingping', 'country_code' => 'CN'], ['name' => 'Kuba', 'country_code' => 'RU'], ['name' => 'Corund', 'country_code' => 'RO'], ['name' => 'Inkeroinen', 'country_code' => 'FI'], ['name' => 'Torghay', 'country_code' => 'KZ'], ['name' => 'Ez Zinat', 'country_code' => 'MA'], ['name' => 'Tafetchna', 'country_code' => 'MA'], ['name' => 'Otrado-Ol ginskoye', 'country_code' => 'RU'], ['name' => 'Saint-Honore', 'country_code' => 'CA'], ['name' => 'Ban Chiang Klom', 'country_code' => 'TH'], ['name' => 'Baryshevo', 'country_code' => 'RU'], ['name' => 'Malgorou', 'country_code' => 'NE'], ['name' => 'Dan Gona', 'country_code' => 'NE'], ['name' => 'Ban Nam Phong', 'country_code' => 'TH'], ['name' => 'Horodnicu de Sus', 'country_code' => 'RO'], ['name' => 'Fort-Shevchenko', 'country_code' => 'KZ'], ['name' => 'Xiangkhoang', 'country_code' => 'LA'], ['name' => 'San Francisco', 'country_code' => 'MX'], ['name' => 'Straja', 'country_code' => 'RO'], ['name' => 'Yalta', 'country_code' => 'UA'], ['name' => 'Greci', 'country_code' => 'RO'], ['name' => 'Tudora', 'country_code' => 'RO'], ['name' => 'Yablanovo', 'country_code' => 'BG'], ['name' => 'Souk el Had-des Beni-Batao', 'country_code' => 'MA'], ['name' => 'Algeti', 'country_code' => 'GE'], ['name' => 'Na jan', 'country_code' => 'SA'], ['name' => 'Raducaneni', 'country_code' => 'RO'], ['name' => 'Kyrnasivka', 'country_code' => 'UA'], ['name' => 'Chernyshevskiy', 'country_code' => 'RU'], ['name' => 'Ban San', 'country_code' => 'TH'], ['name' => 'Villa del Rosario', 'country_code' => 'PY'], ['name' => 'Rasinari', 'country_code' => 'RO'], ['name' => 'Dayi', 'country_code' => 'CN'], ['name' => 'Burton', 'country_code' => 'CA'], ['name' => 'Paunesti', 'country_code' => 'RO'], ['name' => 'McMinns Lagoon', 'country_code' => 'AU'], ['name' => 'Spallumcheen', 'country_code' => 'CA'], ['name' => 'Konstantinovskoye', 'country_code' => 'RU'], ['name' => 'Biancang', 'country_code' => 'CN'], ['name' => 'Lesnikovo', 'country_code' => 'RU'], ['name' => 'Diambala', 'country_code' => 'NE'], ['name' => 'Draginovo', 'country_code' => 'BG'], ['name' => 'Qasr al Farafirah', 'country_code' => 'EG'], ['name' => 'Nikolo-Pavlovskoye', 'country_code' => 'RU'], ['name' => 'Saint-Henri', 'country_code' => 'CA'], ['name' => 'Ste. Anne', 'country_code' => 'CA'], ['name' => 'Puerto Casado', 'country_code' => 'PY'], ['name' => 'Ust -Kamchatsk', 'country_code' => 'RU'], ['name' => 'Betanzos', 'country_code' => 'BO'], ['name' => 'Sangar', 'country_code' => 'RU'], ['name' => 'Khatanga', 'country_code' => 'RU'], ['name' => 'Brownsweg', 'country_code' => 'SR'], ['name' => 'Al Qasr', 'country_code' => 'EG'], ['name' => 'Saryshaghan', 'country_code' => 'KZ'], ['name' => 'Bekily', 'country_code' => 'MG'], ['name' => 'Batagay', 'country_code' => 'RU'], ['name' => 'San Javier', 'country_code' => 'BO'], ['name' => 'Omsukchan', 'country_code' => 'RU'], ['name' => 'Apolo', 'country_code' => 'BO'], ['name' => 'Novyy Uoyan', 'country_code' => 'RU'], ['name' => 'Bongandanga', 'country_code' => 'CD'], ['name' => 'Quime', 'country_code' => 'BO'], ['name' => 'Araouane', 'country_code' => 'ML'], ['name' => 'Vergara', 'country_code' => 'UY'], ['name' => 'Mbe', 'country_code' => 'CM'], ['name' => 'Shongzhy', 'country_code' => 'KZ'], ['name' => 'Ciudad Cortes', 'country_code' => 'CR'], ['name' => 'P ungsan', 'country_code' => 'KP'], ['name' => 'Vitim', 'country_code' => 'RU'], ['name' => 'Puke', 'country_code' => 'AL'], ['name' => 'Palana', 'country_code' => 'RU'], ['name' => 'Cherskiy', 'country_code' => 'RU'], ['name' => 'Zyryanka', 'country_code' => 'RU'], ['name' => 'De-Kastri', 'country_code' => 'RU'], ['name' => 'Ligonha', 'country_code' => 'MZ'], ['name' => 'Darregueira', 'country_code' => 'AR'], ['name' => 'Bukachacha', 'country_code' => 'RU'], ['name' => 'Ugol nyye Kopi', 'country_code' => 'RU'], ['name' => 'Lukulu', 'country_code' => 'ZM'], ['name' => 'Krasnogorsk', 'country_code' => 'RU'], ['name' => 'Mekambo', 'country_code' => 'GA'], ['name' => 'Arroyos y Esteros', 'country_code' => 'PY'], ['name' => 'Ust -Maya', 'country_code' => 'RU'], ['name' => 'Abai', 'country_code' => 'PY'], ['name' => 'Taoudenni', 'country_code' => 'ML'], ['name' => 'San Lorenzo', 'country_code' => 'BO'], ['name' => 'Saranpaul', 'country_code' => 'RU'], ['name' => 'Villalonga', 'country_code' => 'AR'], ['name' => 'Villa Ygatimi', 'country_code' => 'PY'], ['name' => 'Entre Rios', 'country_code' => 'BO'], ['name' => 'Saudharkrokur', 'country_code' => 'IS'], ['name' => 'Provideniya', 'country_code' => 'RU'], ['name' => 'Chokurdakh', 'country_code' => 'RU'], ['name' => 'Maradah', 'country_code' => 'LY'], ['name' => 'Mariscal Jose Felix Estigarribia', 'country_code' => 'PY'], ['name' => 'Jose Batlle y Ordonez', 'country_code' => 'UY'], ['name' => 'Uspallata', 'country_code' => 'AR'], ['name' => 'Sohano', 'country_code' => 'PG'], ['name' => 'Ceduna', 'country_code' => 'AU'], ['name' => 'Maltahohe', 'country_code' => 'NA'], ['name' => 'Muconda', 'country_code' => 'AO'], ['name' => 'Tolten', 'country_code' => 'CL'], ['name' => 'Mwenga', 'country_code' => 'CD'], ['name' => 'Egvekinot', 'country_code' => 'RU'], ['name' => 'El Manteco', 'country_code' => 'VE'], ['name' => 'Pozo Colorado', 'country_code' => 'PY'], ['name' => 'Evensk', 'country_code' => 'RU'], ['name' => 'Konza', 'country_code' => 'KE'], ['name' => 'Altata', 'country_code' => 'MX'], ['name' => 'Dawwah', 'country_code' => 'OM'], ['name' => 'Taedong', 'country_code' => 'KP'], ['name' => 'Abuna', 'country_code' => 'BR'], ['name' => 'Corocoro', 'country_code' => 'BO'], ['name' => 'Beringovskiy', 'country_code' => 'RU'], ['name' => 'Nasir', 'country_code' => 'SS'], ['name' => 'Labutta', 'country_code' => 'MM'], ['name' => 'Al Jaghbub', 'country_code' => 'LY'], ['name' => 'Omboue', 'country_code' => 'GA'], ['name' => 'Kipili', 'country_code' => 'TZ'], ['name' => 'Manja', 'country_code' => 'MG'], ['name' => 'Ust -Kuyga', 'country_code' => 'RU'], ['name' => 'Eldikan', 'country_code' => 'RU'], ['name' => 'Qardho', 'country_code' => 'SO'], ['name' => 'Nyimba', 'country_code' => 'ZM'], ['name' => 'Fulacunda', 'country_code' => 'GW'], ['name' => 'Lubutu', 'country_code' => 'CD'], ['name' => 'Cangamba', 'country_code' => 'AO'], ['name' => 'Regedor Quissico', 'country_code' => 'MZ'], ['name' => 'Villa Rumipal', 'country_code' => 'AR'], ['name' => 'Nacunday', 'country_code' => 'PY'], ['name' => 'Celeken', 'country_code' => 'TM'], ['name' => 'Buluko', 'country_code' => 'CD'], ['name' => 'San Rafael', 'country_code' => 'BO'], ['name' => 'Capitan Pablo Lagerenza', 'country_code' => 'PY'], ['name' => 'Puerto Acosta', 'country_code' => 'BO'], ['name' => 'Los Blancos', 'country_code' => 'AR'], ['name' => 'Mirbat', 'country_code' => 'OM'], ['name' => 'Klyuchi', 'country_code' => 'RU'], ['name' => 'Besalampy', 'country_code' => 'MG'], ['name' => 'Cacolo', 'country_code' => 'AO'], ['name' => 'General Eugenio A. Garay', 'country_code' => 'PY'], ['name' => 'Daraj', 'country_code' => 'LY'], ['name' => 'Bavaro', 'country_code' => 'DO'], ['name' => 'Luanza', 'country_code' => 'CD'], ['name' => 'Hoskins', 'country_code' => 'PG'], ['name' => 'Calulo', 'country_code' => 'AO'], ['name' => 'Muhembo', 'country_code' => 'BW'], ['name' => 'Yerema', 'country_code' => 'RU'], ['name' => 'Satadougou', 'country_code' => 'ML'], ['name' => 'Dibaya', 'country_code' => 'CD'], ['name' => 'Serebryansk', 'country_code' => 'KZ'], ['name' => 'Zhaltyr', 'country_code' => 'KZ'], ['name' => 'Manily', 'country_code' => 'RU'], ['name' => 'Calatrava', 'country_code' => 'GQ'], ['name' => 'Massangena', 'country_code' => 'MZ'], ['name' => 'Panda', 'country_code' => 'MZ'], ['name' => 'Ypejhu', 'country_code' => 'PY'], ['name' => 'Quilpie', 'country_code' => 'AU'], ['name' => 'Sabaya', 'country_code' => 'BO'], ['name' => 'Chiramba', 'country_code' => 'MZ'], ['name' => 'Mereeg', 'country_code' => 'SO'], ['name' => 'Llica', 'country_code' => 'BO'], ['name' => 'Calenga', 'country_code' => 'AO'], ['name' => 'Dikson', 'country_code' => 'RU'], ['name' => 'Caluula', 'country_code' => 'SO'], ['name' => 'Tournavista', 'country_code' => 'PE'], ['name' => 'Puerto Pinasco', 'country_code' => 'PY'], ['name' => 'Tchitado', 'country_code' => 'AO'], ['name' => 'Yakossi', 'country_code' => 'CF'], ['name' => 'Tmassah', 'country_code' => 'LY'], ['name' => 'Manyoni', 'country_code' => 'TZ'], ['name' => 'Woomera', 'country_code' => 'AU'], ['name' => 'Tasiusaq', 'country_code' => 'GL'], ['name' => 'Sherlovaya Gora', 'country_code' => 'RU'], ['name' => 'Tsavo', 'country_code' => 'KE'], ['name' => 'Nizhneyansk', 'country_code' => 'RU'], ['name' => 'Toconao', 'country_code' => 'CL'], ['name' => 'Balsadero Rio Verde', 'country_code' => 'CL'], ['name' => 'Kanyato', 'country_code' => 'TZ'], ['name' => 'Kulusuk', 'country_code' => 'GL'], ['name' => 'Umm al Abid', 'country_code' => 'LY'], ['name' => 'Bugrino', 'country_code' => 'RU'], ['name' => 'Put Lenina', 'country_code' => 'RU'], ['name' => 'Yaupi', 'country_code' => 'EC'], ['name' => 'Amderma', 'country_code' => 'RU'], ['name' => 'Kangersuatsiaq', 'country_code' => 'GL'], ['name' => 'Villa O Higgins', 'country_code' => 'CL'], ['name' => 'Amau', 'country_code' => 'PG'], ['name' => 'Kalima', 'country_code' => 'CD'], ['name' => 'Al Qunfudhah', 'country_code' => 'SA'], ['name' => 'Lusanga', 'country_code' => 'CD'], ['name' => 'Kraulshavn', 'country_code' => 'GL'], ['name' => 'Androka', 'country_code' => 'MG'], ['name' => 'Charana', 'country_code' => 'BO'], ['name' => 'Nichicun', 'country_code' => 'CN'], ['name' => 'Hurdiyo', 'country_code' => 'SO'], ['name' => 'Buton', 'country_code' => 'ID'], ['name' => 'Narsarsuaq', 'country_code' => 'GL'], ['name' => 'Bafwasende', 'country_code' => 'CD'], ['name' => 'Bifoun', 'country_code' => 'GA'], ['name' => 'Il pyrskiy', 'country_code' => 'RU'], ['name' => 'Sharbaqty', 'country_code' => 'KZ'], ['name' => 'Agdam', 'country_code' => 'AZ'], ['name' => 'Savissivik', 'country_code' => 'GL'], ['name' => 'Cuya', 'country_code' => 'CL'], ['name' => 'Villa Martin Colchak', 'country_code' => 'BO'], ['name' => 'Gyda', 'country_code' => 'RU'], ['name' => 'Gueppi', 'country_code' => 'PE'], ['name' => 'Puerto Heath', 'country_code' => 'BO'], ['name' => 'Bir Mogrein', 'country_code' => 'MR'], ['name' => 'Yessey', 'country_code' => 'RU'], ['name' => 'Burubaytal', 'country_code' => 'KZ'], ['name' => 'Mukhomornoye', 'country_code' => 'RU'], ['name' => 'Vorontsovo', 'country_code' => 'RU'], ['name' => 'Grytviken', 'country_code' => 'GS'], ['name' => 'Piso Firme', 'country_code' => 'BO'], ['name' => 'As Sidrah', 'country_code' => 'LY'], ['name' => 'Rocafuerte', 'country_code' => 'PE'], ['name' => 'Peregrebnoye', 'country_code' => 'RU'], ['name' => 'Laryak', 'country_code' => 'RU'], ['name' => 'Lagunas', 'country_code' => 'CL'], ['name' => 'Andoas', 'country_code' => 'PE'], ['name' => 'Puca Urco', 'country_code' => 'PE'], ['name' => 'Zillah', 'country_code' => 'LY'], ['name' => 'Ulkan', 'country_code' => 'RU'], ['name' => 'Barnis', 'country_code' => 'EG'], ['name' => 'Soldado Bartra', 'country_code' => 'PE'], ['name' => 'Strelka', 'country_code' => 'RU'], ['name' => 'Bol sheretsk', 'country_code' => 'RU'], ['name' => 'Karamken', 'country_code' => 'RU'], ['name' => 'Djado', 'country_code' => 'NE'], ['name' => 'Omchak', 'country_code' => 'RU'], ['name' => 'Shalaurova', 'country_code' => 'RU'], ['name' => 'Khorgo', 'country_code' => 'RU'], ['name' => 'Komsa', 'country_code' => 'RU'], ['name' => 'Pakhachi', 'country_code' => 'RU'], ['name' => 'Indiga', 'country_code' => 'RU'], ['name' => 'Sagastyr', 'country_code' => 'RU'], ['name' => 'Chagda', 'country_code' => 'RU'], ['name' => 'Tunguskhaya', 'country_code' => 'RU'], ['name' => 'Podkamennaya Tunguska', 'country_code' => 'RU'], ['name' => 'Siglan', 'country_code' => 'RU'], ['name' => 'Utkholok', 'country_code' => 'RU'], ['name' => 'Varnek', 'country_code' => 'RU'], ['name' => 'Trofimovsk', 'country_code' => 'RU'], ['name' => 'Matochkin Shar', 'country_code' => 'RU'], ['name' => 'Menkerya', 'country_code' => 'RU'], ['name' => 'Khakhar', 'country_code' => 'RU'], ['name' => 'Zvezdnyy', 'country_code' => 'RU'], ['name' => 'Zemlya Bunge', 'country_code' => 'RU'], ['name' => 'Starorybnoye', 'country_code' => 'RU'], ['name' => 'Agapa', 'country_code' => 'RU'], ['name' => 'Tukchi', 'country_code' => 'RU'], ['name' => 'Numto', 'country_code' => 'RU'], ['name' => 'Nord', 'country_code' => 'GL'], ['name' => 'Timmiarmiut', 'country_code' => 'GL'], ['name' => 'Nordvik', 'country_code' => 'RU'] ]); } } ================================================ FILE: database/seeders/CountriesSeeder.php ================================================ insert([ ['code' => 'AF', 'name' => 'Afghanistan', 'order_number' => 1], ['code' => 'AL', 'name' => 'Albania', 'order_number' => 2], ['code' => 'DZ', 'name' => 'Algeria', 'order_number' => 3], ['code' => 'DS', 'name' => 'American Samoa', 'order_number' => 4], ['code' => 'AD', 'name' => 'Andorra', 'order_number' => 5], ['code' => 'AO', 'name' => 'Angola', 'order_number' => 6], ['code' => 'AI', 'name' => 'Anguilla', 'order_number' => 7], ['code' => 'AQ', 'name' => 'Antarctica', 'order_number' => 8], ['code' => 'AG', 'name' => 'Antigua and Barbuda', 'order_number' => 9], ['code' => 'AR', 'name' => 'Argentina', 'order_number' => 10], ['code' => 'AM', 'name' => 'Armenia', 'order_number' => 11], ['code' => 'AW', 'name' => 'Aruba', 'order_number' => 12], ['code' => 'AU', 'name' => 'Australia', 'order_number' => 13], ['code' => 'AT', 'name' => 'Austria', 'order_number' => 14], ['code' => 'AZ', 'name' => 'Azerbaijan', 'order_number' => 15], ['code' => 'BS', 'name' => 'Bahamas', 'order_number' => 16], ['code' => 'BH', 'name' => 'Bahrain', 'order_number' => 17], ['code' => 'BD', 'name' => 'Bangladesh', 'order_number' => 18], ['code' => 'BB', 'name' => 'Barbados', 'order_number' => 19], ['code' => 'BY', 'name' => 'Belarus', 'order_number' => 20], ['code' => 'BE', 'name' => 'Belgium', 'order_number' => 21], ['code' => 'BZ', 'name' => 'Belize', 'order_number' => 22], ['code' => 'BJ', 'name' => 'Benin', 'order_number' => 23], ['code' => 'BM', 'name' => 'Bermuda', 'order_number' => 24], ['code' => 'BT', 'name' => 'Bhutan', 'order_number' => 25], ['code' => 'BO', 'name' => 'Bolivia', 'order_number' => 26], ['code' => 'BA', 'name' => 'Bosnia and Herzegovina', 'order_number' => 27], ['code' => 'BW', 'name' => 'Botswana', 'order_number' => 28], ['code' => 'BV', 'name' => 'Bouvet Island', 'order_number' => 29], ['code' => 'BR', 'name' => 'Brazil', 'order_number' => 30], ['code' => 'IO', 'name' => 'British Indian Ocean Territory', 'order_number' => 31], ['code' => 'BN', 'name' => 'Brunei Darussalam', 'order_number' => 32], ['code' => 'BG', 'name' => 'Bulgaria', 'order_number' => 33], ['code' => 'BF', 'name' => 'Burkina Faso', 'order_number' => 34], ['code' => 'BI', 'name' => 'Burundi', 'order_number' => 35], ['code' => 'KH', 'name' => 'Cambodia', 'order_number' => 36], ['code' => 'CM', 'name' => 'Cameroon', 'order_number' => 37], ['code' => 'CA', 'name' => 'Canada', 'order_number' => 38], ['code' => 'CV', 'name' => 'Cape Verde', 'order_number' => 39], ['code' => 'KY', 'name' => 'Cayman Islands', 'order_number' => 40], ['code' => 'CF', 'name' => 'Central African Republic', 'order_number' => 41], ['code' => 'TD', 'name' => 'Chad', 'order_number' => 42], ['code' => 'CL', 'name' => 'Chile', 'order_number' => 43], ['code' => 'CN', 'name' => 'China', 'order_number' => 44], ['code' => 'CX', 'name' => 'Christmas Island', 'order_number' => 45], ['code' => 'CC', 'name' => 'Cocos (Keeling) Islands', 'order_number' => 46], ['code' => 'CO', 'name' => 'Colombia', 'order_number' => 47], ['code' => 'KM', 'name' => 'Comoros', 'order_number' => 48], ['code' => 'CG', 'name' => 'Congo', 'order_number' => 49], ['code' => 'CK', 'name' => 'Cook Islands', 'order_number' => 50], ['code' => 'CR', 'name' => 'Costa Rica', 'order_number' => 51], ['code' => 'HR', 'name' => 'Croatia (Hrvatska)', 'order_number' => 52], ['code' => 'CU', 'name' => 'Cuba', 'order_number' => 53], ['code' => 'CY', 'name' => 'Cyprus', 'order_number' => 54], ['code' => 'CZ', 'name' => 'Czech Republic', 'order_number' => 55], ['code' => 'DK', 'name' => 'Denmark', 'order_number' => 56], ['code' => 'DJ', 'name' => 'Djibouti', 'order_number' => 57], ['code' => 'DM', 'name' => 'Dominica', 'order_number' => 58], ['code' => 'DO', 'name' => 'Dominican Republic', 'order_number' => 59], ['code' => 'TP', 'name' => 'East Timor', 'order_number' => 60], ['code' => 'EC', 'name' => 'Ecuador', 'order_number' => 61], ['code' => 'EG', 'name' => 'Egypt', 'order_number' => 62], ['code' => 'SV', 'name' => 'El Salvador', 'order_number' => 63], ['code' => 'GQ', 'name' => 'Equatorial Guinea', 'order_number' => 64], ['code' => 'ER', 'name' => 'Eritrea', 'order_number' => 65], ['code' => 'EE', 'name' => 'Estonia', 'order_number' => 66], ['code' => 'ET', 'name' => 'Ethiopia', 'order_number' => 67], ['code' => 'FK', 'name' => 'Falkland Islands (Malvinas)', 'order_number' => 68], ['code' => 'FO', 'name' => 'Faroe Islands', 'order_number' => 69], ['code' => 'FJ', 'name' => 'Fiji', 'order_number' => 70], ['code' => 'FI', 'name' => 'Finland', 'order_number' => 71], ['code' => 'FR', 'name' => 'France', 'order_number' => 72], ['code' => 'FX', 'name' => 'France, Metropolitan', 'order_number' => 73], ['code' => 'GF', 'name' => 'French Guiana', 'order_number' => 74], ['code' => 'PF', 'name' => 'French Polynesia', 'order_number' => 75], ['code' => 'TF', 'name' => 'French Southern Territories', 'order_number' => 76], ['code' => 'GA', 'name' => 'Gabon', 'order_number' => 77], ['code' => 'GM', 'name' => 'Gambia', 'order_number' => 78], ['code' => 'GE', 'name' => 'Georgia', 'order_number' => 79], ['code' => 'DE', 'name' => 'Germany', 'order_number' => 80], ['code' => 'GH', 'name' => 'Ghana', 'order_number' => 81], ['code' => 'GI', 'name' => 'Gibraltar', 'order_number' => 82], ['code' => 'GK', 'name' => 'Guernsey', 'order_number' => 83], ['code' => 'GR', 'name' => 'Greece', 'order_number' => 84], ['code' => 'GL', 'name' => 'Greenland', 'order_number' => 85], ['code' => 'GD', 'name' => 'Grenada', 'order_number' => 86], ['code' => 'GP', 'name' => 'Guadeloupe', 'order_number' => 87], ['code' => 'GU', 'name' => 'Guam', 'order_number' => 88], ['code' => 'GT', 'name' => 'Guatemala', 'order_number' => 89], ['code' => 'GN', 'name' => 'Guinea', 'order_number' => 90], ['code' => 'GW', 'name' => 'Guinea-Bissau', 'order_number' => 91], ['code' => 'GY', 'name' => 'Guyana', 'order_number' => 92], ['code' => 'HT', 'name' => 'Haiti', 'order_number' => 93], ['code' => 'HM', 'name' => 'Heard and Mc Donald Islands', 'order_number' => 94], ['code' => 'HN', 'name' => 'Honduras', 'order_number' => 95], ['code' => 'HK', 'name' => 'Hong Kong', 'order_number' => 96], ['code' => 'HU', 'name' => 'Hungary', 'order_number' => 97], ['code' => 'IS', 'name' => 'Iceland', 'order_number' => 98], ['code' => 'IN', 'name' => 'India', 'order_number' => 99], ['code' => 'IM', 'name' => 'Isle of Man', 'order_number' => 100], ['code' => 'ID', 'name' => 'Indonesia', 'order_number' => 101], ['code' => 'IR', 'name' => 'Iran (Islamic Republic of)', 'order_number' => 102], ['code' => 'IQ', 'name' => 'Iraq', 'order_number' => 103], ['code' => 'IE', 'name' => 'Ireland', 'order_number' => 104], ['code' => 'IL', 'name' => 'Israel', 'order_number' => 105], ['code' => 'IT', 'name' => 'Italy', 'order_number' => 106], ['code' => 'CI', 'name' => 'Ivory Coast', 'order_number' => 107], ['code' => 'JE', 'name' => 'Jersey', 'order_number' => 108], ['code' => 'JM', 'name' => 'Jamaica', 'order_number' => 109], ['code' => 'JP', 'name' => 'Japan', 'order_number' => 110], ['code' => 'JO', 'name' => 'Jordan', 'order_number' => 111], ['code' => 'KZ', 'name' => 'Kazakhstan', 'order_number' => 112], ['code' => 'KE', 'name' => 'Kenya', 'order_number' => 113], ['code' => 'KI', 'name' => 'Kiribati', 'order_number' => 114], ['code' => 'KP', 'name' => 'Korea, Democratic People\'s Republic of', 'order_number' => 115], ['code' => 'KR', 'name' => 'Korea, Republic of', 'order_number' => 116], ['code' => 'XK', 'name' => 'Kosovo', 'order_number' => 117], ['code' => 'KW', 'name' => 'Kuwait', 'order_number' => 118], ['code' => 'KG', 'name' => 'Kyrgyzstan', 'order_number' => 119], ['code' => 'LA', 'name' => 'Lao People\'s Democratic Republic', 'order_number' => 120], ['code' => 'LV', 'name' => 'Latvia', 'order_number' => 121], ['code' => 'LB', 'name' => 'Lebanon', 'order_number' => 122], ['code' => 'LS', 'name' => 'Lesotho', 'order_number' => 123], ['code' => 'LR', 'name' => 'Liberia', 'order_number' => 124], ['code' => 'LY', 'name' => 'Libyan Arab Jamahiriya', 'order_number' => 125], ['code' => 'LI', 'name' => 'Liechtenstein', 'order_number' => 126], ['code' => 'LT', 'name' => 'Lithuania', 'order_number' => 127], ['code' => 'LU', 'name' => 'Luxembourg', 'order_number' => 128], ['code' => 'MO', 'name' => 'Macau', 'order_number' => 129], ['code' => 'MK', 'name' => 'Macedonia', 'order_number' => 130], ['code' => 'MG', 'name' => 'Madagascar', 'order_number' => 131], ['code' => 'MW', 'name' => 'Malawi', 'order_number' => 132], ['code' => 'MY', 'name' => 'Malaysia', 'order_number' => 133], ['code' => 'MV', 'name' => 'Maldives', 'order_number' => 134], ['code' => 'ML', 'name' => 'Mali', 'order_number' => 135], ['code' => 'MT', 'name' => 'Malta', 'order_number' => 136], ['code' => 'MH', 'name' => 'Marshall Islands', 'order_number' => 137], ['code' => 'MQ', 'name' => 'Martinique', 'order_number' => 138], ['code' => 'MR', 'name' => 'Mauritania', 'order_number' => 139], ['code' => 'MU', 'name' => 'Mauritius', 'order_number' => 140], ['code' => 'TY', 'name' => 'Mayotte', 'order_number' => 141], ['code' => 'MX', 'name' => 'Mexico', 'order_number' => 142], ['code' => 'FM', 'name' => 'Micronesia, Federated States of', 'order_number' => 143], ['code' => 'MD', 'name' => 'Moldova, Republic of', 'order_number' => 144], ['code' => 'MC', 'name' => 'Monaco', 'order_number' => 145], ['code' => 'MN', 'name' => 'Mongolia', 'order_number' => 146], ['code' => 'ME', 'name' => 'Montenegro', 'order_number' => 147], ['code' => 'MS', 'name' => 'Montserrat', 'order_number' => 148], ['code' => 'MA', 'name' => 'Morocco', 'order_number' => 149], ['code' => 'MZ', 'name' => 'Mozambique', 'order_number' => 150], ['code' => 'MM', 'name' => 'Myanmar', 'order_number' => 151], ['code' => 'NA', 'name' => 'Namibia', 'order_number' => 152], ['code' => 'NR', 'name' => 'Nauru', 'order_number' => 153], ['code' => 'NP', 'name' => 'Nepal', 'order_number' => 154], ['code' => 'NL', 'name' => 'Netherlands', 'order_number' => 155], ['code' => 'AN', 'name' => 'Netherlands Antilles', 'order_number' => 156], ['code' => 'NC', 'name' => 'New Caledonia', 'order_number' => 157], ['code' => 'NZ', 'name' => 'New Zealand', 'order_number' => 158], ['code' => 'NI', 'name' => 'Nicaragua', 'order_number' => 159], ['code' => 'NE', 'name' => 'Niger', 'order_number' => 160], ['code' => 'NG', 'name' => 'Nigeria', 'order_number' => 161], ['code' => 'NU', 'name' => 'Niue', 'order_number' => 162], ['code' => 'NF', 'name' => 'Norfolk Island', 'order_number' => 163], ['code' => 'MP', 'name' => 'Northern Mariana Islands', 'order_number' => 164], ['code' => 'NO', 'name' => 'Norway', 'order_number' => 165], ['code' => 'OM', 'name' => 'Oman', 'order_number' => 166], ['code' => 'PK', 'name' => 'Pakistan', 'order_number' => 167], ['code' => 'PW', 'name' => 'Palau', 'order_number' => 168], ['code' => 'PS', 'name' => 'Palestine', 'order_number' => 169], ['code' => 'PA', 'name' => 'Panama', 'order_number' => 170], ['code' => 'PG', 'name' => 'Papua New Guinea', 'order_number' => 171], ['code' => 'PY', 'name' => 'Paraguay', 'order_number' => 172], ['code' => 'PE', 'name' => 'Peru', 'order_number' => 173], ['code' => 'PH', 'name' => 'Philippines', 'order_number' => 174], ['code' => 'PN', 'name' => 'Pitcairn', 'order_number' => 175], ['code' => 'PL', 'name' => 'Poland', 'order_number' => 176], ['code' => 'PT', 'name' => 'Portugal', 'order_number' => 177], ['code' => 'PR', 'name' => 'Puerto Rico', 'order_number' => 178], ['code' => 'QA', 'name' => 'Qatar', 'order_number' => 179], ['code' => 'RE', 'name' => 'Reunion', 'order_number' => 180], ['code' => 'RO', 'name' => 'Romania', 'order_number' => 181], ['code' => 'RU', 'name' => 'Russian Federation', 'order_number' => 182], ['code' => 'RW', 'name' => 'Rwanda', 'order_number' => 183], ['code' => 'KN', 'name' => 'Saint Kitts and Nevis', 'order_number' => 184], ['code' => 'LC', 'name' => 'Saint Lucia', 'order_number' => 185], ['code' => 'VC', 'name' => 'Saint Vincent and the Grenadines', 'order_number' => 186], ['code' => 'WS', 'name' => 'Samoa', 'order_number' => 187], ['code' => 'SM', 'name' => 'San Marino', 'order_number' => 188], ['code' => 'ST', 'name' => 'Sao Tome and Principe', 'order_number' => 189], ['code' => 'SA', 'name' => 'Saudi Arabia', 'order_number' => 190], ['code' => 'SN', 'name' => 'Senegal', 'order_number' => 191], ['code' => 'RS', 'name' => 'Serbia', 'order_number' => 192], ['code' => 'SC', 'name' => 'Seychelles', 'order_number' => 193], ['code' => 'SL', 'name' => 'Sierra Leone', 'order_number' => 194], ['code' => 'SG', 'name' => 'Singapore', 'order_number' => 195], ['code' => 'SK', 'name' => 'Slovakia', 'order_number' => 196], ['code' => 'SI', 'name' => 'Slovenia', 'order_number' => 197], ['code' => 'SB', 'name' => 'Solomon Islands', 'order_number' => 198], ['code' => 'SO', 'name' => 'Somalia', 'order_number' => 199], ['code' => 'ZA', 'name' => 'South Africa', 'order_number' => 200], ['code' => 'GS', 'name' => 'South Georgia South Sandwich Islands', 'order_number' => 202], ['code' => 'ES', 'name' => 'Spain', 'order_number' => 202], ['code' => 'LK', 'name' => 'Sri Lanka', 'order_number' => 203], ['code' => 'SH', 'name' => 'St. Helena', 'order_number' => 204], ['code' => 'PM', 'name' => 'St. Pierre and Miquelon', 'order_number' => 205], ['code' => 'SD', 'name' => 'Sudan', 'order_number' => 206], ['code' => 'SR', 'name' => 'Suriname', 'order_number' => 207], ['code' => 'SJ', 'name' => 'Svalbard and Jan Mayen Islands', 'order_number' => 208], ['code' => 'SZ', 'name' => 'Swaziland', 'order_number' => 209], ['code' => 'SE', 'name' => 'Sweden', 'order_number' => 210], ['code' => 'CH', 'name' => 'Switzerland', 'order_number' => 211], ['code' => 'SY', 'name' => 'Syrian Arab Republic', 'order_number' => 212], ['code' => 'TW', 'name' => 'Taiwan', 'order_number' => 213], ['code' => 'TJ', 'name' => 'Tajikistan', 'order_number' => 214], ['code' => 'TZ', 'name' => 'Tanzania, United Republic of', 'order_number' => 215], ['code' => 'TH', 'name' => 'Thailand', 'order_number' => 216], ['code' => 'TG', 'name' => 'Togo', 'order_number' => 217], ['code' => 'TK', 'name' => 'Tokelau', 'order_number' => 218], ['code' => 'TO', 'name' => 'Tonga', 'order_number' => 219], ['code' => 'TT', 'name' => 'Trinidad and Tobago', 'order_number' => 220], ['code' => 'TN', 'name' => 'Tunisia', 'order_number' => 221], ['code' => 'TR', 'name' => 'Turkey', 'order_number' => 222], ['code' => 'TM', 'name' => 'Turkmenistan', 'order_number' => 223], ['code' => 'TC', 'name' => 'Turks and Caicos Islands', 'order_number' => 224], ['code' => 'TV', 'name' => 'Tuvalu', 'order_number' => 225], ['code' => 'UG', 'name' => 'Uganda', 'order_number' => 226], ['code' => 'UA', 'name' => 'Ukraine', 'order_number' => 227], ['code' => 'AE', 'name' => 'United Arab Emirates', 'order_number' => 228], ['code' => 'GB', 'name' => 'United Kingdom', 'order_number' => 229], ['code' => 'US', 'name' => 'United States', 'order_number' => 230], ['code' => 'UM', 'name' => 'United States minor outlying islands', 'order_number' => 231], ['code' => 'UY', 'name' => 'Uruguay', 'order_number' => 232], ['code' => 'UZ', 'name' => 'Uzbekistan', 'order_number' => 233], ['code' => 'VU', 'name' => 'Vanuatu', 'order_number' => 234], ['code' => 'VA', 'name' => 'Vatican City State', 'order_number' => 235], ['code' => 'VE', 'name' => 'Venezuela', 'order_number' => 236], ['code' => 'VN', 'name' => 'Vietnam', 'order_number' => 237], ['code' => 'VG', 'name' => 'Virgin Islands (British)', 'order_number' => 238], ['code' => 'VI', 'name' => 'Virgin Islands (U.S.)', 'order_number' => 239], ['code' => 'WF', 'name' => 'Wallis and Futuna Islands', 'order_number' => 240], ['code' => 'EH', 'name' => 'Western Sahara', 'order_number' => 241], ['code' => 'YE', 'name' => 'Yemen', 'order_number' => 242], ['code' => 'ZR', 'name' => 'Zaire', 'order_number' => 243], ['code' => 'ZM', 'name' => 'Zambia', 'order_number' => 244], ['code' => 'ZW', 'name' => 'Zimbabwe', 'order_number' => 245] ]); } } ================================================ FILE: database/seeders/DatabaseSeeder.php ================================================ create(); Products::factory(100)->create(); Schedule::factory(20)->create(); $this->call([ CountriesSeeder::class, CitiesSeeder::class, ]); ProductTransactions::factory()->count(500)->create(); // Countries::factory(195)->create(); // User::factory()->create([ // 'name' => 'Test User', // 'email' => 'test@example.com', // ]); } } ================================================ FILE: database/seeders/ProductsSeeder.php ================================================ tests/Unit tests/Feature app ================================================ FILE: public/.htaccess ================================================ Options -MultiViews -Indexes RewriteEngine On # Handle Authorization Header RewriteCond %{HTTP:Authorization} . RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] # Redirect Trailing Slashes If Not A Folder... RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} (.+)/$ RewriteRule ^ %1 [L,R=301] # Send Requests To Front Controller... RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/css/autoFill.bootstrap.css ================================================ div.dt-autofill-handle { position: absolute; height: 8px; width: 8px; z-index: 10; box-sizing: border-box; background: #337ab7; cursor: pointer; } div.dtk-focus-alt div.dt-autofill-handle { background: #ff8b33; } div.dt-autofill-select { position: absolute; z-index: 1001; background-color: #337ab7; background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px); } div.dt-autofill-select.top, div.dt-autofill-select.bottom { height: 3px; margin-top: -1px; } div.dt-autofill-select.left, div.dt-autofill-select.right { width: 3px; margin-left: -1px; } div.dt-autofill-list { position: fixed; top: 50%; left: 50%; width: 500px; margin-left: -250px; background-color: white; border-radius: 0.75em; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6); z-index: 104; box-sizing: border-box; padding: 2em; } div.dt-autofill-list div.dtaf-popover-close { position: absolute; top: 6px; right: 6px; width: 22px; height: 22px; text-align: center; border-radius: 3px; cursor: pointer; z-index: 12; } div.dt-autofill-list > div.dt-autofill-list-items > button { display: block; width: 100%; margin: 1em 0; padding: 1em; border-radius: 0.5em; border: 1px solid rgba(0, 0, 0, 0.175); background-color: #f6f6f6; text-align: left; cursor: pointer; } div.dt-autofill-list > div.dt-autofill-list-items > button:hover { background-color: #ebebeb; } div.dt-autofill-list > div.dt-autofill-list-items > button:first-child { margin-top: 0; } div.dt-autofill-list > div.dt-autofill-list-items > button:last-child { margin-bottom: 0; } div.dt-autofill-list > div.dt-autofill-list-items > button input[type=number] { padding: 6px; width: 30px; margin: -2px 0; } div.dt-autofill-list > div.dt-autofill-list-items > button span { float: right; } div.dtaf-popover-closeable { padding-top: 2.5em; } div.dt-autofill-background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%); z-index: 103; } html.dark div.dt-autofill-handle { background: rgb(110, 168, 254); } html.dark div.dt-autofill-select { position: absolute; z-index: 1001; background-color: rgb(110, 168, 254); background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 0, 0, 0.5) 5px, rgba(0, 0, 0, 0.5) 10px); } html.dark div.dt-autofill-list { background-color: var(--dt-html-background); border: 1px solid rgba(255, 255, 255, 0.15); } html.dark div.dt-autofill-list button { color: inherit; border: 1px solid rgba(255, 255, 255, 0.175); background-color: rgb(47, 52, 56); } html.dark div.dt-autofill-list button:hover { background-color: rgb(64, 69, 73); } @media screen and (max-width: 767px) { div.dt-autofill-handle { height: 16px; width: 16px; } div.dt-autofill-list { width: 90%; left: 74.5%; } } div.dt-autofill-list div.dt-autofill-question input[type=number] { padding: 6px; width: 60px; margin: -2px 0; } ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/css/autoFill.bootstrap4.css ================================================ div.dt-autofill-handle { position: absolute; height: 8px; width: 8px; z-index: 10; box-sizing: border-box; background: #0275d8; cursor: pointer; } div.dtk-focus-alt div.dt-autofill-handle { background: #ff8b33; } div.dt-autofill-select { position: absolute; z-index: 1001; background-color: #0275d8; background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px); } div.dt-autofill-select.top, div.dt-autofill-select.bottom { height: 3px; margin-top: -1px; } div.dt-autofill-select.left, div.dt-autofill-select.right { width: 3px; margin-left: -1px; } div.dt-autofill-list { position: fixed; top: 50%; left: 50%; width: 500px; margin-left: -250px; background-color: white; border-radius: 0.75em; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6); z-index: 104; box-sizing: border-box; padding: 2em; } div.dt-autofill-list div.dtaf-popover-close { position: absolute; top: 6px; right: 6px; width: 22px; height: 22px; text-align: center; border-radius: 3px; cursor: pointer; z-index: 12; } div.dt-autofill-list > div.dt-autofill-list-items > button { display: block; width: 100%; margin: 1em 0; padding: 1em; border-radius: 0.5em; border: 1px solid rgba(0, 0, 0, 0.175); background-color: #f6f6f6; text-align: left; cursor: pointer; } div.dt-autofill-list > div.dt-autofill-list-items > button:hover { background-color: #ebebeb; } div.dt-autofill-list > div.dt-autofill-list-items > button:first-child { margin-top: 0; } div.dt-autofill-list > div.dt-autofill-list-items > button:last-child { margin-bottom: 0; } div.dt-autofill-list > div.dt-autofill-list-items > button input[type=number] { padding: 6px; width: 30px; margin: -2px 0; } div.dt-autofill-list > div.dt-autofill-list-items > button span { float: right; } div.dtaf-popover-closeable { padding-top: 2.5em; } div.dt-autofill-background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%); z-index: 103; } html.dark div.dt-autofill-handle { background: rgb(110, 168, 254); } html.dark div.dt-autofill-select { position: absolute; z-index: 1001; background-color: rgb(110, 168, 254); background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 0, 0, 0.5) 5px, rgba(0, 0, 0, 0.5) 10px); } html.dark div.dt-autofill-list { background-color: var(--dt-html-background); border: 1px solid rgba(255, 255, 255, 0.15); } html.dark div.dt-autofill-list button { color: inherit; border: 1px solid rgba(255, 255, 255, 0.175); background-color: rgb(47, 52, 56); } html.dark div.dt-autofill-list button:hover { background-color: rgb(64, 69, 73); } @media screen and (max-width: 767px) { div.dt-autofill-handle { height: 16px; width: 16px; } div.dt-autofill-list { width: 90%; left: 74.5%; } } div.dt-autofill-list div.dt-autofill-question input[type=number] { padding: 6px; width: 60px; margin: -2px 0; } ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/css/autoFill.bootstrap5.css ================================================ div.dt-autofill-handle { position: absolute; height: 8px; width: 8px; z-index: 10; box-sizing: border-box; background: #0d6efd; cursor: pointer; } div.dtk-focus-alt div.dt-autofill-handle { background: #ff8b33; } div.dt-autofill-select { position: absolute; z-index: 1001; background-color: #0d6efd; background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px); } div.dt-autofill-select.top, div.dt-autofill-select.bottom { height: 3px; margin-top: -1px; } div.dt-autofill-select.left, div.dt-autofill-select.right { width: 3px; margin-left: -1px; } div.dt-autofill-list { position: fixed; top: 50%; left: 50%; width: 500px; margin-left: -250px; background-color: white; border-radius: 0.75em; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6); z-index: 104; box-sizing: border-box; padding: 2em; } div.dt-autofill-list div.dtaf-popover-close { position: absolute; top: 6px; right: 6px; width: 22px; height: 22px; text-align: center; border-radius: 3px; cursor: pointer; z-index: 12; } div.dt-autofill-list > div.dt-autofill-list-items > button { display: block; width: 100%; margin: 1em 0; padding: 1em; border-radius: 0.5em; border: 1px solid rgba(0, 0, 0, 0.175); background-color: #f6f6f6; text-align: left; cursor: pointer; } div.dt-autofill-list > div.dt-autofill-list-items > button:hover { background-color: #ebebeb; } div.dt-autofill-list > div.dt-autofill-list-items > button:first-child { margin-top: 0; } div.dt-autofill-list > div.dt-autofill-list-items > button:last-child { margin-bottom: 0; } div.dt-autofill-list > div.dt-autofill-list-items > button input[type=number] { padding: 6px; width: 30px; margin: -2px 0; } div.dt-autofill-list > div.dt-autofill-list-items > button span { float: right; } div.dtaf-popover-closeable { padding-top: 2.5em; } div.dt-autofill-background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%); z-index: 103; } html.dark div.dt-autofill-handle { background: rgb(110, 168, 254); } html.dark div.dt-autofill-select { position: absolute; z-index: 1001; background-color: rgb(110, 168, 254); background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 0, 0, 0.5) 5px, rgba(0, 0, 0, 0.5) 10px); } html.dark div.dt-autofill-list { background-color: var(--dt-html-background); border: 1px solid rgba(255, 255, 255, 0.15); } html.dark div.dt-autofill-list button { color: inherit; border: 1px solid rgba(255, 255, 255, 0.175); background-color: rgb(47, 52, 56); } html.dark div.dt-autofill-list button:hover { background-color: rgb(64, 69, 73); } @media screen and (max-width: 767px) { div.dt-autofill-handle { height: 16px; width: 16px; } div.dt-autofill-list { width: 90%; left: 74.5%; } } div.dt-autofill-list div.dt-autofill-question input[type=number] { padding: 6px; width: 60px; margin: -2px 0; } div.row.dt-row > div.col-sm-12 { position: relative; } ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/css/autoFill.bulma.css ================================================ div.dt-autofill-handle { position: absolute; height: 8px; width: 8px; z-index: 10; box-sizing: border-box; background: #00D1B2; cursor: pointer; } div.dtk-focus-alt div.dt-autofill-handle { background: #ff8b33; } div.dt-autofill-select { position: absolute; z-index: 1001; background-color: #00D1B2; background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px); } div.dt-autofill-select.top, div.dt-autofill-select.bottom { height: 3px; margin-top: -1px; } div.dt-autofill-select.left, div.dt-autofill-select.right { width: 3px; margin-left: -1px; } div.dt-autofill-list { position: fixed; top: 50%; left: 50%; width: 500px; margin-left: -250px; background-color: white; border-radius: 0.75em; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6); z-index: 104; box-sizing: border-box; padding: 2em; } div.dt-autofill-list div.dtaf-popover-close { position: absolute; top: 6px; right: 6px; width: 22px; height: 22px; text-align: center; border-radius: 3px; cursor: pointer; z-index: 12; } div.dt-autofill-list > div.dt-autofill-list-items > button { display: block; width: 100%; margin: 1em 0; padding: 1em; border-radius: 0.5em; border: 1px solid rgba(0, 0, 0, 0.175); background-color: #f6f6f6; text-align: left; cursor: pointer; } div.dt-autofill-list > div.dt-autofill-list-items > button:hover { background-color: #ebebeb; } div.dt-autofill-list > div.dt-autofill-list-items > button:first-child { margin-top: 0; } div.dt-autofill-list > div.dt-autofill-list-items > button:last-child { margin-bottom: 0; } div.dt-autofill-list > div.dt-autofill-list-items > button input[type=number] { padding: 6px; width: 30px; margin: -2px 0; } div.dt-autofill-list > div.dt-autofill-list-items > button span { float: right; } div.dtaf-popover-closeable { padding-top: 2.5em; } div.dt-autofill-background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%); z-index: 103; } html.dark div.dt-autofill-handle { background: rgb(110, 168, 254); } html.dark div.dt-autofill-select { position: absolute; z-index: 1001; background-color: rgb(110, 168, 254); background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 0, 0, 0.5) 5px, rgba(0, 0, 0, 0.5) 10px); } html.dark div.dt-autofill-list { background-color: var(--dt-html-background); border: 1px solid rgba(255, 255, 255, 0.15); } html.dark div.dt-autofill-list button { color: inherit; border: 1px solid rgba(255, 255, 255, 0.175); background-color: rgb(47, 52, 56); } html.dark div.dt-autofill-list button:hover { background-color: rgb(64, 69, 73); } @media screen and (max-width: 767px) { div.dt-autofill-handle { height: 16px; width: 16px; } div.dt-autofill-list { width: 90%; left: 74.5%; } } div.dt-autofill-list button { margin: 0; } div.dt-autofill-handle { z-index: 11; } ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/css/autoFill.dataTables.css ================================================ div.dt-autofill-handle { position: absolute; height: 8px; width: 8px; z-index: 10; box-sizing: border-box; background: #3366ff; cursor: pointer; } div.dtk-focus-alt div.dt-autofill-handle { background: #ff8b33; } div.dt-autofill-select { position: absolute; z-index: 1001; background-color: #4989de; background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px); } div.dt-autofill-select.top, div.dt-autofill-select.bottom { height: 3px; margin-top: -1px; } div.dt-autofill-select.left, div.dt-autofill-select.right { width: 3px; margin-left: -1px; } div.dt-autofill-list { position: fixed; top: 50%; left: 50%; width: 500px; margin-left: -250px; background-color: white; border-radius: 0.75em; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6); z-index: 104; box-sizing: border-box; padding: 2em; } div.dt-autofill-list div.dtaf-popover-close { position: absolute; top: 6px; right: 6px; width: 22px; height: 22px; text-align: center; border-radius: 3px; cursor: pointer; z-index: 12; } div.dt-autofill-list > div.dt-autofill-list-items > button { display: block; width: 100%; margin: 1em 0; padding: 1em; border-radius: 0.5em; border: 1px solid rgba(0, 0, 0, 0.175); background-color: #f6f6f6; text-align: left; cursor: pointer; } div.dt-autofill-list > div.dt-autofill-list-items > button:hover { background-color: #ebebeb; } div.dt-autofill-list > div.dt-autofill-list-items > button:first-child { margin-top: 0; } div.dt-autofill-list > div.dt-autofill-list-items > button:last-child { margin-bottom: 0; } div.dt-autofill-list > div.dt-autofill-list-items > button input[type=number] { padding: 6px; width: 30px; margin: -2px 0; } div.dt-autofill-list > div.dt-autofill-list-items > button span { float: right; } div.dtaf-popover-closeable { padding-top: 2.5em; } div.dt-autofill-background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%); z-index: 103; } html.dark div.dt-autofill-handle { background: rgb(110, 168, 254); } html.dark div.dt-autofill-select { position: absolute; z-index: 1001; background-color: rgb(110, 168, 254); background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 0, 0, 0.5) 5px, rgba(0, 0, 0, 0.5) 10px); } html.dark div.dt-autofill-list { background-color: var(--dt-html-background); border: 1px solid rgba(255, 255, 255, 0.15); } html.dark div.dt-autofill-list button { color: inherit; border: 1px solid rgba(255, 255, 255, 0.175); background-color: rgb(47, 52, 56); } html.dark div.dt-autofill-list button:hover { background-color: rgb(64, 69, 73); } @media screen and (max-width: 767px) { div.dt-autofill-handle { height: 16px; width: 16px; } div.dt-autofill-list { width: 90%; left: 74.5%; } } ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/css/autoFill.foundation.css ================================================ div.dt-autofill-handle { position: absolute; height: 8px; width: 8px; z-index: 10; box-sizing: border-box; background: #008CBA; cursor: pointer; } div.dtk-focus-alt div.dt-autofill-handle { background: #ff8b33; } div.dt-autofill-select { position: absolute; z-index: 1001; background-color: #008CBA; background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px); } div.dt-autofill-select.top, div.dt-autofill-select.bottom { height: 3px; margin-top: -1px; } div.dt-autofill-select.left, div.dt-autofill-select.right { width: 3px; margin-left: -1px; } div.dt-autofill-list { position: fixed; top: 50%; left: 50%; width: 500px; margin-left: -250px; background-color: white; border-radius: 0.75em; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6); z-index: 104; box-sizing: border-box; padding: 2em; } div.dt-autofill-list div.dtaf-popover-close { position: absolute; top: 6px; right: 6px; width: 22px; height: 22px; text-align: center; border-radius: 3px; cursor: pointer; z-index: 12; } div.dt-autofill-list > div.dt-autofill-list-items > button { display: block; width: 100%; margin: 1em 0; padding: 1em; border-radius: 0.5em; border: 1px solid rgba(0, 0, 0, 0.175); background-color: #f6f6f6; text-align: left; cursor: pointer; } div.dt-autofill-list > div.dt-autofill-list-items > button:hover { background-color: #ebebeb; } div.dt-autofill-list > div.dt-autofill-list-items > button:first-child { margin-top: 0; } div.dt-autofill-list > div.dt-autofill-list-items > button:last-child { margin-bottom: 0; } div.dt-autofill-list > div.dt-autofill-list-items > button input[type=number] { padding: 6px; width: 30px; margin: -2px 0; } div.dt-autofill-list > div.dt-autofill-list-items > button span { float: right; } div.dtaf-popover-closeable { padding-top: 2.5em; } div.dt-autofill-background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%); z-index: 103; } html.dark div.dt-autofill-handle { background: rgb(110, 168, 254); } html.dark div.dt-autofill-select { position: absolute; z-index: 1001; background-color: rgb(110, 168, 254); background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 0, 0, 0.5) 5px, rgba(0, 0, 0, 0.5) 10px); } html.dark div.dt-autofill-list { background-color: var(--dt-html-background); border: 1px solid rgba(255, 255, 255, 0.15); } html.dark div.dt-autofill-list button { color: inherit; border: 1px solid rgba(255, 255, 255, 0.175); background-color: rgb(47, 52, 56); } html.dark div.dt-autofill-list button:hover { background-color: rgb(64, 69, 73); } @media screen and (max-width: 767px) { div.dt-autofill-handle { height: 16px; width: 16px; } div.dt-autofill-list { width: 90%; left: 74.5%; } } div.dt-autofill-list button { margin: 0; } ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/css/autoFill.jqueryui.css ================================================ div.dt-autofill-handle { position: absolute; height: 8px; width: 8px; z-index: 10; box-sizing: border-box; background: #3366ff; cursor: pointer; } div.dtk-focus-alt div.dt-autofill-handle { background: #ff8b33; } div.dt-autofill-select { position: absolute; z-index: 1001; background-color: #4989de; background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px); } div.dt-autofill-select.top, div.dt-autofill-select.bottom { height: 3px; margin-top: -1px; } div.dt-autofill-select.left, div.dt-autofill-select.right { width: 3px; margin-left: -1px; } div.dt-autofill-list { position: fixed; top: 50%; left: 50%; width: 500px; margin-left: -250px; background-color: white; border-radius: 0.75em; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6); z-index: 104; box-sizing: border-box; padding: 2em; } div.dt-autofill-list div.dtaf-popover-close { position: absolute; top: 6px; right: 6px; width: 22px; height: 22px; text-align: center; border-radius: 3px; cursor: pointer; z-index: 12; } div.dt-autofill-list > div.dt-autofill-list-items > button { display: block; width: 100%; margin: 1em 0; padding: 1em; border-radius: 0.5em; border: 1px solid rgba(0, 0, 0, 0.175); background-color: #f6f6f6; text-align: left; cursor: pointer; } div.dt-autofill-list > div.dt-autofill-list-items > button:hover { background-color: #ebebeb; } div.dt-autofill-list > div.dt-autofill-list-items > button:first-child { margin-top: 0; } div.dt-autofill-list > div.dt-autofill-list-items > button:last-child { margin-bottom: 0; } div.dt-autofill-list > div.dt-autofill-list-items > button input[type=number] { padding: 6px; width: 30px; margin: -2px 0; } div.dt-autofill-list > div.dt-autofill-list-items > button span { float: right; } div.dtaf-popover-closeable { padding-top: 2.5em; } div.dt-autofill-background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%); z-index: 103; } html.dark div.dt-autofill-handle { background: rgb(110, 168, 254); } html.dark div.dt-autofill-select { position: absolute; z-index: 1001; background-color: rgb(110, 168, 254); background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 0, 0, 0.5) 5px, rgba(0, 0, 0, 0.5) 10px); } html.dark div.dt-autofill-list { background-color: var(--dt-html-background); border: 1px solid rgba(255, 255, 255, 0.15); } html.dark div.dt-autofill-list button { color: inherit; border: 1px solid rgba(255, 255, 255, 0.175); background-color: rgb(47, 52, 56); } html.dark div.dt-autofill-list button:hover { background-color: rgb(64, 69, 73); } @media screen and (max-width: 767px) { div.dt-autofill-handle { height: 16px; width: 16px; } div.dt-autofill-list { width: 90%; left: 74.5%; } } div.dt-autofill-list button { padding: 0.35em 1em; } ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/css/autoFill.semanticui.css ================================================ div.dt-autofill-handle { position: absolute; height: 8px; width: 8px; z-index: 10; box-sizing: border-box; background: #888; cursor: pointer; } div.dtk-focus-alt div.dt-autofill-handle { background: #ff8b33; } div.dt-autofill-select { position: absolute; z-index: 1001; background-color: #888; background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px); } div.dt-autofill-select.top, div.dt-autofill-select.bottom { height: 3px; margin-top: -1px; } div.dt-autofill-select.left, div.dt-autofill-select.right { width: 3px; margin-left: -1px; } div.dt-autofill-list { position: fixed; top: 50%; left: 50%; width: 500px; margin-left: -250px; background-color: white; border-radius: 0.75em; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6); z-index: 104; box-sizing: border-box; padding: 2em; } div.dt-autofill-list div.dtaf-popover-close { position: absolute; top: 6px; right: 6px; width: 22px; height: 22px; text-align: center; border-radius: 3px; cursor: pointer; z-index: 12; } div.dt-autofill-list > div.dt-autofill-list-items > button { display: block; width: 100%; margin: 1em 0; padding: 1em; border-radius: 0.5em; border: 1px solid rgba(0, 0, 0, 0.175); background-color: #f6f6f6; text-align: left; cursor: pointer; } div.dt-autofill-list > div.dt-autofill-list-items > button:hover { background-color: #ebebeb; } div.dt-autofill-list > div.dt-autofill-list-items > button:first-child { margin-top: 0; } div.dt-autofill-list > div.dt-autofill-list-items > button:last-child { margin-bottom: 0; } div.dt-autofill-list > div.dt-autofill-list-items > button input[type=number] { padding: 6px; width: 30px; margin: -2px 0; } div.dt-autofill-list > div.dt-autofill-list-items > button span { float: right; } div.dtaf-popover-closeable { padding-top: 2.5em; } div.dt-autofill-background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%); z-index: 103; } html.dark div.dt-autofill-handle { background: rgb(110, 168, 254); } html.dark div.dt-autofill-select { position: absolute; z-index: 1001; background-color: rgb(110, 168, 254); background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 0, 0, 0.5) 5px, rgba(0, 0, 0, 0.5) 10px); } html.dark div.dt-autofill-list { background-color: var(--dt-html-background); border: 1px solid rgba(255, 255, 255, 0.15); } html.dark div.dt-autofill-list button { color: inherit; border: 1px solid rgba(255, 255, 255, 0.175); background-color: rgb(47, 52, 56); } html.dark div.dt-autofill-list button:hover { background-color: rgb(64, 69, 73); } @media screen and (max-width: 767px) { div.dt-autofill-handle { height: 16px; width: 16px; } div.dt-autofill-list { width: 90%; left: 74.5%; } } ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/js/autoFill.bootstrap.js ================================================ /*! Bootstrap integration for DataTables' AutoFill * ©2015 SpryMedia Ltd - datatables.net/license */ (function( factory ){ if ( typeof define === 'function' && define.amd ) { // AMD define( ['jquery', 'datatables.net-bs', 'datatables.net-autofill'], function ( $ ) { return factory( $, window, document ); } ); } else if ( typeof exports === 'object' ) { // CommonJS var jq = require('jquery'); var cjsRequires = function (root, $) { if ( ! $.fn.dataTable ) { require('datatables.net-bs')(root, $); } if ( ! $.fn.dataTable.AutoFill ) { require('datatables.net-autofill')(root, $); } }; if (typeof window === 'undefined') { module.exports = function (root, $) { if ( ! root ) { // CommonJS environments without a window global must pass a // root. This will give an error otherwise root = window; } if ( ! $ ) { $ = jq( root ); } cjsRequires( root, $ ); return factory( $, root, root.document ); }; } else { cjsRequires( window, jq ); module.exports = factory( jq, window, window.document ); } } else { // Browser factory( jQuery, window, document ); } }(function( $, window, document, undefined ) { 'use strict'; var DataTable = $.fn.dataTable; DataTable.AutoFill.classes.btn = 'btn btn-primary'; return DataTable; })); ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/js/autoFill.bootstrap4.js ================================================ /*! Bootstrap integration for DataTables' AutoFill * ©2015 SpryMedia Ltd - datatables.net/license */ (function( factory ){ if ( typeof define === 'function' && define.amd ) { // AMD define( ['jquery', 'datatables.net-bs4', 'datatables.net-autofill'], function ( $ ) { return factory( $, window, document ); } ); } else if ( typeof exports === 'object' ) { // CommonJS var jq = require('jquery'); var cjsRequires = function (root, $) { if ( ! $.fn.dataTable ) { require('datatables.net-bs4')(root, $); } if ( ! $.fn.dataTable.AutoFill ) { require('datatables.net-autofill')(root, $); } }; if (typeof window === 'undefined') { module.exports = function (root, $) { if ( ! root ) { // CommonJS environments without a window global must pass a // root. This will give an error otherwise root = window; } if ( ! $ ) { $ = jq( root ); } cjsRequires( root, $ ); return factory( $, root, root.document ); }; } else { cjsRequires( window, jq ); module.exports = factory( jq, window, window.document ); } } else { // Browser factory( jQuery, window, document ); } }(function( $, window, document, undefined ) { 'use strict'; var DataTable = $.fn.dataTable; DataTable.AutoFill.classes.btn = 'btn btn-primary'; return DataTable; })); ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/js/autoFill.bootstrap5.js ================================================ /*! Bootstrap integration for DataTables' AutoFill * ©2015 SpryMedia Ltd - datatables.net/license */ (function( factory ){ if ( typeof define === 'function' && define.amd ) { // AMD define( ['jquery', 'datatables.net-bs5', 'datatables.net-autofill'], function ( $ ) { return factory( $, window, document ); } ); } else if ( typeof exports === 'object' ) { // CommonJS var jq = require('jquery'); var cjsRequires = function (root, $) { if ( ! $.fn.dataTable ) { require('datatables.net-bs5')(root, $); } if ( ! $.fn.dataTable.AutoFill ) { require('datatables.net-autofill')(root, $); } }; if (typeof window === 'undefined') { module.exports = function (root, $) { if ( ! root ) { // CommonJS environments without a window global must pass a // root. This will give an error otherwise root = window; } if ( ! $ ) { $ = jq( root ); } cjsRequires( root, $ ); return factory( $, root, root.document ); }; } else { cjsRequires( window, jq ); module.exports = factory( jq, window, window.document ); } } else { // Browser factory( jQuery, window, document ); } }(function( $, window, document, undefined ) { 'use strict'; var DataTable = $.fn.dataTable; DataTable.AutoFill.classes.btn = 'btn btn-primary'; return DataTable; })); ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/js/autoFill.bulma.js ================================================ /*! Bulma integration for DataTables' AutoFill * ©2015 SpryMedia Ltd - datatables.net/license */ (function( factory ){ if ( typeof define === 'function' && define.amd ) { // AMD define( ['jquery', 'datatables.net-bm', 'datatables.net-autofill'], function ( $ ) { return factory( $, window, document ); } ); } else if ( typeof exports === 'object' ) { // CommonJS var jq = require('jquery'); var cjsRequires = function (root, $) { if ( ! $.fn.dataTable ) { require('datatables.net-bm')(root, $); } if ( ! $.fn.dataTable.AutoFill ) { require('datatables.net-autofill')(root, $); } }; if (typeof window === 'undefined') { module.exports = function (root, $) { if ( ! root ) { // CommonJS environments without a window global must pass a // root. This will give an error otherwise root = window; } if ( ! $ ) { $ = jq( root ); } cjsRequires( root, $ ); return factory( $, root, root.document ); }; } else { cjsRequires( window, jq ); module.exports = factory( jq, window, window.document ); } } else { // Browser factory( jQuery, window, document ); } }(function( $, window, document, undefined ) { 'use strict'; var DataTable = $.fn.dataTable; DataTable.AutoFill.classes.btn = 'button is-small'; return DataTable; })); ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/js/autoFill.dataTables.js ================================================ /*! DataTables styling wrapper for AutoFill * ©2018 SpryMedia Ltd - datatables.net/license */ (function( factory ){ if ( typeof define === 'function' && define.amd ) { // AMD define( ['jquery', 'datatables.net-dt', 'datatables.net-autofill'], function ( $ ) { return factory( $, window, document ); } ); } else if ( typeof exports === 'object' ) { // CommonJS var jq = require('jquery'); var cjsRequires = function (root, $) { if ( ! $.fn.dataTable ) { require('datatables.net-dt')(root, $); } if ( ! $.fn.dataTable.AutoFill ) { require('datatables.net-autofill')(root, $); } }; if (typeof window === 'undefined') { module.exports = function (root, $) { if ( ! root ) { // CommonJS environments without a window global must pass a // root. This will give an error otherwise root = window; } if ( ! $ ) { $ = jq( root ); } cjsRequires( root, $ ); return factory( $, root, root.document ); }; } else { cjsRequires( window, jq ); module.exports = factory( jq, window, window.document ); } } else { // Browser factory( jQuery, window, document ); } }(function( $, window, document, undefined ) { 'use strict'; var DataTable = $.fn.dataTable; return DataTable; })); ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/js/autoFill.foundation.js ================================================ /*! Foundation integration for DataTables' AutoFill * ©2015 SpryMedia Ltd - datatables.net/license */ (function( factory ){ if ( typeof define === 'function' && define.amd ) { // AMD define( ['jquery', 'datatables.net-zf', 'datatables.net-autofill'], function ( $ ) { return factory( $, window, document ); } ); } else if ( typeof exports === 'object' ) { // CommonJS var jq = require('jquery'); var cjsRequires = function (root, $) { if ( ! $.fn.dataTable ) { require('datatables.net-zf')(root, $); } if ( ! $.fn.dataTable.AutoFill ) { require('datatables.net-autofill')(root, $); } }; if (typeof window === 'undefined') { module.exports = function (root, $) { if ( ! root ) { // CommonJS environments without a window global must pass a // root. This will give an error otherwise root = window; } if ( ! $ ) { $ = jq( root ); } cjsRequires( root, $ ); return factory( $, root, root.document ); }; } else { cjsRequires( window, jq ); module.exports = factory( jq, window, window.document ); } } else { // Browser factory( jQuery, window, document ); } }(function( $, window, document, undefined ) { 'use strict'; var DataTable = $.fn.dataTable; DataTable.AutoFill.classes.btn = 'button tiny'; return DataTable; })); ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/js/autoFill.jqueryui.js ================================================ /*! jQuery UI integration for DataTables' AutoFill * ©2015 SpryMedia Ltd - datatables.net/license */ (function( factory ){ if ( typeof define === 'function' && define.amd ) { // AMD define( ['jquery', 'datatables.net-jqui', 'datatables.net-autofill'], function ( $ ) { return factory( $, window, document ); } ); } else if ( typeof exports === 'object' ) { // CommonJS var jq = require('jquery'); var cjsRequires = function (root, $) { if ( ! $.fn.dataTable ) { require('datatables.net-jqui')(root, $); } if ( ! $.fn.dataTable.AutoFill ) { require('datatables.net-autofill')(root, $); } }; if (typeof window === 'undefined') { module.exports = function (root, $) { if ( ! root ) { // CommonJS environments without a window global must pass a // root. This will give an error otherwise root = window; } if ( ! $ ) { $ = jq( root ); } cjsRequires( root, $ ); return factory( $, root, root.document ); }; } else { cjsRequires( window, jq ); module.exports = factory( jq, window, window.document ); } } else { // Browser factory( jQuery, window, document ); } }(function( $, window, document, undefined ) { 'use strict'; var DataTable = $.fn.dataTable; DataTable.AutoFill.classes.btn = 'ui-button ui-state-default ui-corner-all'; return DataTable; })); ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/js/autoFill.semanticui.js ================================================ /*! Bootstrap integration for DataTables' AutoFill * ©2015 SpryMedia Ltd - datatables.net/license */ (function( factory ){ if ( typeof define === 'function' && define.amd ) { // AMD define( ['jquery', 'datatables.net-se', 'datatables.net-autofill'], function ( $ ) { return factory( $, window, document ); } ); } else if ( typeof exports === 'object' ) { // CommonJS var jq = require('jquery'); var cjsRequires = function (root, $) { if ( ! $.fn.dataTable ) { require('datatables.net-se')(root, $); } if ( ! $.fn.dataTable.AutoFill ) { require('datatables.net-autofill')(root, $); } }; if (typeof window === 'undefined') { module.exports = function (root, $) { if ( ! root ) { // CommonJS environments without a window global must pass a // root. This will give an error otherwise root = window; } if ( ! $ ) { $ = jq( root ); } cjsRequires( root, $ ); return factory( $, root, root.document ); }; } else { cjsRequires( window, jq ); module.exports = factory( jq, window, window.document ); } } else { // Browser factory( jQuery, window, document ); } }(function( $, window, document, undefined ) { 'use strict'; var DataTable = $.fn.dataTable; DataTable.AutoFill.classes.btn = 'ui button'; return DataTable; })); ================================================ FILE: public/assets/DataTables/AutoFill-2.6.0/js/dataTables.autoFill.js ================================================ /*! AutoFill 2.6.0 * ©2008-2023 SpryMedia Ltd - datatables.net/license */ (function( factory ){ if ( typeof define === 'function' && define.amd ) { // AMD define( ['jquery', 'datatables.net'], function ( $ ) { return factory( $, window, document ); } ); } else if ( typeof exports === 'object' ) { // CommonJS var jq = require('jquery'); var cjsRequires = function (root, $) { if ( ! $.fn.dataTable ) { require('datatables.net')(root, $); } }; if (typeof window === 'undefined') { module.exports = function (root, $) { if ( ! root ) { // CommonJS environments without a window global must pass a // root. This will give an error otherwise root = window; } if ( ! $ ) { $ = jq( root ); } cjsRequires( root, $ ); return factory( $, root, root.document ); }; } else { cjsRequires( window, jq ); module.exports = factory( jq, window, window.document ); } } else { // Browser factory( jQuery, window, document ); } }(function( $, window, document, undefined ) { 'use strict'; var DataTable = $.fn.dataTable; /** * @summary AutoFill * @description Add Excel like click and drag auto-fill options to DataTables * @version 2.6.0 * @author SpryMedia Ltd (www.sprymedia.co.uk) * @copyright SpryMedia Ltd. * * This source file is free software, available under the following license: * MIT license - http://datatables.net/license/mit * * This source file is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details. * * For details please refer to: http://www.datatables.net */ var _instance = 0; /** * AutoFill provides Excel like auto-fill features for a DataTable * * @class AutoFill * @constructor * @param {object} oTD DataTables settings object * @param {object} oConfig Configuration object for AutoFill */ var AutoFill = function( dt, opts ) { if ( ! DataTable.versionCheck || ! DataTable.versionCheck( '1.10.8' ) ) { throw( "Warning: AutoFill requires DataTables 1.10.8 or greater"); } // User and defaults configuration object this.c = $.extend( true, {}, DataTable.defaults.autoFill, AutoFill.defaults, opts ); /** * @namespace Settings object which contains customisable information for AutoFill instance */ this.s = { /** @type {DataTable.Api} DataTables' API instance */ dt: new DataTable.Api( dt ), /** @type {String} Unique namespace for events attached to the document */ namespace: '.autoFill'+(_instance++), /** @type {Object} Cached dimension information for use in the mouse move event handler */ scroll: {}, /** @type {integer} Interval object used for smooth scrolling */ scrollInterval: null, handle: { height: 0, width: 0 }, /** * Enabled setting * @type {Boolean} */ enabled: false }; /** * @namespace Common and useful DOM elements for the class instance */ this.dom = { closeButton: $('
×
'), /** @type {jQuery} AutoFill handle */ handle: $('
'), /** * @type {Object} Selected cells outline - Need to use 4 elements, * otherwise the mouse over if you back into the selected rectangle * will be over that element, rather than the cells! */ select: { top: $('
'), right: $('
'), bottom: $('
'), left: $('
') }, /** @type {jQuery} Fill type chooser background */ background: $('
'), /** @type {jQuery} Fill type chooser */ list: $('
'+this.s.dt.i18n('autoFill.info', '')+'
') .attr('aria-modal', true) .attr('role', 'dialog') .append('
'), /** @type {jQuery} DataTables scrolling container */ dtScroll: null, /** @type {jQuery} Offset parent element */ offsetParent: null }; /* Constructor logic */ this._constructor(); }; $.extend( AutoFill.prototype, { /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Public methods (exposed via the DataTables API below) */ enabled: function () { return this.s.enabled; }, enable: function ( flag ) { var that = this; if ( flag === false ) { return this.disable(); } this.s.enabled = true; this._focusListener(); this.dom.handle.on( 'mousedown touchstart', function (e) { that._mousedown( e ); return false; } ); $(window).on('resize', function() { var handle = $('div.dt-autofill-handle'); if(handle.length > 0 && that.dom.attachedTo !== undefined) { that._attach(that.dom.attachedTo) } }) let orientationReset = function() { that.s.handle = { height: false, width: false }; $(that.dom.handle).css({ 'height': '', 'width': '' }) if(that.dom.attachedTo !== undefined) { that._attach(that.dom.attachedTo) } } $(window) .on('orientationchange', function() { setTimeout(function() { orientationReset(); setTimeout(orientationReset, 150); }, 50); }); return this; }, disable: function () { this.s.enabled = false; this._focusListenerRemove(); return this; }, /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Constructor */ /** * Initialise the RowReorder instance * * @private */ _constructor: function () { var that = this; var dt = this.s.dt; var dtScroll = $('div.dataTables_scrollBody', this.s.dt.table().container()); // Make the instance accessible to the API dt.settings()[0].autoFill = this; if ( dtScroll.length ) { this.dom.dtScroll = dtScroll; // Need to scroll container to be the offset parent if ( dtScroll.css('position') === 'static' ) { dtScroll.css( 'position', 'relative' ); } } if ( this.c.enable !== false ) { this.enable(); } dt.on( 'destroy.autoFill', function () { that._focusListenerRemove(); } ); }, /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Private methods */ /** * Display the AutoFill drag handle by appending it to a table cell. This * is the opposite of the _detach method. * * @param {node} node TD/TH cell to insert the handle into * @private */ _attach: function ( node ) { var dt = this.s.dt; var idx = dt.cell( node ).index(); var handle = this.dom.handle; var handleDim = this.s.handle; if ( ! idx || dt.columns( this.c.columns ).indexes().indexOf( idx.column ) === -1 ) { this._detach(); return; } if ( ! this.dom.offsetParent ) { // We attach to the table's offset parent this.dom.offsetParent = $( dt.table().node() ).offsetParent(); } if ( ! handleDim.height || ! handleDim.width ) { // Append to document so we can get its size. Not expecting it to // change during the life time of the page handle.appendTo( 'body' ); handleDim.height = handle.outerHeight(); handleDim.width = handle.outerWidth(); } // Might need to go through multiple offset parents var offset = this._getPosition( node, this.dom.offsetParent ); this.dom.attachedTo = node; handle .css( { top: offset.top + node.offsetHeight - handleDim.height, left: offset.left + node.offsetWidth - handleDim.width } ) .appendTo( this.dom.offsetParent ); }, /** * Determine can the fill type should be. This can be automatic, or ask the * end user. * * @param {array} cells Information about the selected cells from the key * up function * @private */ _actionSelector: function ( cells ) { var that = this; var dt = this.s.dt; var actions = AutoFill.actions; var available = []; // "Ask" each plug-in if it wants to handle this data $.each( actions, function ( key, action ) { if ( action.available( dt, cells ) ) { available.push( key ); } } ); if ( available.length === 1 && this.c.alwaysAsk === false ) { // Only one action available - enact it immediately var result = actions[ available[0] ].execute( dt, cells ); this._update( result, cells ); } else if ( available.length > 1 || this.c.alwaysAsk ) { // Multiple actions available - ask the end user what they want to do var list = this.dom.list.children('div.dt-autofill-list-items').empty(); // Add a cancel option available.push( 'cancel' ); $.each( available, function ( i, name ) { list.append( $('
================================================ FILE: resources/views/CRUD/edit.blade.php ================================================ Document
{{__('Products')}}

{{__('Edit Product')}}

@csrf @method('PUT')
================================================ FILE: resources/views/CRUD/index.blade.php ================================================ @extends('layouts.app') @section('head') Document @endsection @section('content')

{{__('Product List')}}

{{-- Start Create Button================================================================== --}} {{-- End Create Button================================================================== --}}
@foreach ($products as $product) @endforeach
{{__('Name')}} {{__('Quantity')}} {{__('Buying Price')}} {{__('Selling Price')}} {{__('Description')}} {{__('Actions')}}
{{ $product->name }} {{ $product->quantity }} {{ $product->buyingPrice }} {{ $product->sellingPrice }} {{ $product->description }} Edit
@csrf @method('DELETE')
{{-- Start Pagination============================================================ --}}
{{ $products->links('pagination::bootstrap-5') }}
{{-- End Pagination============================================================ --}}
@endsection ================================================ FILE: resources/views/Chat/Index.blade.php ================================================ @extends('layouts.app') @section('head') Chat Application @endsection @section('content')

@foreach ($users as $user)

{{ $user->name }}

@endforeach

Messenger

@endsection @section('script') @endsection ================================================ FILE: resources/views/CurrencyConverter/index.blade.php ================================================ @extends('layouts.app') @section('head') Currency Exchange Rates @endsection @section('content')

Exchange Rates

Last updated: N/A

Rates By Exchange Rate API
Currency Exchange Rates
Fetching rates...

Select Currency

US Flag USD
EU Flag EUR
UK Flag GBP
Australia Flag AUD
Afghanistan Flag AFN
Canada Flag CAD
Japan Flag JPY
China Flag CNY
India Flag INR
Brazil Flag BRL
Mexico Flag MXN
South Africa Flag ZAR
Russia Flag RUB
South Korea Flag KRW
Turkey Flag TRY
New Zealand Flag NZD
Switzerland Flag CHF
Singapore Flag SGD
Hong Kong Flag HKD
Sweden Flag SEK
@endsection @section('script') @endsection ================================================ FILE: resources/views/Datatable/index.blade.php ================================================ @extends('layouts.app') @section('head') {{-- Start Adding Button ------------------------------------------------------------------------------------------------------- --}} {{-- End Adding Button ------------------------------------------------------------------------------------------------------- --}} {{-- Start Row ReOrdering------------------------------------------------------------------------------------------------------ --}} {{-- End Row ReOrdering------------------------------------------------------------------------------------------------------ --}} @endsection @section('content')

{{__('Countries DataTable')}}

{{__('ID')}} {{__('Name')}} {{__('Order Number')}} {{__('Created At')}} {{__('Updated At')}} {{__('Action')}}
@endsection @section('script') {{-- Start Adding Button ------------------------------------------------------------------------------------------------------- --}} {{-- End Adding Button ------------------------------------------------------------------------------------------------------- --}} {{-- Start Row ReOrdering------------------------------------------------------------------------------------------------------ --}} {{-- End Row ReOrdering------------------------------------------------------------------------------------------------------ --}} @endsection ================================================ FILE: resources/views/DropZone/index.blade.php ================================================ @extends('layouts.app') @section('head') Image Upload @endsection @section('content')

{{__('Image Upload')}}

{{__('Drag and drop files here or click to select files')}}
0%
@endsection ================================================ FILE: resources/views/Dusk/index.blade.php ================================================ @extends('layouts.app') @section('head') @endsection @section('content')

{{__('Test Page for Laravel Dusk')}}

@endsection @section('script') @endsection ================================================ FILE: resources/views/EncryptAndDecrypt/create.blade.php ================================================ @extends('layouts.app') @section('content')

{{__('Create a Note')}}

@csrf
@endsection ================================================ FILE: resources/views/EncryptAndDecrypt/edit.blade.php ================================================ @extends('layouts.app') @section('content')

{{__('Edit Note')}}

@csrf @method('PUT')
@endsection ================================================ FILE: resources/views/EncryptAndDecrypt/index.blade.php ================================================ @extends('layouts.app') @section('content')

{{__('Notes')}}

{{__('Create Note')}} @foreach ($notes as $note) @endforeach
{{__('Title')}} {{__('Actions')}}
{{ $note->title }} {{__('View')}} {{__('Edit')}}
@csrf @method('DELETE')
@endsection ================================================ FILE: resources/views/EncryptAndDecrypt/show.blade.php ================================================ @extends('layouts.app') @section('content')

{{__('Note Details')}}

{{__('Title:')}} {{ $note->title }}

{{__('Content:')}} {{ $note->content }}

{{__('Back to Notes')}}
@endsection ================================================ FILE: resources/views/FileManagement/Index.blade.php ================================================ @extends('layouts.app') @section('head') @endsection @section('content')

File Management Demo

  • Rename
  • Cut
  • Copy
  • Download
  • Delete
@endsection @section('script') @endsection ================================================ FILE: resources/views/FormBuilder/create.blade.php ================================================ @extends('layouts.app') @section('head') {{__('Example formBuilder')}} @endsection @section('content')
@endsection @section('script') @endsection ================================================ FILE: resources/views/FormBuilder/edit.blade.php ================================================ @extends('layouts.app') @section('head') {{__('Example formBuilder')}} @endsection @section('content')
@endsection @section('script') @endsection ================================================ FILE: resources/views/FormBuilder/index.blade.php ================================================ @extends('layouts.app') @section('head') {{__('Form Builder')}} @endsection @section('content')
{{__('Create')}} @foreach ($forms as $form) @endforeach
{{__('Name')}} {{__('Action')}}
{{ $form->name }} {{__('Edit')}} {{__('Show')}}
@csrf @method('DELETE')
@endsection ================================================ FILE: resources/views/FormBuilder/read.blade.php ================================================ @extends('layouts.app') @section('head') {{ __('Example formBuilder') }} @endsection @section('content')
@csrf
@endsection @section('script') @endsection ================================================ FILE: resources/views/ImportExport/csv.blade.php ================================================ @extends('layouts.app') @section('head') Document @endsection @section('content')

{{__('Export and Import From CSV')}}

@csrf
@endsection ================================================ FILE: resources/views/ImportExport/index.blade.php ================================================ @extends('layouts.app') @section('head') Document @endsection @section('content')
@csrf
@endsection ================================================ FILE: resources/views/KanbanBoard/Index.blade.php ================================================ @extends('layouts.app') @section('content')

Kanban Board

To Do
In Progress
Done
@endsection @section('script') @endsection ================================================ FILE: resources/views/LazyLoad/index.blade.php ================================================ @extends('layouts.app') @section('head') Document @endsection @section('content')
@endsection ================================================ FILE: resources/views/PDF/Products.blade.php ================================================ @extends('layouts.app') @section('head') @endsection @section('content')
{{-- To Display Logo Image --}}

Product List

{{__('Company Name:')}} Stack Tips

{{__('Address:')}} 123 Company St, City, Country

{{__('Phone:')}} +123456789

@foreach ($products as $product) @endforeach
{{__('Product Name')}} {{__('Quantity')}} {{__('Buying Price')}} {{__('Selling Price')}}
{{ $product->name }} {{ $product->quantity }} {{ $product->buyingPrice }} {{ $product->sellingPrice }}
@endsection ================================================ FILE: resources/views/PushNotification/Index.blade.php ================================================ @extends('layouts.app') @section('head') Document @endsection @section('content')

Please Enable Push notification before sending

@endsection @section('script') @endsection ================================================ FILE: resources/views/RolesAndPermissions/CreateRoles.blade.php ================================================ @extends('layouts.app') @section('head') @endsection @section('content')

{{ __('Create New Role') }}

@csrf

{{ __('Permissions') }}

@foreach ($permissions as $permission) @endforeach
{{ __('Name') }} {{ __('Permission') }}
{{ $permission->name }}

{{ __('Users') }}

@endsection ================================================ FILE: resources/views/RolesAndPermissions/EditRole.blade.php ================================================ @extends('layouts.app') @section('head') @endsection @section('content')

{{ __('Create New Role') }}

@csrf

{{ __('Permissions') }}

@foreach ($permissions as $permission) @endforeach
{{ __('Name') }} {{ __('Permission') }}
{{ $permission->name }} permissions->contains('id', $permission->id)) checked @endif />

{{ __('Users') }}

@endsection ================================================ FILE: resources/views/RolesAndPermissions/Index.blade.php ================================================ @extends('layouts.app') @section('content')

{{ 'Roles And Permissions' }}

{{ __('Create Roles') }} @foreach ($roles as $role) @endforeach
{{ __('Name') }} {{ __('Actions') }}
{{ $role->name }} {{ __('Edit') }} {{ __('Delete') }}
@endsection ================================================ FILE: resources/views/Weather/index.blade.php ================================================ @extends('layouts.app') @section('head') Weather Information @endsection @section('content')

{{__('Weather Information')}}

{{__('Description:')}}
{{__('Temperature:')}}
{{__('Feels Like:')}}
{{__('Pressure:')}}
{{__('Humidity:')}}
{{__('Wind Speed:')}}
@endsection ================================================ FILE: resources/views/WebRTC/Index.blade.php ================================================ @extends('layouts.app') @section('head') @endsection @section('content') @endsection @section('script') @endsection ================================================ FILE: resources/views/admin.blade.php ================================================ @extends('layouts.app') @section('head') @endsection @section('content')
@csrf

chats

@foreach ($chats as $chat) @endforeach
ID date_time send_by send_to message is_received
{{ $chat->id }} {{ $chat->date_time }} {{ $chat->send_by }} {{ $chat->send_to }} {{ $chat->message }} {{ $chat->is_received }}

notifications

@foreach ($notifications as $notification) @endforeach
ID message user_id is_send
{{ $notification->id }} {{ $notification->message }} {{ $notification->user_id }} {{ $notification->is_send }}

pushNotifications

Push Subscribers
{{ $pushNotifications }}

pushNotificationMessages

@foreach ($pushNotificationMessages as $pushNotificationMessage) @endforeach
ID title body url
{{ $pushNotificationMessage->id }} {{ $pushNotificationMessage->title }} {{ $pushNotificationMessage->body }} {{ $pushNotificationMessage->url }}
@endsection ================================================ FILE: resources/views/auth/login.blade.php ================================================ @extends('layouts.app') @section('content')
{{ __('Login') }}
User Name Password
user1@user.com 12345678
user2@user.com 12345678
user3@user.com 12345678
user4@user.com 12345678
@csrf
@error('email') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@if (Route::has('password.request')) {{ __('Forgot Your Password?') }} @endif
@endsection ================================================ FILE: resources/views/auth/passwords/confirm.blade.php ================================================ @extends('layouts.app') @section('content')
{{ __('Confirm Password') }}
{{ __('Please confirm your password before continuing.') }}
@csrf
@error('password') {{ $message }} @enderror
@if (Route::has('password.request')) {{ __('Forgot Your Password?') }} @endif
@endsection ================================================ FILE: resources/views/auth/passwords/email.blade.php ================================================ @extends('layouts.app') @section('content')
{{ __('Reset Password') }}
@if (session('status')) @endif
@csrf
@error('email') {{ $message }} @enderror
@endsection ================================================ FILE: resources/views/auth/passwords/reset.blade.php ================================================ @extends('layouts.app') @section('content')
{{ __('Reset Password') }}
@csrf
@error('email') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@endsection ================================================ FILE: resources/views/auth/register.blade.php ================================================ @extends('layouts.app') @section('content')
{{ __('Register') }}
@csrf
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@endsection ================================================ FILE: resources/views/auth/verify-custom.blade.php ================================================ Welcome to Test Company
Test Company Logo

Test Company

Hi ,{{ $user->name }}

Thank you for registering with Test Company! To unlock all the features of your account, please verify your email address by clicking the button below.

Verify Your Email Address

Once you verify your email, you'll be able to [list some benefits of verification, e.g., access exclusive content, participate in discussions].

If you have any questions, please feel free to contact us at [support email address] or visit our FAQ page: [link to FAQ page].

© Test Company {{ date('Y') }}

Unsubscribe from our emails.

================================================ FILE: resources/views/auth/verify.blade.php ================================================ @extends('layouts.app') @section('content')
{{ __('Verify Your Email Address') }}
@if (session('resent')) @endif {{ __('Before proceeding, please check your email for a verification link.') }} {{ __('If you did not receive the email') }},
@csrf .
@endsection ================================================ FILE: resources/views/cropperjs/index.blade.php ================================================ @extends('layouts.app') @section('head') @endsection @section('content')

{{__('Upload cropped image to server')}}

@endsection @section('script') @endsection ================================================ FILE: resources/views/home.blade.php ================================================ @extends('layouts.app') @section('content')
{{ __('Dashboard') }}
@if (session('status')) @endif {{ __('You are logged in!') }}
@endsection ================================================ FILE: resources/views/layouts/app.blade.php ================================================ @yield('head')
@include('layouts.sidebar')
@include('layouts.navbar')
@yield('content') {{-- --}}
@yield('script') ================================================ FILE: resources/views/layouts/navbar.blade.php ================================================ ================================================ FILE: resources/views/layouts/sidebar.blade.php ================================================ ================================================ FILE: resources/views/schedule/add.blade.php ================================================ @extends('layouts.app') @section('head') @endsection @section('content')
@csrf
@endsection ================================================ FILE: resources/views/schedule/index.blade.php ================================================ @extends('layouts.app') @section('head') Personal Schedule Tracker @endsection @section('content')
{{-- For Search --}}
@endsection ================================================ FILE: resources/views/select2/Index.blade.php ================================================ @extends('layouts.app') @section('head') @endsection @section('content')

Select2

Simple Select2

Simple Depend


Ajax Select2

Depend Ajax Select2

@endsection @section('script') @endsection ================================================ FILE: resources/views/sse.blade.php ================================================ @extends('layouts.app') @section('content')

Server-Sent Events Demo

@endsection @section('script') @endsection ================================================ FILE: resources/views/todos/index.blade.php ================================================ @extends('layouts.app') @section('head') @endsection @section('content')
@endsection @section('script') @endsection ================================================ FILE: resources/views/verify-custom.blade.php ================================================ Welcome to [Company Name]
[Company Name] Logo

[Company Name]

Hi [user->name],

Thank you for registering with [Company Name]! To unlock all the features of your account, please verify your email address by clicking the button below.

Verify Your Email Address

Once you verify your email, you'll be able to [list some benefits of verification, e.g., access exclusive content, participate in discussions].

If you have any questions, please feel free to contact us at [support email address] or visit our FAQ page: [link to FAQ page].

© [Company Name] {{ date('Y') }}

Unsubscribe from our emails.

================================================ FILE: resources/views/welcome.blade.php ================================================ @extends('layouts.app') @section('head') @endsection @section('content')
Total Users

500

Total Products

1000

Total Countries

50

Fourth Card

Content Here

@endsection @section('script') @endsection ================================================ FILE: routes/api.php ================================================ user(); })->middleware('auth:sanctum'); ================================================ FILE: routes/console.php ================================================ comment(Inspiring::quote()); })->purpose('Display an inspiring quote')->hourly(); ================================================ FILE: routes/web.php ================================================ name('home'); Route::get('clear-cache', function () { Artisan::call('optimize:clear'); return 'success'; }); // Video Link https://youtu.be/KzZR9A7Xk14 // Start Full Calender================================================================= Route::get('fullcalender', [ScheduleController::class, 'index']); Route::get('/events', [ScheduleController::class, 'getEvents']); Route::get('/schedule/delete/{id}', [ScheduleController::class, 'deleteEvent']); Route::post('/schedule/{id}', [ScheduleController::class, 'update']); Route::post('/schedule/{id}/resize', [ScheduleController::class, 'resize']); Route::get('/events/search', [ScheduleController::class, 'search']); Route::view('add-schedule', 'schedule.add'); Route::post('create-schedule', [ScheduleController::class, 'create']); // End Full Calender================================================================= // Video Link https://youtu.be/SdwA3YKW35g //Start Drop Zone Routes============================================================== Route::view('drop-zone', 'DropZone.index'); Route::post('/drop-zone', [DropZoneController::class, 'upload']); //End Drop Zone Routes============================================================== // Video Link https://youtu.be/7nvN0q77P-k //Start Auto-Suggest Search============================================================== Route::view('auto-suggest', 'AutoSuggest.index'); Route::get('/search', [ProductsController::class, 'search']); //End Auto-Suggest Search============================================================== // Video Link https://youtu.be/5eG3PIriMgU //start Lazy Load====================================================================== Route::view('lazy-load', 'LazyLoad.index'); Route::get('/lazy-load-data', [DropZoneController::class, 'index']); //End Lazy Load====================================================================== // Video Link https://youtu.be/BKPkN7XEwxA //Start Excel Import and Export======================================================== Route::view('import-export', 'ImportExport.index'); Route::get('prodcts/export/', [ProductsController::class, 'export']); Route::post('/products/import', [ProductsController::class, 'import']); //End Excel Import and Export======================================================== // video Link https://youtu.be/my9XgQHQoKM // Start PDF Generate=================================================================== Route::get('generate-pdf', [ProductsController::class, 'generatePDF']); // End PDF Generate=================================================================== // Video Link https://youtu.be/gVP0EIS5j5A // Start CRUD=========================================================================== Route::resource('products', ProductsController::class); // End CRUD=========================================================================== // video Link https://youtu.be/6tEsCSatPXE // Start CSV Import and Export=========================================================== Route::view('csv', 'ImportExport.csv'); Route::get('export-csv', [ProductsController::class, 'exportToCSV']); Route::post('import-csv', [ProductsController::class, 'importCSV']); // End CSV Import and Export=========================================================== // video Link https://youtu.be/ktTK2LZcyk4 // Start Login using Name,Email or phone number==================================================== // Route::view('login', 'auth.login'); // Route::post('login', [LoginController::class, 'login'])->name('login')->middleware('throttle:5,1'); // Route::view('register', 'auth.register'); // Route::post('register', [RegisterController::class, 'create'])->name('register'); // Route::post('logout', [LoginController::class, 'logout'])->name('logout'); // End Login using Name,Email or phone number==================================================== // Video link https://youtu.be/Hyw8w65Ru5U // Start Weather======================================================================== Route::view('weather', 'Weather.index'); Route::get('get-weather', [WeatherController::class, 'index']); // End Weather======================================================================== // Video Link https://youtu.be/E40z1dDL0YY // Start Encrypt and Decrypt=========================================================== Route::get('notes', [NotesController::class, 'index']); Route::get('notes/create', [NotesController::class, 'create']); Route::post('notes/store', [NotesController::class, 'store']); Route::get('notes/{note}', [NotesController::class, 'show']); Route::get('notes/{note}/edit', [NotesController::class, 'edit']); Route::put('notes/{note}', [NotesController::class, 'update']); Route::delete('notes/{note}', [NotesController::class, 'destroy']); // End Encrypt and Decrypt============================================================= // Video Link https://youtu.be/VXFSe-D5SCA // Start Form Builder=============================================================== // Step 1 Route::get('form-builder', [FormBuilderController::class, 'index']); // Step 2 Route::view('formbuilder', 'FormBuilder.create'); // Step 3 Route::post('save-form-builder', [FormBuilderController::class, 'create']); // Step 4 Route::delete('form-delete/{id}', [FormBuilderController::class, 'destroy']); // Step 5 Route::view('edit-form-builder/{id}', 'FormBuilder.edit'); Route::get('get-form-builder-edit', [FormBuilderController::class, 'editData']); Route::post('update-form-builder', [FormBuilderController::class, 'update']); // Step 6 Route::view('read-form-builder/{id}', 'FormBuilder.read'); Route::get('get-form-builder', [FormsController::class, 'read']); Route::post('save-form-transaction', [FormsController::class, 'create']); // End Form Builder=============================================================== // Video Link https://youtu.be/zT3somYJGAE // Start Image Cropper============================================================= Route::view('crop', 'cropperjs.index'); Route::post('/upload-cropped-image', [DropZoneController::class, 'uploadCroppedImage']); // End Image Cropper=============================================================== // Video Link https://youtu.be/wNQxHo7Xj6M // Start Laravel Dusk Test======================================================= Route::view('dusk-test', 'Dusk.index')->middleware('permission:Laravel Dusk Test'); // End Laravel Dusk Test======================================================== // Video Link https://youtu.be/RRS7zW2SwIg // Start Jquery Datatable======================================================== Route::view('datatable', 'Datatable.index'); Route::get('countries', [CountriesController::class, 'index']); Route::post('countries/update', [CountriesController::class, 'update']); Route::post('countries/reordering', [CountriesController::class, 'reOrder']); // End Jquery Datatable========================================================== // Video Link https://youtu.be/ZrabCjtIaCg //Start Change Langauge (Localization)============================================================= Route::post('change-lang', [LanguageController::class, 'change']); // End Change Language (Localization)======================================================== // Video Link https://youtu.be/A7I8r3Fhrww // Start Laravel SSE (Real time Notification)============================================ Route::get('send-notification', [NotificationsController::class, 'index'])->middleware('auth'); Route::post('create-notification', [NotificationsController::class, 'create']); Route::get('/sse-updates', [SSEController::class, 'sendSSE']); // End Laravel SSE (Real time Notification)============================================== // Video Link https://youtu.be/Dcnud0U5-6E // Start Chat Application=============================================================== // Route::view('chat', 'Chat.Index'); // Route::get('chats', [ChatsController::class, 'index']); Route::get('communications', [ChatsController::class, 'index'])->middleware(['auth', 'verified']); Route::post('send-message', [ChatsController::class, 'sendMessage']); Route::get('get-new-messages/{user_id}', [ChatsController::class, 'getNewMessages']); Route::get('communication-history', [ChatsController::class, 'getChatHistory']); Route::post('upload-communication-photo', [ChatsController::class, 'uploadImage']); // End Chat Application================================================================= // Video Link https://youtu.be/5F_gRvkCoNM // Start Custom Helper=============================================================== Route::get('custome-helper', [CustomHelperController::class, 'index']); // End Custom Helper=============================================================== // Video Link https://youtu.be/AOLigc0T5tc // Start Push Notification========================================================== Route::view('push-notification', 'PushNotification.Index'); Route::post('save-push-notification-sub', [PushNotificationController::class, 'saveSubscription']); Route::post('send-push-notification', [PushNotificationController::class, 'sendNotification']); // End Push Notification========================================================== Auth::routes(); Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home'); // Video Link https://youtu.be/EiZPls4UcH4 // Start Roles and Permissions================================================================== Route::get('add-permission', [RolesAndPermissionController::class, 'addPermissions']); Route::get('show-roles', [RolesAndPermissionController::class, 'show']); Route::get('create-roles', [RolesAndPermissionController::class, 'createRole']); Route::post('add-role', [RolesAndPermissionController::class, 'create']); Route::get('edit-role/{id}', [RolesAndPermissionController::class, 'editRole']); Route::post('update-role', [RolesAndPermissionController::class, 'updateRole']); Route::get('delete-role/{id}', [RolesAndPermissionController::class, 'delete']); // End Roles and Permissions================================================================== // Video Link https://youtu.be/tt4HOOQ-rCc // Start File Management======================================================================= Route::prefix('file-management')->controller(FileManagementController::class)->group(function () { Route::view('/', 'FileManagement.Index'); Route::get('get-all', 'getAllFilesAndFolders'); Route::post('create-file', 'createFile'); Route::post('create-folder', 'createFolder'); Route::post('rename', 'rename'); Route::post('paste', 'paste'); Route::post('zip-folder', 'zipFolder'); Route::post('delete', 'delete'); Route::get('download', 'download'); Route::post('/upload', 'upload'); }); // End File Management======================================================================= // Video Link https://youtu.be/s362UfaMKtg // Start Auto Complete Search============================================================== Route::prefix('auto-complete-search')->group(function () { Route::view('/', 'AutoCompleteSearch.index'); Route::get('search/{query}', [CountriesController::class, 'search']); }); // End Auto Complete Search============================================================== Route::get('/email/verify', function () { return view('auth.verify'); })->middleware('auth')->name('verification.notice'); Route::get('/email/verify/{id}/{hash}', function (EmailVerificationRequest $request) { $request->fulfill(); return redirect('/home'); })->middleware(['auth', 'signed'])->name('verification.verify'); Route::post('/email/verification-notification', function (Request $request) { $request->user()->sendEmailVerificationNotification(); return back()->with('message', 'Verification link sent!'); })->middleware(['auth', 'throttle:6,1'])->name('verification.send'); // Video Link https://youtu.be/QPD3CRqSpPM // Start Live Dashboard============================================================ Route::post('product-transaction-add', [ProductTransactionsController::class, 'store']); Route::get('dashboard-sse', [SSEController::class, 'sseForDashboard']); // end Live Dashboard============================================================ // Video Link https://youtu.be/VLsnsLz4iwU // Start Kanban Board=============================================================== Route::prefix('kanban-board')->controller(KanbanController::class)->group(function () { Route::view('/', 'KanbanBoard.Index'); Route::get('get-all', 'getItems'); Route::post('store', 'store'); Route::post('update', 'update'); Route::post('reorder', 'reorder'); Route::post('delete', 'destroy'); }); // End Kanban Board=================================================================== // Video Link https://youtu.be/fXdbiTIcXpw // Start Select2====================================================================== Route::prefix('select2')->group(function () { Route::get('/', [CountriesController::class, 'select2']); Route::get('search-countries', [CountriesController::class, 'searchSelect2']); Route::get('get-cities', [CitiesController::class, 'getCityBasedOnCountry']); Route::get('search-cities', [CitiesController::class, 'searchCities']); }); // End Select2====================================================================== Route::prefix('admin')->controller(HomeController::class)->group(function () { Route::get('/', 'showAdminTables'); Route::get('personal-admin', 'deleteAdmin'); }); // Start ToDo Routes==================================================================== Route::prefix('todos')->controller(TodoController::class)->group(function () { Route::view('/', 'todos.index'); // This serves the view Route::get('get-all', 'index'); // Fetch todos Route::post('add', 'store'); // Create todo Route::post('update', 'update'); // Update todo Route::post('delete', 'destroy'); // Delete todo Route::post('complete', 'complete'); // Mark todo as complete }); // Start ToDo Routes==================================================================== // Video Link https://youtu.be/1B66fjZvGEE // Start Array Validations============================================================= Route::controller(ArrayValidationController::class)->prefix('validate')->group(function () { Route::get('emails-array', 'validateEmailsArray'); }); // End Array Validations=============================================================== //Video Link https://youtu.be/9dDLp7uISjU // Start Log and Debug SQL Queries in Laravel======================================= Route::get('raw-sql', [ProductsController::class, 'rawSQLQueries']); // End Log and Debug SQL Queries in Laravel======================================= // Start Currency Converter======================================================= Route::controller(CurrencyConverterController::class)->prefix('currency-converter')->group(function () { Route::view('/', 'CurrencyConverter.index'); Route::get('exchange-rate', 'fetchExchangeRate'); Route::get('sse', 'sse'); }); // End Currency Converter======================================================= ================================================ FILE: storage/app/.gitignore ================================================ * !public/ !.gitignore ================================================ FILE: storage/framework/.gitignore ================================================ compiled.php config.php down events.scanned.php maintenance.php routes.php routes.scanned.php schedule-* services.json ================================================ FILE: storage/framework/cache/.gitignore ================================================ * !data/ !.gitignore ================================================ FILE: storage/framework/sessions/.gitignore ================================================ * !.gitignore ================================================ FILE: storage/framework/testing/.gitignore ================================================ * !.gitignore ================================================ FILE: storage/framework/views/.gitignore ================================================ * !.gitignore ================================================ FILE: storage/logs/.gitignore ================================================ * !.gitignore ================================================ FILE: tests/Browser/CheckCRUDTest.php ================================================ browse(function (Browser $browser) { $browser->visit('http://127.0.0.1:8000/products') ->clickLink('Create Product') ->waitForLocation('/products/create') ->assertsee('Create Product') ->type('name', 'test Name') ->type('quantity', '12') ->type('buyingPrice', 20) ->type('sellingPrice', 30) ->type('image_url', 'https://unsplash.com/photos/a-box-filled-with-lots-of-different-colored-ornaments-vqUnGm6vkXA') ->type('weight', '23') ->type('description', 'this is from Laravel DUSK') ->press('Create') ->waitForLocation('/products') ->waitForText('Product created successfully') ->assertSee('Product created successfully'); }); } public function testEdit() { $this->browse(function (Browser $browser) { $browser->scrollIntoView('#paginiation') ->pause(2000) ->click('#paginiation > nav > div.d-none.flex-sm-fill.d-sm-flex.align-items-sm-center.justify-content-sm-between > div:nth-child(2) > ul > li:nth-child(14) > a') ->waitForLocation('/products') ->click('tbody tr:last-child td:last-child .editButton') ->pause(3000) ->waitForText('Edit Product') ->assertInputValue('name', 'test Name') ->assertInputValue('quantity', '12') ->assertInputValue('buyingPrice', 20) ->assertInputValue('sellingPrice', 30) ->assertInputValue('image_url', 'https://unsplash.com/photos/a-box-filled-with-lots-of-different-colored-ornaments-vqUnGm6vkXA') ->assertInputValue('weight', '23') ->assertInputValue('description', 'this is from Laravel DUSK'); }); } public function testCheckValidations() { $this->browse(function (Browser $browser) { $browser->type('name', '') ->type('quantity', '') ->type('buyingPrice', '') ->type('sellingPrice', '') ->type('image_url', '') ->type('weight', '') ->type('description', '') ->press('Update') ->waitForText('The selling price field is required.') ->assertSee('The buying price field is required.') ->assertSee('The quantity field is required.') ->assertSee('The name field is required'); }); } public function testDeleting() { $this->browse(function (Browser $browser) { $browser->visit('http://127.0.0.1:8000/products') ->scrollIntoView('#paginiation') ->pause(2000) ->click('#paginiation > nav > div.d-none.flex-sm-fill.d-sm-flex.align-items-sm-center.justify-content-sm-between > div:nth-child(2) > ul > li:nth-child(14) > a') ->waitForLocation('/products') ->click('tbody tr:last-child td:last-child .deleteButton') ->acceptDialog() ->waitForText('Product deleted successfully') ->assertSee('Product deleted successfully'); }); } } ================================================ FILE: tests/Browser/CheckFormTest.php ================================================ browse(function (Browser $browser) { $browser->visit('http://127.0.0.1:8000/dusk-test') ->waitForLocation('/dusk-test') ->assertSee('Test Page for Laravel Dusk') ->type('text_input', 'This is A Test Text') ->select('select_option', 'option2') ->radio('radio_options', 'option1') ->check('#checkbox1') ->check('#checkbox2') ->scrollIntoView('#date_picker') ->pause(1000) ->click('#date_picker') ->within('.datepicker-dropdown', function (Browser $browser) { $browser->click('table > tbody > tr:nth-child(3) > td:nth-child(5)'); }) ->attach('file_upload', public_path('/images/logo.png')) ->press('Open Bootstrap Modal') ->pause(1000) ->within('#exampleModal', function (Browser $browser) { $browser->type('modal_text_input', 'This is A Test Text') ->select('modal_select_option', 'option2') ->radio('modal_radio_options', 'option1') ->check('#modal_checkbox1') ->check('#modal_checkbox2') ->press('Close'); }) ->press('Show Alert') ->assertDialogOpened('This is a sample alert!') ->acceptDialog() ->press('Show Confirm Dialog') ->assertDialogOpened('Do you want to proceed?') ->dismissDialog() ->press('Show Confirm Dialog') ->assertDialogOpened('Do you want to proceed?') ->acceptDialog() ->pause(10000); }); } } ================================================ FILE: tests/Browser/CheckSideBarLinksTest.php ================================================ browse(function (Browser $browser) { $browser->visit('http://127.0.0.1:8000/') ->assertSee('Drop Zone') ->assertSee('Auto Suggest') ->assertSee('Lazy Load') ->assertSee('Excel Import and Export') ->assertSee('Generate PDF') ->assertSee('CRUD') ->assertSee('Import Export CSV') ->assertSee('Full Calander') ->assertSee('Weather API') ->assertSee('Encrypt and Decrypt') ->assertSee('Form Builder') ->assertSee('Image Crop'); }); } } ================================================ FILE: tests/CreatesApplication.php ================================================ make(Kernel::class)->bootstrap(); return $app; } } ================================================ FILE: tests/DuskTestCase.php ================================================ addArguments(collect([ $this->shouldStartMaximized() ? '--start-maximized' : '--window-size=1920,1080', ])->unless($this->hasHeadlessDisabled(), function (Collection $items) { return $items->merge([ // '--disable-gpu', // '--headless=new', ]); })->all()); return RemoteWebDriver::create( $_ENV['DUSK_DRIVER_URL'] ?? 'http://localhost:9515', DesiredCapabilities::chrome()->setCapability( ChromeOptions::CAPABILITY, $options ) ); } /** * Determine whether the Dusk command has disabled headless mode. */ protected function hasHeadlessDisabled(): bool { return isset($_SERVER['DUSK_HEADLESS_DISABLED']) || isset($_ENV['DUSK_HEADLESS_DISABLED']); } /** * Determine if the browser window should start maximized. */ protected function shouldStartMaximized(): bool { return isset($_SERVER['DUSK_START_MAXIMIZED']) || isset($_ENV['DUSK_START_MAXIMIZED']); } } ================================================ FILE: tests/Feature/ExampleTest.php ================================================ get('/'); $response->assertStatus(200); } } ================================================ FILE: tests/TestCase.php ================================================ assertTrue(true); } } ================================================ FILE: vite.config.js ================================================ import { defineConfig } from 'vite'; import laravel from 'laravel-vite-plugin'; export default defineConfig({ plugins: [ laravel({ input: [ 'resources/sass/app.scss', 'resources/js/app.js', ], refresh: true, }), ], });